1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectSwitchcontrollerQosIpdscpmap
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectSwitchcontrollerQosIpdscpmap

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Configure FortiSwitch QoS IP precedence/DSCP.

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

    • map: fortimanager.ObjectSwitchcontrollerQosIpdscpmapMap

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectSwitchcontrollerQosIpdscpmap("trname", {maps: [
        {
            cosQueue: 1,
            name: "1",
            value: "46",
        },
        {
            cosQueue: 2,
            name: "2",
            value: "24,26,48,56",
        },
        {
            cosQueue: 3,
            name: "5",
            value: "34",
        },
    ]});
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectSwitchcontrollerQosIpdscpmap("trname", maps=[
        {
            "cos_queue": 1,
            "name": "1",
            "value": "46",
        },
        {
            "cos_queue": 2,
            "name": "2",
            "value": "24,26,48,56",
        },
        {
            "cos_queue": 3,
            "name": "5",
            "value": "34",
        },
    ])
    
    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.NewObjectSwitchcontrollerQosIpdscpmap(ctx, "trname", &fortimanager.ObjectSwitchcontrollerQosIpdscpmapArgs{
    			Maps: fortimanager.ObjectSwitchcontrollerQosIpdscpmapMapTypeArray{
    				&fortimanager.ObjectSwitchcontrollerQosIpdscpmapMapTypeArgs{
    					CosQueue: pulumi.Float64(1),
    					Name:     pulumi.String("1"),
    					Value:    pulumi.String("46"),
    				},
    				&fortimanager.ObjectSwitchcontrollerQosIpdscpmapMapTypeArgs{
    					CosQueue: pulumi.Float64(2),
    					Name:     pulumi.String("2"),
    					Value:    pulumi.String("24,26,48,56"),
    				},
    				&fortimanager.ObjectSwitchcontrollerQosIpdscpmapMapTypeArgs{
    					CosQueue: pulumi.Float64(3),
    					Name:     pulumi.String("5"),
    					Value:    pulumi.String("34"),
    				},
    			},
    		})
    		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.ObjectSwitchcontrollerQosIpdscpmap("trname", new()
        {
            Maps = new[]
            {
                new Fortimanager.Inputs.ObjectSwitchcontrollerQosIpdscpmapMapArgs
                {
                    CosQueue = 1,
                    Name = "1",
                    Value = "46",
                },
                new Fortimanager.Inputs.ObjectSwitchcontrollerQosIpdscpmapMapArgs
                {
                    CosQueue = 2,
                    Name = "2",
                    Value = "24,26,48,56",
                },
                new Fortimanager.Inputs.ObjectSwitchcontrollerQosIpdscpmapMapArgs
                {
                    CosQueue = 3,
                    Name = "5",
                    Value = "34",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectSwitchcontrollerQosIpdscpmap;
    import com.pulumi.fortimanager.ObjectSwitchcontrollerQosIpdscpmapArgs;
    import com.pulumi.fortimanager.inputs.ObjectSwitchcontrollerQosIpdscpmapMapArgs;
    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 ObjectSwitchcontrollerQosIpdscpmap("trname", ObjectSwitchcontrollerQosIpdscpmapArgs.builder()
                .maps(            
                    ObjectSwitchcontrollerQosIpdscpmapMapArgs.builder()
                        .cosQueue(1)
                        .name("1")
                        .value("46")
                        .build(),
                    ObjectSwitchcontrollerQosIpdscpmapMapArgs.builder()
                        .cosQueue(2)
                        .name("2")
                        .value("24,26,48,56")
                        .build(),
                    ObjectSwitchcontrollerQosIpdscpmapMapArgs.builder()
                        .cosQueue(3)
                        .name("5")
                        .value("34")
                        .build())
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectSwitchcontrollerQosIpdscpmap
        properties:
          maps:
            - cosQueue: 1
              name: '1'
              value: '46'
            - cosQueue: 2
              name: '2'
              value: 24,26,48,56
            - cosQueue: 3
              name: '5'
              value: '34'
    

    Create ObjectSwitchcontrollerQosIpdscpmap Resource

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

    Constructor syntax

    new ObjectSwitchcontrollerQosIpdscpmap(name: string, args?: ObjectSwitchcontrollerQosIpdscpmapArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectSwitchcontrollerQosIpdscpmap(resource_name: str,
                                           args: Optional[ObjectSwitchcontrollerQosIpdscpmapArgs] = None,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectSwitchcontrollerQosIpdscpmap(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           adom: Optional[str] = None,
                                           description: Optional[str] = None,
                                           dynamic_sort_subtable: Optional[str] = None,
                                           maps: Optional[Sequence[ObjectSwitchcontrollerQosIpdscpmapMapArgs]] = None,
                                           name: Optional[str] = None,
                                           object_switchcontroller_qos_ipdscpmap_id: Optional[str] = None,
                                           scopetype: Optional[str] = None)
    func NewObjectSwitchcontrollerQosIpdscpmap(ctx *Context, name string, args *ObjectSwitchcontrollerQosIpdscpmapArgs, opts ...ResourceOption) (*ObjectSwitchcontrollerQosIpdscpmap, error)
    public ObjectSwitchcontrollerQosIpdscpmap(string name, ObjectSwitchcontrollerQosIpdscpmapArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectSwitchcontrollerQosIpdscpmap(String name, ObjectSwitchcontrollerQosIpdscpmapArgs args)
    public ObjectSwitchcontrollerQosIpdscpmap(String name, ObjectSwitchcontrollerQosIpdscpmapArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectSwitchcontrollerQosIpdscpmap
    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 ObjectSwitchcontrollerQosIpdscpmapArgs
    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 ObjectSwitchcontrollerQosIpdscpmapArgs
    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 ObjectSwitchcontrollerQosIpdscpmapArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectSwitchcontrollerQosIpdscpmapArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectSwitchcontrollerQosIpdscpmapArgs
    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 objectSwitchcontrollerQosIpdscpmapResource = new Fortimanager.ObjectSwitchcontrollerQosIpdscpmap("objectSwitchcontrollerQosIpdscpmapResource", new()
    {
        Adom = "string",
        Description = "string",
        DynamicSortSubtable = "string",
        Maps = new[]
        {
            new Fortimanager.Inputs.ObjectSwitchcontrollerQosIpdscpmapMapArgs
            {
                CosQueue = 0,
                Diffservs = new[]
                {
                    "string",
                },
                IpPrecedences = new[]
                {
                    "string",
                },
                Name = "string",
                Value = "string",
            },
        },
        Name = "string",
        ObjectSwitchcontrollerQosIpdscpmapId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectSwitchcontrollerQosIpdscpmap(ctx, "objectSwitchcontrollerQosIpdscpmapResource", &fortimanager.ObjectSwitchcontrollerQosIpdscpmapArgs{
    Adom: pulumi.String("string"),
    Description: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Maps: .ObjectSwitchcontrollerQosIpdscpmapMapTypeArray{
    &.ObjectSwitchcontrollerQosIpdscpmapMapTypeArgs{
    CosQueue: pulumi.Float64(0),
    Diffservs: pulumi.StringArray{
    pulumi.String("string"),
    },
    IpPrecedences: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    Name: pulumi.String("string"),
    ObjectSwitchcontrollerQosIpdscpmapId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectSwitchcontrollerQosIpdscpmapResource = new ObjectSwitchcontrollerQosIpdscpmap("objectSwitchcontrollerQosIpdscpmapResource", ObjectSwitchcontrollerQosIpdscpmapArgs.builder()
        .adom("string")
        .description("string")
        .dynamicSortSubtable("string")
        .maps(ObjectSwitchcontrollerQosIpdscpmapMapArgs.builder()
            .cosQueue(0)
            .diffservs("string")
            .ipPrecedences("string")
            .name("string")
            .value("string")
            .build())
        .name("string")
        .objectSwitchcontrollerQosIpdscpmapId("string")
        .scopetype("string")
        .build());
    
    object_switchcontroller_qos_ipdscpmap_resource = fortimanager.ObjectSwitchcontrollerQosIpdscpmap("objectSwitchcontrollerQosIpdscpmapResource",
        adom="string",
        description="string",
        dynamic_sort_subtable="string",
        maps=[{
            "cos_queue": 0,
            "diffservs": ["string"],
            "ip_precedences": ["string"],
            "name": "string",
            "value": "string",
        }],
        name="string",
        object_switchcontroller_qos_ipdscpmap_id="string",
        scopetype="string")
    
    const objectSwitchcontrollerQosIpdscpmapResource = new fortimanager.ObjectSwitchcontrollerQosIpdscpmap("objectSwitchcontrollerQosIpdscpmapResource", {
        adom: "string",
        description: "string",
        dynamicSortSubtable: "string",
        maps: [{
            cosQueue: 0,
            diffservs: ["string"],
            ipPrecedences: ["string"],
            name: "string",
            value: "string",
        }],
        name: "string",
        objectSwitchcontrollerQosIpdscpmapId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectSwitchcontrollerQosIpdscpmap
    properties:
        adom: string
        description: string
        dynamicSortSubtable: string
        maps:
            - cosQueue: 0
              diffservs:
                - string
              ipPrecedences:
                - string
              name: string
              value: string
        name: string
        objectSwitchcontrollerQosIpdscpmapId: string
        scopetype: string
    

    ObjectSwitchcontrollerQosIpdscpmap 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 ObjectSwitchcontrollerQosIpdscpmap 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.
    Description string
    Description of the ip-dscp map name.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Maps List<ObjectSwitchcontrollerQosIpdscpmapMap>
    Map. The structure of map block is documented below.
    Name string
    Dscp map name.
    ObjectSwitchcontrollerQosIpdscpmapId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Description string
    Description of the ip-dscp map name.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Maps []ObjectSwitchcontrollerQosIpdscpmapMapTypeArgs
    Map. The structure of map block is documented below.
    Name string
    Dscp map name.
    ObjectSwitchcontrollerQosIpdscpmapId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description String
    Description of the ip-dscp map name.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    maps List<ObjectSwitchcontrollerQosIpdscpmapMap>
    Map. The structure of map block is documented below.
    name String
    Dscp map name.
    objectSwitchcontrollerQosIpdscpmapId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description string
    Description of the ip-dscp map name.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    maps ObjectSwitchcontrollerQosIpdscpmapMap[]
    Map. The structure of map block is documented below.
    name string
    Dscp map name.
    objectSwitchcontrollerQosIpdscpmapId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description str
    Description of the ip-dscp map name.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    maps Sequence[ObjectSwitchcontrollerQosIpdscpmapMapArgs]
    Map. The structure of map block is documented below.
    name str
    Dscp map name.
    object_switchcontroller_qos_ipdscpmap_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description String
    Description of the ip-dscp map name.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    maps List<Property Map>
    Map. The structure of map block is documented below.
    name String
    Dscp map name.
    objectSwitchcontrollerQosIpdscpmapId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    Outputs

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

    Get an existing ObjectSwitchcontrollerQosIpdscpmap 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?: ObjectSwitchcontrollerQosIpdscpmapState, opts?: CustomResourceOptions): ObjectSwitchcontrollerQosIpdscpmap
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            description: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            maps: Optional[Sequence[ObjectSwitchcontrollerQosIpdscpmapMapArgs]] = None,
            name: Optional[str] = None,
            object_switchcontroller_qos_ipdscpmap_id: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectSwitchcontrollerQosIpdscpmap
    func GetObjectSwitchcontrollerQosIpdscpmap(ctx *Context, name string, id IDInput, state *ObjectSwitchcontrollerQosIpdscpmapState, opts ...ResourceOption) (*ObjectSwitchcontrollerQosIpdscpmap, error)
    public static ObjectSwitchcontrollerQosIpdscpmap Get(string name, Input<string> id, ObjectSwitchcontrollerQosIpdscpmapState? state, CustomResourceOptions? opts = null)
    public static ObjectSwitchcontrollerQosIpdscpmap get(String name, Output<String> id, ObjectSwitchcontrollerQosIpdscpmapState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectSwitchcontrollerQosIpdscpmap    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.
    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.
    Description string
    Description of the ip-dscp map name.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Maps List<ObjectSwitchcontrollerQosIpdscpmapMap>
    Map. The structure of map block is documented below.
    Name string
    Dscp map name.
    ObjectSwitchcontrollerQosIpdscpmapId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Description string
    Description of the ip-dscp map name.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Maps []ObjectSwitchcontrollerQosIpdscpmapMapTypeArgs
    Map. The structure of map block is documented below.
    Name string
    Dscp map name.
    ObjectSwitchcontrollerQosIpdscpmapId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description String
    Description of the ip-dscp map name.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    maps List<ObjectSwitchcontrollerQosIpdscpmapMap>
    Map. The structure of map block is documented below.
    name String
    Dscp map name.
    objectSwitchcontrollerQosIpdscpmapId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description string
    Description of the ip-dscp map name.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    maps ObjectSwitchcontrollerQosIpdscpmapMap[]
    Map. The structure of map block is documented below.
    name string
    Dscp map name.
    objectSwitchcontrollerQosIpdscpmapId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description str
    Description of the ip-dscp map name.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    maps Sequence[ObjectSwitchcontrollerQosIpdscpmapMapArgs]
    Map. The structure of map block is documented below.
    name str
    Dscp map name.
    object_switchcontroller_qos_ipdscpmap_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    description String
    Description of the ip-dscp map name.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    maps List<Property Map>
    Map. The structure of map block is documented below.
    name String
    Dscp map name.
    objectSwitchcontrollerQosIpdscpmapId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    Supporting Types

    ObjectSwitchcontrollerQosIpdscpmapMap, ObjectSwitchcontrollerQosIpdscpmapMapArgs

    CosQueue double
    COS queue number.
    Diffservs List<string>
    Differentiated service. Valid values: CS0, CS1, AF11, AF12, AF13, CS2, AF21, AF22, AF23, CS3, AF31, AF32, AF33, CS4, AF41, AF42, AF43, CS5, EF, CS6, CS7.
    IpPrecedences List<string>
    IP Precedence. Valid values: network-control, internetwork-control, critic-ecp, flashoverride, flash, immediate, priority, routine.
    Name string
    Dscp mapping entry name.
    Value string
    Raw values of DSCP (0 - 63).
    CosQueue float64
    COS queue number.
    Diffservs []string
    Differentiated service. Valid values: CS0, CS1, AF11, AF12, AF13, CS2, AF21, AF22, AF23, CS3, AF31, AF32, AF33, CS4, AF41, AF42, AF43, CS5, EF, CS6, CS7.
    IpPrecedences []string
    IP Precedence. Valid values: network-control, internetwork-control, critic-ecp, flashoverride, flash, immediate, priority, routine.
    Name string
    Dscp mapping entry name.
    Value string
    Raw values of DSCP (0 - 63).
    cosQueue Double
    COS queue number.
    diffservs List<String>
    Differentiated service. Valid values: CS0, CS1, AF11, AF12, AF13, CS2, AF21, AF22, AF23, CS3, AF31, AF32, AF33, CS4, AF41, AF42, AF43, CS5, EF, CS6, CS7.
    ipPrecedences List<String>
    IP Precedence. Valid values: network-control, internetwork-control, critic-ecp, flashoverride, flash, immediate, priority, routine.
    name String
    Dscp mapping entry name.
    value String
    Raw values of DSCP (0 - 63).
    cosQueue number
    COS queue number.
    diffservs string[]
    Differentiated service. Valid values: CS0, CS1, AF11, AF12, AF13, CS2, AF21, AF22, AF23, CS3, AF31, AF32, AF33, CS4, AF41, AF42, AF43, CS5, EF, CS6, CS7.
    ipPrecedences string[]
    IP Precedence. Valid values: network-control, internetwork-control, critic-ecp, flashoverride, flash, immediate, priority, routine.
    name string
    Dscp mapping entry name.
    value string
    Raw values of DSCP (0 - 63).
    cos_queue float
    COS queue number.
    diffservs Sequence[str]
    Differentiated service. Valid values: CS0, CS1, AF11, AF12, AF13, CS2, AF21, AF22, AF23, CS3, AF31, AF32, AF33, CS4, AF41, AF42, AF43, CS5, EF, CS6, CS7.
    ip_precedences Sequence[str]
    IP Precedence. Valid values: network-control, internetwork-control, critic-ecp, flashoverride, flash, immediate, priority, routine.
    name str
    Dscp mapping entry name.
    value str
    Raw values of DSCP (0 - 63).
    cosQueue Number
    COS queue number.
    diffservs List<String>
    Differentiated service. Valid values: CS0, CS1, AF11, AF12, AF13, CS2, AF21, AF22, AF23, CS3, AF31, AF32, AF33, CS4, AF41, AF42, AF43, CS5, EF, CS6, CS7.
    ipPrecedences List<String>
    IP Precedence. Valid values: network-control, internetwork-control, critic-ecp, flashoverride, flash, immediate, priority, routine.
    name String
    Dscp mapping entry name.
    value String
    Raw values of DSCP (0 - 63).

    Import

    ObjectSwitchController QosIpDscpMap can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectSwitchcontrollerQosIpdscpmap:ObjectSwitchcontrollerQosIpdscpmap 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev