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

fortimanager.ObjectExtensioncontrollerDataplan

Explore with Pulumi AI

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

    FortiExtender dataplan configuration.

    Create ObjectExtensioncontrollerDataplan Resource

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

    Constructor syntax

    new ObjectExtensioncontrollerDataplan(name: string, args?: ObjectExtensioncontrollerDataplanArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectExtensioncontrollerDataplan(resource_name: str,
                                          args: Optional[ObjectExtensioncontrollerDataplanArgs] = None,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectExtensioncontrollerDataplan(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_extensioncontroller_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,
                                          type: Optional[str] = None,
                                          username: Optional[str] = None)
    func NewObjectExtensioncontrollerDataplan(ctx *Context, name string, args *ObjectExtensioncontrollerDataplanArgs, opts ...ResourceOption) (*ObjectExtensioncontrollerDataplan, error)
    public ObjectExtensioncontrollerDataplan(string name, ObjectExtensioncontrollerDataplanArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectExtensioncontrollerDataplan(String name, ObjectExtensioncontrollerDataplanArgs args)
    public ObjectExtensioncontrollerDataplan(String name, ObjectExtensioncontrollerDataplanArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectExtensioncontrollerDataplan
    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 ObjectExtensioncontrollerDataplanArgs
    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 ObjectExtensioncontrollerDataplanArgs
    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 ObjectExtensioncontrollerDataplanArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectExtensioncontrollerDataplanArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectExtensioncontrollerDataplanArgs
    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 objectExtensioncontrollerDataplanResource = new Fortimanager.ObjectExtensioncontrollerDataplan("objectExtensioncontrollerDataplanResource", new()
    {
        Adom = "string",
        Apn = "string",
        AuthType = "string",
        BillingDate = 0,
        Capacity = 0,
        Carrier = "string",
        Iccid = "string",
        ModemId = "string",
        MonthlyFee = 0,
        Name = "string",
        ObjectExtensioncontrollerDataplanId = "string",
        Overage = "string",
        Passwords = new[]
        {
            "string",
        },
        Pdn = "string",
        PreferredSubnet = 0,
        PrivateNetwork = "string",
        Scopetype = "string",
        SignalPeriod = 0,
        SignalThreshold = 0,
        Slot = "string",
        Type = "string",
        Username = "string",
    });
    
    example, err := fortimanager.NewObjectExtensioncontrollerDataplan(ctx, "objectExtensioncontrollerDataplanResource", &fortimanager.ObjectExtensioncontrollerDataplanArgs{
    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"),
    ObjectExtensioncontrollerDataplanId: 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"),
    Type: pulumi.String("string"),
    Username: pulumi.String("string"),
    })
    
    var objectExtensioncontrollerDataplanResource = new ObjectExtensioncontrollerDataplan("objectExtensioncontrollerDataplanResource", ObjectExtensioncontrollerDataplanArgs.builder()
        .adom("string")
        .apn("string")
        .authType("string")
        .billingDate(0)
        .capacity(0)
        .carrier("string")
        .iccid("string")
        .modemId("string")
        .monthlyFee(0)
        .name("string")
        .objectExtensioncontrollerDataplanId("string")
        .overage("string")
        .passwords("string")
        .pdn("string")
        .preferredSubnet(0)
        .privateNetwork("string")
        .scopetype("string")
        .signalPeriod(0)
        .signalThreshold(0)
        .slot("string")
        .type("string")
        .username("string")
        .build());
    
    object_extensioncontroller_dataplan_resource = fortimanager.ObjectExtensioncontrollerDataplan("objectExtensioncontrollerDataplanResource",
        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_extensioncontroller_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",
        type="string",
        username="string")
    
    const objectExtensioncontrollerDataplanResource = new fortimanager.ObjectExtensioncontrollerDataplan("objectExtensioncontrollerDataplanResource", {
        adom: "string",
        apn: "string",
        authType: "string",
        billingDate: 0,
        capacity: 0,
        carrier: "string",
        iccid: "string",
        modemId: "string",
        monthlyFee: 0,
        name: "string",
        objectExtensioncontrollerDataplanId: "string",
        overage: "string",
        passwords: ["string"],
        pdn: "string",
        preferredSubnet: 0,
        privateNetwork: "string",
        scopetype: "string",
        signalPeriod: 0,
        signalThreshold: 0,
        slot: "string",
        type: "string",
        username: "string",
    });
    
    type: fortimanager:ObjectExtensioncontrollerDataplan
    properties:
        adom: string
        apn: string
        authType: string
        billingDate: 0
        capacity: 0
        carrier: string
        iccid: string
        modemId: string
        monthlyFee: 0
        name: string
        objectExtensioncontrollerDataplanId: string
        overage: string
        passwords:
            - string
        pdn: string
        preferredSubnet: 0
        privateNetwork: string
        scopetype: string
        signalPeriod: 0
        signalThreshold: 0
        slot: string
        type: string
        username: string
    

    ObjectExtensioncontrollerDataplan 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 ObjectExtensioncontrollerDataplan 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 data plan name.
    ObjectExtensioncontrollerDataplanId 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 (0 - 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.
    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 data plan name.
    ObjectExtensioncontrollerDataplanId 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 (0 - 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.
    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 data plan name.
    objectExtensioncontrollerDataplanId 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 (0 - 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.
    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 data plan name.
    objectExtensioncontrollerDataplanId 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 (0 - 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.
    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 data plan name.
    object_extensioncontroller_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 (0 - 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.
    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 data plan name.
    objectExtensioncontrollerDataplanId 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 (0 - 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.
    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 ObjectExtensioncontrollerDataplan 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 ObjectExtensioncontrollerDataplan Resource

    Get an existing ObjectExtensioncontrollerDataplan 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?: ObjectExtensioncontrollerDataplanState, opts?: CustomResourceOptions): ObjectExtensioncontrollerDataplan
    @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_extensioncontroller_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,
            type: Optional[str] = None,
            username: Optional[str] = None) -> ObjectExtensioncontrollerDataplan
    func GetObjectExtensioncontrollerDataplan(ctx *Context, name string, id IDInput, state *ObjectExtensioncontrollerDataplanState, opts ...ResourceOption) (*ObjectExtensioncontrollerDataplan, error)
    public static ObjectExtensioncontrollerDataplan Get(string name, Input<string> id, ObjectExtensioncontrollerDataplanState? state, CustomResourceOptions? opts = null)
    public static ObjectExtensioncontrollerDataplan get(String name, Output<String> id, ObjectExtensioncontrollerDataplanState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectExtensioncontrollerDataplan    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 data plan name.
    ObjectExtensioncontrollerDataplanId 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 (0 - 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.
    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 data plan name.
    ObjectExtensioncontrollerDataplanId 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 (0 - 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.
    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 data plan name.
    objectExtensioncontrollerDataplanId 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 (0 - 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.
    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 data plan name.
    objectExtensioncontrollerDataplanId 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 (0 - 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.
    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 data plan name.
    object_extensioncontroller_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 (0 - 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.
    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 data plan name.
    objectExtensioncontrollerDataplanId 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 (0 - 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.
    type String
    Type preferences configuration. Valid values: carrier, slot, iccid, generic.
    username String
    Username.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectExtensioncontrollerDataplan:ObjectExtensioncontrollerDataplan 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