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

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,
});
Copy
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)
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fortimanager.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
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
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
Copy

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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. 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,
});
Copy
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),
})
Copy
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());
Copy
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)
Copy
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,
});
Copy
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
Copy

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 is adom, otherwise the value of adom in the provider will be inherited.
BandwidthAdmissionControl string
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
BandwidthCapacity double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
Burst string
Enable/disable client rate burst. Valid values: disable, enable.
CallAdmissionControl string
Enable/disable WMM call admission control. Valid values: disable, enable.
CallCapacity 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).
DownlinkSta double
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
DscpWmmBes List<double>
DSCP mapping for best effort access (default = 0 24).
DscpWmmBks List<double>
DSCP mapping for background access (default = 8 16).
DscpWmmMapping string
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
DscpWmmVis List<double>
DSCP mapping for video access (default = 32 40).
DscpWmmVos List<double>
DSCP mapping for voice access (default = 48 56).
Name string
WiFi QoS profile name.
ObjectWirelesscontrollerQosprofileId string
an identifier for the resource with format {{name}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Uplink double
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
UplinkSta 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.
WmmBeDscp double
DSCP marking for best effort access (default = 0).
WmmBkDscp double
DSCP marking for background access (default = 8).
WmmDscpMarking string
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
WmmUapsd string
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
WmmViDscp double
DSCP marking for video access (default = 32).
WmmVoDscp double
DSCP marking for voice access (default = 48).
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
BandwidthAdmissionControl string
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
BandwidthCapacity float64
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
Burst string
Enable/disable client rate burst. Valid values: disable, enable.
CallAdmissionControl string
Enable/disable WMM call admission control. Valid values: disable, enable.
CallCapacity 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).
DownlinkSta float64
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
DscpWmmBes []float64
DSCP mapping for best effort access (default = 0 24).
DscpWmmBks []float64
DSCP mapping for background access (default = 8 16).
DscpWmmMapping string
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
DscpWmmVis []float64
DSCP mapping for video access (default = 32 40).
DscpWmmVos []float64
DSCP mapping for voice access (default = 48 56).
Name string
WiFi QoS profile name.
ObjectWirelesscontrollerQosprofileId string
an identifier for the resource with format {{name}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Uplink float64
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
UplinkSta 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.
WmmBeDscp float64
DSCP marking for best effort access (default = 0).
WmmBkDscp float64
DSCP marking for background access (default = 8).
WmmDscpMarking string
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
WmmUapsd string
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
WmmViDscp float64
DSCP marking for video access (default = 32).
WmmVoDscp float64
DSCP marking for voice access (default = 48).
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
bandwidthAdmissionControl String
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
bandwidthCapacity Double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
burst String
Enable/disable client rate burst. Valid values: disable, enable.
callAdmissionControl String
Enable/disable WMM call admission control. Valid values: disable, enable.
callCapacity 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).
downlinkSta Double
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
dscpWmmBes List<Double>
DSCP mapping for best effort access (default = 0 24).
dscpWmmBks List<Double>
DSCP mapping for background access (default = 8 16).
dscpWmmMapping String
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
dscpWmmVis List<Double>
DSCP mapping for video access (default = 32 40).
dscpWmmVos List<Double>
DSCP mapping for voice access (default = 48 56).
name String
WiFi QoS profile name.
objectWirelesscontrollerQosprofileId String
an identifier for the resource with format {{name}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uplink Double
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
uplinkSta 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.
wmmBeDscp Double
DSCP marking for best effort access (default = 0).
wmmBkDscp Double
DSCP marking for background access (default = 8).
wmmDscpMarking String
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
wmmUapsd String
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
wmmViDscp Double
DSCP marking for video access (default = 32).
wmmVoDscp Double
DSCP marking for voice access (default = 48).
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
bandwidthAdmissionControl string
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
bandwidthCapacity number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
burst string
Enable/disable client rate burst. Valid values: disable, enable.
callAdmissionControl string
Enable/disable WMM call admission control. Valid values: disable, enable.
callCapacity 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).
downlinkSta number
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
dscpWmmBes number[]
DSCP mapping for best effort access (default = 0 24).
dscpWmmBks number[]
DSCP mapping for background access (default = 8 16).
dscpWmmMapping string
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
dscpWmmVis number[]
DSCP mapping for video access (default = 32 40).
dscpWmmVos number[]
DSCP mapping for voice access (default = 48 56).
name string
WiFi QoS profile name.
objectWirelesscontrollerQosprofileId string
an identifier for the resource with format {{name}}.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uplink number
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
uplinkSta 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.
wmmBeDscp number
DSCP marking for best effort access (default = 0).
wmmBkDscp number
DSCP marking for background access (default = 8).
wmmDscpMarking string
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
wmmUapsd string
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
wmmViDscp number
DSCP marking for video access (default = 32).
wmmVoDscp number
DSCP marking for voice access (default = 48).
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
bandwidth_admission_control str
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_control str
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_bes Sequence[float]
DSCP mapping for best effort access (default = 0 24).
dscp_wmm_bks Sequence[float]
DSCP mapping for background access (default = 8 16).
dscp_wmm_mapping str
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
dscp_wmm_vis Sequence[float]
DSCP mapping for video access (default = 32 40).
dscp_wmm_vos Sequence[float]
DSCP mapping for voice access (default = 48 56).
name str
WiFi QoS profile name.
object_wirelesscontroller_qosprofile_id str
an identifier for the resource with format {{name}}.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
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_dscp float
DSCP marking for best effort access (default = 0).
wmm_bk_dscp float
DSCP marking for background access (default = 8).
wmm_dscp_marking str
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_dscp float
DSCP marking for video access (default = 32).
wmm_vo_dscp float
DSCP marking for voice access (default = 48).
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
bandwidthAdmissionControl String
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
bandwidthCapacity Number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
burst String
Enable/disable client rate burst. Valid values: disable, enable.
callAdmissionControl String
Enable/disable WMM call admission control. Valid values: disable, enable.
callCapacity 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).
downlinkSta Number
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
dscpWmmBes List<Number>
DSCP mapping for best effort access (default = 0 24).
dscpWmmBks List<Number>
DSCP mapping for background access (default = 8 16).
dscpWmmMapping String
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
dscpWmmVis List<Number>
DSCP mapping for video access (default = 32 40).
dscpWmmVos List<Number>
DSCP mapping for voice access (default = 48 56).
name String
WiFi QoS profile name.
objectWirelesscontrollerQosprofileId String
an identifier for the resource with format {{name}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uplink Number
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
uplinkSta 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.
wmmBeDscp Number
DSCP marking for best effort access (default = 0).
wmmBkDscp Number
DSCP marking for background access (default = 8).
wmmDscpMarking String
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
wmmUapsd String
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
wmmViDscp Number
DSCP marking for video access (default = 32).
wmmVoDscp Number
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
BandwidthAdmissionControl string
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
BandwidthCapacity double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
Burst string
Enable/disable client rate burst. Valid values: disable, enable.
CallAdmissionControl string
Enable/disable WMM call admission control. Valid values: disable, enable.
CallCapacity 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).
DownlinkSta double
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
DscpWmmBes List<double>
DSCP mapping for best effort access (default = 0 24).
DscpWmmBks List<double>
DSCP mapping for background access (default = 8 16).
DscpWmmMapping string
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
DscpWmmVis List<double>
DSCP mapping for video access (default = 32 40).
DscpWmmVos List<double>
DSCP mapping for voice access (default = 48 56).
Name string
WiFi QoS profile name.
ObjectWirelesscontrollerQosprofileId string
an identifier for the resource with format {{name}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Uplink double
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
UplinkSta 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.
WmmBeDscp double
DSCP marking for best effort access (default = 0).
WmmBkDscp double
DSCP marking for background access (default = 8).
WmmDscpMarking string
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
WmmUapsd string
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
WmmViDscp double
DSCP marking for video access (default = 32).
WmmVoDscp double
DSCP marking for voice access (default = 48).
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
BandwidthAdmissionControl string
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
BandwidthCapacity float64
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
Burst string
Enable/disable client rate burst. Valid values: disable, enable.
CallAdmissionControl string
Enable/disable WMM call admission control. Valid values: disable, enable.
CallCapacity 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).
DownlinkSta float64
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
DscpWmmBes []float64
DSCP mapping for best effort access (default = 0 24).
DscpWmmBks []float64
DSCP mapping for background access (default = 8 16).
DscpWmmMapping string
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
DscpWmmVis []float64
DSCP mapping for video access (default = 32 40).
DscpWmmVos []float64
DSCP mapping for voice access (default = 48 56).
Name string
WiFi QoS profile name.
ObjectWirelesscontrollerQosprofileId string
an identifier for the resource with format {{name}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Uplink float64
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
UplinkSta 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.
WmmBeDscp float64
DSCP marking for best effort access (default = 0).
WmmBkDscp float64
DSCP marking for background access (default = 8).
WmmDscpMarking string
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
WmmUapsd string
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
WmmViDscp float64
DSCP marking for video access (default = 32).
WmmVoDscp float64
DSCP marking for voice access (default = 48).
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
bandwidthAdmissionControl String
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
bandwidthCapacity Double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
burst String
Enable/disable client rate burst. Valid values: disable, enable.
callAdmissionControl String
Enable/disable WMM call admission control. Valid values: disable, enable.
callCapacity 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).
downlinkSta Double
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
dscpWmmBes List<Double>
DSCP mapping for best effort access (default = 0 24).
dscpWmmBks List<Double>
DSCP mapping for background access (default = 8 16).
dscpWmmMapping String
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
dscpWmmVis List<Double>
DSCP mapping for video access (default = 32 40).
dscpWmmVos List<Double>
DSCP mapping for voice access (default = 48 56).
name String
WiFi QoS profile name.
objectWirelesscontrollerQosprofileId String
an identifier for the resource with format {{name}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uplink Double
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
uplinkSta 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.
wmmBeDscp Double
DSCP marking for best effort access (default = 0).
wmmBkDscp Double
DSCP marking for background access (default = 8).
wmmDscpMarking String
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
wmmUapsd String
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
wmmViDscp Double
DSCP marking for video access (default = 32).
wmmVoDscp Double
DSCP marking for voice access (default = 48).
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
bandwidthAdmissionControl string
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
bandwidthCapacity number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
burst string
Enable/disable client rate burst. Valid values: disable, enable.
callAdmissionControl string
Enable/disable WMM call admission control. Valid values: disable, enable.
callCapacity 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).
downlinkSta number
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
dscpWmmBes number[]
DSCP mapping for best effort access (default = 0 24).
dscpWmmBks number[]
DSCP mapping for background access (default = 8 16).
dscpWmmMapping string
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
dscpWmmVis number[]
DSCP mapping for video access (default = 32 40).
dscpWmmVos number[]
DSCP mapping for voice access (default = 48 56).
name string
WiFi QoS profile name.
objectWirelesscontrollerQosprofileId string
an identifier for the resource with format {{name}}.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uplink number
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
uplinkSta 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.
wmmBeDscp number
DSCP marking for best effort access (default = 0).
wmmBkDscp number
DSCP marking for background access (default = 8).
wmmDscpMarking string
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
wmmUapsd string
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
wmmViDscp number
DSCP marking for video access (default = 32).
wmmVoDscp number
DSCP marking for voice access (default = 48).
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
bandwidth_admission_control str
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_control str
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_bes Sequence[float]
DSCP mapping for best effort access (default = 0 24).
dscp_wmm_bks Sequence[float]
DSCP mapping for background access (default = 8 16).
dscp_wmm_mapping str
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
dscp_wmm_vis Sequence[float]
DSCP mapping for video access (default = 32 40).
dscp_wmm_vos Sequence[float]
DSCP mapping for voice access (default = 48 56).
name str
WiFi QoS profile name.
object_wirelesscontroller_qosprofile_id str
an identifier for the resource with format {{name}}.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
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_dscp float
DSCP marking for best effort access (default = 0).
wmm_bk_dscp float
DSCP marking for background access (default = 8).
wmm_dscp_marking str
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_dscp float
DSCP marking for video access (default = 32).
wmm_vo_dscp float
DSCP marking for voice access (default = 48).
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
bandwidthAdmissionControl String
Enable/disable WMM bandwidth admission control. Valid values: disable, enable.
bandwidthCapacity Number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
burst String
Enable/disable client rate burst. Valid values: disable, enable.
callAdmissionControl String
Enable/disable WMM call admission control. Valid values: disable, enable.
callCapacity 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).
downlinkSta Number
Maximum downlink bandwidth for clients (0 - 2097152 Kbps, default = 0, 0 means no limit).
dscpWmmBes List<Number>
DSCP mapping for best effort access (default = 0 24).
dscpWmmBks List<Number>
DSCP mapping for background access (default = 8 16).
dscpWmmMapping String
Enable/disable Differentiated Services Code Point (DSCP) mapping. Valid values: disable, enable.
dscpWmmVis List<Number>
DSCP mapping for video access (default = 32 40).
dscpWmmVos List<Number>
DSCP mapping for voice access (default = 48 56).
name String
WiFi QoS profile name.
objectWirelesscontrollerQosprofileId String
an identifier for the resource with format {{name}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uplink Number
Maximum uplink bandwidth for Virtual Access Points (VAPs) (0 - 2097152 Kbps, default = 0, 0 means no limit).
uplinkSta 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.
wmmBeDscp Number
DSCP marking for best effort access (default = 0).
wmmBkDscp Number
DSCP marking for background access (default = 8).
wmmDscpMarking String
Enable/disable WMM Differentiated Services Code Point (DSCP) marking. Valid values: disable, enable.
wmmUapsd String
Enable/disable WMM Unscheduled Automatic Power Save Delivery (U-APSD) power save mode. Valid values: disable, enable.
wmmViDscp Number
DSCP marking for video access (default = 32).
wmmVoDscp Number
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}}
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
fortimanager fortinetdev/terraform-provider-fortimanager
License
Notes
This Pulumi package is based on the fortimanager Terraform Provider.