fortimanager.ObjectExtensioncontrollerExtenderprofileWifiRadio2
Explore with Pulumi AI
Radio-2 config for Wi-Fi 5GHz
This resource is a sub resource for variable
radio_2
of resourcefortimanager.ObjectExtensioncontrollerExtenderprofileWifi
. Conflict and overwrite may occur if use both of them.
Create ObjectExtensioncontrollerExtenderprofileWifiRadio2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectExtensioncontrollerExtenderprofileWifiRadio2(name: string, args: ObjectExtensioncontrollerExtenderprofileWifiRadio2Args, opts?: CustomResourceOptions);
@overload
def ObjectExtensioncontrollerExtenderprofileWifiRadio2(resource_name: str,
args: ObjectExtensioncontrollerExtenderprofileWifiRadio2InitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectExtensioncontrollerExtenderprofileWifiRadio2(resource_name: str,
opts: Optional[ResourceOptions] = None,
extender_profile: Optional[str] = None,
lan_ext_vaps: Optional[Sequence[str]] = None,
radio_id: Optional[float] = None,
beacon_interval: Optional[float] = None,
bss_color: Optional[float] = None,
bss_color_mode: Optional[str] = None,
channels: Optional[Sequence[str]] = None,
band: Optional[str] = None,
local_vaps: Optional[Sequence[str]] = None,
status: Optional[str] = None,
bandwidth: Optional[str] = None,
extension_channel: Optional[str] = None,
max_clients: Optional[float] = None,
mode: Optional[str] = None,
n80211d: Optional[str] = None,
object_extensioncontroller_extenderprofile_wifi_radio2_id: Optional[str] = None,
operating_standard: Optional[str] = None,
power_level: Optional[float] = None,
adom: Optional[str] = None,
scopetype: Optional[str] = None,
guard_interval: Optional[str] = None)
func NewObjectExtensioncontrollerExtenderprofileWifiRadio2(ctx *Context, name string, args ObjectExtensioncontrollerExtenderprofileWifiRadio2Args, opts ...ResourceOption) (*ObjectExtensioncontrollerExtenderprofileWifiRadio2, error)
public ObjectExtensioncontrollerExtenderprofileWifiRadio2(string name, ObjectExtensioncontrollerExtenderprofileWifiRadio2Args args, CustomResourceOptions? opts = null)
public ObjectExtensioncontrollerExtenderprofileWifiRadio2(String name, ObjectExtensioncontrollerExtenderprofileWifiRadio2Args args)
public ObjectExtensioncontrollerExtenderprofileWifiRadio2(String name, ObjectExtensioncontrollerExtenderprofileWifiRadio2Args args, CustomResourceOptions options)
type: fortimanager:ObjectExtensioncontrollerExtenderprofileWifiRadio2
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 ObjectExtensioncontrollerExtenderprofileWifiRadio2Args
- 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 ObjectExtensioncontrollerExtenderprofileWifiRadio2InitArgs
- 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 ObjectExtensioncontrollerExtenderprofileWifiRadio2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectExtensioncontrollerExtenderprofileWifiRadio2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectExtensioncontrollerExtenderprofileWifiRadio2Args
- 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 objectExtensioncontrollerExtenderprofileWifiRadio2Resource = new Fortimanager.ObjectExtensioncontrollerExtenderprofileWifiRadio2("objectExtensioncontrollerExtenderprofileWifiRadio2Resource", new()
{
ExtenderProfile = "string",
LanExtVaps = new[]
{
"string",
},
RadioId = 0,
BeaconInterval = 0,
BssColor = 0,
BssColorMode = "string",
Channels = new[]
{
"string",
},
Band = "string",
LocalVaps = new[]
{
"string",
},
Status = "string",
Bandwidth = "string",
ExtensionChannel = "string",
MaxClients = 0,
Mode = "string",
N80211d = "string",
ObjectExtensioncontrollerExtenderprofileWifiRadio2Id = "string",
OperatingStandard = "string",
PowerLevel = 0,
Adom = "string",
Scopetype = "string",
GuardInterval = "string",
});
example, err := fortimanager.NewObjectExtensioncontrollerExtenderprofileWifiRadio2(ctx, "objectExtensioncontrollerExtenderprofileWifiRadio2Resource", &fortimanager.ObjectExtensioncontrollerExtenderprofileWifiRadio2Args{
ExtenderProfile: pulumi.String("string"),
LanExtVaps: pulumi.StringArray{
pulumi.String("string"),
},
RadioId: pulumi.Float64(0),
BeaconInterval: pulumi.Float64(0),
BssColor: pulumi.Float64(0),
BssColorMode: pulumi.String("string"),
Channels: pulumi.StringArray{
pulumi.String("string"),
},
Band: pulumi.String("string"),
LocalVaps: pulumi.StringArray{
pulumi.String("string"),
},
Status: pulumi.String("string"),
Bandwidth: pulumi.String("string"),
ExtensionChannel: pulumi.String("string"),
MaxClients: pulumi.Float64(0),
Mode: pulumi.String("string"),
N80211d: pulumi.String("string"),
ObjectExtensioncontrollerExtenderprofileWifiRadio2Id: pulumi.String("string"),
OperatingStandard: pulumi.String("string"),
PowerLevel: pulumi.Float64(0),
Adom: pulumi.String("string"),
Scopetype: pulumi.String("string"),
GuardInterval: pulumi.String("string"),
})
var objectExtensioncontrollerExtenderprofileWifiRadio2Resource = new ObjectExtensioncontrollerExtenderprofileWifiRadio2("objectExtensioncontrollerExtenderprofileWifiRadio2Resource", ObjectExtensioncontrollerExtenderprofileWifiRadio2Args.builder()
.extenderProfile("string")
.lanExtVaps("string")
.radioId(0)
.beaconInterval(0)
.bssColor(0)
.bssColorMode("string")
.channels("string")
.band("string")
.localVaps("string")
.status("string")
.bandwidth("string")
.extensionChannel("string")
.maxClients(0)
.mode("string")
.n80211d("string")
.objectExtensioncontrollerExtenderprofileWifiRadio2Id("string")
.operatingStandard("string")
.powerLevel(0)
.adom("string")
.scopetype("string")
.guardInterval("string")
.build());
object_extensioncontroller_extenderprofile_wifi_radio2_resource = fortimanager.ObjectExtensioncontrollerExtenderprofileWifiRadio2("objectExtensioncontrollerExtenderprofileWifiRadio2Resource",
extender_profile="string",
lan_ext_vaps=["string"],
radio_id=0,
beacon_interval=0,
bss_color=0,
bss_color_mode="string",
channels=["string"],
band="string",
local_vaps=["string"],
status="string",
bandwidth="string",
extension_channel="string",
max_clients=0,
mode="string",
n80211d="string",
object_extensioncontroller_extenderprofile_wifi_radio2_id="string",
operating_standard="string",
power_level=0,
adom="string",
scopetype="string",
guard_interval="string")
const objectExtensioncontrollerExtenderprofileWifiRadio2Resource = new fortimanager.ObjectExtensioncontrollerExtenderprofileWifiRadio2("objectExtensioncontrollerExtenderprofileWifiRadio2Resource", {
extenderProfile: "string",
lanExtVaps: ["string"],
radioId: 0,
beaconInterval: 0,
bssColor: 0,
bssColorMode: "string",
channels: ["string"],
band: "string",
localVaps: ["string"],
status: "string",
bandwidth: "string",
extensionChannel: "string",
maxClients: 0,
mode: "string",
n80211d: "string",
objectExtensioncontrollerExtenderprofileWifiRadio2Id: "string",
operatingStandard: "string",
powerLevel: 0,
adom: "string",
scopetype: "string",
guardInterval: "string",
});
type: fortimanager:ObjectExtensioncontrollerExtenderprofileWifiRadio2
properties:
adom: string
band: string
bandwidth: string
beaconInterval: 0
bssColor: 0
bssColorMode: string
channels:
- string
extenderProfile: string
extensionChannel: string
guardInterval: string
lanExtVaps:
- string
localVaps:
- string
maxClients: 0
mode: string
n80211d: string
objectExtensioncontrollerExtenderprofileWifiRadio2Id: string
operatingStandard: string
powerLevel: 0
radioId: 0
scopetype: string
status: string
ObjectExtensioncontrollerExtenderprofileWifiRadio2 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 ObjectExtensioncontrollerExtenderprofileWifiRadio2 resource accepts the following input properties:
- Extender
Profile string - Extender Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Band string
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - Bandwidth string
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - Beacon
Interval double - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- Bss
Color double - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- Bss
Color stringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - Channels List<string>
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - Extension
Channel string - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - Guard
Interval string - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - Lan
Ext List<string>Vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- Local
Vaps List<string> - Wi-Fi local VAP. Select up to three VAPs.
- Max
Clients double - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- Mode string
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - N80211d string
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - Object
Extensioncontroller stringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- Operating
Standard string - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - Power
Level double - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- Radio
Id double - Radio ID.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- Extender
Profile string - Extender Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Band string
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - Bandwidth string
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - Beacon
Interval float64 - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- Bss
Color float64 - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- Bss
Color stringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - Channels []string
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - Extension
Channel string - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - Guard
Interval string - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - Lan
Ext []stringVaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- Local
Vaps []string - Wi-Fi local VAP. Select up to three VAPs.
- Max
Clients float64 - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- Mode string
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - N80211d string
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - Object
Extensioncontroller stringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- Operating
Standard string - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - Power
Level float64 - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- Radio
Id float64 - Radio ID.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- extender
Profile String - Extender Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - band String
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - bandwidth String
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - beacon
Interval Double - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- bss
Color Double - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- bss
Color StringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - channels List<String>
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - extension
Channel String - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - guard
Interval String - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - lan
Ext List<String>Vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- local
Vaps List<String> - Wi-Fi local VAP. Select up to three VAPs.
- max
Clients Double - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- mode String
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - n80211d String
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - object
Extensioncontroller StringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- operating
Standard String - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - power
Level Double - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- radio
Id Double - Radio ID.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- extender
Profile string - Extender Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - band string
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - bandwidth string
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - beacon
Interval number - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- bss
Color number - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- bss
Color stringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - channels string[]
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - extension
Channel string - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - guard
Interval string - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - lan
Ext string[]Vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- local
Vaps string[] - Wi-Fi local VAP. Select up to three VAPs.
- max
Clients number - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- mode string
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - n80211d string
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - object
Extensioncontroller stringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- operating
Standard string - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - power
Level number - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- radio
Id number - Radio ID.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status string
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- extender_
profile str - Extender Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - band str
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - bandwidth str
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - beacon_
interval float - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- bss_
color float - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- bss_
color_ strmode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - channels Sequence[str]
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - extension_
channel str - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - guard_
interval str - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - lan_
ext_ Sequence[str]vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- local_
vaps Sequence[str] - Wi-Fi local VAP. Select up to three VAPs.
- max_
clients float - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- mode str
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - n80211d str
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - object_
extensioncontroller_ strextenderprofile_ wifi_ radio2_ id - an identifier for the resource.
- operating_
standard str - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - power_
level float - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- radio_
id float - Radio ID.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status str
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- extender
Profile String - Extender Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - band String
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - bandwidth String
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - beacon
Interval Number - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- bss
Color Number - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- bss
Color StringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - channels List<String>
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - extension
Channel String - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - guard
Interval String - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - lan
Ext List<String>Vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- local
Vaps List<String> - Wi-Fi local VAP. Select up to three VAPs.
- max
Clients Number - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- mode String
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - n80211d String
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - object
Extensioncontroller StringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- operating
Standard String - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - power
Level Number - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- radio
Id Number - Radio ID.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectExtensioncontrollerExtenderprofileWifiRadio2 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 ObjectExtensioncontrollerExtenderprofileWifiRadio2 Resource
Get an existing ObjectExtensioncontrollerExtenderprofileWifiRadio2 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?: ObjectExtensioncontrollerExtenderprofileWifiRadio2State, opts?: CustomResourceOptions): ObjectExtensioncontrollerExtenderprofileWifiRadio2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
band: Optional[str] = None,
bandwidth: Optional[str] = None,
beacon_interval: Optional[float] = None,
bss_color: Optional[float] = None,
bss_color_mode: Optional[str] = None,
channels: Optional[Sequence[str]] = None,
extender_profile: Optional[str] = None,
extension_channel: Optional[str] = None,
guard_interval: Optional[str] = None,
lan_ext_vaps: Optional[Sequence[str]] = None,
local_vaps: Optional[Sequence[str]] = None,
max_clients: Optional[float] = None,
mode: Optional[str] = None,
n80211d: Optional[str] = None,
object_extensioncontroller_extenderprofile_wifi_radio2_id: Optional[str] = None,
operating_standard: Optional[str] = None,
power_level: Optional[float] = None,
radio_id: Optional[float] = None,
scopetype: Optional[str] = None,
status: Optional[str] = None) -> ObjectExtensioncontrollerExtenderprofileWifiRadio2
func GetObjectExtensioncontrollerExtenderprofileWifiRadio2(ctx *Context, name string, id IDInput, state *ObjectExtensioncontrollerExtenderprofileWifiRadio2State, opts ...ResourceOption) (*ObjectExtensioncontrollerExtenderprofileWifiRadio2, error)
public static ObjectExtensioncontrollerExtenderprofileWifiRadio2 Get(string name, Input<string> id, ObjectExtensioncontrollerExtenderprofileWifiRadio2State? state, CustomResourceOptions? opts = null)
public static ObjectExtensioncontrollerExtenderprofileWifiRadio2 get(String name, Output<String> id, ObjectExtensioncontrollerExtenderprofileWifiRadio2State state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectExtensioncontrollerExtenderprofileWifiRadio2 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Band string
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - Bandwidth string
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - Beacon
Interval double - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- Bss
Color double - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- Bss
Color stringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - Channels List<string>
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - Extender
Profile string - Extender Profile.
- Extension
Channel string - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - Guard
Interval string - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - Lan
Ext List<string>Vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- Local
Vaps List<string> - Wi-Fi local VAP. Select up to three VAPs.
- Max
Clients double - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- Mode string
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - N80211d string
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - Object
Extensioncontroller stringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- Operating
Standard string - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - Power
Level double - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- Radio
Id double - Radio ID.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Band string
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - Bandwidth string
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - Beacon
Interval float64 - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- Bss
Color float64 - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- Bss
Color stringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - Channels []string
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - Extender
Profile string - Extender Profile.
- Extension
Channel string - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - Guard
Interval string - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - Lan
Ext []stringVaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- Local
Vaps []string - Wi-Fi local VAP. Select up to three VAPs.
- Max
Clients float64 - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- Mode string
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - N80211d string
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - Object
Extensioncontroller stringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- Operating
Standard string - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - Power
Level float64 - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- Radio
Id float64 - Radio ID.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - band String
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - bandwidth String
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - beacon
Interval Double - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- bss
Color Double - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- bss
Color StringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - channels List<String>
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - extender
Profile String - Extender Profile.
- extension
Channel String - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - guard
Interval String - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - lan
Ext List<String>Vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- local
Vaps List<String> - Wi-Fi local VAP. Select up to three VAPs.
- max
Clients Double - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- mode String
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - n80211d String
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - object
Extensioncontroller StringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- operating
Standard String - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - power
Level Double - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- radio
Id Double - Radio ID.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - band string
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - bandwidth string
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - beacon
Interval number - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- bss
Color number - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- bss
Color stringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - channels string[]
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - extender
Profile string - Extender Profile.
- extension
Channel string - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - guard
Interval string - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - lan
Ext string[]Vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- local
Vaps string[] - Wi-Fi local VAP. Select up to three VAPs.
- max
Clients number - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- mode string
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - n80211d string
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - object
Extensioncontroller stringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- operating
Standard string - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - power
Level number - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- radio
Id number - Radio ID.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status string
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - band str
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - bandwidth str
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - beacon_
interval float - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- bss_
color float - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- bss_
color_ strmode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - channels Sequence[str]
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - extender_
profile str - Extender Profile.
- extension_
channel str - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - guard_
interval str - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - lan_
ext_ Sequence[str]vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- local_
vaps Sequence[str] - Wi-Fi local VAP. Select up to three VAPs.
- max_
clients float - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- mode str
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - n80211d str
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - object_
extensioncontroller_ strextenderprofile_ wifi_ radio2_ id - an identifier for the resource.
- operating_
standard str - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - power_
level float - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- radio_
id float - Radio ID.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status str
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - band String
- Wi-Fi band selection 2.4GHz / 5GHz. Valid values:
5GHz
. - bandwidth String
- Wi-Fi channel bandwidth. Valid values:
auto
,20MHz
,40MHz
,80MHz
. - beacon
Interval Number - Wi-Fi beacon interval in miliseconds (100 - 3500, default = 100).
- bss
Color Number - Wi-Fi 802.11AX BSS color value (0 - 63, 0 = disable, default = 0).
- bss
Color StringMode - Wi-Fi 802.11AX BSS color mode. Valid values:
auto
,static
. - channels List<String>
- Wi-Fi channels. Valid values:
CH36
,CH40
,CH44
,CH48
,CH52
,CH56
,CH60
,CH64
,CH100
,CH104
,CH108
,CH112
,CH116
,CH120
,CH124
,CH128
,CH132
,CH136
,CH140
,CH144
,CH149
,CH153
,CH157
,CH161
,CH165
. - extender
Profile String - Extender Profile.
- extension
Channel String - Wi-Fi extension channel. Valid values:
auto
,higher
,lower
. - guard
Interval String - Wi-Fi guard interval. Valid values:
auto
,400ns
,800ns
. - lan
Ext List<String>Vaps - Wi-Fi LAN-Extention VAP. Select only one VAP.
- local
Vaps List<String> - Wi-Fi local VAP. Select up to three VAPs.
- max
Clients Number - Maximum number of Wi-Fi radio clients (0 - 512, 0 = unlimited, default = 0).
- mode String
- Wi-Fi radio mode AP(LAN mode) / Client(WAN mode). Valid values:
AP
,Client
. - n80211d String
- Enable/disable Wi-Fi 802.11d. Valid values:
disable
,enable
. - object
Extensioncontroller StringExtenderprofile Wifi Radio2Id - an identifier for the resource.
- operating
Standard String - Wi-Fi operating standard. Valid values:
auto
,11A-N-AC-AX
,11A-N-AC
,11A-N
,11A
,11N-AC-AX
,11AC-AX
,11AC
,11N-AC
,11B-G-N-AX
,11B-G-N
,11B-G
,11B
,11G-N-AX
,11N-AX
,11AX
,11G-N
,11N
,11G
. - power
Level Number - Wi-Fi power level in percent (0 - 100, 0 = auto, default = 100).
- radio
Id Number - Radio ID.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Enable/disable Wi-Fi radio. Valid values:
disable
,enable
.
Import
ObjectExtensionController ExtenderProfileWifiRadio2 can be imported using any of these accepted formats:
Set import_options = [“extender_profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectExtensioncontrollerExtenderprofileWifiRadio2:ObjectExtensioncontrollerExtenderprofileWifiRadio2 labelname ObjectExtensionControllerExtenderProfileWifiRadio2
$ 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.