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

fortimanager.ObjectSwitchcontrollerQosDot1pmap

Explore with Pulumi AI

Configure FortiSwitch QoS 802.1p.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.ObjectSwitchcontrollerQosDot1pmap("trname", {
    description: "This is a Terraform example",
    egressPriTagging: "disable",
    priority0: "queue-0",
    priority1: "queue-1",
    priority2: "queue-0",
    priority3: "queue-0",
    priority4: "queue-0",
    priority5: "queue-0",
    priority6: "queue-0",
    priority7: "queue-0",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.ObjectSwitchcontrollerQosDot1pmap("trname",
    description="This is a Terraform example",
    egress_pri_tagging="disable",
    priority0="queue-0",
    priority1="queue-1",
    priority2="queue-0",
    priority3="queue-0",
    priority4="queue-0",
    priority5="queue-0",
    priority6="queue-0",
    priority7="queue-0")
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.NewObjectSwitchcontrollerQosDot1pmap(ctx, "trname", &fortimanager.ObjectSwitchcontrollerQosDot1pmapArgs{
			Description:      pulumi.String("This is a Terraform example"),
			EgressPriTagging: pulumi.String("disable"),
			Priority0:        pulumi.String("queue-0"),
			Priority1:        pulumi.String("queue-1"),
			Priority2:        pulumi.String("queue-0"),
			Priority3:        pulumi.String("queue-0"),
			Priority4:        pulumi.String("queue-0"),
			Priority5:        pulumi.String("queue-0"),
			Priority6:        pulumi.String("queue-0"),
			Priority7:        pulumi.String("queue-0"),
		})
		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.ObjectSwitchcontrollerQosDot1pmap("trname", new()
    {
        Description = "This is a Terraform example",
        EgressPriTagging = "disable",
        Priority0 = "queue-0",
        Priority1 = "queue-1",
        Priority2 = "queue-0",
        Priority3 = "queue-0",
        Priority4 = "queue-0",
        Priority5 = "queue-0",
        Priority6 = "queue-0",
        Priority7 = "queue-0",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSwitchcontrollerQosDot1pmap;
import com.pulumi.fortimanager.ObjectSwitchcontrollerQosDot1pmapArgs;
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 ObjectSwitchcontrollerQosDot1pmap("trname", ObjectSwitchcontrollerQosDot1pmapArgs.builder()
            .description("This is a Terraform example")
            .egressPriTagging("disable")
            .priority0("queue-0")
            .priority1("queue-1")
            .priority2("queue-0")
            .priority3("queue-0")
            .priority4("queue-0")
            .priority5("queue-0")
            .priority6("queue-0")
            .priority7("queue-0")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectSwitchcontrollerQosDot1pmap
    properties:
      description: This is a Terraform example
      egressPriTagging: disable
      priority0: queue-0
      priority1: queue-1
      priority2: queue-0
      priority3: queue-0
      priority4: queue-0
      priority5: queue-0
      priority6: queue-0
      priority7: queue-0
Copy

Create ObjectSwitchcontrollerQosDot1pmap Resource

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

Constructor syntax

new ObjectSwitchcontrollerQosDot1pmap(name: string, args?: ObjectSwitchcontrollerQosDot1pmapArgs, opts?: CustomResourceOptions);
@overload
def ObjectSwitchcontrollerQosDot1pmap(resource_name: str,
                                      args: Optional[ObjectSwitchcontrollerQosDot1pmapArgs] = None,
                                      opts: Optional[ResourceOptions] = None)

@overload
def ObjectSwitchcontrollerQosDot1pmap(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      adom: Optional[str] = None,
                                      description: Optional[str] = None,
                                      egress_pri_tagging: Optional[str] = None,
                                      name: Optional[str] = None,
                                      object_switchcontroller_qos_dot1pmap_id: Optional[str] = None,
                                      priority0: Optional[str] = None,
                                      priority1: Optional[str] = None,
                                      priority2: Optional[str] = None,
                                      priority3: Optional[str] = None,
                                      priority4: Optional[str] = None,
                                      priority5: Optional[str] = None,
                                      priority6: Optional[str] = None,
                                      priority7: Optional[str] = None,
                                      scopetype: Optional[str] = None)
func NewObjectSwitchcontrollerQosDot1pmap(ctx *Context, name string, args *ObjectSwitchcontrollerQosDot1pmapArgs, opts ...ResourceOption) (*ObjectSwitchcontrollerQosDot1pmap, error)
public ObjectSwitchcontrollerQosDot1pmap(string name, ObjectSwitchcontrollerQosDot1pmapArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSwitchcontrollerQosDot1pmap(String name, ObjectSwitchcontrollerQosDot1pmapArgs args)
public ObjectSwitchcontrollerQosDot1pmap(String name, ObjectSwitchcontrollerQosDot1pmapArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSwitchcontrollerQosDot1pmap
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 ObjectSwitchcontrollerQosDot1pmapArgs
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 ObjectSwitchcontrollerQosDot1pmapArgs
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 ObjectSwitchcontrollerQosDot1pmapArgs
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 ObjectSwitchcontrollerQosDot1pmapArgs
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. ObjectSwitchcontrollerQosDot1pmapArgs
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 objectSwitchcontrollerQosDot1pmapResource = new Fortimanager.ObjectSwitchcontrollerQosDot1pmap("objectSwitchcontrollerQosDot1pmapResource", new()
{
    Adom = "string",
    Description = "string",
    EgressPriTagging = "string",
    Name = "string",
    ObjectSwitchcontrollerQosDot1pmapId = "string",
    Priority0 = "string",
    Priority1 = "string",
    Priority2 = "string",
    Priority3 = "string",
    Priority4 = "string",
    Priority5 = "string",
    Priority6 = "string",
    Priority7 = "string",
    Scopetype = "string",
});
Copy
example, err := fortimanager.NewObjectSwitchcontrollerQosDot1pmap(ctx, "objectSwitchcontrollerQosDot1pmapResource", &fortimanager.ObjectSwitchcontrollerQosDot1pmapArgs{
Adom: pulumi.String("string"),
Description: pulumi.String("string"),
EgressPriTagging: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectSwitchcontrollerQosDot1pmapId: pulumi.String("string"),
Priority0: pulumi.String("string"),
Priority1: pulumi.String("string"),
Priority2: pulumi.String("string"),
Priority3: pulumi.String("string"),
Priority4: pulumi.String("string"),
Priority5: pulumi.String("string"),
Priority6: pulumi.String("string"),
Priority7: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
Copy
var objectSwitchcontrollerQosDot1pmapResource = new ObjectSwitchcontrollerQosDot1pmap("objectSwitchcontrollerQosDot1pmapResource", ObjectSwitchcontrollerQosDot1pmapArgs.builder()
    .adom("string")
    .description("string")
    .egressPriTagging("string")
    .name("string")
    .objectSwitchcontrollerQosDot1pmapId("string")
    .priority0("string")
    .priority1("string")
    .priority2("string")
    .priority3("string")
    .priority4("string")
    .priority5("string")
    .priority6("string")
    .priority7("string")
    .scopetype("string")
    .build());
Copy
object_switchcontroller_qos_dot1pmap_resource = fortimanager.ObjectSwitchcontrollerQosDot1pmap("objectSwitchcontrollerQosDot1pmapResource",
    adom="string",
    description="string",
    egress_pri_tagging="string",
    name="string",
    object_switchcontroller_qos_dot1pmap_id="string",
    priority0="string",
    priority1="string",
    priority2="string",
    priority3="string",
    priority4="string",
    priority5="string",
    priority6="string",
    priority7="string",
    scopetype="string")
Copy
const objectSwitchcontrollerQosDot1pmapResource = new fortimanager.ObjectSwitchcontrollerQosDot1pmap("objectSwitchcontrollerQosDot1pmapResource", {
    adom: "string",
    description: "string",
    egressPriTagging: "string",
    name: "string",
    objectSwitchcontrollerQosDot1pmapId: "string",
    priority0: "string",
    priority1: "string",
    priority2: "string",
    priority3: "string",
    priority4: "string",
    priority5: "string",
    priority6: "string",
    priority7: "string",
    scopetype: "string",
});
Copy
type: fortimanager:ObjectSwitchcontrollerQosDot1pmap
properties:
    adom: string
    description: string
    egressPriTagging: string
    name: string
    objectSwitchcontrollerQosDot1pmapId: string
    priority0: string
    priority1: string
    priority2: string
    priority3: string
    priority4: string
    priority5: string
    priority6: string
    priority7: string
    scopetype: string
Copy

ObjectSwitchcontrollerQosDot1pmap 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 ObjectSwitchcontrollerQosDot1pmap 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 802.1p name.
EgressPriTagging string
Enable/disable egress priority-tag frame. Valid values: disable, enable.
Name string
Dot1p map name.
ObjectSwitchcontrollerQosDot1pmapId string
an identifier for the resource with format {{name}}.
Priority0 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority1 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority2 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority3 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority4 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority5 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority6 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority7 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
EgressPriTagging string
Enable/disable egress priority-tag frame. Valid values: disable, enable.
Name string
Dot1p map name.
ObjectSwitchcontrollerQosDot1pmapId string
an identifier for the resource with format {{name}}.
Priority0 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority1 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority2 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority3 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority4 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority5 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority6 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority7 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
egressPriTagging String
Enable/disable egress priority-tag frame. Valid values: disable, enable.
name String
Dot1p map name.
objectSwitchcontrollerQosDot1pmapId String
an identifier for the resource with format {{name}}.
priority0 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority1 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority2 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority3 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority4 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority5 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority6 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority7 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
egressPriTagging string
Enable/disable egress priority-tag frame. Valid values: disable, enable.
name string
Dot1p map name.
objectSwitchcontrollerQosDot1pmapId string
an identifier for the resource with format {{name}}.
priority0 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority1 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority2 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority3 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority4 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority5 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority6 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority7 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
egress_pri_tagging str
Enable/disable egress priority-tag frame. Valid values: disable, enable.
name str
Dot1p map name.
object_switchcontroller_qos_dot1pmap_id str
an identifier for the resource with format {{name}}.
priority0 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority1 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority2 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority3 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority4 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority5 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority6 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority7 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
egressPriTagging String
Enable/disable egress priority-tag frame. Valid values: disable, enable.
name String
Dot1p map name.
objectSwitchcontrollerQosDot1pmapId String
an identifier for the resource with format {{name}}.
priority0 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority1 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority2 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority3 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority4 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority5 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority6 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority7 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 ObjectSwitchcontrollerQosDot1pmap 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 ObjectSwitchcontrollerQosDot1pmap Resource

Get an existing ObjectSwitchcontrollerQosDot1pmap 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?: ObjectSwitchcontrollerQosDot1pmapState, opts?: CustomResourceOptions): ObjectSwitchcontrollerQosDot1pmap
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        description: Optional[str] = None,
        egress_pri_tagging: Optional[str] = None,
        name: Optional[str] = None,
        object_switchcontroller_qos_dot1pmap_id: Optional[str] = None,
        priority0: Optional[str] = None,
        priority1: Optional[str] = None,
        priority2: Optional[str] = None,
        priority3: Optional[str] = None,
        priority4: Optional[str] = None,
        priority5: Optional[str] = None,
        priority6: Optional[str] = None,
        priority7: Optional[str] = None,
        scopetype: Optional[str] = None) -> ObjectSwitchcontrollerQosDot1pmap
func GetObjectSwitchcontrollerQosDot1pmap(ctx *Context, name string, id IDInput, state *ObjectSwitchcontrollerQosDot1pmapState, opts ...ResourceOption) (*ObjectSwitchcontrollerQosDot1pmap, error)
public static ObjectSwitchcontrollerQosDot1pmap Get(string name, Input<string> id, ObjectSwitchcontrollerQosDot1pmapState? state, CustomResourceOptions? opts = null)
public static ObjectSwitchcontrollerQosDot1pmap get(String name, Output<String> id, ObjectSwitchcontrollerQosDot1pmapState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectSwitchcontrollerQosDot1pmap    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.
Description string
Description of the 802.1p name.
EgressPriTagging string
Enable/disable egress priority-tag frame. Valid values: disable, enable.
Name string
Dot1p map name.
ObjectSwitchcontrollerQosDot1pmapId string
an identifier for the resource with format {{name}}.
Priority0 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority1 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority2 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority3 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority4 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority5 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority6 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority7 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
EgressPriTagging string
Enable/disable egress priority-tag frame. Valid values: disable, enable.
Name string
Dot1p map name.
ObjectSwitchcontrollerQosDot1pmapId string
an identifier for the resource with format {{name}}.
Priority0 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority1 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority2 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority3 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority4 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority5 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority6 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
Priority7 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
egressPriTagging String
Enable/disable egress priority-tag frame. Valid values: disable, enable.
name String
Dot1p map name.
objectSwitchcontrollerQosDot1pmapId String
an identifier for the resource with format {{name}}.
priority0 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority1 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority2 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority3 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority4 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority5 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority6 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority7 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
egressPriTagging string
Enable/disable egress priority-tag frame. Valid values: disable, enable.
name string
Dot1p map name.
objectSwitchcontrollerQosDot1pmapId string
an identifier for the resource with format {{name}}.
priority0 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority1 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority2 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority3 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority4 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority5 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority6 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority7 string
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
egress_pri_tagging str
Enable/disable egress priority-tag frame. Valid values: disable, enable.
name str
Dot1p map name.
object_switchcontroller_qos_dot1pmap_id str
an identifier for the resource with format {{name}}.
priority0 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority1 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority2 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority3 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority4 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority5 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority6 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority7 str
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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 802.1p name.
egressPriTagging String
Enable/disable egress priority-tag frame. Valid values: disable, enable.
name String
Dot1p map name.
objectSwitchcontrollerQosDot1pmapId String
an identifier for the resource with format {{name}}.
priority0 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority1 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority2 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority3 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority4 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority5 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority6 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
priority7 String
COS queue mapped to dot1p priority number. Valid values: queue-0, queue-1, queue-2, queue-3, queue-4, queue-5, queue-6, queue-7.
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.

Import

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectSwitchcontrollerQosDot1pmap:ObjectSwitchcontrollerQosDot1pmap 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.