nxos.QueuingQosPolicyMapMatchClassMapPriority
Explore with Pulumi AI
This resource can manage the queuing QoS policy map match class map priority configuration.
- API Documentation: ipqosPriority
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nxos = Lbrlabs.PulumiPackage.Nxos;
return await Deployment.RunAsync(() =>
{
var example = new Nxos.QueuingQosPolicyMapMatchClassMapPriority("example", new()
{
ClassMapName = "c-out-q1",
Level = 1,
PolicyMapName = "PM1",
});
});
package main
import (
"github.com/lbrlabs/pulumi-nxos/sdk/go/nxos"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nxos.NewQueuingQosPolicyMapMatchClassMapPriority(ctx, "example", &nxos.QueuingQosPolicyMapMatchClassMapPriorityArgs{
ClassMapName: pulumi.String("c-out-q1"),
Level: pulumi.Int(1),
PolicyMapName: pulumi.String("PM1"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nxos.QueuingQosPolicyMapMatchClassMapPriority;
import com.pulumi.nxos.QueuingQosPolicyMapMatchClassMapPriorityArgs;
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 example = new QueuingQosPolicyMapMatchClassMapPriority("example", QueuingQosPolicyMapMatchClassMapPriorityArgs.builder()
.classMapName("c-out-q1")
.level(1)
.policyMapName("PM1")
.build());
}
}
import pulumi
import lbrlabs_pulumi_nxos as nxos
example = nxos.QueuingQosPolicyMapMatchClassMapPriority("example",
class_map_name="c-out-q1",
level=1,
policy_map_name="PM1")
import * as pulumi from "@pulumi/pulumi";
import * as nxos from "@lbrlabs/pulumi-nxos";
const example = new nxos.QueuingQosPolicyMapMatchClassMapPriority("example", {
classMapName: "c-out-q1",
level: 1,
policyMapName: "PM1",
});
resources:
example:
type: nxos:QueuingQosPolicyMapMatchClassMapPriority
properties:
classMapName: c-out-q1
level: 1
policyMapName: PM1
Create QueuingQosPolicyMapMatchClassMapPriority Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new QueuingQosPolicyMapMatchClassMapPriority(name: string, args: QueuingQosPolicyMapMatchClassMapPriorityArgs, opts?: CustomResourceOptions);
@overload
def QueuingQosPolicyMapMatchClassMapPriority(resource_name: str,
args: QueuingQosPolicyMapMatchClassMapPriorityArgs,
opts: Optional[ResourceOptions] = None)
@overload
def QueuingQosPolicyMapMatchClassMapPriority(resource_name: str,
opts: Optional[ResourceOptions] = None,
class_map_name: Optional[str] = None,
level: Optional[int] = None,
policy_map_name: Optional[str] = None,
device: Optional[str] = None)
func NewQueuingQosPolicyMapMatchClassMapPriority(ctx *Context, name string, args QueuingQosPolicyMapMatchClassMapPriorityArgs, opts ...ResourceOption) (*QueuingQosPolicyMapMatchClassMapPriority, error)
public QueuingQosPolicyMapMatchClassMapPriority(string name, QueuingQosPolicyMapMatchClassMapPriorityArgs args, CustomResourceOptions? opts = null)
public QueuingQosPolicyMapMatchClassMapPriority(String name, QueuingQosPolicyMapMatchClassMapPriorityArgs args)
public QueuingQosPolicyMapMatchClassMapPriority(String name, QueuingQosPolicyMapMatchClassMapPriorityArgs args, CustomResourceOptions options)
type: nxos:QueuingQosPolicyMapMatchClassMapPriority
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 QueuingQosPolicyMapMatchClassMapPriorityArgs
- 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 QueuingQosPolicyMapMatchClassMapPriorityArgs
- 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 QueuingQosPolicyMapMatchClassMapPriorityArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QueuingQosPolicyMapMatchClassMapPriorityArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QueuingQosPolicyMapMatchClassMapPriorityArgs
- 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 queuingQosPolicyMapMatchClassMapPriorityResource = new Nxos.QueuingQosPolicyMapMatchClassMapPriority("queuingQosPolicyMapMatchClassMapPriorityResource", new()
{
ClassMapName = "string",
Level = 0,
PolicyMapName = "string",
Device = "string",
});
example, err := nxos.NewQueuingQosPolicyMapMatchClassMapPriority(ctx, "queuingQosPolicyMapMatchClassMapPriorityResource", &nxos.QueuingQosPolicyMapMatchClassMapPriorityArgs{
ClassMapName: pulumi.String("string"),
Level: pulumi.Int(0),
PolicyMapName: pulumi.String("string"),
Device: pulumi.String("string"),
})
var queuingQosPolicyMapMatchClassMapPriorityResource = new QueuingQosPolicyMapMatchClassMapPriority("queuingQosPolicyMapMatchClassMapPriorityResource", QueuingQosPolicyMapMatchClassMapPriorityArgs.builder()
.classMapName("string")
.level(0)
.policyMapName("string")
.device("string")
.build());
queuing_qos_policy_map_match_class_map_priority_resource = nxos.QueuingQosPolicyMapMatchClassMapPriority("queuingQosPolicyMapMatchClassMapPriorityResource",
class_map_name="string",
level=0,
policy_map_name="string",
device="string")
const queuingQosPolicyMapMatchClassMapPriorityResource = new nxos.QueuingQosPolicyMapMatchClassMapPriority("queuingQosPolicyMapMatchClassMapPriorityResource", {
classMapName: "string",
level: 0,
policyMapName: "string",
device: "string",
});
type: nxos:QueuingQosPolicyMapMatchClassMapPriority
properties:
classMapName: string
device: string
level: 0
policyMapName: string
QueuingQosPolicyMapMatchClassMapPriority Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The QueuingQosPolicyMapMatchClassMapPriority resource accepts the following input properties:
- Class
Map stringName - Class map name.
- Level int
- Priority level. - Range:
1
-8
- Policy
Map stringName - Policy map name.
- Device string
- A device name from the provider configuration.
- Class
Map stringName - Class map name.
- Level int
- Priority level. - Range:
1
-8
- Policy
Map stringName - Policy map name.
- Device string
- A device name from the provider configuration.
- class
Map StringName - Class map name.
- level Integer
- Priority level. - Range:
1
-8
- policy
Map StringName - Policy map name.
- device String
- A device name from the provider configuration.
- class
Map stringName - Class map name.
- level number
- Priority level. - Range:
1
-8
- policy
Map stringName - Policy map name.
- device string
- A device name from the provider configuration.
- class_
map_ strname - Class map name.
- level int
- Priority level. - Range:
1
-8
- policy_
map_ strname - Policy map name.
- device str
- A device name from the provider configuration.
- class
Map StringName - Class map name.
- level Number
- Priority level. - Range:
1
-8
- policy
Map StringName - Policy map name.
- device String
- A device name from the provider configuration.
Outputs
All input properties are implicitly available as output properties. Additionally, the QueuingQosPolicyMapMatchClassMapPriority 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 QueuingQosPolicyMapMatchClassMapPriority Resource
Get an existing QueuingQosPolicyMapMatchClassMapPriority 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?: QueuingQosPolicyMapMatchClassMapPriorityState, opts?: CustomResourceOptions): QueuingQosPolicyMapMatchClassMapPriority
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
class_map_name: Optional[str] = None,
device: Optional[str] = None,
level: Optional[int] = None,
policy_map_name: Optional[str] = None) -> QueuingQosPolicyMapMatchClassMapPriority
func GetQueuingQosPolicyMapMatchClassMapPriority(ctx *Context, name string, id IDInput, state *QueuingQosPolicyMapMatchClassMapPriorityState, opts ...ResourceOption) (*QueuingQosPolicyMapMatchClassMapPriority, error)
public static QueuingQosPolicyMapMatchClassMapPriority Get(string name, Input<string> id, QueuingQosPolicyMapMatchClassMapPriorityState? state, CustomResourceOptions? opts = null)
public static QueuingQosPolicyMapMatchClassMapPriority get(String name, Output<String> id, QueuingQosPolicyMapMatchClassMapPriorityState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Class
Map stringName - Class map name.
- Device string
- A device name from the provider configuration.
- Level int
- Priority level. - Range:
1
-8
- Policy
Map stringName - Policy map name.
- Class
Map stringName - Class map name.
- Device string
- A device name from the provider configuration.
- Level int
- Priority level. - Range:
1
-8
- Policy
Map stringName - Policy map name.
- class
Map StringName - Class map name.
- device String
- A device name from the provider configuration.
- level Integer
- Priority level. - Range:
1
-8
- policy
Map StringName - Policy map name.
- class
Map stringName - Class map name.
- device string
- A device name from the provider configuration.
- level number
- Priority level. - Range:
1
-8
- policy
Map stringName - Policy map name.
- class_
map_ strname - Class map name.
- device str
- A device name from the provider configuration.
- level int
- Priority level. - Range:
1
-8
- policy_
map_ strname - Policy map name.
- class
Map StringName - Class map name.
- device String
- A device name from the provider configuration.
- level Number
- Priority level. - Range:
1
-8
- policy
Map StringName - Policy map name.
Import
$ pulumi import nxos:index/queuingQosPolicyMapMatchClassMapPriority:QueuingQosPolicyMapMatchClassMapPriority example "sys/ipqos/queuing/p/name-[PM1]/cmap-[c-out-q1]/prio"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- nxos lbrlabs/pulumi-nxos
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nxos
Terraform Provider.