fortimanager.ObjectWirelesscontrollerQosprofile
Explore with Pulumi AI
Configure WiFi quality of service (QoS) profiles.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectWirelesscontrollerQosprofile("trname", {
burst: "enable",
callAdmissionControl: "disable",
comment: "This is a Terraform example",
downlink: 10,
dscpWmmMapping: "disable",
wmm: "enable",
wmmBkDscp: 8,
wmmDscpMarking: "disable",
wmmUapsd: "enable",
wmmViDscp: 32,
wmmVoDscp: 48,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectWirelesscontrollerQosprofile("trname",
burst="enable",
call_admission_control="disable",
comment="This is a Terraform example",
downlink=10,
dscp_wmm_mapping="disable",
wmm="enable",
wmm_bk_dscp=8,
wmm_dscp_marking="disable",
wmm_uapsd="enable",
wmm_vi_dscp=32,
wmm_vo_dscp=48)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectWirelesscontrollerQosprofile(ctx, "trname", &fortimanager.ObjectWirelesscontrollerQosprofileArgs{
Burst: pulumi.String("enable"),
CallAdmissionControl: pulumi.String("disable"),
Comment: pulumi.String("This is a Terraform example"),
Downlink: pulumi.Float64(10),
DscpWmmMapping: pulumi.String("disable"),
Wmm: pulumi.String("enable"),
WmmBkDscp: pulumi.Float64(8),
WmmDscpMarking: pulumi.String("disable"),
WmmUapsd: pulumi.String("enable"),
WmmViDscp: pulumi.Float64(32),
WmmVoDscp: pulumi.Float64(48),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectWirelesscontrollerQosprofile("trname", new()
{
Burst = "enable",
CallAdmissionControl = "disable",
Comment = "This is a Terraform example",
Downlink = 10,
DscpWmmMapping = "disable",
Wmm = "enable",
WmmBkDscp = 8,
WmmDscpMarking = "disable",
WmmUapsd = "enable",
WmmViDscp = 32,
WmmVoDscp = 48,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerQosprofile;
import com.pulumi.fortimanager.ObjectWirelesscontrollerQosprofileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new ObjectWirelesscontrollerQosprofile("trname", ObjectWirelesscontrollerQosprofileArgs.builder()
.burst("enable")
.callAdmissionControl("disable")
.comment("This is a Terraform example")
.downlink(10)
.dscpWmmMapping("disable")
.wmm("enable")
.wmmBkDscp(8)
.wmmDscpMarking("disable")
.wmmUapsd("enable")
.wmmViDscp(32)
.wmmVoDscp(48)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWirelesscontrollerQosprofile
properties:
burst: enable
callAdmissionControl: disable
comment: This is a Terraform example
downlink: 10
dscpWmmMapping: disable
wmm: enable
wmmBkDscp: 8
wmmDscpMarking: disable
wmmUapsd: enable
wmmViDscp: 32
wmmVoDscp: 48
Create ObjectWirelesscontrollerQosprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerQosprofile(name: string, args?: ObjectWirelesscontrollerQosprofileArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerQosprofile(resource_name: str,
args: Optional[ObjectWirelesscontrollerQosprofileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerQosprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
bandwidth_admission_control: Optional[str] = None,
bandwidth_capacity: Optional[float] = None,
burst: Optional[str] = None,
call_admission_control: Optional[str] = None,
call_capacity: Optional[float] = None,
comment: Optional[str] = None,
downlink: Optional[float] = None,
downlink_sta: Optional[float] = None,
dscp_wmm_bes: Optional[Sequence[float]] = None,
dscp_wmm_bks: Optional[Sequence[float]] = None,
dscp_wmm_mapping: Optional[str] = None,
dscp_wmm_vis: Optional[Sequence[float]] = None,
dscp_wmm_vos: Optional[Sequence[float]] = None,
name: Optional[str] = None,
object_wirelesscontroller_qosprofile_id: Optional[str] = None,
scopetype: Optional[str] = None,
uplink: Optional[float] = None,
uplink_sta: Optional[float] = None,
wmm: Optional[str] = None,
wmm_be_dscp: Optional[float] = None,
wmm_bk_dscp: Optional[float] = None,
wmm_dscp_marking: Optional[str] = None,
wmm_uapsd: Optional[str] = None,
wmm_vi_dscp: Optional[float] = None,
wmm_vo_dscp: Optional[float] = None)
func NewObjectWirelesscontrollerQosprofile(ctx *Context, name string, args *ObjectWirelesscontrollerQosprofileArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerQosprofile, error)
public ObjectWirelesscontrollerQosprofile(string name, ObjectWirelesscontrollerQosprofileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerQosprofile(String name, ObjectWirelesscontrollerQosprofileArgs args)
public ObjectWirelesscontrollerQosprofile(String name, ObjectWirelesscontrollerQosprofileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerQosprofile
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 ObjectWirelesscontrollerQosprofileArgs
- 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 ObjectWirelesscontrollerQosprofileArgs
- 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 ObjectWirelesscontrollerQosprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerQosprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerQosprofileArgs
- 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 objectWirelesscontrollerQosprofileResource = new Fortimanager.ObjectWirelesscontrollerQosprofile("objectWirelesscontrollerQosprofileResource", new()
{
Adom = "string",
BandwidthAdmissionControl = "string",
BandwidthCapacity = 0,
Burst = "string",
CallAdmissionControl = "string",
CallCapacity = 0,
Comment = "string",
Downlink = 0,
DownlinkSta = 0,
DscpWmmBes = new[]
{
0,
},
DscpWmmBks = new[]
{
0,
},
DscpWmmMapping = "string",
DscpWmmVis = new[]
{
0,
},
DscpWmmVos = new[]
{
0,
},
Name = "string",
ObjectWirelesscontrollerQosprofileId = "string",
Scopetype = "string",
Uplink = 0,
UplinkSta = 0,
Wmm = "string",
WmmBeDscp = 0,
WmmBkDscp = 0,
WmmDscpMarking = "string",
WmmUapsd = "string",
WmmViDscp = 0,
WmmVoDscp = 0,
});
example, err := fortimanager.NewObjectWirelesscontrollerQosprofile(ctx, "objectWirelesscontrollerQosprofileResource", &fortimanager.ObjectWirelesscontrollerQosprofileArgs{
Adom: pulumi.String("string"),
BandwidthAdmissionControl: pulumi.String("string"),
BandwidthCapacity: pulumi.Float64(0),
Burst: pulumi.String("string"),
CallAdmissionControl: pulumi.String("string"),
CallCapacity: pulumi.Float64(0),
Comment: pulumi.String("string"),
Downlink: pulumi.Float64(0),
DownlinkSta: pulumi.Float64(0),
DscpWmmBes: pulumi.Float64Array{
pulumi.Float64(0),
},
DscpWmmBks: pulumi.Float64Array{
pulumi.Float64(0),
},
DscpWmmMapping: pulumi.String("string"),
DscpWmmVis: pulumi.Float64Array{
pulumi.Float64(0),
},
DscpWmmVos: pulumi.Float64Array{
pulumi.Float64(0),
},
Name: pulumi.String("string"),
ObjectWirelesscontrollerQosprofileId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Uplink: pulumi.Float64(0),
UplinkSta: pulumi.Float64(0),
Wmm: pulumi.String("string"),
WmmBeDscp: pulumi.Float64(0),
WmmBkDscp: pulumi.Float64(0),
WmmDscpMarking: pulumi.String("string"),
WmmUapsd: pulumi.String("string"),
WmmViDscp: pulumi.Float64(0),
WmmVoDscp: pulumi.Float64(0),
})
var objectWirelesscontrollerQosprofileResource = new ObjectWirelesscontrollerQosprofile("objectWirelesscontrollerQosprofileResource", ObjectWirelesscontrollerQosprofileArgs.builder()
.adom("string")
.bandwidthAdmissionControl("string")
.bandwidthCapacity(0)
.burst("string")
.callAdmissionControl("string")
.callCapacity(0)
.comment("string")
.downlink(0)
.downlinkSta(0)
.dscpWmmBes(0)
.dscpWmmBks(0)
.dscpWmmMapping("string")
.dscpWmmVis(0)
.dscpWmmVos(0)
.name("string")
.objectWirelesscontrollerQosprofileId("string")
.scopetype("string")
.uplink(0)
.uplinkSta(0)
.wmm("string")
.wmmBeDscp(0)
.wmmBkDscp(0)
.wmmDscpMarking("string")
.wmmUapsd("string")
.wmmViDscp(0)
.wmmVoDscp(0)
.build());
object_wirelesscontroller_qosprofile_resource = fortimanager.ObjectWirelesscontrollerQosprofile("objectWirelesscontrollerQosprofileResource",
adom="string",
bandwidth_admission_control="string",
bandwidth_capacity=0,
burst="string",
call_admission_control="string",
call_capacity=0,
comment="string",
downlink=0,
downlink_sta=0,
dscp_wmm_bes=[0],
dscp_wmm_bks=[0],
dscp_wmm_mapping="string",
dscp_wmm_vis=[0],
dscp_wmm_vos=[0],
name="string",
object_wirelesscontroller_qosprofile_id="string",
scopetype="string",
uplink=0,
uplink_sta=0,
wmm="string",
wmm_be_dscp=0,
wmm_bk_dscp=0,
wmm_dscp_marking="string",
wmm_uapsd="string",
wmm_vi_dscp=0,
wmm_vo_dscp=0)
const objectWirelesscontrollerQosprofileResource = new fortimanager.ObjectWirelesscontrollerQosprofile("objectWirelesscontrollerQosprofileResource", {
adom: "string",
bandwidthAdmissionControl: "string",
bandwidthCapacity: 0,
burst: "string",
callAdmissionControl: "string",
callCapacity: 0,
comment: "string",
downlink: 0,
downlinkSta: 0,
dscpWmmBes: [0],
dscpWmmBks: [0],
dscpWmmMapping: "string",
dscpWmmVis: [0],
dscpWmmVos: [0],
name: "string",
objectWirelesscontrollerQosprofileId: "string",
scopetype: "string",
uplink: 0,
uplinkSta: 0,
wmm: "string",
wmmBeDscp: 0,
wmmBkDscp: 0,
wmmDscpMarking: "string",
wmmUapsd: "string",
wmmViDscp: 0,
wmmVoDscp: 0,
});
type: fortimanager:ObjectWirelesscontrollerQosprofile
properties:
adom: string
bandwidthAdmissionControl: string
bandwidthCapacity: 0
burst: string
callAdmissionControl: string
callCapacity: 0
comment: string
downlink: 0
downlinkSta: 0
dscpWmmBes:
- 0
dscpWmmBks:
- 0
dscpWmmMapping: string
dscpWmmVis:
- 0
dscpWmmVos:
- 0
name: string
objectWirelesscontrollerQosprofileId: string
scopetype: string
uplink: 0
uplinkSta: 0
wmm: string
wmmBeDscp: 0
wmmBkDscp: 0
wmmDscpMarking: string
wmmUapsd: string
wmmViDscp: 0
wmmVoDscp: 0
ObjectWirelesscontrollerQosprofile 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 ObjectWirelesscontrollerQosprofile resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Admission stringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - Bandwidth
Capacity double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Burst string
- Enable/disable client rate burst. Valid values:
disable
,enable
. - Call
Admission stringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - Call
Capacity double - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- Comment string
- Comment.
- Downlink double
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Downlink
Sta double - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Dscp
Wmm List<double>Bes - DSCP mapping for best effort access (default = 0 24).
- Dscp
Wmm List<double>Bks - DSCP mapping for background access (default = 8 16).
- Dscp
Wmm stringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - Dscp
Wmm List<double>Vis - DSCP mapping for video access (default = 32 40).
- Dscp
Wmm List<double>Vos - DSCP mapping for voice access (default = 48 56).
- Name string
- WiFi QoS profile name.
- Object
Wirelesscontroller stringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - Uplink double
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Uplink
Sta double - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Wmm string
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - Wmm
Be doubleDscp - DSCP marking for best effort access (default = 0).
- Wmm
Bk doubleDscp - DSCP marking for background access (default = 8).
- Wmm
Dscp stringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - Wmm
Uapsd string - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - Wmm
Vi doubleDscp - DSCP marking for video access (default = 32).
- Wmm
Vo doubleDscp - DSCP marking for voice access (default = 48).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Admission stringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - Bandwidth
Capacity float64 - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Burst string
- Enable/disable client rate burst. Valid values:
disable
,enable
. - Call
Admission stringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - Call
Capacity float64 - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- Comment string
- Comment.
- Downlink float64
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Downlink
Sta float64 - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Dscp
Wmm []float64Bes - DSCP mapping for best effort access (default = 0 24).
- Dscp
Wmm []float64Bks - DSCP mapping for background access (default = 8 16).
- Dscp
Wmm stringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - Dscp
Wmm []float64Vis - DSCP mapping for video access (default = 32 40).
- Dscp
Wmm []float64Vos - DSCP mapping for voice access (default = 48 56).
- Name string
- WiFi QoS profile name.
- Object
Wirelesscontroller stringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - Uplink float64
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Uplink
Sta float64 - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Wmm string
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - Wmm
Be float64Dscp - DSCP marking for best effort access (default = 0).
- Wmm
Bk float64Dscp - DSCP marking for background access (default = 8).
- Wmm
Dscp stringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - Wmm
Uapsd string - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - Wmm
Vi float64Dscp - DSCP marking for video access (default = 32).
- Wmm
Vo float64Dscp - DSCP marking for voice access (default = 48).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Admission StringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - bandwidth
Capacity Double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- burst String
- Enable/disable client rate burst. Valid values:
disable
,enable
. - call
Admission StringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - call
Capacity Double - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- comment String
- Comment.
- downlink Double
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- downlink
Sta Double - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- dscp
Wmm List<Double>Bes - DSCP mapping for best effort access (default = 0 24).
- dscp
Wmm List<Double>Bks - DSCP mapping for background access (default = 8 16).
- dscp
Wmm StringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - dscp
Wmm List<Double>Vis - DSCP mapping for video access (default = 32 40).
- dscp
Wmm List<Double>Vos - DSCP mapping for voice access (default = 48 56).
- name String
- WiFi QoS profile name.
- object
Wirelesscontroller StringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - uplink Double
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- uplink
Sta Double - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- wmm String
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - wmm
Be DoubleDscp - DSCP marking for best effort access (default = 0).
- wmm
Bk DoubleDscp - DSCP marking for background access (default = 8).
- wmm
Dscp StringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - wmm
Uapsd String - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - wmm
Vi DoubleDscp - DSCP marking for video access (default = 32).
- wmm
Vo DoubleDscp - DSCP marking for voice access (default = 48).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Admission stringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - bandwidth
Capacity number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- burst string
- Enable/disable client rate burst. Valid values:
disable
,enable
. - call
Admission stringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - call
Capacity number - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- comment string
- Comment.
- downlink number
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- downlink
Sta number - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- dscp
Wmm number[]Bes - DSCP mapping for best effort access (default = 0 24).
- dscp
Wmm number[]Bks - DSCP mapping for background access (default = 8 16).
- dscp
Wmm stringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - dscp
Wmm number[]Vis - DSCP mapping for video access (default = 32 40).
- dscp
Wmm number[]Vos - DSCP mapping for voice access (default = 48 56).
- name string
- WiFi QoS profile name.
- object
Wirelesscontroller stringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - uplink number
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- uplink
Sta number - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- wmm string
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - wmm
Be numberDscp - DSCP marking for best effort access (default = 0).
- wmm
Bk numberDscp - DSCP marking for background access (default = 8).
- wmm
Dscp stringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - wmm
Uapsd string - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - wmm
Vi numberDscp - DSCP marking for video access (default = 32).
- wmm
Vo numberDscp - DSCP marking for voice access (default = 48).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth_
admission_ strcontrol - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - bandwidth_
capacity float - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- burst str
- Enable/disable client rate burst. Valid values:
disable
,enable
. - call_
admission_ strcontrol - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - call_
capacity float - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- comment str
- Comment.
- downlink float
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- downlink_
sta float - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- dscp_
wmm_ Sequence[float]bes - DSCP mapping for best effort access (default = 0 24).
- dscp_
wmm_ Sequence[float]bks - DSCP mapping for background access (default = 8 16).
- dscp_
wmm_ strmapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - dscp_
wmm_ Sequence[float]vis - DSCP mapping for video access (default = 32 40).
- dscp_
wmm_ Sequence[float]vos - DSCP mapping for voice access (default = 48 56).
- name str
- WiFi QoS profile name.
- object_
wirelesscontroller_ strqosprofile_ id - an identifier for the resource with format {{name}}.
- 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
. - uplink float
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- uplink_
sta float - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- wmm str
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - wmm_
be_ floatdscp - DSCP marking for best effort access (default = 0).
- wmm_
bk_ floatdscp - DSCP marking for background access (default = 8).
- wmm_
dscp_ strmarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - wmm_
uapsd str - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - wmm_
vi_ floatdscp - DSCP marking for video access (default = 32).
- wmm_
vo_ floatdscp - DSCP marking for voice access (default = 48).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Admission StringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - bandwidth
Capacity Number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- burst String
- Enable/disable client rate burst. Valid values:
disable
,enable
. - call
Admission StringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - call
Capacity Number - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- comment String
- Comment.
- downlink Number
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- downlink
Sta Number - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- dscp
Wmm List<Number>Bes - DSCP mapping for best effort access (default = 0 24).
- dscp
Wmm List<Number>Bks - DSCP mapping for background access (default = 8 16).
- dscp
Wmm StringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - dscp
Wmm List<Number>Vis - DSCP mapping for video access (default = 32 40).
- dscp
Wmm List<Number>Vos - DSCP mapping for voice access (default = 48 56).
- name String
- WiFi QoS profile name.
- object
Wirelesscontroller StringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - uplink Number
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- uplink
Sta Number - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- wmm String
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - wmm
Be NumberDscp - DSCP marking for best effort access (default = 0).
- wmm
Bk NumberDscp - DSCP marking for background access (default = 8).
- wmm
Dscp StringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - wmm
Uapsd String - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - wmm
Vi NumberDscp - DSCP marking for video access (default = 32).
- wmm
Vo NumberDscp - DSCP marking for voice access (default = 48).
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerQosprofile 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 ObjectWirelesscontrollerQosprofile Resource
Get an existing ObjectWirelesscontrollerQosprofile 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?: ObjectWirelesscontrollerQosprofileState, opts?: CustomResourceOptions): ObjectWirelesscontrollerQosprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
bandwidth_admission_control: Optional[str] = None,
bandwidth_capacity: Optional[float] = None,
burst: Optional[str] = None,
call_admission_control: Optional[str] = None,
call_capacity: Optional[float] = None,
comment: Optional[str] = None,
downlink: Optional[float] = None,
downlink_sta: Optional[float] = None,
dscp_wmm_bes: Optional[Sequence[float]] = None,
dscp_wmm_bks: Optional[Sequence[float]] = None,
dscp_wmm_mapping: Optional[str] = None,
dscp_wmm_vis: Optional[Sequence[float]] = None,
dscp_wmm_vos: Optional[Sequence[float]] = None,
name: Optional[str] = None,
object_wirelesscontroller_qosprofile_id: Optional[str] = None,
scopetype: Optional[str] = None,
uplink: Optional[float] = None,
uplink_sta: Optional[float] = None,
wmm: Optional[str] = None,
wmm_be_dscp: Optional[float] = None,
wmm_bk_dscp: Optional[float] = None,
wmm_dscp_marking: Optional[str] = None,
wmm_uapsd: Optional[str] = None,
wmm_vi_dscp: Optional[float] = None,
wmm_vo_dscp: Optional[float] = None) -> ObjectWirelesscontrollerQosprofile
func GetObjectWirelesscontrollerQosprofile(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerQosprofileState, opts ...ResourceOption) (*ObjectWirelesscontrollerQosprofile, error)
public static ObjectWirelesscontrollerQosprofile Get(string name, Input<string> id, ObjectWirelesscontrollerQosprofileState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerQosprofile get(String name, Output<String> id, ObjectWirelesscontrollerQosprofileState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWirelesscontrollerQosprofile 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. - Bandwidth
Admission stringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - Bandwidth
Capacity double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Burst string
- Enable/disable client rate burst. Valid values:
disable
,enable
. - Call
Admission stringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - Call
Capacity double - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- Comment string
- Comment.
- Downlink double
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Downlink
Sta double - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Dscp
Wmm List<double>Bes - DSCP mapping for best effort access (default = 0 24).
- Dscp
Wmm List<double>Bks - DSCP mapping for background access (default = 8 16).
- Dscp
Wmm stringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - Dscp
Wmm List<double>Vis - DSCP mapping for video access (default = 32 40).
- Dscp
Wmm List<double>Vos - DSCP mapping for voice access (default = 48 56).
- Name string
- WiFi QoS profile name.
- Object
Wirelesscontroller stringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - Uplink double
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Uplink
Sta double - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Wmm string
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - Wmm
Be doubleDscp - DSCP marking for best effort access (default = 0).
- Wmm
Bk doubleDscp - DSCP marking for background access (default = 8).
- Wmm
Dscp stringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - Wmm
Uapsd string - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - Wmm
Vi doubleDscp - DSCP marking for video access (default = 32).
- Wmm
Vo doubleDscp - DSCP marking for voice access (default = 48).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Admission stringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - Bandwidth
Capacity float64 - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Burst string
- Enable/disable client rate burst. Valid values:
disable
,enable
. - Call
Admission stringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - Call
Capacity float64 - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- Comment string
- Comment.
- Downlink float64
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Downlink
Sta float64 - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Dscp
Wmm []float64Bes - DSCP mapping for best effort access (default = 0 24).
- Dscp
Wmm []float64Bks - DSCP mapping for background access (default = 8 16).
- Dscp
Wmm stringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - Dscp
Wmm []float64Vis - DSCP mapping for video access (default = 32 40).
- Dscp
Wmm []float64Vos - DSCP mapping for voice access (default = 48 56).
- Name string
- WiFi QoS profile name.
- Object
Wirelesscontroller stringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - Uplink float64
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Uplink
Sta float64 - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- Wmm string
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - Wmm
Be float64Dscp - DSCP marking for best effort access (default = 0).
- Wmm
Bk float64Dscp - DSCP marking for background access (default = 8).
- Wmm
Dscp stringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - Wmm
Uapsd string - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - Wmm
Vi float64Dscp - DSCP marking for video access (default = 32).
- Wmm
Vo float64Dscp - DSCP marking for voice access (default = 48).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Admission StringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - bandwidth
Capacity Double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- burst String
- Enable/disable client rate burst. Valid values:
disable
,enable
. - call
Admission StringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - call
Capacity Double - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- comment String
- Comment.
- downlink Double
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- downlink
Sta Double - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- dscp
Wmm List<Double>Bes - DSCP mapping for best effort access (default = 0 24).
- dscp
Wmm List<Double>Bks - DSCP mapping for background access (default = 8 16).
- dscp
Wmm StringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - dscp
Wmm List<Double>Vis - DSCP mapping for video access (default = 32 40).
- dscp
Wmm List<Double>Vos - DSCP mapping for voice access (default = 48 56).
- name String
- WiFi QoS profile name.
- object
Wirelesscontroller StringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - uplink Double
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- uplink
Sta Double - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- wmm String
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - wmm
Be DoubleDscp - DSCP marking for best effort access (default = 0).
- wmm
Bk DoubleDscp - DSCP marking for background access (default = 8).
- wmm
Dscp StringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - wmm
Uapsd String - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - wmm
Vi DoubleDscp - DSCP marking for video access (default = 32).
- wmm
Vo DoubleDscp - DSCP marking for voice access (default = 48).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Admission stringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - bandwidth
Capacity number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- burst string
- Enable/disable client rate burst. Valid values:
disable
,enable
. - call
Admission stringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - call
Capacity number - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- comment string
- Comment.
- downlink number
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- downlink
Sta number - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- dscp
Wmm number[]Bes - DSCP mapping for best effort access (default = 0 24).
- dscp
Wmm number[]Bks - DSCP mapping for background access (default = 8 16).
- dscp
Wmm stringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - dscp
Wmm number[]Vis - DSCP mapping for video access (default = 32 40).
- dscp
Wmm number[]Vos - DSCP mapping for voice access (default = 48 56).
- name string
- WiFi QoS profile name.
- object
Wirelesscontroller stringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - uplink number
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- uplink
Sta number - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- wmm string
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - wmm
Be numberDscp - DSCP marking for best effort access (default = 0).
- wmm
Bk numberDscp - DSCP marking for background access (default = 8).
- wmm
Dscp stringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - wmm
Uapsd string - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - wmm
Vi numberDscp - DSCP marking for video access (default = 32).
- wmm
Vo numberDscp - DSCP marking for voice access (default = 48).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth_
admission_ strcontrol - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - bandwidth_
capacity float - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- burst str
- Enable/disable client rate burst. Valid values:
disable
,enable
. - call_
admission_ strcontrol - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - call_
capacity float - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- comment str
- Comment.
- downlink float
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- downlink_
sta float - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- dscp_
wmm_ Sequence[float]bes - DSCP mapping for best effort access (default = 0 24).
- dscp_
wmm_ Sequence[float]bks - DSCP mapping for background access (default = 8 16).
- dscp_
wmm_ strmapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - dscp_
wmm_ Sequence[float]vis - DSCP mapping for video access (default = 32 40).
- dscp_
wmm_ Sequence[float]vos - DSCP mapping for voice access (default = 48 56).
- name str
- WiFi QoS profile name.
- object_
wirelesscontroller_ strqosprofile_ id - an identifier for the resource with format {{name}}.
- 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
. - uplink float
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- uplink_
sta float - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- wmm str
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - wmm_
be_ floatdscp - DSCP marking for best effort access (default = 0).
- wmm_
bk_ floatdscp - DSCP marking for background access (default = 8).
- wmm_
dscp_ strmarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - wmm_
uapsd str - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - wmm_
vi_ floatdscp - DSCP marking for video access (default = 32).
- wmm_
vo_ floatdscp - DSCP marking for voice access (default = 48).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Admission StringControl - Enable/disable WMM bandwidth admission control. Valid values:
disable
,enable
. - bandwidth
Capacity Number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- burst String
- Enable/disable client rate burst. Valid values:
disable
,enable
. - call
Admission StringControl - Enable/disable WMM call admission control. Valid values:
disable
,enable
. - call
Capacity Number - Maximum number of Voice over WLAN (VoWLAN) phones allowed (0 - 60, default = 10).
- comment String
- Comment.
- downlink Number
- Maximum downlink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- downlink
Sta Number - Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- dscp
Wmm List<Number>Bes - DSCP mapping for best effort access (default = 0 24).
- dscp
Wmm List<Number>Bks - DSCP mapping for background access (default = 8 16).
- dscp
Wmm StringMapping - Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values:
disable
,enable
. - dscp
Wmm List<Number>Vis - DSCP mapping for video access (default = 32 40).
- dscp
Wmm List<Number>Vos - DSCP mapping for voice access (default = 48 56).
- name String
- WiFi QoS profile name.
- object
Wirelesscontroller StringQosprofile Id - an identifier for the resource with format {{name}}.
- 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
. - uplink Number
- Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
- uplink
Sta Number - Maximum uplink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
- wmm String
- Enable/disable WiFi multi-media (WMM) control. Valid values:
disable
,enable
. - wmm
Be NumberDscp - DSCP marking for best effort access (default = 0).
- wmm
Bk NumberDscp - DSCP marking for background access (default = 8).
- wmm
Dscp StringMarking - Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values:
disable
,enable
. - wmm
Uapsd String - Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values:
disable
,enable
. - wmm
Vi NumberDscp - DSCP marking for video access (default = 32).
- wmm
Vo NumberDscp - DSCP marking for voice access (default = 48).
Import
ObjectWirelessController QosProfile can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerQosprofile:ObjectWirelesscontrollerQosprofile labelname {{name}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.