1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectExtendercontrollerExtenderprofile
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectExtendercontrollerExtenderprofile

Explore with Pulumi AI

FortiExtender extender profile configuration.

The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

  • cellular: fortimanager.ObjectExtendercontrollerExtenderprofileCellular
  • lan_extension: fortimanager.ObjectExtendercontrollerExtenderprofileLanextension

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.ObjectExtendercontrollerExtenderprofile("trname", {allowaccesses: ["https"]});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.ObjectExtendercontrollerExtenderprofile("trname", allowaccesses=["https"])
Copy
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.NewObjectExtendercontrollerExtenderprofile(ctx, "trname", &fortimanager.ObjectExtendercontrollerExtenderprofileArgs{
			Allowaccesses: pulumi.StringArray{
				pulumi.String("https"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.ObjectExtendercontrollerExtenderprofile("trname", new()
    {
        Allowaccesses = new[]
        {
            "https",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofile;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileArgs;
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 ObjectExtendercontrollerExtenderprofile("trname", ObjectExtendercontrollerExtenderprofileArgs.builder()
            .allowaccesses("https")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectExtendercontrollerExtenderprofile
    properties:
      allowaccesses:
        - https
Copy

Create ObjectExtendercontrollerExtenderprofile Resource

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

Constructor syntax

new ObjectExtendercontrollerExtenderprofile(name: string, args?: ObjectExtendercontrollerExtenderprofileArgs, opts?: CustomResourceOptions);
@overload
def ObjectExtendercontrollerExtenderprofile(resource_name: str,
                                            args: Optional[ObjectExtendercontrollerExtenderprofileArgs] = None,
                                            opts: Optional[ResourceOptions] = None)

@overload
def ObjectExtendercontrollerExtenderprofile(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            adom: Optional[str] = None,
                                            allowaccesses: Optional[Sequence[str]] = None,
                                            bandwidth_limit: Optional[float] = None,
                                            cellular: Optional[ObjectExtendercontrollerExtenderprofileCellularArgs] = None,
                                            enforce_bandwidth: Optional[str] = None,
                                            extension: Optional[str] = None,
                                            fosid: Optional[float] = None,
                                            lan_extension: Optional[ObjectExtendercontrollerExtenderprofileLanExtensionArgs] = None,
                                            login_password_change: Optional[str] = None,
                                            login_passwords: Optional[Sequence[str]] = None,
                                            model: Optional[str] = None,
                                            name: Optional[str] = None,
                                            object_extendercontroller_extenderprofile_id: Optional[str] = None,
                                            scopetype: Optional[str] = None)
func NewObjectExtendercontrollerExtenderprofile(ctx *Context, name string, args *ObjectExtendercontrollerExtenderprofileArgs, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofile, error)
public ObjectExtendercontrollerExtenderprofile(string name, ObjectExtendercontrollerExtenderprofileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectExtendercontrollerExtenderprofile(String name, ObjectExtendercontrollerExtenderprofileArgs args)
public ObjectExtendercontrollerExtenderprofile(String name, ObjectExtendercontrollerExtenderprofileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectExtendercontrollerExtenderprofile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ObjectExtendercontrollerExtenderprofileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ObjectExtendercontrollerExtenderprofileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ObjectExtendercontrollerExtenderprofileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ObjectExtendercontrollerExtenderprofileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectExtendercontrollerExtenderprofileArgs
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 objectExtendercontrollerExtenderprofileResource = new Fortimanager.ObjectExtendercontrollerExtenderprofile("objectExtendercontrollerExtenderprofileResource", new()
{
    Adom = "string",
    Allowaccesses = new[]
    {
        "string",
    },
    BandwidthLimit = 0,
    Cellular = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularArgs
    {
        ControllerReport = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularControllerReportArgs
        {
            Interval = 0,
            SignalThreshold = 0,
            Status = "string",
        },
        Dataplan = "string",
        Modem1 = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularModem1Args
        {
            AutoSwitch = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularModem1AutoSwitchArgs
            {
                Dataplan = "string",
                Disconnect = "string",
                DisconnectPeriod = 0,
                DisconnectThreshold = 0,
                Signal = "string",
                SwitchBackTime = "string",
                SwitchBackTimer = 0,
                SwitchBacks = new[]
                {
                    "string",
                },
            },
            ConnStatus = 0,
            DefaultSim = "string",
            Gps = "string",
            ModemId = 0,
            PreferredCarrier = "string",
            RedundantIntf = "string",
            RedundantMode = "string",
            Sim1Pin = "string",
            Sim1PinCodes = new[]
            {
                "string",
            },
            Sim2Pin = "string",
            Sim2PinCodes = new[]
            {
                "string",
            },
        },
        Modem2 = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularModem2Args
        {
            AutoSwitch = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchArgs
            {
                Dataplan = "string",
                Disconnect = "string",
                DisconnectPeriod = 0,
                DisconnectThreshold = 0,
                Signal = "string",
                SwitchBackTime = "string",
                SwitchBackTimer = 0,
                SwitchBacks = new[]
                {
                    "string",
                },
            },
            ConnStatus = 0,
            DefaultSim = "string",
            Gps = "string",
            ModemId = 0,
            PreferredCarrier = "string",
            RedundantIntf = "string",
            RedundantMode = "string",
            Sim1Pin = "string",
            Sim1PinCodes = new[]
            {
                "string",
            },
            Sim2Pin = "string",
            Sim2PinCodes = new[]
            {
                "string",
            },
        },
        SmsNotification = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularSmsNotificationArgs
        {
            Alert = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlertArgs
            {
                DataExhausted = "string",
                FgtBackupModeSwitch = "string",
                LowSignalStrength = "string",
                ModeSwitch = "string",
                OsImageFallback = "string",
                SessionDisconnect = "string",
                SystemReboot = "string",
            },
            Receivers = new[]
            {
                new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiverArgs
                {
                    Alerts = new[]
                    {
                        "string",
                    },
                    Name = "string",
                    PhoneNumber = "string",
                    Status = "string",
                },
            },
            Status = "string",
        },
    },
    EnforceBandwidth = "string",
    Extension = "string",
    Fosid = 0,
    LanExtension = new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileLanExtensionArgs
    {
        BackhaulInterface = "string",
        BackhaulIp = "string",
        Backhauls = new[]
        {
            new Fortimanager.Inputs.ObjectExtendercontrollerExtenderprofileLanExtensionBackhaulArgs
            {
                Name = "string",
                Port = "string",
                Role = "string",
                Weight = 0,
            },
        },
        IpsecTunnel = "string",
        LinkLoadbalance = "string",
    },
    LoginPasswordChange = "string",
    LoginPasswords = new[]
    {
        "string",
    },
    Model = "string",
    Name = "string",
    ObjectExtendercontrollerExtenderprofileId = "string",
    Scopetype = "string",
});
Copy
example, err := fortimanager.NewObjectExtendercontrollerExtenderprofile(ctx, "objectExtendercontrollerExtenderprofileResource", &fortimanager.ObjectExtendercontrollerExtenderprofileArgs{
Adom: pulumi.String("string"),
Allowaccesses: pulumi.StringArray{
pulumi.String("string"),
},
BandwidthLimit: pulumi.Float64(0),
Cellular: &.ObjectExtendercontrollerExtenderprofileCellularTypeArgs{
ControllerReport: &.ObjectExtendercontrollerExtenderprofileCellularControllerReportTypeArgs{
Interval: pulumi.Float64(0),
SignalThreshold: pulumi.Float64(0),
Status: pulumi.String("string"),
},
Dataplan: pulumi.String("string"),
Modem1: &.ObjectExtendercontrollerExtenderprofileCellularModem1TypeArgs{
AutoSwitch: &.ObjectExtendercontrollerExtenderprofileCellularModem1AutoSwitchTypeArgs{
Dataplan: pulumi.String("string"),
Disconnect: pulumi.String("string"),
DisconnectPeriod: pulumi.Float64(0),
DisconnectThreshold: pulumi.Float64(0),
Signal: pulumi.String("string"),
SwitchBackTime: pulumi.String("string"),
SwitchBackTimer: pulumi.Float64(0),
SwitchBacks: pulumi.StringArray{
pulumi.String("string"),
},
},
ConnStatus: pulumi.Float64(0),
DefaultSim: pulumi.String("string"),
Gps: pulumi.String("string"),
ModemId: pulumi.Float64(0),
PreferredCarrier: pulumi.String("string"),
RedundantIntf: pulumi.String("string"),
RedundantMode: pulumi.String("string"),
Sim1Pin: pulumi.String("string"),
Sim1PinCodes: pulumi.StringArray{
pulumi.String("string"),
},
Sim2Pin: pulumi.String("string"),
Sim2PinCodes: pulumi.StringArray{
pulumi.String("string"),
},
},
Modem2: &.ObjectExtendercontrollerExtenderprofileCellularModem2TypeArgs{
AutoSwitch: &.ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchTypeArgs{
Dataplan: pulumi.String("string"),
Disconnect: pulumi.String("string"),
DisconnectPeriod: pulumi.Float64(0),
DisconnectThreshold: pulumi.Float64(0),
Signal: pulumi.String("string"),
SwitchBackTime: pulumi.String("string"),
SwitchBackTimer: pulumi.Float64(0),
SwitchBacks: pulumi.StringArray{
pulumi.String("string"),
},
},
ConnStatus: pulumi.Float64(0),
DefaultSim: pulumi.String("string"),
Gps: pulumi.String("string"),
ModemId: pulumi.Float64(0),
PreferredCarrier: pulumi.String("string"),
RedundantIntf: pulumi.String("string"),
RedundantMode: pulumi.String("string"),
Sim1Pin: pulumi.String("string"),
Sim1PinCodes: pulumi.StringArray{
pulumi.String("string"),
},
Sim2Pin: pulumi.String("string"),
Sim2PinCodes: pulumi.StringArray{
pulumi.String("string"),
},
},
SmsNotification: &.ObjectExtendercontrollerExtenderprofileCellularSmsNotificationTypeArgs{
Alert: &.ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlertTypeArgs{
DataExhausted: pulumi.String("string"),
FgtBackupModeSwitch: pulumi.String("string"),
LowSignalStrength: pulumi.String("string"),
ModeSwitch: pulumi.String("string"),
OsImageFallback: pulumi.String("string"),
SessionDisconnect: pulumi.String("string"),
SystemReboot: pulumi.String("string"),
},
Receivers: .ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiverTypeArray{
&.ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiverTypeArgs{
Alerts: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
PhoneNumber: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
Status: pulumi.String("string"),
},
},
EnforceBandwidth: pulumi.String("string"),
Extension: pulumi.String("string"),
Fosid: pulumi.Float64(0),
LanExtension: &.ObjectExtendercontrollerExtenderprofileLanExtensionTypeArgs{
BackhaulInterface: pulumi.String("string"),
BackhaulIp: pulumi.String("string"),
Backhauls: .ObjectExtendercontrollerExtenderprofileLanExtensionBackhaulTypeArray{
&.ObjectExtendercontrollerExtenderprofileLanExtensionBackhaulTypeArgs{
Name: pulumi.String("string"),
Port: pulumi.String("string"),
Role: pulumi.String("string"),
Weight: pulumi.Float64(0),
},
},
IpsecTunnel: pulumi.String("string"),
LinkLoadbalance: pulumi.String("string"),
},
LoginPasswordChange: pulumi.String("string"),
LoginPasswords: pulumi.StringArray{
pulumi.String("string"),
},
Model: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectExtendercontrollerExtenderprofileId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
Copy
var objectExtendercontrollerExtenderprofileResource = new ObjectExtendercontrollerExtenderprofile("objectExtendercontrollerExtenderprofileResource", ObjectExtendercontrollerExtenderprofileArgs.builder()
    .adom("string")
    .allowaccesses("string")
    .bandwidthLimit(0)
    .cellular(ObjectExtendercontrollerExtenderprofileCellularArgs.builder()
        .controllerReport(ObjectExtendercontrollerExtenderprofileCellularControllerReportArgs.builder()
            .interval(0)
            .signalThreshold(0)
            .status("string")
            .build())
        .dataplan("string")
        .modem1(ObjectExtendercontrollerExtenderprofileCellularModem1Args.builder()
            .autoSwitch(ObjectExtendercontrollerExtenderprofileCellularModem1AutoSwitchArgs.builder()
                .dataplan("string")
                .disconnect("string")
                .disconnectPeriod(0)
                .disconnectThreshold(0)
                .signal("string")
                .switchBackTime("string")
                .switchBackTimer(0)
                .switchBacks("string")
                .build())
            .connStatus(0)
            .defaultSim("string")
            .gps("string")
            .modemId(0)
            .preferredCarrier("string")
            .redundantIntf("string")
            .redundantMode("string")
            .sim1Pin("string")
            .sim1PinCodes("string")
            .sim2Pin("string")
            .sim2PinCodes("string")
            .build())
        .modem2(ObjectExtendercontrollerExtenderprofileCellularModem2Args.builder()
            .autoSwitch(ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchArgs.builder()
                .dataplan("string")
                .disconnect("string")
                .disconnectPeriod(0)
                .disconnectThreshold(0)
                .signal("string")
                .switchBackTime("string")
                .switchBackTimer(0)
                .switchBacks("string")
                .build())
            .connStatus(0)
            .defaultSim("string")
            .gps("string")
            .modemId(0)
            .preferredCarrier("string")
            .redundantIntf("string")
            .redundantMode("string")
            .sim1Pin("string")
            .sim1PinCodes("string")
            .sim2Pin("string")
            .sim2PinCodes("string")
            .build())
        .smsNotification(ObjectExtendercontrollerExtenderprofileCellularSmsNotificationArgs.builder()
            .alert(ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlertArgs.builder()
                .dataExhausted("string")
                .fgtBackupModeSwitch("string")
                .lowSignalStrength("string")
                .modeSwitch("string")
                .osImageFallback("string")
                .sessionDisconnect("string")
                .systemReboot("string")
                .build())
            .receivers(ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiverArgs.builder()
                .alerts("string")
                .name("string")
                .phoneNumber("string")
                .status("string")
                .build())
            .status("string")
            .build())
        .build())
    .enforceBandwidth("string")
    .extension("string")
    .fosid(0)
    .lanExtension(ObjectExtendercontrollerExtenderprofileLanExtensionArgs.builder()
        .backhaulInterface("string")
        .backhaulIp("string")
        .backhauls(ObjectExtendercontrollerExtenderprofileLanExtensionBackhaulArgs.builder()
            .name("string")
            .port("string")
            .role("string")
            .weight(0)
            .build())
        .ipsecTunnel("string")
        .linkLoadbalance("string")
        .build())
    .loginPasswordChange("string")
    .loginPasswords("string")
    .model("string")
    .name("string")
    .objectExtendercontrollerExtenderprofileId("string")
    .scopetype("string")
    .build());
Copy
object_extendercontroller_extenderprofile_resource = fortimanager.ObjectExtendercontrollerExtenderprofile("objectExtendercontrollerExtenderprofileResource",
    adom="string",
    allowaccesses=["string"],
    bandwidth_limit=0,
    cellular={
        "controller_report": {
            "interval": 0,
            "signal_threshold": 0,
            "status": "string",
        },
        "dataplan": "string",
        "modem1": {
            "auto_switch": {
                "dataplan": "string",
                "disconnect": "string",
                "disconnect_period": 0,
                "disconnect_threshold": 0,
                "signal": "string",
                "switch_back_time": "string",
                "switch_back_timer": 0,
                "switch_backs": ["string"],
            },
            "conn_status": 0,
            "default_sim": "string",
            "gps": "string",
            "modem_id": 0,
            "preferred_carrier": "string",
            "redundant_intf": "string",
            "redundant_mode": "string",
            "sim1_pin": "string",
            "sim1_pin_codes": ["string"],
            "sim2_pin": "string",
            "sim2_pin_codes": ["string"],
        },
        "modem2": {
            "auto_switch": {
                "dataplan": "string",
                "disconnect": "string",
                "disconnect_period": 0,
                "disconnect_threshold": 0,
                "signal": "string",
                "switch_back_time": "string",
                "switch_back_timer": 0,
                "switch_backs": ["string"],
            },
            "conn_status": 0,
            "default_sim": "string",
            "gps": "string",
            "modem_id": 0,
            "preferred_carrier": "string",
            "redundant_intf": "string",
            "redundant_mode": "string",
            "sim1_pin": "string",
            "sim1_pin_codes": ["string"],
            "sim2_pin": "string",
            "sim2_pin_codes": ["string"],
        },
        "sms_notification": {
            "alert": {
                "data_exhausted": "string",
                "fgt_backup_mode_switch": "string",
                "low_signal_strength": "string",
                "mode_switch": "string",
                "os_image_fallback": "string",
                "session_disconnect": "string",
                "system_reboot": "string",
            },
            "receivers": [{
                "alerts": ["string"],
                "name": "string",
                "phone_number": "string",
                "status": "string",
            }],
            "status": "string",
        },
    },
    enforce_bandwidth="string",
    extension="string",
    fosid=0,
    lan_extension={
        "backhaul_interface": "string",
        "backhaul_ip": "string",
        "backhauls": [{
            "name": "string",
            "port": "string",
            "role": "string",
            "weight": 0,
        }],
        "ipsec_tunnel": "string",
        "link_loadbalance": "string",
    },
    login_password_change="string",
    login_passwords=["string"],
    model="string",
    name="string",
    object_extendercontroller_extenderprofile_id="string",
    scopetype="string")
Copy
const objectExtendercontrollerExtenderprofileResource = new fortimanager.ObjectExtendercontrollerExtenderprofile("objectExtendercontrollerExtenderprofileResource", {
    adom: "string",
    allowaccesses: ["string"],
    bandwidthLimit: 0,
    cellular: {
        controllerReport: {
            interval: 0,
            signalThreshold: 0,
            status: "string",
        },
        dataplan: "string",
        modem1: {
            autoSwitch: {
                dataplan: "string",
                disconnect: "string",
                disconnectPeriod: 0,
                disconnectThreshold: 0,
                signal: "string",
                switchBackTime: "string",
                switchBackTimer: 0,
                switchBacks: ["string"],
            },
            connStatus: 0,
            defaultSim: "string",
            gps: "string",
            modemId: 0,
            preferredCarrier: "string",
            redundantIntf: "string",
            redundantMode: "string",
            sim1Pin: "string",
            sim1PinCodes: ["string"],
            sim2Pin: "string",
            sim2PinCodes: ["string"],
        },
        modem2: {
            autoSwitch: {
                dataplan: "string",
                disconnect: "string",
                disconnectPeriod: 0,
                disconnectThreshold: 0,
                signal: "string",
                switchBackTime: "string",
                switchBackTimer: 0,
                switchBacks: ["string"],
            },
            connStatus: 0,
            defaultSim: "string",
            gps: "string",
            modemId: 0,
            preferredCarrier: "string",
            redundantIntf: "string",
            redundantMode: "string",
            sim1Pin: "string",
            sim1PinCodes: ["string"],
            sim2Pin: "string",
            sim2PinCodes: ["string"],
        },
        smsNotification: {
            alert: {
                dataExhausted: "string",
                fgtBackupModeSwitch: "string",
                lowSignalStrength: "string",
                modeSwitch: "string",
                osImageFallback: "string",
                sessionDisconnect: "string",
                systemReboot: "string",
            },
            receivers: [{
                alerts: ["string"],
                name: "string",
                phoneNumber: "string",
                status: "string",
            }],
            status: "string",
        },
    },
    enforceBandwidth: "string",
    extension: "string",
    fosid: 0,
    lanExtension: {
        backhaulInterface: "string",
        backhaulIp: "string",
        backhauls: [{
            name: "string",
            port: "string",
            role: "string",
            weight: 0,
        }],
        ipsecTunnel: "string",
        linkLoadbalance: "string",
    },
    loginPasswordChange: "string",
    loginPasswords: ["string"],
    model: "string",
    name: "string",
    objectExtendercontrollerExtenderprofileId: "string",
    scopetype: "string",
});
Copy
type: fortimanager:ObjectExtendercontrollerExtenderprofile
properties:
    adom: string
    allowaccesses:
        - string
    bandwidthLimit: 0
    cellular:
        controllerReport:
            interval: 0
            signalThreshold: 0
            status: string
        dataplan: string
        modem1:
            autoSwitch:
                dataplan: string
                disconnect: string
                disconnectPeriod: 0
                disconnectThreshold: 0
                signal: string
                switchBackTime: string
                switchBackTimer: 0
                switchBacks:
                    - string
            connStatus: 0
            defaultSim: string
            gps: string
            modemId: 0
            preferredCarrier: string
            redundantIntf: string
            redundantMode: string
            sim1Pin: string
            sim1PinCodes:
                - string
            sim2Pin: string
            sim2PinCodes:
                - string
        modem2:
            autoSwitch:
                dataplan: string
                disconnect: string
                disconnectPeriod: 0
                disconnectThreshold: 0
                signal: string
                switchBackTime: string
                switchBackTimer: 0
                switchBacks:
                    - string
            connStatus: 0
            defaultSim: string
            gps: string
            modemId: 0
            preferredCarrier: string
            redundantIntf: string
            redundantMode: string
            sim1Pin: string
            sim1PinCodes:
                - string
            sim2Pin: string
            sim2PinCodes:
                - string
        smsNotification:
            alert:
                dataExhausted: string
                fgtBackupModeSwitch: string
                lowSignalStrength: string
                modeSwitch: string
                osImageFallback: string
                sessionDisconnect: string
                systemReboot: string
            receivers:
                - alerts:
                    - string
                  name: string
                  phoneNumber: string
                  status: string
            status: string
    enforceBandwidth: string
    extension: string
    fosid: 0
    lanExtension:
        backhaulInterface: string
        backhaulIp: string
        backhauls:
            - name: string
              port: string
              role: string
              weight: 0
        ipsecTunnel: string
        linkLoadbalance: string
    loginPasswordChange: string
    loginPasswords:
        - string
    model: string
    name: string
    objectExtendercontrollerExtenderprofileId: string
    scopetype: string
Copy

ObjectExtendercontrollerExtenderprofile 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 ObjectExtendercontrollerExtenderprofile 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.
Allowaccesses List<string>
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
BandwidthLimit double
FortiExtender LAN extension bandwidth limit (Mbps).
Cellular ObjectExtendercontrollerExtenderprofileCellular
Cellular. The structure of cellular block is documented below.
EnforceBandwidth string
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
Extension string
Extension option. Valid values: wan-extension, lan-extension.
Fosid double
Id.
LanExtension ObjectExtendercontrollerExtenderprofileLanExtension
Lan-Extension. The structure of lan_extension block is documented below.
LoginPasswordChange string
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
LoginPasswords List<string>
Set the managed extender's administrator password.
Model string
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
Name string
FortiExtender profile name
ObjectExtendercontrollerExtenderprofileId string
an identifier for the resource with format {{name}}.
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.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Allowaccesses []string
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
BandwidthLimit float64
FortiExtender LAN extension bandwidth limit (Mbps).
Cellular ObjectExtendercontrollerExtenderprofileCellularTypeArgs
Cellular. The structure of cellular block is documented below.
EnforceBandwidth string
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
Extension string
Extension option. Valid values: wan-extension, lan-extension.
Fosid float64
Id.
LanExtension ObjectExtendercontrollerExtenderprofileLanExtensionTypeArgs
Lan-Extension. The structure of lan_extension block is documented below.
LoginPasswordChange string
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
LoginPasswords []string
Set the managed extender's administrator password.
Model string
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
Name string
FortiExtender profile name
ObjectExtendercontrollerExtenderprofileId string
an identifier for the resource with format {{name}}.
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.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses List<String>
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
bandwidthLimit Double
FortiExtender LAN extension bandwidth limit (Mbps).
cellular ObjectExtendercontrollerExtenderprofileCellular
Cellular. The structure of cellular block is documented below.
enforceBandwidth String
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
extension String
Extension option. Valid values: wan-extension, lan-extension.
fosid Double
Id.
lanExtension ObjectExtendercontrollerExtenderprofileLanExtension
Lan-Extension. The structure of lan_extension block is documented below.
loginPasswordChange String
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswords List<String>
Set the managed extender's administrator password.
model String
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
name String
FortiExtender profile name
objectExtendercontrollerExtenderprofileId String
an identifier for the resource with format {{name}}.
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.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses string[]
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
bandwidthLimit number
FortiExtender LAN extension bandwidth limit (Mbps).
cellular ObjectExtendercontrollerExtenderprofileCellular
Cellular. The structure of cellular block is documented below.
enforceBandwidth string
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
extension string
Extension option. Valid values: wan-extension, lan-extension.
fosid number
Id.
lanExtension ObjectExtendercontrollerExtenderprofileLanExtension
Lan-Extension. The structure of lan_extension block is documented below.
loginPasswordChange string
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswords string[]
Set the managed extender's administrator password.
model string
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
name string
FortiExtender profile name
objectExtendercontrollerExtenderprofileId string
an identifier for the resource with format {{name}}.
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.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses Sequence[str]
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
bandwidth_limit float
FortiExtender LAN extension bandwidth limit (Mbps).
cellular ObjectExtendercontrollerExtenderprofileCellularArgs
Cellular. The structure of cellular block is documented below.
enforce_bandwidth str
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
extension str
Extension option. Valid values: wan-extension, lan-extension.
fosid float
Id.
lan_extension ObjectExtendercontrollerExtenderprofileLanExtensionArgs
Lan-Extension. The structure of lan_extension block is documented below.
login_password_change str
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
login_passwords Sequence[str]
Set the managed extender's administrator password.
model str
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
name str
FortiExtender profile name
object_extendercontroller_extenderprofile_id str
an identifier for the resource with format {{name}}.
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.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses List<String>
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
bandwidthLimit Number
FortiExtender LAN extension bandwidth limit (Mbps).
cellular Property Map
Cellular. The structure of cellular block is documented below.
enforceBandwidth String
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
extension String
Extension option. Valid values: wan-extension, lan-extension.
fosid Number
Id.
lanExtension Property Map
Lan-Extension. The structure of lan_extension block is documented below.
loginPasswordChange String
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswords List<String>
Set the managed extender's administrator password.
model String
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
name String
FortiExtender profile name
objectExtendercontrollerExtenderprofileId String
an identifier for the resource with format {{name}}.
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.

Outputs

All input properties are implicitly available as output properties. Additionally, the ObjectExtendercontrollerExtenderprofile 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 ObjectExtendercontrollerExtenderprofile Resource

Get an existing ObjectExtendercontrollerExtenderprofile 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?: ObjectExtendercontrollerExtenderprofileState, opts?: CustomResourceOptions): ObjectExtendercontrollerExtenderprofile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        allowaccesses: Optional[Sequence[str]] = None,
        bandwidth_limit: Optional[float] = None,
        cellular: Optional[ObjectExtendercontrollerExtenderprofileCellularArgs] = None,
        enforce_bandwidth: Optional[str] = None,
        extension: Optional[str] = None,
        fosid: Optional[float] = None,
        lan_extension: Optional[ObjectExtendercontrollerExtenderprofileLanExtensionArgs] = None,
        login_password_change: Optional[str] = None,
        login_passwords: Optional[Sequence[str]] = None,
        model: Optional[str] = None,
        name: Optional[str] = None,
        object_extendercontroller_extenderprofile_id: Optional[str] = None,
        scopetype: Optional[str] = None) -> ObjectExtendercontrollerExtenderprofile
func GetObjectExtendercontrollerExtenderprofile(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerExtenderprofileState, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofile, error)
public static ObjectExtendercontrollerExtenderprofile Get(string name, Input<string> id, ObjectExtendercontrollerExtenderprofileState? state, CustomResourceOptions? opts = null)
public static ObjectExtendercontrollerExtenderprofile get(String name, Output<String> id, ObjectExtendercontrollerExtenderprofileState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectExtendercontrollerExtenderprofile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
Allowaccesses List<string>
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
BandwidthLimit double
FortiExtender LAN extension bandwidth limit (Mbps).
Cellular ObjectExtendercontrollerExtenderprofileCellular
Cellular. The structure of cellular block is documented below.
EnforceBandwidth string
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
Extension string
Extension option. Valid values: wan-extension, lan-extension.
Fosid double
Id.
LanExtension ObjectExtendercontrollerExtenderprofileLanExtension
Lan-Extension. The structure of lan_extension block is documented below.
LoginPasswordChange string
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
LoginPasswords List<string>
Set the managed extender's administrator password.
Model string
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
Name string
FortiExtender profile name
ObjectExtendercontrollerExtenderprofileId string
an identifier for the resource with format {{name}}.
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.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Allowaccesses []string
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
BandwidthLimit float64
FortiExtender LAN extension bandwidth limit (Mbps).
Cellular ObjectExtendercontrollerExtenderprofileCellularTypeArgs
Cellular. The structure of cellular block is documented below.
EnforceBandwidth string
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
Extension string
Extension option. Valid values: wan-extension, lan-extension.
Fosid float64
Id.
LanExtension ObjectExtendercontrollerExtenderprofileLanExtensionTypeArgs
Lan-Extension. The structure of lan_extension block is documented below.
LoginPasswordChange string
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
LoginPasswords []string
Set the managed extender's administrator password.
Model string
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
Name string
FortiExtender profile name
ObjectExtendercontrollerExtenderprofileId string
an identifier for the resource with format {{name}}.
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.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses List<String>
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
bandwidthLimit Double
FortiExtender LAN extension bandwidth limit (Mbps).
cellular ObjectExtendercontrollerExtenderprofileCellular
Cellular. The structure of cellular block is documented below.
enforceBandwidth String
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
extension String
Extension option. Valid values: wan-extension, lan-extension.
fosid Double
Id.
lanExtension ObjectExtendercontrollerExtenderprofileLanExtension
Lan-Extension. The structure of lan_extension block is documented below.
loginPasswordChange String
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswords List<String>
Set the managed extender's administrator password.
model String
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
name String
FortiExtender profile name
objectExtendercontrollerExtenderprofileId String
an identifier for the resource with format {{name}}.
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.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses string[]
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
bandwidthLimit number
FortiExtender LAN extension bandwidth limit (Mbps).
cellular ObjectExtendercontrollerExtenderprofileCellular
Cellular. The structure of cellular block is documented below.
enforceBandwidth string
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
extension string
Extension option. Valid values: wan-extension, lan-extension.
fosid number
Id.
lanExtension ObjectExtendercontrollerExtenderprofileLanExtension
Lan-Extension. The structure of lan_extension block is documented below.
loginPasswordChange string
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswords string[]
Set the managed extender's administrator password.
model string
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
name string
FortiExtender profile name
objectExtendercontrollerExtenderprofileId string
an identifier for the resource with format {{name}}.
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.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses Sequence[str]
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
bandwidth_limit float
FortiExtender LAN extension bandwidth limit (Mbps).
cellular ObjectExtendercontrollerExtenderprofileCellularArgs
Cellular. The structure of cellular block is documented below.
enforce_bandwidth str
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
extension str
Extension option. Valid values: wan-extension, lan-extension.
fosid float
Id.
lan_extension ObjectExtendercontrollerExtenderprofileLanExtensionArgs
Lan-Extension. The structure of lan_extension block is documented below.
login_password_change str
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
login_passwords Sequence[str]
Set the managed extender's administrator password.
model str
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
name str
FortiExtender profile name
object_extendercontroller_extenderprofile_id str
an identifier for the resource with format {{name}}.
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.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses List<String>
Control management access to the managed extender. Separate entries with a space. Valid values: https, ping, ssh, snmp, http, telnet.
bandwidthLimit Number
FortiExtender LAN extension bandwidth limit (Mbps).
cellular Property Map
Cellular. The structure of cellular block is documented below.
enforceBandwidth String
Enable/disable enforcement of bandwidth on LAN extension interface. Valid values: disable, enable.
extension String
Extension option. Valid values: wan-extension, lan-extension.
fosid Number
Id.
lanExtension Property Map
Lan-Extension. The structure of lan_extension block is documented below.
loginPasswordChange String
Change or reset the administrator password of a managed extender (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswords List<String>
Set the managed extender's administrator password.
model String
Model. Valid values: FX201E, FX211E, FX200F, FXA11F, FXE11F, FXA21F, FXE21F, FXA22F, FXE22F, FX212F, FX311F, FX312F, FX511F, FVG21F, FVA21F, FVG22F, FVA22F, FX04DA.
name String
FortiExtender profile name
objectExtendercontrollerExtenderprofileId String
an identifier for the resource with format {{name}}.
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.

Supporting Types

ObjectExtendercontrollerExtenderprofileCellular
, ObjectExtendercontrollerExtenderprofileCellularArgs

ControllerReport ObjectExtendercontrollerExtenderprofileCellularControllerReport
Controller-Report. The structure of controller_report block is documented below.
Dataplan string
Dataplan names.
Modem1 ObjectExtendercontrollerExtenderprofileCellularModem1
Modem1. The structure of modem1 block is documented below.
Modem2 ObjectExtendercontrollerExtenderprofileCellularModem2
Modem2. The structure of modem2 block is documented below.
SmsNotification ObjectExtendercontrollerExtenderprofileCellularSmsNotification
Sms-Notification. The structure of sms_notification block is documented below.
ControllerReport ObjectExtendercontrollerExtenderprofileCellularControllerReportType
Controller-Report. The structure of controller_report block is documented below.
Dataplan string
Dataplan names.
Modem1 ObjectExtendercontrollerExtenderprofileCellularModem1Type
Modem1. The structure of modem1 block is documented below.
Modem2 ObjectExtendercontrollerExtenderprofileCellularModem2Type
Modem2. The structure of modem2 block is documented below.
SmsNotification ObjectExtendercontrollerExtenderprofileCellularSmsNotificationType
Sms-Notification. The structure of sms_notification block is documented below.
controllerReport ObjectExtendercontrollerExtenderprofileCellularControllerReport
Controller-Report. The structure of controller_report block is documented below.
dataplan String
Dataplan names.
modem1 ObjectExtendercontrollerExtenderprofileCellularModem1
Modem1. The structure of modem1 block is documented below.
modem2 ObjectExtendercontrollerExtenderprofileCellularModem2
Modem2. The structure of modem2 block is documented below.
smsNotification ObjectExtendercontrollerExtenderprofileCellularSmsNotification
Sms-Notification. The structure of sms_notification block is documented below.
controllerReport ObjectExtendercontrollerExtenderprofileCellularControllerReport
Controller-Report. The structure of controller_report block is documented below.
dataplan string
Dataplan names.
modem1 ObjectExtendercontrollerExtenderprofileCellularModem1
Modem1. The structure of modem1 block is documented below.
modem2 ObjectExtendercontrollerExtenderprofileCellularModem2
Modem2. The structure of modem2 block is documented below.
smsNotification ObjectExtendercontrollerExtenderprofileCellularSmsNotification
Sms-Notification. The structure of sms_notification block is documented below.
controller_report ObjectExtendercontrollerExtenderprofileCellularControllerReport
Controller-Report. The structure of controller_report block is documented below.
dataplan str
Dataplan names.
modem1 ObjectExtendercontrollerExtenderprofileCellularModem1
Modem1. The structure of modem1 block is documented below.
modem2 ObjectExtendercontrollerExtenderprofileCellularModem2
Modem2. The structure of modem2 block is documented below.
sms_notification ObjectExtendercontrollerExtenderprofileCellularSmsNotification
Sms-Notification. The structure of sms_notification block is documented below.
controllerReport Property Map
Controller-Report. The structure of controller_report block is documented below.
dataplan String
Dataplan names.
modem1 Property Map
Modem1. The structure of modem1 block is documented below.
modem2 Property Map
Modem2. The structure of modem2 block is documented below.
smsNotification Property Map
Sms-Notification. The structure of sms_notification block is documented below.

ObjectExtendercontrollerExtenderprofileCellularControllerReport
, ObjectExtendercontrollerExtenderprofileCellularControllerReportArgs

Interval double
Controller report interval.
SignalThreshold double
Controller report signal threshold.
Status string

FortiExtender controller report status. Valid values: disable, enable.

The modem1 block supports:

Interval float64
Controller report interval.
SignalThreshold float64
Controller report signal threshold.
Status string

FortiExtender controller report status. Valid values: disable, enable.

The modem1 block supports:

interval Double
Controller report interval.
signalThreshold Double
Controller report signal threshold.
status String

FortiExtender controller report status. Valid values: disable, enable.

The modem1 block supports:

interval number
Controller report interval.
signalThreshold number
Controller report signal threshold.
status string

FortiExtender controller report status. Valid values: disable, enable.

The modem1 block supports:

interval float
Controller report interval.
signal_threshold float
Controller report signal threshold.
status str

FortiExtender controller report status. Valid values: disable, enable.

The modem1 block supports:

interval Number
Controller report interval.
signalThreshold Number
Controller report signal threshold.
status String

FortiExtender controller report status. Valid values: disable, enable.

The modem1 block supports:

ObjectExtendercontrollerExtenderprofileCellularModem1
, ObjectExtendercontrollerExtenderprofileCellularModem1Args

autoSwitch Property Map
connStatus Number
defaultSim String
gps String
modemId Number
preferredCarrier String
redundantIntf String
redundantMode String
sim1Pin String
sim1PinCodes List<String>
sim2Pin String
sim2PinCodes List<String>

ObjectExtendercontrollerExtenderprofileCellularModem1AutoSwitch
, ObjectExtendercontrollerExtenderprofileCellularModem1AutoSwitchArgs

Dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
Disconnect string
Auto switch by disconnect. Valid values: disable, enable.
DisconnectPeriod double
Automatically switch based on disconnect period.
DisconnectThreshold double
Automatically switch based on disconnect threshold.
Signal string
Automatically switch based on signal strength. Valid values: disable, enable.
SwitchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
SwitchBackTimer double
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
SwitchBacks List<string>
Auto switch with switch back multi-options. Valid values: time, timer.
Dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
Disconnect string
Auto switch by disconnect. Valid values: disable, enable.
DisconnectPeriod float64
Automatically switch based on disconnect period.
DisconnectThreshold float64
Automatically switch based on disconnect threshold.
Signal string
Automatically switch based on signal strength. Valid values: disable, enable.
SwitchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
SwitchBackTimer float64
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
SwitchBacks []string
Auto switch with switch back multi-options. Valid values: time, timer.
dataplan String
Automatically switch based on data usage. Valid values: disable, enable.
disconnect String
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod Double
Automatically switch based on disconnect period.
disconnectThreshold Double
Automatically switch based on disconnect threshold.
signal String
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime String
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer Double
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks List<String>
Auto switch with switch back multi-options. Valid values: time, timer.
dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
disconnect string
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod number
Automatically switch based on disconnect period.
disconnectThreshold number
Automatically switch based on disconnect threshold.
signal string
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer number
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks string[]
Auto switch with switch back multi-options. Valid values: time, timer.
dataplan str
Automatically switch based on data usage. Valid values: disable, enable.
disconnect str
Auto switch by disconnect. Valid values: disable, enable.
disconnect_period float
Automatically switch based on disconnect period.
disconnect_threshold float
Automatically switch based on disconnect threshold.
signal str
Automatically switch based on signal strength. Valid values: disable, enable.
switch_back_time str
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switch_back_timer float
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switch_backs Sequence[str]
Auto switch with switch back multi-options. Valid values: time, timer.
dataplan String
Automatically switch based on data usage. Valid values: disable, enable.
disconnect String
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod Number
Automatically switch based on disconnect period.
disconnectThreshold Number
Automatically switch based on disconnect threshold.
signal String
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime String
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer Number
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks List<String>
Auto switch with switch back multi-options. Valid values: time, timer.

ObjectExtendercontrollerExtenderprofileCellularModem2
, ObjectExtendercontrollerExtenderprofileCellularModem2Args

autoSwitch Property Map
connStatus Number
defaultSim String
gps String
modemId Number
preferredCarrier String
redundantIntf String
redundantMode String
sim1Pin String
sim1PinCodes List<String>
sim2Pin String
sim2PinCodes List<String>

ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitch
, ObjectExtendercontrollerExtenderprofileCellularModem2AutoSwitchArgs

Dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
Disconnect string
Auto switch by disconnect. Valid values: disable, enable.
DisconnectPeriod double
Automatically switch based on disconnect period.
DisconnectThreshold double
Automatically switch based on disconnect threshold.
Signal string
Automatically switch based on signal strength. Valid values: disable, enable.
SwitchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
SwitchBackTimer double
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
SwitchBacks List<string>
Auto switch with switch back multi-options. Valid values: time, timer.
Dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
Disconnect string
Auto switch by disconnect. Valid values: disable, enable.
DisconnectPeriod float64
Automatically switch based on disconnect period.
DisconnectThreshold float64
Automatically switch based on disconnect threshold.
Signal string
Automatically switch based on signal strength. Valid values: disable, enable.
SwitchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
SwitchBackTimer float64
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
SwitchBacks []string
Auto switch with switch back multi-options. Valid values: time, timer.
dataplan String
Automatically switch based on data usage. Valid values: disable, enable.
disconnect String
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod Double
Automatically switch based on disconnect period.
disconnectThreshold Double
Automatically switch based on disconnect threshold.
signal String
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime String
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer Double
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks List<String>
Auto switch with switch back multi-options. Valid values: time, timer.
dataplan string
Automatically switch based on data usage. Valid values: disable, enable.
disconnect string
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod number
Automatically switch based on disconnect period.
disconnectThreshold number
Automatically switch based on disconnect threshold.
signal string
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime string
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer number
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks string[]
Auto switch with switch back multi-options. Valid values: time, timer.
dataplan str
Automatically switch based on data usage. Valid values: disable, enable.
disconnect str
Auto switch by disconnect. Valid values: disable, enable.
disconnect_period float
Automatically switch based on disconnect period.
disconnect_threshold float
Automatically switch based on disconnect threshold.
signal str
Automatically switch based on signal strength. Valid values: disable, enable.
switch_back_time str
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switch_back_timer float
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switch_backs Sequence[str]
Auto switch with switch back multi-options. Valid values: time, timer.
dataplan String
Automatically switch based on data usage. Valid values: disable, enable.
disconnect String
Auto switch by disconnect. Valid values: disable, enable.
disconnectPeriod Number
Automatically switch based on disconnect period.
disconnectThreshold Number
Automatically switch based on disconnect threshold.
signal String
Automatically switch based on signal strength. Valid values: disable, enable.
switchBackTime String
Automatically switch over to preferred SIM/carrier at a specified time in UTC (HH:MM).
switchBackTimer Number
Automatically switch over to preferred SIM/carrier after the given time (3600 - 2147483647 sec).
switchBacks List<String>
Auto switch with switch back multi-options. Valid values: time, timer.

ObjectExtendercontrollerExtenderprofileCellularSmsNotification
, ObjectExtendercontrollerExtenderprofileCellularSmsNotificationArgs

Alert ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlert
Alert. The structure of alert block is documented below.
Receivers List<ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiver>
Receiver. The structure of receiver block is documented below.
Status string
FortiExtender SMS notification status. Valid values: disable, enable.
Alert ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlertType
Alert. The structure of alert block is documented below.
Receivers []ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiverType
Receiver. The structure of receiver block is documented below.
Status string
FortiExtender SMS notification status. Valid values: disable, enable.
alert ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlert
Alert. The structure of alert block is documented below.
receivers List<ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiver>
Receiver. The structure of receiver block is documented below.
status String
FortiExtender SMS notification status. Valid values: disable, enable.
alert ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlert
Alert. The structure of alert block is documented below.
receivers ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiver[]
Receiver. The structure of receiver block is documented below.
status string
FortiExtender SMS notification status. Valid values: disable, enable.
alert ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlert
Alert. The structure of alert block is documented below.
receivers Sequence[ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiver]
Receiver. The structure of receiver block is documented below.
status str
FortiExtender SMS notification status. Valid values: disable, enable.
alert Property Map
Alert. The structure of alert block is documented below.
receivers List<Property Map>
Receiver. The structure of receiver block is documented below.
status String
FortiExtender SMS notification status. Valid values: disable, enable.

ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlert
, ObjectExtendercontrollerExtenderprofileCellularSmsNotificationAlertArgs

DataExhausted string
Display string when data exhausted.
FgtBackupModeSwitch string
Display string when FortiGate backup mode switched.
LowSignalStrength string
Display string when signal strength is low.
ModeSwitch string
Display string when mode is switched.
OsImageFallback string
Display string when falling back to a previous OS image.
SessionDisconnect string
Display string when session disconnected.
SystemReboot string
Display string when system rebooted.
DataExhausted string
Display string when data exhausted.
FgtBackupModeSwitch string
Display string when FortiGate backup mode switched.
LowSignalStrength string
Display string when signal strength is low.
ModeSwitch string
Display string when mode is switched.
OsImageFallback string
Display string when falling back to a previous OS image.
SessionDisconnect string
Display string when session disconnected.
SystemReboot string
Display string when system rebooted.
dataExhausted String
Display string when data exhausted.
fgtBackupModeSwitch String
Display string when FortiGate backup mode switched.
lowSignalStrength String
Display string when signal strength is low.
modeSwitch String
Display string when mode is switched.
osImageFallback String
Display string when falling back to a previous OS image.
sessionDisconnect String
Display string when session disconnected.
systemReboot String
Display string when system rebooted.
dataExhausted string
Display string when data exhausted.
fgtBackupModeSwitch string
Display string when FortiGate backup mode switched.
lowSignalStrength string
Display string when signal strength is low.
modeSwitch string
Display string when mode is switched.
osImageFallback string
Display string when falling back to a previous OS image.
sessionDisconnect string
Display string when session disconnected.
systemReboot string
Display string when system rebooted.
data_exhausted str
Display string when data exhausted.
fgt_backup_mode_switch str
Display string when FortiGate backup mode switched.
low_signal_strength str
Display string when signal strength is low.
mode_switch str
Display string when mode is switched.
os_image_fallback str
Display string when falling back to a previous OS image.
session_disconnect str
Display string when session disconnected.
system_reboot str
Display string when system rebooted.
dataExhausted String
Display string when data exhausted.
fgtBackupModeSwitch String
Display string when FortiGate backup mode switched.
lowSignalStrength String
Display string when signal strength is low.
modeSwitch String
Display string when mode is switched.
osImageFallback String
Display string when falling back to a previous OS image.
sessionDisconnect String
Display string when session disconnected.
systemReboot String
Display string when system rebooted.

ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiver
, ObjectExtendercontrollerExtenderprofileCellularSmsNotificationReceiverArgs

Alerts List<string>
Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
Name string
FortiExtender SMS notification receiver name.
PhoneNumber string
Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
Status string
SMS notification receiver status. Valid values: disable, enable.
Alerts []string
Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
Name string
FortiExtender SMS notification receiver name.
PhoneNumber string
Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
Status string
SMS notification receiver status. Valid values: disable, enable.
alerts List<String>
Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
name String
FortiExtender SMS notification receiver name.
phoneNumber String
Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
status String
SMS notification receiver status. Valid values: disable, enable.
alerts string[]
Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
name string
FortiExtender SMS notification receiver name.
phoneNumber string
Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
status string
SMS notification receiver status. Valid values: disable, enable.
alerts Sequence[str]
Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
name str
FortiExtender SMS notification receiver name.
phone_number str
Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
status str
SMS notification receiver status. Valid values: disable, enable.
alerts List<String>
Alert multi-options. Valid values: system-reboot, data-exhausted, session-disconnect, low-signal-strength, mode-switch, os-image-fallback, fgt-backup-mode-switch.
name String
FortiExtender SMS notification receiver name.
phoneNumber String
Receiver phone number. Format: [+][country code][area code][local phone number]. For example: +16501234567.
status String
SMS notification receiver status. Valid values: disable, enable.

ObjectExtendercontrollerExtenderprofileLanExtension
, ObjectExtendercontrollerExtenderprofileLanExtensionArgs

BackhaulInterface string
IPsec phase1 interface.
BackhaulIp string
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
Backhauls List<ObjectExtendercontrollerExtenderprofileLanExtensionBackhaul>
Backhaul. The structure of backhaul block is documented below.
IpsecTunnel string
IPsec tunnel name.
LinkLoadbalance string
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
BackhaulInterface string
IPsec phase1 interface.
BackhaulIp string
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
Backhauls []ObjectExtendercontrollerExtenderprofileLanExtensionBackhaulType
Backhaul. The structure of backhaul block is documented below.
IpsecTunnel string
IPsec tunnel name.
LinkLoadbalance string
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
backhaulInterface String
IPsec phase1 interface.
backhaulIp String
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
backhauls List<ObjectExtendercontrollerExtenderprofileLanExtensionBackhaul>
Backhaul. The structure of backhaul block is documented below.
ipsecTunnel String
IPsec tunnel name.
linkLoadbalance String
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
backhaulInterface string
IPsec phase1 interface.
backhaulIp string
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
backhauls ObjectExtendercontrollerExtenderprofileLanExtensionBackhaul[]
Backhaul. The structure of backhaul block is documented below.
ipsecTunnel string
IPsec tunnel name.
linkLoadbalance string
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
backhaul_interface str
IPsec phase1 interface.
backhaul_ip str
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
backhauls Sequence[ObjectExtendercontrollerExtenderprofileLanExtensionBackhaul]
Backhaul. The structure of backhaul block is documented below.
ipsec_tunnel str
IPsec tunnel name.
link_loadbalance str
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.
backhaulInterface String
IPsec phase1 interface.
backhaulIp String
IPsec phase1 IPv4/FQDN. Used to specify the external IP/FQDN when the FortiGate unit is behind a NAT device.
backhauls List<Property Map>
Backhaul. The structure of backhaul block is documented below.
ipsecTunnel String
IPsec tunnel name.
linkLoadbalance String
LAN extension link load balance strategy. Valid values: activebackup, loadbalance.

ObjectExtendercontrollerExtenderprofileLanExtensionBackhaul
, ObjectExtendercontrollerExtenderprofileLanExtensionBackhaulArgs

Name string
FortiExtender LAN extension backhaul name
Port string
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
Role string
FortiExtender uplink port. Valid values: primary, secondary.
Weight double
WRR weight parameter
Name string
FortiExtender LAN extension backhaul name
Port string
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
Role string
FortiExtender uplink port. Valid values: primary, secondary.
Weight float64
WRR weight parameter
name String
FortiExtender LAN extension backhaul name
port String
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
role String
FortiExtender uplink port. Valid values: primary, secondary.
weight Double
WRR weight parameter
name string
FortiExtender LAN extension backhaul name
port string
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
role string
FortiExtender uplink port. Valid values: primary, secondary.
weight number
WRR weight parameter
name str
FortiExtender LAN extension backhaul name
port str
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
role str
FortiExtender uplink port. Valid values: primary, secondary.
weight float
WRR weight parameter
name String
FortiExtender LAN extension backhaul name
port String
FortiExtender uplink port. Valid values: wan, lte1, lte2, port1, port2, port3, port4, port5, sfp.
role String
FortiExtender uplink port. Valid values: primary, secondary.
weight Number
WRR weight parameter

Import

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectExtendercontrollerExtenderprofile:ObjectExtendercontrollerExtenderprofile labelname {{name}}
Copy

$ 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.