1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectExtendercontrollerDataplan
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectExtendercontrollerDataplan

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    FortiExtender dataplan configuration.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectExtendercontrollerDataplan("trname", {
        authType: "chap",
        billingDate: 1,
        capacity: 10,
        modemId: "all",
        overage: "disable",
        passwords: ["fortinet"],
        pdn: "ipv4-only",
        preferredSubnet: 32,
        privateNetwork: "disable",
        signalPeriod: 3600,
        signalThreshold: 100,
        status: "enable",
        type: "generic",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectExtendercontrollerDataplan("trname",
        auth_type="chap",
        billing_date=1,
        capacity=10,
        modem_id="all",
        overage="disable",
        passwords=["fortinet"],
        pdn="ipv4-only",
        preferred_subnet=32,
        private_network="disable",
        signal_period=3600,
        signal_threshold=100,
        status="enable",
        type="generic")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewObjectExtendercontrollerDataplan(ctx, "trname", &fortimanager.ObjectExtendercontrollerDataplanArgs{
    			AuthType:    pulumi.String("chap"),
    			BillingDate: pulumi.Float64(1),
    			Capacity:    pulumi.Float64(10),
    			ModemId:     pulumi.String("all"),
    			Overage:     pulumi.String("disable"),
    			Passwords: pulumi.StringArray{
    				pulumi.String("fortinet"),
    			},
    			Pdn:             pulumi.String("ipv4-only"),
    			PreferredSubnet: pulumi.Float64(32),
    			PrivateNetwork:  pulumi.String("disable"),
    			SignalPeriod:    pulumi.Float64(3600),
    			SignalThreshold: pulumi.Float64(100),
    			Status:          pulumi.String("enable"),
    			Type:            pulumi.String("generic"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.ObjectExtendercontrollerDataplan("trname", new()
        {
            AuthType = "chap",
            BillingDate = 1,
            Capacity = 10,
            ModemId = "all",
            Overage = "disable",
            Passwords = new[]
            {
                "fortinet",
            },
            Pdn = "ipv4-only",
            PreferredSubnet = 32,
            PrivateNetwork = "disable",
            SignalPeriod = 3600,
            SignalThreshold = 100,
            Status = "enable",
            Type = "generic",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectExtendercontrollerDataplan;
    import com.pulumi.fortimanager.ObjectExtendercontrollerDataplanArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trname = new ObjectExtendercontrollerDataplan("trname", ObjectExtendercontrollerDataplanArgs.builder()
                .authType("chap")
                .billingDate(1)
                .capacity(10)
                .modemId("all")
                .overage("disable")
                .passwords("fortinet")
                .pdn("ipv4-only")
                .preferredSubnet(32)
                .privateNetwork("disable")
                .signalPeriod(3600)
                .signalThreshold(100)
                .status("enable")
                .type("generic")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectExtendercontrollerDataplan
        properties:
          authType: chap
          billingDate: 1
          capacity: 10
          modemId: all
          overage: disable
          passwords:
            - fortinet
          pdn: ipv4-only
          preferredSubnet: 32
          privateNetwork: disable
          signalPeriod: 3600
          signalThreshold: 100
          status: enable
          type: generic
    

    Create ObjectExtendercontrollerDataplan Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ObjectExtendercontrollerDataplan(name: string, args?: ObjectExtendercontrollerDataplanArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectExtendercontrollerDataplan(resource_name: str,
                                         args: Optional[ObjectExtendercontrollerDataplanArgs] = None,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectExtendercontrollerDataplan(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         adom: Optional[str] = None,
                                         apn: Optional[str] = None,
                                         auth_type: Optional[str] = None,
                                         billing_date: Optional[float] = None,
                                         capacity: Optional[float] = None,
                                         carrier: Optional[str] = None,
                                         iccid: Optional[str] = None,
                                         modem_id: Optional[str] = None,
                                         monthly_fee: Optional[float] = None,
                                         name: Optional[str] = None,
                                         object_extendercontroller_dataplan_id: Optional[str] = None,
                                         overage: Optional[str] = None,
                                         passwords: Optional[Sequence[str]] = None,
                                         pdn: Optional[str] = None,
                                         preferred_subnet: Optional[float] = None,
                                         private_network: Optional[str] = None,
                                         scopetype: Optional[str] = None,
                                         signal_period: Optional[float] = None,
                                         signal_threshold: Optional[float] = None,
                                         slot: Optional[str] = None,
                                         status: Optional[str] = None,
                                         type: Optional[str] = None,
                                         username: Optional[str] = None)
    func NewObjectExtendercontrollerDataplan(ctx *Context, name string, args *ObjectExtendercontrollerDataplanArgs, opts ...ResourceOption) (*ObjectExtendercontrollerDataplan, error)
    public ObjectExtendercontrollerDataplan(string name, ObjectExtendercontrollerDataplanArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectExtendercontrollerDataplan(String name, ObjectExtendercontrollerDataplanArgs args)
    public ObjectExtendercontrollerDataplan(String name, ObjectExtendercontrollerDataplanArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectExtendercontrollerDataplan
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ObjectExtendercontrollerDataplanArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ObjectExtendercontrollerDataplanArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ObjectExtendercontrollerDataplanArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectExtendercontrollerDataplanArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectExtendercontrollerDataplanArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var objectExtendercontrollerDataplanResource = new Fortimanager.ObjectExtendercontrollerDataplan("objectExtendercontrollerDataplanResource", new()
    {
        Adom = "string",
        Apn = "string",
        AuthType = "string",
        BillingDate = 0,
        Capacity = 0,
        Carrier = "string",
        Iccid = "string",
        ModemId = "string",
        MonthlyFee = 0,
        Name = "string",
        ObjectExtendercontrollerDataplanId = "string",
        Overage = "string",
        Passwords = new[]
        {
            "string",
        },
        Pdn = "string",
        PreferredSubnet = 0,
        PrivateNetwork = "string",
        Scopetype = "string",
        SignalPeriod = 0,
        SignalThreshold = 0,
        Slot = "string",
        Status = "string",
        Type = "string",
        Username = "string",
    });
    
    example, err := fortimanager.NewObjectExtendercontrollerDataplan(ctx, "objectExtendercontrollerDataplanResource", &fortimanager.ObjectExtendercontrollerDataplanArgs{
    Adom: pulumi.String("string"),
    Apn: pulumi.String("string"),
    AuthType: pulumi.String("string"),
    BillingDate: pulumi.Float64(0),
    Capacity: pulumi.Float64(0),
    Carrier: pulumi.String("string"),
    Iccid: pulumi.String("string"),
    ModemId: pulumi.String("string"),
    MonthlyFee: pulumi.Float64(0),
    Name: pulumi.String("string"),
    ObjectExtendercontrollerDataplanId: pulumi.String("string"),
    Overage: pulumi.String("string"),
    Passwords: pulumi.StringArray{
    pulumi.String("string"),
    },
    Pdn: pulumi.String("string"),
    PreferredSubnet: pulumi.Float64(0),
    PrivateNetwork: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SignalPeriod: pulumi.Float64(0),
    SignalThreshold: pulumi.Float64(0),
    Slot: pulumi.String("string"),
    Status: pulumi.String("string"),
    Type: pulumi.String("string"),
    Username: pulumi.String("string"),
    })
    
    var objectExtendercontrollerDataplanResource = new ObjectExtendercontrollerDataplan("objectExtendercontrollerDataplanResource", ObjectExtendercontrollerDataplanArgs.builder()
        .adom("string")
        .apn("string")
        .authType("string")
        .billingDate(0)
        .capacity(0)
        .carrier("string")
        .iccid("string")
        .modemId("string")
        .monthlyFee(0)
        .name("string")
        .objectExtendercontrollerDataplanId("string")
        .overage("string")
        .passwords("string")
        .pdn("string")
        .preferredSubnet(0)
        .privateNetwork("string")
        .scopetype("string")
        .signalPeriod(0)
        .signalThreshold(0)
        .slot("string")
        .status("string")
        .type("string")
        .username("string")
        .build());
    
    object_extendercontroller_dataplan_resource = fortimanager.ObjectExtendercontrollerDataplan("objectExtendercontrollerDataplanResource",
        adom="string",
        apn="string",
        auth_type="string",
        billing_date=0,
        capacity=0,
        carrier="string",
        iccid="string",
        modem_id="string",
        monthly_fee=0,
        name="string",
        object_extendercontroller_dataplan_id="string",
        overage="string",
        passwords=["string"],
        pdn="string",
        preferred_subnet=0,
        private_network="string",
        scopetype="string",
        signal_period=0,
        signal_threshold=0,
        slot="string",
        status="string",
        type="string",
        username="string")
    
    const objectExtendercontrollerDataplanResource = new fortimanager.ObjectExtendercontrollerDataplan("objectExtendercontrollerDataplanResource", {
        adom: "string",
        apn: "string",
        authType: "string",
        billingDate: 0,
        capacity: 0,
        carrier: "string",
        iccid: "string",
        modemId: "string",
        monthlyFee: 0,
        name: "string",
        objectExtendercontrollerDataplanId: "string",
        overage: "string",
        passwords: ["string"],
        pdn: "string",
        preferredSubnet: 0,
        privateNetwork: "string",
        scopetype: "string",
        signalPeriod: 0,
        signalThreshold: 0,
        slot: "string",
        status: "string",
        type: "string",
        username: "string",
    });
    
    type: fortimanager:ObjectExtendercontrollerDataplan
    properties:
        adom: string
        apn: string
        authType: string
        billingDate: 0
        capacity: 0
        carrier: string
        iccid: string
        modemId: string
        monthlyFee: 0
        name: string
        objectExtendercontrollerDataplanId: string
        overage: string
        passwords:
            - string
        pdn: string
        preferredSubnet: 0
        privateNetwork: string
        scopetype: string
        signalPeriod: 0
        signalThreshold: 0
        slot: string
        status: string
        type: string
        username: string
    

    ObjectExtendercontrollerDataplan Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ObjectExtendercontrollerDataplan resource accepts the following input properties:

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Apn string
    APN configuration.
    AuthType string
    Authentication type. Valid values: none, pap, chap.
    BillingDate double
    Billing day of the month (1 - 31).
    Capacity double
    Capacity in MB (0 - 102400000).
    Carrier string
    Carrier configuration.
    Iccid string
    ICCID configuration.
    ModemId string
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    MonthlyFee double
    Monthly fee of dataplan (0 - 100000, in local currency).
    Name string
    FortiExtender dataplan name
    ObjectExtendercontrollerDataplanId string
    an identifier for the resource with format {{name}}.
    Overage string
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    Passwords List<string>
    Password.
    Pdn string
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    PreferredSubnet double
    Preferred subnet mask (8 - 32).
    PrivateNetwork string
    Enable/disable dataplan private network support. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SignalPeriod double
    Signal period (600 to 18000 seconds).
    SignalThreshold double
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    Slot string
    SIM slot configuration. Valid values: sim1, sim2.
    Status string
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    Type string
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    Username string
    Username.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Apn string
    APN configuration.
    AuthType string
    Authentication type. Valid values: none, pap, chap.
    BillingDate float64
    Billing day of the month (1 - 31).
    Capacity float64
    Capacity in MB (0 - 102400000).
    Carrier string
    Carrier configuration.
    Iccid string
    ICCID configuration.
    ModemId string
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    MonthlyFee float64
    Monthly fee of dataplan (0 - 100000, in local currency).
    Name string
    FortiExtender dataplan name
    ObjectExtendercontrollerDataplanId string
    an identifier for the resource with format {{name}}.
    Overage string
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    Passwords []string
    Password.
    Pdn string
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    PreferredSubnet float64
    Preferred subnet mask (8 - 32).
    PrivateNetwork string
    Enable/disable dataplan private network support. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SignalPeriod float64
    Signal period (600 to 18000 seconds).
    SignalThreshold float64
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    Slot string
    SIM slot configuration. Valid values: sim1, sim2.
    Status string
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    Type string
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    Username string
    Username.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apn String
    APN configuration.
    authType String
    Authentication type. Valid values: none, pap, chap.
    billingDate Double
    Billing day of the month (1 - 31).
    capacity Double
    Capacity in MB (0 - 102400000).
    carrier String
    Carrier configuration.
    iccid String
    ICCID configuration.
    modemId String
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    monthlyFee Double
    Monthly fee of dataplan (0 - 100000, in local currency).
    name String
    FortiExtender dataplan name
    objectExtendercontrollerDataplanId String
    an identifier for the resource with format {{name}}.
    overage String
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    passwords List<String>
    Password.
    pdn String
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    preferredSubnet Double
    Preferred subnet mask (8 - 32).
    privateNetwork String
    Enable/disable dataplan private network support. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signalPeriod Double
    Signal period (600 to 18000 seconds).
    signalThreshold Double
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    slot String
    SIM slot configuration. Valid values: sim1, sim2.
    status String
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    type String
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    username String
    Username.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apn string
    APN configuration.
    authType string
    Authentication type. Valid values: none, pap, chap.
    billingDate number
    Billing day of the month (1 - 31).
    capacity number
    Capacity in MB (0 - 102400000).
    carrier string
    Carrier configuration.
    iccid string
    ICCID configuration.
    modemId string
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    monthlyFee number
    Monthly fee of dataplan (0 - 100000, in local currency).
    name string
    FortiExtender dataplan name
    objectExtendercontrollerDataplanId string
    an identifier for the resource with format {{name}}.
    overage string
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    passwords string[]
    Password.
    pdn string
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    preferredSubnet number
    Preferred subnet mask (8 - 32).
    privateNetwork string
    Enable/disable dataplan private network support. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signalPeriod number
    Signal period (600 to 18000 seconds).
    signalThreshold number
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    slot string
    SIM slot configuration. Valid values: sim1, sim2.
    status string
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    type string
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    username string
    Username.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apn str
    APN configuration.
    auth_type str
    Authentication type. Valid values: none, pap, chap.
    billing_date float
    Billing day of the month (1 - 31).
    capacity float
    Capacity in MB (0 - 102400000).
    carrier str
    Carrier configuration.
    iccid str
    ICCID configuration.
    modem_id str
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    monthly_fee float
    Monthly fee of dataplan (0 - 100000, in local currency).
    name str
    FortiExtender dataplan name
    object_extendercontroller_dataplan_id str
    an identifier for the resource with format {{name}}.
    overage str
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    passwords Sequence[str]
    Password.
    pdn str
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    preferred_subnet float
    Preferred subnet mask (8 - 32).
    private_network str
    Enable/disable dataplan private network support. Valid values: disable, enable.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal_period float
    Signal period (600 to 18000 seconds).
    signal_threshold float
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    slot str
    SIM slot configuration. Valid values: sim1, sim2.
    status str
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    type str
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    username str
    Username.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apn String
    APN configuration.
    authType String
    Authentication type. Valid values: none, pap, chap.
    billingDate Number
    Billing day of the month (1 - 31).
    capacity Number
    Capacity in MB (0 - 102400000).
    carrier String
    Carrier configuration.
    iccid String
    ICCID configuration.
    modemId String
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    monthlyFee Number
    Monthly fee of dataplan (0 - 100000, in local currency).
    name String
    FortiExtender dataplan name
    objectExtendercontrollerDataplanId String
    an identifier for the resource with format {{name}}.
    overage String
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    passwords List<String>
    Password.
    pdn String
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    preferredSubnet Number
    Preferred subnet mask (8 - 32).
    privateNetwork String
    Enable/disable dataplan private network support. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signalPeriod Number
    Signal period (600 to 18000 seconds).
    signalThreshold Number
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    slot String
    SIM slot configuration. Valid values: sim1, sim2.
    status String
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    type String
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    username String
    Username.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectExtendercontrollerDataplan resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ObjectExtendercontrollerDataplan Resource

    Get an existing ObjectExtendercontrollerDataplan resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ObjectExtendercontrollerDataplanState, opts?: CustomResourceOptions): ObjectExtendercontrollerDataplan
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            apn: Optional[str] = None,
            auth_type: Optional[str] = None,
            billing_date: Optional[float] = None,
            capacity: Optional[float] = None,
            carrier: Optional[str] = None,
            iccid: Optional[str] = None,
            modem_id: Optional[str] = None,
            monthly_fee: Optional[float] = None,
            name: Optional[str] = None,
            object_extendercontroller_dataplan_id: Optional[str] = None,
            overage: Optional[str] = None,
            passwords: Optional[Sequence[str]] = None,
            pdn: Optional[str] = None,
            preferred_subnet: Optional[float] = None,
            private_network: Optional[str] = None,
            scopetype: Optional[str] = None,
            signal_period: Optional[float] = None,
            signal_threshold: Optional[float] = None,
            slot: Optional[str] = None,
            status: Optional[str] = None,
            type: Optional[str] = None,
            username: Optional[str] = None) -> ObjectExtendercontrollerDataplan
    func GetObjectExtendercontrollerDataplan(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerDataplanState, opts ...ResourceOption) (*ObjectExtendercontrollerDataplan, error)
    public static ObjectExtendercontrollerDataplan Get(string name, Input<string> id, ObjectExtendercontrollerDataplanState? state, CustomResourceOptions? opts = null)
    public static ObjectExtendercontrollerDataplan get(String name, Output<String> id, ObjectExtendercontrollerDataplanState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectExtendercontrollerDataplan    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Apn string
    APN configuration.
    AuthType string
    Authentication type. Valid values: none, pap, chap.
    BillingDate double
    Billing day of the month (1 - 31).
    Capacity double
    Capacity in MB (0 - 102400000).
    Carrier string
    Carrier configuration.
    Iccid string
    ICCID configuration.
    ModemId string
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    MonthlyFee double
    Monthly fee of dataplan (0 - 100000, in local currency).
    Name string
    FortiExtender dataplan name
    ObjectExtendercontrollerDataplanId string
    an identifier for the resource with format {{name}}.
    Overage string
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    Passwords List<string>
    Password.
    Pdn string
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    PreferredSubnet double
    Preferred subnet mask (8 - 32).
    PrivateNetwork string
    Enable/disable dataplan private network support. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SignalPeriod double
    Signal period (600 to 18000 seconds).
    SignalThreshold double
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    Slot string
    SIM slot configuration. Valid values: sim1, sim2.
    Status string
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    Type string
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    Username string
    Username.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Apn string
    APN configuration.
    AuthType string
    Authentication type. Valid values: none, pap, chap.
    BillingDate float64
    Billing day of the month (1 - 31).
    Capacity float64
    Capacity in MB (0 - 102400000).
    Carrier string
    Carrier configuration.
    Iccid string
    ICCID configuration.
    ModemId string
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    MonthlyFee float64
    Monthly fee of dataplan (0 - 100000, in local currency).
    Name string
    FortiExtender dataplan name
    ObjectExtendercontrollerDataplanId string
    an identifier for the resource with format {{name}}.
    Overage string
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    Passwords []string
    Password.
    Pdn string
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    PreferredSubnet float64
    Preferred subnet mask (8 - 32).
    PrivateNetwork string
    Enable/disable dataplan private network support. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SignalPeriod float64
    Signal period (600 to 18000 seconds).
    SignalThreshold float64
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    Slot string
    SIM slot configuration. Valid values: sim1, sim2.
    Status string
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    Type string
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    Username string
    Username.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apn String
    APN configuration.
    authType String
    Authentication type. Valid values: none, pap, chap.
    billingDate Double
    Billing day of the month (1 - 31).
    capacity Double
    Capacity in MB (0 - 102400000).
    carrier String
    Carrier configuration.
    iccid String
    ICCID configuration.
    modemId String
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    monthlyFee Double
    Monthly fee of dataplan (0 - 100000, in local currency).
    name String
    FortiExtender dataplan name
    objectExtendercontrollerDataplanId String
    an identifier for the resource with format {{name}}.
    overage String
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    passwords List<String>
    Password.
    pdn String
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    preferredSubnet Double
    Preferred subnet mask (8 - 32).
    privateNetwork String
    Enable/disable dataplan private network support. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signalPeriod Double
    Signal period (600 to 18000 seconds).
    signalThreshold Double
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    slot String
    SIM slot configuration. Valid values: sim1, sim2.
    status String
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    type String
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    username String
    Username.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apn string
    APN configuration.
    authType string
    Authentication type. Valid values: none, pap, chap.
    billingDate number
    Billing day of the month (1 - 31).
    capacity number
    Capacity in MB (0 - 102400000).
    carrier string
    Carrier configuration.
    iccid string
    ICCID configuration.
    modemId string
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    monthlyFee number
    Monthly fee of dataplan (0 - 100000, in local currency).
    name string
    FortiExtender dataplan name
    objectExtendercontrollerDataplanId string
    an identifier for the resource with format {{name}}.
    overage string
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    passwords string[]
    Password.
    pdn string
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    preferredSubnet number
    Preferred subnet mask (8 - 32).
    privateNetwork string
    Enable/disable dataplan private network support. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signalPeriod number
    Signal period (600 to 18000 seconds).
    signalThreshold number
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    slot string
    SIM slot configuration. Valid values: sim1, sim2.
    status string
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    type string
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    username string
    Username.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apn str
    APN configuration.
    auth_type str
    Authentication type. Valid values: none, pap, chap.
    billing_date float
    Billing day of the month (1 - 31).
    capacity float
    Capacity in MB (0 - 102400000).
    carrier str
    Carrier configuration.
    iccid str
    ICCID configuration.
    modem_id str
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    monthly_fee float
    Monthly fee of dataplan (0 - 100000, in local currency).
    name str
    FortiExtender dataplan name
    object_extendercontroller_dataplan_id str
    an identifier for the resource with format {{name}}.
    overage str
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    passwords Sequence[str]
    Password.
    pdn str
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    preferred_subnet float
    Preferred subnet mask (8 - 32).
    private_network str
    Enable/disable dataplan private network support. Valid values: disable, enable.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signal_period float
    Signal period (600 to 18000 seconds).
    signal_threshold float
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    slot str
    SIM slot configuration. Valid values: sim1, sim2.
    status str
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    type str
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    username str
    Username.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apn String
    APN configuration.
    authType String
    Authentication type. Valid values: none, pap, chap.
    billingDate Number
    Billing day of the month (1 - 31).
    capacity Number
    Capacity in MB (0 - 102400000).
    carrier String
    Carrier configuration.
    iccid String
    ICCID configuration.
    modemId String
    Dataplan's modem specifics, if any. Valid values: all, modem1, modem2.
    monthlyFee Number
    Monthly fee of dataplan (0 - 100000, in local currency).
    name String
    FortiExtender dataplan name
    objectExtendercontrollerDataplanId String
    an identifier for the resource with format {{name}}.
    overage String
    Enable/disable dataplan overage detection. Valid values: disable, enable.
    passwords List<String>
    Password.
    pdn String
    PDN type. Valid values: ipv4-only, ipv6-only, ipv4-ipv6.
    preferredSubnet Number
    Preferred subnet mask (8 - 32).
    privateNetwork String
    Enable/disable dataplan private network support. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    signalPeriod Number
    Signal period (600 to 18000 seconds).
    signalThreshold Number
    Signal threshold. Specify the range between 50 - 100, where 50/100 means -50/-100 dBm.
    slot String
    SIM slot configuration. Valid values: sim1, sim2.
    status String
    FortiExtender dataplan (enable or disable). Valid values: disable, enable.
    type String
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    username String
    Username.

    Import

    ObjectExtenderController Dataplan can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectExtendercontrollerDataplan:ObjectExtendercontrollerDataplan labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev