fortimanager.ObjectWirelesscontrollerWtpprofileRadio1
Explore with Pulumi AI
Configuration options for radio 1.
This resource is a sub resource for variable
radio_1
of resourcefortimanager.ObjectWirelesscontrollerWtpprofile
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname7 = new fortimanager.ObjectWirelesscontrollerWtpprofile("trname7", {});
const trname = new fortimanager.ObjectWirelesscontrollerWtpprofileRadio1("trname", {
amsdu: "disable",
airtimeFairness: "enable",
apSnifferAddr: "00:1a:2b:3c:4d:5e",
wtpProfile: trname7.name,
}, {
dependsOn: [trname7],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname7 = fortimanager.ObjectWirelesscontrollerWtpprofile("trname7")
trname = fortimanager.ObjectWirelesscontrollerWtpprofileRadio1("trname",
amsdu="disable",
airtime_fairness="enable",
ap_sniffer_addr="00:1a:2b:3c:4d:5e",
wtp_profile=trname7.name,
opts = pulumi.ResourceOptions(depends_on=[trname7]))
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 {
trname7, err := fortimanager.NewObjectWirelesscontrollerWtpprofile(ctx, "trname7", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectWirelesscontrollerWtpprofileRadio1(ctx, "trname", &fortimanager.ObjectWirelesscontrollerWtpprofileRadio1Args{
Amsdu: pulumi.String("disable"),
AirtimeFairness: pulumi.String("enable"),
ApSnifferAddr: pulumi.String("00:1a:2b:3c:4d:5e"),
WtpProfile: trname7.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trname7,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname7 = new Fortimanager.ObjectWirelesscontrollerWtpprofile("trname7");
var trname = new Fortimanager.ObjectWirelesscontrollerWtpprofileRadio1("trname", new()
{
Amsdu = "disable",
AirtimeFairness = "enable",
ApSnifferAddr = "00:1a:2b:3c:4d:5e",
WtpProfile = trname7.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trname7,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofile;
import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofileRadio1;
import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofileRadio1Args;
import com.pulumi.resources.CustomResourceOptions;
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 trname7 = new ObjectWirelesscontrollerWtpprofile("trname7");
var trname = new ObjectWirelesscontrollerWtpprofileRadio1("trname", ObjectWirelesscontrollerWtpprofileRadio1Args.builder()
.amsdu("disable")
.airtimeFairness("enable")
.apSnifferAddr("00:1a:2b:3c:4d:5e")
.wtpProfile(trname7.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trname7)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWirelesscontrollerWtpprofileRadio1
properties:
amsdu: disable
airtimeFairness: enable
apSnifferAddr: 00:1a:2b:3c:4d:5e
wtpProfile: ${trname7.name}
options:
dependsOn:
- ${trname7}
trname7:
type: fortimanager:ObjectWirelesscontrollerWtpprofile
Create ObjectWirelesscontrollerWtpprofileRadio1 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerWtpprofileRadio1(name: string, args: ObjectWirelesscontrollerWtpprofileRadio1Args, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerWtpprofileRadio1(resource_name: str,
args: ObjectWirelesscontrollerWtpprofileRadio1InitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerWtpprofileRadio1(resource_name: str,
opts: Optional[ResourceOptions] = None,
wtp_profile: Optional[str] = None,
adom: Optional[str] = None,
airtime_fairness: Optional[str] = None,
amsdu: Optional[str] = None,
ap_handoff: Optional[str] = None,
ap_sniffer_addr: Optional[str] = None,
ap_sniffer_bufsize: Optional[float] = None,
ap_sniffer_chan: Optional[float] = None,
ap_sniffer_ctl: Optional[str] = None,
ap_sniffer_data: Optional[str] = None,
ap_sniffer_mgmt_beacon: Optional[str] = None,
ap_sniffer_mgmt_other: Optional[str] = None,
ap_sniffer_mgmt_probe: Optional[str] = None,
arrp_profile: Optional[str] = None,
auto_power_high: Optional[float] = None,
auto_power_level: Optional[str] = None,
auto_power_low: Optional[float] = None,
auto_power_target: Optional[str] = None,
band: Optional[str] = None,
band5g_type: Optional[str] = None,
bandwidth_admission_control: Optional[str] = None,
bandwidth_capacity: Optional[float] = None,
beacon_interval: Optional[float] = None,
bss_color: Optional[float] = None,
bss_color_mode: Optional[str] = None,
call_admission_control: Optional[str] = None,
call_capacity: Optional[float] = None,
channel_bonding: Optional[str] = None,
channel_utilization: Optional[str] = None,
channels: Optional[Sequence[str]] = None,
coexistence: Optional[str] = None,
darrp: Optional[str] = None,
drma: Optional[str] = None,
drma_sensitivity: Optional[str] = None,
dtim: Optional[float] = None,
frag_threshold: Optional[float] = None,
frequency_handoff: Optional[str] = None,
iperf_protocol: Optional[str] = None,
iperf_server_port: Optional[float] = None,
max_clients: Optional[float] = None,
max_distance: Optional[float] = None,
mimo_mode: Optional[str] = None,
mode: Optional[str] = None,
n80211d: Optional[str] = None,
object_wirelesscontroller_wtpprofile_radio1_id: Optional[str] = None,
optional_antenna: Optional[str] = None,
optional_antenna_gain: Optional[str] = None,
power_level: Optional[float] = None,
power_mode: Optional[str] = None,
power_value: Optional[float] = None,
powersave_optimizes: Optional[Sequence[str]] = None,
protection_mode: Optional[str] = None,
radio_id: Optional[float] = None,
rts_threshold: Optional[float] = None,
sam_bssid: Optional[str] = None,
sam_ca_certificate: Optional[str] = None,
sam_captive_portal: Optional[str] = None,
sam_client_certificate: Optional[str] = None,
sam_cwp_failure_string: Optional[str] = None,
sam_cwp_match_string: Optional[str] = None,
sam_cwp_passwords: Optional[Sequence[str]] = None,
sam_cwp_success_string: Optional[str] = None,
sam_cwp_test_url: Optional[str] = None,
sam_cwp_username: Optional[str] = None,
sam_eap_method: Optional[str] = None,
sam_passwords: Optional[Sequence[str]] = None,
sam_private_key: Optional[str] = None,
sam_private_key_passwords: Optional[Sequence[str]] = None,
sam_report_intv: Optional[float] = None,
sam_security_type: Optional[str] = None,
sam_server: Optional[str] = None,
sam_server_fqdn: Optional[str] = None,
sam_server_ip: Optional[str] = None,
sam_server_type: Optional[str] = None,
sam_ssid: Optional[str] = None,
sam_test: Optional[str] = None,
sam_username: Optional[str] = None,
scopetype: Optional[str] = None,
short_guard_interval: Optional[str] = None,
spectrum_analysis: Optional[str] = None,
transmit_optimizes: Optional[Sequence[str]] = None,
vap1: Optional[str] = None,
vap2: Optional[str] = None,
vap3: Optional[str] = None,
vap4: Optional[str] = None,
vap5: Optional[str] = None,
vap6: Optional[str] = None,
vap7: Optional[str] = None,
vap8: Optional[str] = None,
vap_all: Optional[str] = None,
vaps: Optional[str] = None,
wids_profile: Optional[str] = None,
zero_wait_dfs: Optional[str] = None)
func NewObjectWirelesscontrollerWtpprofileRadio1(ctx *Context, name string, args ObjectWirelesscontrollerWtpprofileRadio1Args, opts ...ResourceOption) (*ObjectWirelesscontrollerWtpprofileRadio1, error)
public ObjectWirelesscontrollerWtpprofileRadio1(string name, ObjectWirelesscontrollerWtpprofileRadio1Args args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerWtpprofileRadio1(String name, ObjectWirelesscontrollerWtpprofileRadio1Args args)
public ObjectWirelesscontrollerWtpprofileRadio1(String name, ObjectWirelesscontrollerWtpprofileRadio1Args args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerWtpprofileRadio1
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 ObjectWirelesscontrollerWtpprofileRadio1Args
- 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 ObjectWirelesscontrollerWtpprofileRadio1InitArgs
- 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 ObjectWirelesscontrollerWtpprofileRadio1Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerWtpprofileRadio1Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerWtpprofileRadio1Args
- 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 objectWirelesscontrollerWtpprofileRadio1Resource = new Fortimanager.ObjectWirelesscontrollerWtpprofileRadio1("objectWirelesscontrollerWtpprofileRadio1Resource", new()
{
WtpProfile = "string",
Adom = "string",
AirtimeFairness = "string",
Amsdu = "string",
ApHandoff = "string",
ApSnifferAddr = "string",
ApSnifferBufsize = 0,
ApSnifferChan = 0,
ApSnifferCtl = "string",
ApSnifferData = "string",
ApSnifferMgmtBeacon = "string",
ApSnifferMgmtOther = "string",
ApSnifferMgmtProbe = "string",
ArrpProfile = "string",
AutoPowerHigh = 0,
AutoPowerLevel = "string",
AutoPowerLow = 0,
AutoPowerTarget = "string",
Band = "string",
Band5gType = "string",
BandwidthAdmissionControl = "string",
BandwidthCapacity = 0,
BeaconInterval = 0,
BssColor = 0,
BssColorMode = "string",
CallAdmissionControl = "string",
CallCapacity = 0,
ChannelBonding = "string",
ChannelUtilization = "string",
Channels = new[]
{
"string",
},
Coexistence = "string",
Darrp = "string",
Drma = "string",
DrmaSensitivity = "string",
Dtim = 0,
FragThreshold = 0,
FrequencyHandoff = "string",
IperfProtocol = "string",
IperfServerPort = 0,
MaxClients = 0,
MaxDistance = 0,
MimoMode = "string",
Mode = "string",
N80211d = "string",
ObjectWirelesscontrollerWtpprofileRadio1Id = "string",
OptionalAntenna = "string",
OptionalAntennaGain = "string",
PowerLevel = 0,
PowerMode = "string",
PowerValue = 0,
PowersaveOptimizes = new[]
{
"string",
},
ProtectionMode = "string",
RadioId = 0,
RtsThreshold = 0,
SamBssid = "string",
SamCaCertificate = "string",
SamCaptivePortal = "string",
SamClientCertificate = "string",
SamCwpFailureString = "string",
SamCwpMatchString = "string",
SamCwpPasswords = new[]
{
"string",
},
SamCwpSuccessString = "string",
SamCwpTestUrl = "string",
SamCwpUsername = "string",
SamEapMethod = "string",
SamPasswords = new[]
{
"string",
},
SamPrivateKey = "string",
SamPrivateKeyPasswords = new[]
{
"string",
},
SamReportIntv = 0,
SamSecurityType = "string",
SamServer = "string",
SamServerFqdn = "string",
SamServerIp = "string",
SamServerType = "string",
SamSsid = "string",
SamTest = "string",
SamUsername = "string",
Scopetype = "string",
ShortGuardInterval = "string",
SpectrumAnalysis = "string",
TransmitOptimizes = new[]
{
"string",
},
Vap1 = "string",
Vap2 = "string",
Vap3 = "string",
Vap4 = "string",
Vap5 = "string",
Vap6 = "string",
Vap7 = "string",
Vap8 = "string",
VapAll = "string",
Vaps = "string",
WidsProfile = "string",
ZeroWaitDfs = "string",
});
example, err := fortimanager.NewObjectWirelesscontrollerWtpprofileRadio1(ctx, "objectWirelesscontrollerWtpprofileRadio1Resource", &fortimanager.ObjectWirelesscontrollerWtpprofileRadio1Args{
WtpProfile: pulumi.String("string"),
Adom: pulumi.String("string"),
AirtimeFairness: pulumi.String("string"),
Amsdu: pulumi.String("string"),
ApHandoff: pulumi.String("string"),
ApSnifferAddr: pulumi.String("string"),
ApSnifferBufsize: pulumi.Float64(0),
ApSnifferChan: pulumi.Float64(0),
ApSnifferCtl: pulumi.String("string"),
ApSnifferData: pulumi.String("string"),
ApSnifferMgmtBeacon: pulumi.String("string"),
ApSnifferMgmtOther: pulumi.String("string"),
ApSnifferMgmtProbe: pulumi.String("string"),
ArrpProfile: pulumi.String("string"),
AutoPowerHigh: pulumi.Float64(0),
AutoPowerLevel: pulumi.String("string"),
AutoPowerLow: pulumi.Float64(0),
AutoPowerTarget: pulumi.String("string"),
Band: pulumi.String("string"),
Band5gType: pulumi.String("string"),
BandwidthAdmissionControl: pulumi.String("string"),
BandwidthCapacity: pulumi.Float64(0),
BeaconInterval: pulumi.Float64(0),
BssColor: pulumi.Float64(0),
BssColorMode: pulumi.String("string"),
CallAdmissionControl: pulumi.String("string"),
CallCapacity: pulumi.Float64(0),
ChannelBonding: pulumi.String("string"),
ChannelUtilization: pulumi.String("string"),
Channels: pulumi.StringArray{
pulumi.String("string"),
},
Coexistence: pulumi.String("string"),
Darrp: pulumi.String("string"),
Drma: pulumi.String("string"),
DrmaSensitivity: pulumi.String("string"),
Dtim: pulumi.Float64(0),
FragThreshold: pulumi.Float64(0),
FrequencyHandoff: pulumi.String("string"),
IperfProtocol: pulumi.String("string"),
IperfServerPort: pulumi.Float64(0),
MaxClients: pulumi.Float64(0),
MaxDistance: pulumi.Float64(0),
MimoMode: pulumi.String("string"),
Mode: pulumi.String("string"),
N80211d: pulumi.String("string"),
ObjectWirelesscontrollerWtpprofileRadio1Id: pulumi.String("string"),
OptionalAntenna: pulumi.String("string"),
OptionalAntennaGain: pulumi.String("string"),
PowerLevel: pulumi.Float64(0),
PowerMode: pulumi.String("string"),
PowerValue: pulumi.Float64(0),
PowersaveOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
ProtectionMode: pulumi.String("string"),
RadioId: pulumi.Float64(0),
RtsThreshold: pulumi.Float64(0),
SamBssid: pulumi.String("string"),
SamCaCertificate: pulumi.String("string"),
SamCaptivePortal: pulumi.String("string"),
SamClientCertificate: pulumi.String("string"),
SamCwpFailureString: pulumi.String("string"),
SamCwpMatchString: pulumi.String("string"),
SamCwpPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamCwpSuccessString: pulumi.String("string"),
SamCwpTestUrl: pulumi.String("string"),
SamCwpUsername: pulumi.String("string"),
SamEapMethod: pulumi.String("string"),
SamPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamPrivateKey: pulumi.String("string"),
SamPrivateKeyPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamReportIntv: pulumi.Float64(0),
SamSecurityType: pulumi.String("string"),
SamServer: pulumi.String("string"),
SamServerFqdn: pulumi.String("string"),
SamServerIp: pulumi.String("string"),
SamServerType: pulumi.String("string"),
SamSsid: pulumi.String("string"),
SamTest: pulumi.String("string"),
SamUsername: pulumi.String("string"),
Scopetype: pulumi.String("string"),
ShortGuardInterval: pulumi.String("string"),
SpectrumAnalysis: pulumi.String("string"),
TransmitOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
Vap1: pulumi.String("string"),
Vap2: pulumi.String("string"),
Vap3: pulumi.String("string"),
Vap4: pulumi.String("string"),
Vap5: pulumi.String("string"),
Vap6: pulumi.String("string"),
Vap7: pulumi.String("string"),
Vap8: pulumi.String("string"),
VapAll: pulumi.String("string"),
Vaps: pulumi.String("string"),
WidsProfile: pulumi.String("string"),
ZeroWaitDfs: pulumi.String("string"),
})
var objectWirelesscontrollerWtpprofileRadio1Resource = new ObjectWirelesscontrollerWtpprofileRadio1("objectWirelesscontrollerWtpprofileRadio1Resource", ObjectWirelesscontrollerWtpprofileRadio1Args.builder()
.wtpProfile("string")
.adom("string")
.airtimeFairness("string")
.amsdu("string")
.apHandoff("string")
.apSnifferAddr("string")
.apSnifferBufsize(0)
.apSnifferChan(0)
.apSnifferCtl("string")
.apSnifferData("string")
.apSnifferMgmtBeacon("string")
.apSnifferMgmtOther("string")
.apSnifferMgmtProbe("string")
.arrpProfile("string")
.autoPowerHigh(0)
.autoPowerLevel("string")
.autoPowerLow(0)
.autoPowerTarget("string")
.band("string")
.band5gType("string")
.bandwidthAdmissionControl("string")
.bandwidthCapacity(0)
.beaconInterval(0)
.bssColor(0)
.bssColorMode("string")
.callAdmissionControl("string")
.callCapacity(0)
.channelBonding("string")
.channelUtilization("string")
.channels("string")
.coexistence("string")
.darrp("string")
.drma("string")
.drmaSensitivity("string")
.dtim(0)
.fragThreshold(0)
.frequencyHandoff("string")
.iperfProtocol("string")
.iperfServerPort(0)
.maxClients(0)
.maxDistance(0)
.mimoMode("string")
.mode("string")
.n80211d("string")
.objectWirelesscontrollerWtpprofileRadio1Id("string")
.optionalAntenna("string")
.optionalAntennaGain("string")
.powerLevel(0)
.powerMode("string")
.powerValue(0)
.powersaveOptimizes("string")
.protectionMode("string")
.radioId(0)
.rtsThreshold(0)
.samBssid("string")
.samCaCertificate("string")
.samCaptivePortal("string")
.samClientCertificate("string")
.samCwpFailureString("string")
.samCwpMatchString("string")
.samCwpPasswords("string")
.samCwpSuccessString("string")
.samCwpTestUrl("string")
.samCwpUsername("string")
.samEapMethod("string")
.samPasswords("string")
.samPrivateKey("string")
.samPrivateKeyPasswords("string")
.samReportIntv(0)
.samSecurityType("string")
.samServer("string")
.samServerFqdn("string")
.samServerIp("string")
.samServerType("string")
.samSsid("string")
.samTest("string")
.samUsername("string")
.scopetype("string")
.shortGuardInterval("string")
.spectrumAnalysis("string")
.transmitOptimizes("string")
.vap1("string")
.vap2("string")
.vap3("string")
.vap4("string")
.vap5("string")
.vap6("string")
.vap7("string")
.vap8("string")
.vapAll("string")
.vaps("string")
.widsProfile("string")
.zeroWaitDfs("string")
.build());
object_wirelesscontroller_wtpprofile_radio1_resource = fortimanager.ObjectWirelesscontrollerWtpprofileRadio1("objectWirelesscontrollerWtpprofileRadio1Resource",
wtp_profile="string",
adom="string",
airtime_fairness="string",
amsdu="string",
ap_handoff="string",
ap_sniffer_addr="string",
ap_sniffer_bufsize=0,
ap_sniffer_chan=0,
ap_sniffer_ctl="string",
ap_sniffer_data="string",
ap_sniffer_mgmt_beacon="string",
ap_sniffer_mgmt_other="string",
ap_sniffer_mgmt_probe="string",
arrp_profile="string",
auto_power_high=0,
auto_power_level="string",
auto_power_low=0,
auto_power_target="string",
band="string",
band5g_type="string",
bandwidth_admission_control="string",
bandwidth_capacity=0,
beacon_interval=0,
bss_color=0,
bss_color_mode="string",
call_admission_control="string",
call_capacity=0,
channel_bonding="string",
channel_utilization="string",
channels=["string"],
coexistence="string",
darrp="string",
drma="string",
drma_sensitivity="string",
dtim=0,
frag_threshold=0,
frequency_handoff="string",
iperf_protocol="string",
iperf_server_port=0,
max_clients=0,
max_distance=0,
mimo_mode="string",
mode="string",
n80211d="string",
object_wirelesscontroller_wtpprofile_radio1_id="string",
optional_antenna="string",
optional_antenna_gain="string",
power_level=0,
power_mode="string",
power_value=0,
powersave_optimizes=["string"],
protection_mode="string",
radio_id=0,
rts_threshold=0,
sam_bssid="string",
sam_ca_certificate="string",
sam_captive_portal="string",
sam_client_certificate="string",
sam_cwp_failure_string="string",
sam_cwp_match_string="string",
sam_cwp_passwords=["string"],
sam_cwp_success_string="string",
sam_cwp_test_url="string",
sam_cwp_username="string",
sam_eap_method="string",
sam_passwords=["string"],
sam_private_key="string",
sam_private_key_passwords=["string"],
sam_report_intv=0,
sam_security_type="string",
sam_server="string",
sam_server_fqdn="string",
sam_server_ip="string",
sam_server_type="string",
sam_ssid="string",
sam_test="string",
sam_username="string",
scopetype="string",
short_guard_interval="string",
spectrum_analysis="string",
transmit_optimizes=["string"],
vap1="string",
vap2="string",
vap3="string",
vap4="string",
vap5="string",
vap6="string",
vap7="string",
vap8="string",
vap_all="string",
vaps="string",
wids_profile="string",
zero_wait_dfs="string")
const objectWirelesscontrollerWtpprofileRadio1Resource = new fortimanager.ObjectWirelesscontrollerWtpprofileRadio1("objectWirelesscontrollerWtpprofileRadio1Resource", {
wtpProfile: "string",
adom: "string",
airtimeFairness: "string",
amsdu: "string",
apHandoff: "string",
apSnifferAddr: "string",
apSnifferBufsize: 0,
apSnifferChan: 0,
apSnifferCtl: "string",
apSnifferData: "string",
apSnifferMgmtBeacon: "string",
apSnifferMgmtOther: "string",
apSnifferMgmtProbe: "string",
arrpProfile: "string",
autoPowerHigh: 0,
autoPowerLevel: "string",
autoPowerLow: 0,
autoPowerTarget: "string",
band: "string",
band5gType: "string",
bandwidthAdmissionControl: "string",
bandwidthCapacity: 0,
beaconInterval: 0,
bssColor: 0,
bssColorMode: "string",
callAdmissionControl: "string",
callCapacity: 0,
channelBonding: "string",
channelUtilization: "string",
channels: ["string"],
coexistence: "string",
darrp: "string",
drma: "string",
drmaSensitivity: "string",
dtim: 0,
fragThreshold: 0,
frequencyHandoff: "string",
iperfProtocol: "string",
iperfServerPort: 0,
maxClients: 0,
maxDistance: 0,
mimoMode: "string",
mode: "string",
n80211d: "string",
objectWirelesscontrollerWtpprofileRadio1Id: "string",
optionalAntenna: "string",
optionalAntennaGain: "string",
powerLevel: 0,
powerMode: "string",
powerValue: 0,
powersaveOptimizes: ["string"],
protectionMode: "string",
radioId: 0,
rtsThreshold: 0,
samBssid: "string",
samCaCertificate: "string",
samCaptivePortal: "string",
samClientCertificate: "string",
samCwpFailureString: "string",
samCwpMatchString: "string",
samCwpPasswords: ["string"],
samCwpSuccessString: "string",
samCwpTestUrl: "string",
samCwpUsername: "string",
samEapMethod: "string",
samPasswords: ["string"],
samPrivateKey: "string",
samPrivateKeyPasswords: ["string"],
samReportIntv: 0,
samSecurityType: "string",
samServer: "string",
samServerFqdn: "string",
samServerIp: "string",
samServerType: "string",
samSsid: "string",
samTest: "string",
samUsername: "string",
scopetype: "string",
shortGuardInterval: "string",
spectrumAnalysis: "string",
transmitOptimizes: ["string"],
vap1: "string",
vap2: "string",
vap3: "string",
vap4: "string",
vap5: "string",
vap6: "string",
vap7: "string",
vap8: "string",
vapAll: "string",
vaps: "string",
widsProfile: "string",
zeroWaitDfs: "string",
});
type: fortimanager:ObjectWirelesscontrollerWtpprofileRadio1
properties:
adom: string
airtimeFairness: string
amsdu: string
apHandoff: string
apSnifferAddr: string
apSnifferBufsize: 0
apSnifferChan: 0
apSnifferCtl: string
apSnifferData: string
apSnifferMgmtBeacon: string
apSnifferMgmtOther: string
apSnifferMgmtProbe: string
arrpProfile: string
autoPowerHigh: 0
autoPowerLevel: string
autoPowerLow: 0
autoPowerTarget: string
band: string
band5gType: string
bandwidthAdmissionControl: string
bandwidthCapacity: 0
beaconInterval: 0
bssColor: 0
bssColorMode: string
callAdmissionControl: string
callCapacity: 0
channelBonding: string
channelUtilization: string
channels:
- string
coexistence: string
darrp: string
drma: string
drmaSensitivity: string
dtim: 0
fragThreshold: 0
frequencyHandoff: string
iperfProtocol: string
iperfServerPort: 0
maxClients: 0
maxDistance: 0
mimoMode: string
mode: string
n80211d: string
objectWirelesscontrollerWtpprofileRadio1Id: string
optionalAntenna: string
optionalAntennaGain: string
powerLevel: 0
powerMode: string
powerValue: 0
powersaveOptimizes:
- string
protectionMode: string
radioId: 0
rtsThreshold: 0
samBssid: string
samCaCertificate: string
samCaptivePortal: string
samClientCertificate: string
samCwpFailureString: string
samCwpMatchString: string
samCwpPasswords:
- string
samCwpSuccessString: string
samCwpTestUrl: string
samCwpUsername: string
samEapMethod: string
samPasswords:
- string
samPrivateKey: string
samPrivateKeyPasswords:
- string
samReportIntv: 0
samSecurityType: string
samServer: string
samServerFqdn: string
samServerIp: string
samServerType: string
samSsid: string
samTest: string
samUsername: string
scopetype: string
shortGuardInterval: string
spectrumAnalysis: string
transmitOptimizes:
- string
vap1: string
vap2: string
vap3: string
vap4: string
vap5: string
vap6: string
vap7: string
vap8: string
vapAll: string
vaps: string
widsProfile: string
wtpProfile: string
zeroWaitDfs: string
ObjectWirelesscontrollerWtpprofileRadio1 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 ObjectWirelesscontrollerWtpprofileRadio1 resource accepts the following input properties:
- Wtp
Profile string - Wtp Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Airtime
Fairness string - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - Amsdu string
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer doubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer doubleChan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power doubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power doubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- Band string
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - Bandwidth
Capacity double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval double - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- Bss
Color double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - Call
Capacity double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - Channel
Utilization string - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - Channels List<string>
- Selected list of wireless radio channels.
- Coexistence string
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - Darrp string
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - Drma string
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - Drma
Sensitivity string - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - Dtim double
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- Frag
Threshold double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server doublePort - Iperf service port number.
- Max
Clients double - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- Max
Distance double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode string - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - Mode string
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - N80211d string
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - Object
Wirelesscontroller stringWtpprofile Radio1Id - an identifier for the resource.
- Optional
Antenna string - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode string - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - Power
Value double - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes List<string> - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id double - Radio-Id.
- Rts
Threshold double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp List<string>Passwords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords List<string> - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private List<string>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report doubleIntv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- 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
. - Short
Guard stringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - Spectrum
Analysis string - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes List<string> - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - Vap1 string
- Virtual Access Point (VAP) for wlan ID 1
- Vap2 string
- Virtual Access Point (VAP) for wlan ID 2
- Vap3 string
- Virtual Access Point (VAP) for wlan ID 3
- Vap4 string
- Virtual Access Point (VAP) for wlan ID 4
- Vap5 string
- Virtual Access Point (VAP) for wlan ID 5
- Vap6 string
- Virtual Access Point (VAP) for wlan ID 6
- Vap7 string
- Virtual Access Point (VAP) for wlan ID 7
- Vap8 string
- Virtual Access Point (VAP) for wlan ID 8
- Vap
All string - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - Vaps string
- Manually selected list of Virtual Access Points (VAPs).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- Wtp
Profile string - Wtp Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Airtime
Fairness string - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - Amsdu string
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer float64Bufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer float64Chan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power float64High - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power float64Low - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- Band string
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - Bandwidth
Capacity float64 - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval float64 - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- Bss
Color float64 - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - Call
Capacity float64 - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - Channel
Utilization string - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - Channels []string
- Selected list of wireless radio channels.
- Coexistence string
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - Darrp string
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - Drma string
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - Drma
Sensitivity string - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - Dtim float64
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- Frag
Threshold float64 - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server float64Port - Iperf service port number.
- Max
Clients float64 - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- Max
Distance float64 - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode string - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - Mode string
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - N80211d string
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - Object
Wirelesscontroller stringWtpprofile Radio1Id - an identifier for the resource.
- Optional
Antenna string - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level float64 - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode string - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - Power
Value float64 - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes []string - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id float64 - Radio-Id.
- Rts
Threshold float64 - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp []stringPasswords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords []string - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private []stringKey Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report float64Intv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- 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
. - Short
Guard stringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - Spectrum
Analysis string - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes []string - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - Vap1 string
- Virtual Access Point (VAP) for wlan ID 1
- Vap2 string
- Virtual Access Point (VAP) for wlan ID 2
- Vap3 string
- Virtual Access Point (VAP) for wlan ID 3
- Vap4 string
- Virtual Access Point (VAP) for wlan ID 4
- Vap5 string
- Virtual Access Point (VAP) for wlan ID 5
- Vap6 string
- Virtual Access Point (VAP) for wlan ID 6
- Vap7 string
- Virtual Access Point (VAP) for wlan ID 7
- Vap8 string
- Virtual Access Point (VAP) for wlan ID 8
- Vap
All string - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - Vaps string
- Manually selected list of Virtual Access Points (VAPs).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- wtp
Profile String - Wtp Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - airtime
Fairness String - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - amsdu String
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer DoubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer DoubleChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power DoubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power DoubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- band String
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - bandwidth
Capacity Double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Double - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- bss
Color Double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - call
Capacity Double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - channel
Utilization String - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - channels List<String>
- Selected list of wireless radio channels.
- coexistence String
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - darrp String
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - drma String
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - drma
Sensitivity String - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - dtim Double
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- frag
Threshold Double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server DoublePort - Iperf service port number.
- max
Clients Double - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- max
Distance Double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode String - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - mode String
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - n80211d String
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - object
Wirelesscontroller StringWtpprofile Radio1Id - an identifier for the resource.
- optional
Antenna String - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode String - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - power
Value Double - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes List<String> - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Double - Radio-Id.
- rts
Threshold Double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report DoubleIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- 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
. - short
Guard StringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - spectrum
Analysis String - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes List<String> - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - vap1 String
- Virtual Access Point (VAP) for wlan ID 1
- vap2 String
- Virtual Access Point (VAP) for wlan ID 2
- vap3 String
- Virtual Access Point (VAP) for wlan ID 3
- vap4 String
- Virtual Access Point (VAP) for wlan ID 4
- vap5 String
- Virtual Access Point (VAP) for wlan ID 5
- vap6 String
- Virtual Access Point (VAP) for wlan ID 6
- vap7 String
- Virtual Access Point (VAP) for wlan ID 7
- vap8 String
- Virtual Access Point (VAP) for wlan ID 8
- vap
All String - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - vaps String
- Manually selected list of Virtual Access Points (VAPs).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- wtp
Profile string - Wtp Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - airtime
Fairness string - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - amsdu string
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer stringAddr - MAC address to monitor.
- ap
Sniffer numberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer numberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power numberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power numberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- band string
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission stringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - bandwidth
Capacity number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval number - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- bss
Color number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission stringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - call
Capacity number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding string - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - channel
Utilization string - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - channels string[]
- Selected list of wireless radio channels.
- coexistence string
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - darrp string
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - drma string
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - drma
Sensitivity string - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - dtim number
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- frag
Threshold number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server numberPort - Iperf service port number.
- max
Clients number - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- max
Distance number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode string - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - mode string
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - n80211d string
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - object
Wirelesscontroller stringWtpprofile Radio1Id - an identifier for the resource.
- optional
Antenna string - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode string - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - power
Value number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes string[] - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id number - Radio-Id.
- rts
Threshold number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid string - BSSID for WiFi network.
- sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp stringMatch String - Identification string from the captive portal login form.
- sam
Cwp string[]Passwords - Password for captive portal authentication.
- sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- sam
Cwp stringTest Url - Website the client is trying to access.
- sam
Cwp stringUsername - Username for captive portal authentication.
- sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords string[] - Passphrase for WiFi network connection.
- sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private string[]Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report numberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server string - SAM test server IP address or domain name.
- sam
Server stringFqdn - SAM test server domain name.
- sam
Server stringIp - SAM test server IP address.
- sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid string - SSID for WiFi network.
- sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username string - Username for WiFi network connection.
- 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
. - short
Guard stringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - spectrum
Analysis string - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes string[] - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - vap1 string
- Virtual Access Point (VAP) for wlan ID 1
- vap2 string
- Virtual Access Point (VAP) for wlan ID 2
- vap3 string
- Virtual Access Point (VAP) for wlan ID 3
- vap4 string
- Virtual Access Point (VAP) for wlan ID 4
- vap5 string
- Virtual Access Point (VAP) for wlan ID 5
- vap6 string
- Virtual Access Point (VAP) for wlan ID 6
- vap7 string
- Virtual Access Point (VAP) for wlan ID 7
- vap8 string
- Virtual Access Point (VAP) for wlan ID 8
- vap
All string - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - vaps string
- Manually selected list of Virtual Access Points (VAPs).
- wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- wtp_
profile str - Wtp Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - airtime_
fairness str - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - amsdu str
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - ap_
handoff str - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap_
sniffer_ straddr - MAC address to monitor.
- ap_
sniffer_ floatbufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap_
sniffer_ floatchan - Channel on which to operate the sniffer (default = 6).
- ap_
sniffer_ strctl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strdata - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp_
profile str - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto_
power_ floathigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strlevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto_
power_ floatlow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strtarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- band str
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - band5g_
type str - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth_
admission_ strcontrol - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - bandwidth_
capacity float - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon_
interval float - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- bss_
color float - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss_
color_ strmode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call_
admission_ strcontrol - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - call_
capacity float - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel_
bonding str - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - channel_
utilization str - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - channels Sequence[str]
- Selected list of wireless radio channels.
- coexistence str
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - darrp str
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - drma str
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - drma_
sensitivity str - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - dtim float
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- frag_
threshold float - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency_
handoff str - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf_
protocol str - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf_
server_ floatport - Iperf service port number.
- max_
clients float - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- max_
distance float - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo_
mode str - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - mode str
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - n80211d str
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - object_
wirelesscontroller_ strwtpprofile_ radio1_ id - an identifier for the resource.
- optional_
antenna str - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - optional_
antenna_ strgain - Optional antenna gain in dBi (0 to 20, default = 0).
- power_
level float - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power_
mode str - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - power_
value float - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave_
optimizes Sequence[str] - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - protection_
mode str - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio_
id float - Radio-Id.
- rts_
threshold float - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam_
bssid str - BSSID for WiFi network.
- sam_
ca_ strcertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam_
captive_ strportal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam_
client_ strcertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam_
cwp_ strfailure_ string - Failure identification on the page after an incorrect login.
- sam_
cwp_ strmatch_ string - Identification string from the captive portal login form.
- sam_
cwp_ Sequence[str]passwords - Password for captive portal authentication.
- sam_
cwp_ strsuccess_ string - Success identification on the page after a successful login.
- sam_
cwp_ strtest_ url - Website the client is trying to access.
- sam_
cwp_ strusername - Username for captive portal authentication.
- sam_
eap_ strmethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam_
passwords Sequence[str] - Passphrase for WiFi network connection.
- sam_
private_ strkey - Private key for WPA2/WPA3-ENTERPRISE.
- sam_
private_ Sequence[str]key_ passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam_
report_ floatintv - SAM report interval (sec), 0 for a one-time report.
- sam_
security_ strtype - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam_
server str - SAM test server IP address or domain name.
- sam_
server_ strfqdn - SAM test server domain name.
- sam_
server_ strip - SAM test server IP address.
- sam_
server_ strtype - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam_
ssid str - SSID for WiFi network.
- sam_
test str - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam_
username str - Username for WiFi network connection.
- 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
. - short_
guard_ strinterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - spectrum_
analysis str - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - transmit_
optimizes Sequence[str] - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - vap1 str
- Virtual Access Point (VAP) for wlan ID 1
- vap2 str
- Virtual Access Point (VAP) for wlan ID 2
- vap3 str
- Virtual Access Point (VAP) for wlan ID 3
- vap4 str
- Virtual Access Point (VAP) for wlan ID 4
- vap5 str
- Virtual Access Point (VAP) for wlan ID 5
- vap6 str
- Virtual Access Point (VAP) for wlan ID 6
- vap7 str
- Virtual Access Point (VAP) for wlan ID 7
- vap8 str
- Virtual Access Point (VAP) for wlan ID 8
- vap_
all str - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - vaps str
- Manually selected list of Virtual Access Points (VAPs).
- wids_
profile str - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero_
wait_ strdfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- wtp
Profile String - Wtp Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - airtime
Fairness String - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - amsdu String
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer NumberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer NumberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power NumberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power NumberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- band String
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - bandwidth
Capacity Number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Number - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- bss
Color Number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - call
Capacity Number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - channel
Utilization String - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - channels List<String>
- Selected list of wireless radio channels.
- coexistence String
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - darrp String
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - drma String
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - drma
Sensitivity String - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - dtim Number
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- frag
Threshold Number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server NumberPort - Iperf service port number.
- max
Clients Number - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- max
Distance Number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode String - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - mode String
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - n80211d String
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - object
Wirelesscontroller StringWtpprofile Radio1Id - an identifier for the resource.
- optional
Antenna String - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode String - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - power
Value Number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes List<String> - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Number - Radio-Id.
- rts
Threshold Number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report NumberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- 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
. - short
Guard StringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - spectrum
Analysis String - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes List<String> - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - vap1 String
- Virtual Access Point (VAP) for wlan ID 1
- vap2 String
- Virtual Access Point (VAP) for wlan ID 2
- vap3 String
- Virtual Access Point (VAP) for wlan ID 3
- vap4 String
- Virtual Access Point (VAP) for wlan ID 4
- vap5 String
- Virtual Access Point (VAP) for wlan ID 5
- vap6 String
- Virtual Access Point (VAP) for wlan ID 6
- vap7 String
- Virtual Access Point (VAP) for wlan ID 7
- vap8 String
- Virtual Access Point (VAP) for wlan ID 8
- vap
All String - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - vaps String
- Manually selected list of Virtual Access Points (VAPs).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerWtpprofileRadio1 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 ObjectWirelesscontrollerWtpprofileRadio1 Resource
Get an existing ObjectWirelesscontrollerWtpprofileRadio1 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?: ObjectWirelesscontrollerWtpprofileRadio1State, opts?: CustomResourceOptions): ObjectWirelesscontrollerWtpprofileRadio1
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
airtime_fairness: Optional[str] = None,
amsdu: Optional[str] = None,
ap_handoff: Optional[str] = None,
ap_sniffer_addr: Optional[str] = None,
ap_sniffer_bufsize: Optional[float] = None,
ap_sniffer_chan: Optional[float] = None,
ap_sniffer_ctl: Optional[str] = None,
ap_sniffer_data: Optional[str] = None,
ap_sniffer_mgmt_beacon: Optional[str] = None,
ap_sniffer_mgmt_other: Optional[str] = None,
ap_sniffer_mgmt_probe: Optional[str] = None,
arrp_profile: Optional[str] = None,
auto_power_high: Optional[float] = None,
auto_power_level: Optional[str] = None,
auto_power_low: Optional[float] = None,
auto_power_target: Optional[str] = None,
band: Optional[str] = None,
band5g_type: Optional[str] = None,
bandwidth_admission_control: Optional[str] = None,
bandwidth_capacity: Optional[float] = None,
beacon_interval: Optional[float] = None,
bss_color: Optional[float] = None,
bss_color_mode: Optional[str] = None,
call_admission_control: Optional[str] = None,
call_capacity: Optional[float] = None,
channel_bonding: Optional[str] = None,
channel_utilization: Optional[str] = None,
channels: Optional[Sequence[str]] = None,
coexistence: Optional[str] = None,
darrp: Optional[str] = None,
drma: Optional[str] = None,
drma_sensitivity: Optional[str] = None,
dtim: Optional[float] = None,
frag_threshold: Optional[float] = None,
frequency_handoff: Optional[str] = None,
iperf_protocol: Optional[str] = None,
iperf_server_port: Optional[float] = None,
max_clients: Optional[float] = None,
max_distance: Optional[float] = None,
mimo_mode: Optional[str] = None,
mode: Optional[str] = None,
n80211d: Optional[str] = None,
object_wirelesscontroller_wtpprofile_radio1_id: Optional[str] = None,
optional_antenna: Optional[str] = None,
optional_antenna_gain: Optional[str] = None,
power_level: Optional[float] = None,
power_mode: Optional[str] = None,
power_value: Optional[float] = None,
powersave_optimizes: Optional[Sequence[str]] = None,
protection_mode: Optional[str] = None,
radio_id: Optional[float] = None,
rts_threshold: Optional[float] = None,
sam_bssid: Optional[str] = None,
sam_ca_certificate: Optional[str] = None,
sam_captive_portal: Optional[str] = None,
sam_client_certificate: Optional[str] = None,
sam_cwp_failure_string: Optional[str] = None,
sam_cwp_match_string: Optional[str] = None,
sam_cwp_passwords: Optional[Sequence[str]] = None,
sam_cwp_success_string: Optional[str] = None,
sam_cwp_test_url: Optional[str] = None,
sam_cwp_username: Optional[str] = None,
sam_eap_method: Optional[str] = None,
sam_passwords: Optional[Sequence[str]] = None,
sam_private_key: Optional[str] = None,
sam_private_key_passwords: Optional[Sequence[str]] = None,
sam_report_intv: Optional[float] = None,
sam_security_type: Optional[str] = None,
sam_server: Optional[str] = None,
sam_server_fqdn: Optional[str] = None,
sam_server_ip: Optional[str] = None,
sam_server_type: Optional[str] = None,
sam_ssid: Optional[str] = None,
sam_test: Optional[str] = None,
sam_username: Optional[str] = None,
scopetype: Optional[str] = None,
short_guard_interval: Optional[str] = None,
spectrum_analysis: Optional[str] = None,
transmit_optimizes: Optional[Sequence[str]] = None,
vap1: Optional[str] = None,
vap2: Optional[str] = None,
vap3: Optional[str] = None,
vap4: Optional[str] = None,
vap5: Optional[str] = None,
vap6: Optional[str] = None,
vap7: Optional[str] = None,
vap8: Optional[str] = None,
vap_all: Optional[str] = None,
vaps: Optional[str] = None,
wids_profile: Optional[str] = None,
wtp_profile: Optional[str] = None,
zero_wait_dfs: Optional[str] = None) -> ObjectWirelesscontrollerWtpprofileRadio1
func GetObjectWirelesscontrollerWtpprofileRadio1(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerWtpprofileRadio1State, opts ...ResourceOption) (*ObjectWirelesscontrollerWtpprofileRadio1, error)
public static ObjectWirelesscontrollerWtpprofileRadio1 Get(string name, Input<string> id, ObjectWirelesscontrollerWtpprofileRadio1State? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerWtpprofileRadio1 get(String name, Output<String> id, ObjectWirelesscontrollerWtpprofileRadio1State state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWirelesscontrollerWtpprofileRadio1 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. - Airtime
Fairness string - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - Amsdu string
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer doubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer doubleChan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power doubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power doubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- Band string
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - Bandwidth
Capacity double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval double - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- Bss
Color double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - Call
Capacity double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - Channel
Utilization string - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - Channels List<string>
- Selected list of wireless radio channels.
- Coexistence string
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - Darrp string
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - Drma string
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - Drma
Sensitivity string - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - Dtim double
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- Frag
Threshold double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server doublePort - Iperf service port number.
- Max
Clients double - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- Max
Distance double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode string - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - Mode string
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - N80211d string
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - Object
Wirelesscontroller stringWtpprofile Radio1Id - an identifier for the resource.
- Optional
Antenna string - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode string - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - Power
Value double - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes List<string> - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id double - Radio-Id.
- Rts
Threshold double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp List<string>Passwords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords List<string> - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private List<string>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report doubleIntv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- 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
. - Short
Guard stringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - Spectrum
Analysis string - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes List<string> - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - Vap1 string
- Virtual Access Point (VAP) for wlan ID 1
- Vap2 string
- Virtual Access Point (VAP) for wlan ID 2
- Vap3 string
- Virtual Access Point (VAP) for wlan ID 3
- Vap4 string
- Virtual Access Point (VAP) for wlan ID 4
- Vap5 string
- Virtual Access Point (VAP) for wlan ID 5
- Vap6 string
- Virtual Access Point (VAP) for wlan ID 6
- Vap7 string
- Virtual Access Point (VAP) for wlan ID 7
- Vap8 string
- Virtual Access Point (VAP) for wlan ID 8
- Vap
All string - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - Vaps string
- Manually selected list of Virtual Access Points (VAPs).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Wtp
Profile string - Wtp Profile.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). 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. - Airtime
Fairness string - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - Amsdu string
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer float64Bufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer float64Chan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power float64High - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power float64Low - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- Band string
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - Bandwidth
Capacity float64 - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval float64 - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- Bss
Color float64 - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - Call
Capacity float64 - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - Channel
Utilization string - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - Channels []string
- Selected list of wireless radio channels.
- Coexistence string
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - Darrp string
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - Drma string
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - Drma
Sensitivity string - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - Dtim float64
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- Frag
Threshold float64 - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server float64Port - Iperf service port number.
- Max
Clients float64 - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- Max
Distance float64 - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode string - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - Mode string
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - N80211d string
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - Object
Wirelesscontroller stringWtpprofile Radio1Id - an identifier for the resource.
- Optional
Antenna string - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level float64 - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode string - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - Power
Value float64 - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes []string - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id float64 - Radio-Id.
- Rts
Threshold float64 - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp []stringPasswords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords []string - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private []stringKey Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report float64Intv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- 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
. - Short
Guard stringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - Spectrum
Analysis string - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes []string - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - Vap1 string
- Virtual Access Point (VAP) for wlan ID 1
- Vap2 string
- Virtual Access Point (VAP) for wlan ID 2
- Vap3 string
- Virtual Access Point (VAP) for wlan ID 3
- Vap4 string
- Virtual Access Point (VAP) for wlan ID 4
- Vap5 string
- Virtual Access Point (VAP) for wlan ID 5
- Vap6 string
- Virtual Access Point (VAP) for wlan ID 6
- Vap7 string
- Virtual Access Point (VAP) for wlan ID 7
- Vap8 string
- Virtual Access Point (VAP) for wlan ID 8
- Vap
All string - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - Vaps string
- Manually selected list of Virtual Access Points (VAPs).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Wtp
Profile string - Wtp Profile.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). 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. - airtime
Fairness String - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - amsdu String
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer DoubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer DoubleChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power DoubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power DoubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- band String
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - bandwidth
Capacity Double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Double - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- bss
Color Double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - call
Capacity Double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - channel
Utilization String - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - channels List<String>
- Selected list of wireless radio channels.
- coexistence String
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - darrp String
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - drma String
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - drma
Sensitivity String - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - dtim Double
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- frag
Threshold Double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server DoublePort - Iperf service port number.
- max
Clients Double - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- max
Distance Double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode String - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - mode String
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - n80211d String
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - object
Wirelesscontroller StringWtpprofile Radio1Id - an identifier for the resource.
- optional
Antenna String - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode String - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - power
Value Double - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes List<String> - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Double - Radio-Id.
- rts
Threshold Double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report DoubleIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- 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
. - short
Guard StringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - spectrum
Analysis String - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes List<String> - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - vap1 String
- Virtual Access Point (VAP) for wlan ID 1
- vap2 String
- Virtual Access Point (VAP) for wlan ID 2
- vap3 String
- Virtual Access Point (VAP) for wlan ID 3
- vap4 String
- Virtual Access Point (VAP) for wlan ID 4
- vap5 String
- Virtual Access Point (VAP) for wlan ID 5
- vap6 String
- Virtual Access Point (VAP) for wlan ID 6
- vap7 String
- Virtual Access Point (VAP) for wlan ID 7
- vap8 String
- Virtual Access Point (VAP) for wlan ID 8
- vap
All String - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - vaps String
- Manually selected list of Virtual Access Points (VAPs).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- wtp
Profile String - Wtp Profile.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). 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. - airtime
Fairness string - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - amsdu string
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer stringAddr - MAC address to monitor.
- ap
Sniffer numberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer numberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power numberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power numberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- band string
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission stringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - bandwidth
Capacity number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval number - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- bss
Color number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission stringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - call
Capacity number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding string - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - channel
Utilization string - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - channels string[]
- Selected list of wireless radio channels.
- coexistence string
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - darrp string
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - drma string
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - drma
Sensitivity string - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - dtim number
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- frag
Threshold number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server numberPort - Iperf service port number.
- max
Clients number - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- max
Distance number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode string - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - mode string
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - n80211d string
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - object
Wirelesscontroller stringWtpprofile Radio1Id - an identifier for the resource.
- optional
Antenna string - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode string - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - power
Value number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes string[] - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id number - Radio-Id.
- rts
Threshold number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid string - BSSID for WiFi network.
- sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp stringMatch String - Identification string from the captive portal login form.
- sam
Cwp string[]Passwords - Password for captive portal authentication.
- sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- sam
Cwp stringTest Url - Website the client is trying to access.
- sam
Cwp stringUsername - Username for captive portal authentication.
- sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords string[] - Passphrase for WiFi network connection.
- sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private string[]Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report numberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server string - SAM test server IP address or domain name.
- sam
Server stringFqdn - SAM test server domain name.
- sam
Server stringIp - SAM test server IP address.
- sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid string - SSID for WiFi network.
- sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username string - Username for WiFi network connection.
- 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
. - short
Guard stringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - spectrum
Analysis string - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes string[] - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - vap1 string
- Virtual Access Point (VAP) for wlan ID 1
- vap2 string
- Virtual Access Point (VAP) for wlan ID 2
- vap3 string
- Virtual Access Point (VAP) for wlan ID 3
- vap4 string
- Virtual Access Point (VAP) for wlan ID 4
- vap5 string
- Virtual Access Point (VAP) for wlan ID 5
- vap6 string
- Virtual Access Point (VAP) for wlan ID 6
- vap7 string
- Virtual Access Point (VAP) for wlan ID 7
- vap8 string
- Virtual Access Point (VAP) for wlan ID 8
- vap
All string - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - vaps string
- Manually selected list of Virtual Access Points (VAPs).
- wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- wtp
Profile string - Wtp Profile.
- zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). 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. - airtime_
fairness str - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - amsdu str
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - ap_
handoff str - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap_
sniffer_ straddr - MAC address to monitor.
- ap_
sniffer_ floatbufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap_
sniffer_ floatchan - Channel on which to operate the sniffer (default = 6).
- ap_
sniffer_ strctl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strdata - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp_
profile str - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto_
power_ floathigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strlevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto_
power_ floatlow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strtarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- band str
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - band5g_
type str - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth_
admission_ strcontrol - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - bandwidth_
capacity float - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon_
interval float - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- bss_
color float - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss_
color_ strmode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call_
admission_ strcontrol - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - call_
capacity float - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel_
bonding str - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - channel_
utilization str - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - channels Sequence[str]
- Selected list of wireless radio channels.
- coexistence str
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - darrp str
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - drma str
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - drma_
sensitivity str - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - dtim float
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- frag_
threshold float - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency_
handoff str - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf_
protocol str - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf_
server_ floatport - Iperf service port number.
- max_
clients float - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- max_
distance float - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo_
mode str - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - mode str
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - n80211d str
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - object_
wirelesscontroller_ strwtpprofile_ radio1_ id - an identifier for the resource.
- optional_
antenna str - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - optional_
antenna_ strgain - Optional antenna gain in dBi (0 to 20, default = 0).
- power_
level float - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power_
mode str - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - power_
value float - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave_
optimizes Sequence[str] - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - protection_
mode str - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio_
id float - Radio-Id.
- rts_
threshold float - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam_
bssid str - BSSID for WiFi network.
- sam_
ca_ strcertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam_
captive_ strportal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam_
client_ strcertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam_
cwp_ strfailure_ string - Failure identification on the page after an incorrect login.
- sam_
cwp_ strmatch_ string - Identification string from the captive portal login form.
- sam_
cwp_ Sequence[str]passwords - Password for captive portal authentication.
- sam_
cwp_ strsuccess_ string - Success identification on the page after a successful login.
- sam_
cwp_ strtest_ url - Website the client is trying to access.
- sam_
cwp_ strusername - Username for captive portal authentication.
- sam_
eap_ strmethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam_
passwords Sequence[str] - Passphrase for WiFi network connection.
- sam_
private_ strkey - Private key for WPA2/WPA3-ENTERPRISE.
- sam_
private_ Sequence[str]key_ passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam_
report_ floatintv - SAM report interval (sec), 0 for a one-time report.
- sam_
security_ strtype - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam_
server str - SAM test server IP address or domain name.
- sam_
server_ strfqdn - SAM test server domain name.
- sam_
server_ strip - SAM test server IP address.
- sam_
server_ strtype - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam_
ssid str - SSID for WiFi network.
- sam_
test str - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam_
username str - Username for WiFi network connection.
- 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
. - short_
guard_ strinterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - spectrum_
analysis str - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - transmit_
optimizes Sequence[str] - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - vap1 str
- Virtual Access Point (VAP) for wlan ID 1
- vap2 str
- Virtual Access Point (VAP) for wlan ID 2
- vap3 str
- Virtual Access Point (VAP) for wlan ID 3
- vap4 str
- Virtual Access Point (VAP) for wlan ID 4
- vap5 str
- Virtual Access Point (VAP) for wlan ID 5
- vap6 str
- Virtual Access Point (VAP) for wlan ID 6
- vap7 str
- Virtual Access Point (VAP) for wlan ID 7
- vap8 str
- Virtual Access Point (VAP) for wlan ID 8
- vap_
all str - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - vaps str
- Manually selected list of Virtual Access Points (VAPs).
- wids_
profile str - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- wtp_
profile str - Wtp Profile.
- zero_
wait_ strdfs - Enable/disable zero wait DFS on radio (default = enable). 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. - airtime
Fairness String - Enable/disable airtime fairness (default = disable). Valid values:
disable
,enable
. - amsdu String
- Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values:
disable
,enable
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer NumberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer NumberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power NumberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power NumberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
- band String
- WiFi band that Radio 1 operates on. Valid values:
802.11b
,802.11a
,802.11g
,802.11n
,802.11ac
,802.11n-5G
,802.11ax-5G
,802.11ax
,802.11ac-2G
,802.11g-only
,802.11n-only
,802.11n,g-only
,802.11ac-only
,802.11ac,n-only
,802.11n-5G-only
,802.11ax-5G-only
,802.11ax,ac-only
,802.11ax,ac,n-only
,802.11ax-only
,802.11ax,n-only
,802.11ax,n,g-only
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values:
disable
,enable
. - bandwidth
Capacity Number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Number - Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
- bss
Color Number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values:
disable
,enable
. - call
Capacity Number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values:
disable
,enable
,80MHz
,40MHz
,20MHz
,160MHz
. - channel
Utilization String - Enable/disable measuring channel utilization. Valid values:
disable
,enable
. - channels List<String>
- Selected list of wireless radio channels.
- coexistence String
- Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values:
disable
,enable
. - darrp String
- Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values:
disable
,enable
. - drma String
- Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values:
disable
,enable
. - drma
Sensitivity String - Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values:
low
,medium
,high
. - dtim Number
- Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
- frag
Threshold Number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server NumberPort - Iperf service port number.
- max
Clients Number - Maximum number of stations (STAs) or WiFi clients supported by the radio. Range depends on the hardware.
- max
Distance Number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode String - Configure radio MIMO mode (default = default). Valid values:
default
,1x1
,2x2
,3x3
,4x4
,8x8
. - mode String
- Mode of radio 1. Radio 1 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values:
disabled
,ap
,monitor
,sniffer
. - n80211d String
- Enable/disable 802.11d countryie(default = enable). Valid values:
disable
,enable
. - object
Wirelesscontroller StringWtpprofile Radio1Id - an identifier for the resource.
- optional
Antenna String - Optional antenna used on FAP (default = none). Valid values:
none
,FANT-04ABGN-0606-O-N
,FANT-04ABGN-1414-P-N
,FANT-04ABGN-8065-P-N
,FANT-04ABGN-0606-O-R
,FANT-04ABGN-0606-P-R
,FANT-10ACAX-1213-D-N
,FANT-08ABGN-1213-D-R
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode String - Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values:
dBm
,percentage
. - power
Value Number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes List<String> - Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values:
tim
,ac-vo
,no-obss-scan
,no-11b-rate
,client-rate-follow
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Number - Radio-Id.
- rts
Threshold Number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report NumberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- 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
. - short
Guard StringInterval - Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values:
disable
,enable
. - spectrum
Analysis String - Enable/disable spectrum analysis to find interference that would negatively impact wireless performance. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes List<String> - Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values:
disable
,power-save
,aggr-limit
,retry-limit
,send-bar
. - vap1 String
- Virtual Access Point (VAP) for wlan ID 1
- vap2 String
- Virtual Access Point (VAP) for wlan ID 2
- vap3 String
- Virtual Access Point (VAP) for wlan ID 3
- vap4 String
- Virtual Access Point (VAP) for wlan ID 4
- vap5 String
- Virtual Access Point (VAP) for wlan ID 5
- vap6 String
- Virtual Access Point (VAP) for wlan ID 6
- vap7 String
- Virtual Access Point (VAP) for wlan ID 7
- vap8 String
- Virtual Access Point (VAP) for wlan ID 8
- vap
All String - Enable/disable the automatic inheritance of all Virtual Access Points (VAPs) (default = enable). Valid values:
disable
,enable
,tunnel
,bridge
,manual
. - vaps String
- Manually selected list of Virtual Access Points (VAPs).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- wtp
Profile String - Wtp Profile.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
Import
ObjectWirelessController WtpProfileRadio1 can be imported using any of these accepted formats:
Set import_options = [“wtp_profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerWtpprofileRadio1:ObjectWirelesscontrollerWtpprofileRadio1 labelname ObjectWirelessControllerWtpProfileRadio1
$ 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.