Cisco NX-OS v0.0.2 published on Friday, Sep 29, 2023 by lbrlabs
nxos.getDefaultQosPolicyMapMatchClassMapSetQosGroup
Explore with Pulumi AI
This data source can read the default QoS policy map match class map set QoS group configuration.
- API Documentation: ipqosSetQoSGrp
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nxos = Pulumi.Nxos;
return await Deployment.RunAsync(() => 
{
    var example = Nxos.GetDefaultQosPolicyMapMatchClassMapSetQosGroup.Invoke(new()
    {
        ClassMapName = "Voice",
        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.LookupDefaultQosPolicyMapMatchClassMapSetQosGroup(ctx, &nxos.LookupDefaultQosPolicyMapMatchClassMapSetQosGroupArgs{
			ClassMapName:  "Voice",
			PolicyMapName: "PM1",
		}, nil)
		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.NxosFunctions;
import com.pulumi.nxos.inputs.GetDefaultQosPolicyMapMatchClassMapSetQosGroupArgs;
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) {
        final var example = NxosFunctions.getDefaultQosPolicyMapMatchClassMapSetQosGroup(GetDefaultQosPolicyMapMatchClassMapSetQosGroupArgs.builder()
            .classMapName("Voice")
            .policyMapName("PM1")
            .build());
    }
}
import pulumi
import pulumi_nxos as nxos
example = nxos.get_default_qos_policy_map_match_class_map_set_qos_group(class_map_name="Voice",
    policy_map_name="PM1")
import * as pulumi from "@pulumi/pulumi";
import * as nxos from "@pulumi/nxos";
const example = nxos.getDefaultQosPolicyMapMatchClassMapSetQosGroup({
    classMapName: "Voice",
    policyMapName: "PM1",
});
variables:
  example:
    fn::invoke:
      Function: nxos:getDefaultQosPolicyMapMatchClassMapSetQosGroup
      Arguments:
        classMapName: Voice
        policyMapName: PM1
Using getDefaultQosPolicyMapMatchClassMapSetQosGroup
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDefaultQosPolicyMapMatchClassMapSetQosGroup(args: GetDefaultQosPolicyMapMatchClassMapSetQosGroupArgs, opts?: InvokeOptions): Promise<GetDefaultQosPolicyMapMatchClassMapSetQosGroupResult>
function getDefaultQosPolicyMapMatchClassMapSetQosGroupOutput(args: GetDefaultQosPolicyMapMatchClassMapSetQosGroupOutputArgs, opts?: InvokeOptions): Output<GetDefaultQosPolicyMapMatchClassMapSetQosGroupResult>def get_default_qos_policy_map_match_class_map_set_qos_group(class_map_name: Optional[str] = None,
                                                             device: Optional[str] = None,
                                                             policy_map_name: Optional[str] = None,
                                                             opts: Optional[InvokeOptions] = None) -> GetDefaultQosPolicyMapMatchClassMapSetQosGroupResult
def get_default_qos_policy_map_match_class_map_set_qos_group_output(class_map_name: Optional[pulumi.Input[str]] = None,
                                                             device: Optional[pulumi.Input[str]] = None,
                                                             policy_map_name: Optional[pulumi.Input[str]] = None,
                                                             opts: Optional[InvokeOptions] = None) -> Output[GetDefaultQosPolicyMapMatchClassMapSetQosGroupResult]func LookupDefaultQosPolicyMapMatchClassMapSetQosGroup(ctx *Context, args *LookupDefaultQosPolicyMapMatchClassMapSetQosGroupArgs, opts ...InvokeOption) (*LookupDefaultQosPolicyMapMatchClassMapSetQosGroupResult, error)
func LookupDefaultQosPolicyMapMatchClassMapSetQosGroupOutput(ctx *Context, args *LookupDefaultQosPolicyMapMatchClassMapSetQosGroupOutputArgs, opts ...InvokeOption) LookupDefaultQosPolicyMapMatchClassMapSetQosGroupResultOutput> Note: This function is named LookupDefaultQosPolicyMapMatchClassMapSetQosGroup in the Go SDK.
public static class GetDefaultQosPolicyMapMatchClassMapSetQosGroup 
{
    public static Task<GetDefaultQosPolicyMapMatchClassMapSetQosGroupResult> InvokeAsync(GetDefaultQosPolicyMapMatchClassMapSetQosGroupArgs args, InvokeOptions? opts = null)
    public static Output<GetDefaultQosPolicyMapMatchClassMapSetQosGroupResult> Invoke(GetDefaultQosPolicyMapMatchClassMapSetQosGroupInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDefaultQosPolicyMapMatchClassMapSetQosGroupResult> getDefaultQosPolicyMapMatchClassMapSetQosGroup(GetDefaultQosPolicyMapMatchClassMapSetQosGroupArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: nxos:index/getDefaultQosPolicyMapMatchClassMapSetQosGroup:getDefaultQosPolicyMapMatchClassMapSetQosGroup
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ClassMap stringName 
- Class map name.
- PolicyMap stringName 
- Policy map name.
- Device string
- A device name from the provider configuration.
- ClassMap stringName 
- Class map name.
- PolicyMap stringName 
- Policy map name.
- Device string
- A device name from the provider configuration.
- classMap StringName 
- Class map name.
- policyMap StringName 
- Policy map name.
- device String
- A device name from the provider configuration.
- classMap stringName 
- Class map name.
- policyMap stringName 
- Policy map name.
- device string
- A device name from the provider configuration.
- class_map_ strname 
- Class map name.
- policy_map_ strname 
- Policy map name.
- device str
- A device name from the provider configuration.
- classMap StringName 
- Class map name.
- policyMap StringName 
- Policy map name.
- device String
- A device name from the provider configuration.
getDefaultQosPolicyMapMatchClassMapSetQosGroup Result
The following output properties are available:
- ClassMap stringName 
- Class map name.
- Id string
- The distinguished name of the object.
- PolicyMap stringName 
- Policy map name.
- QosGroup intId 
- QoS group ID.
- Device string
- A device name from the provider configuration.
- ClassMap stringName 
- Class map name.
- Id string
- The distinguished name of the object.
- PolicyMap stringName 
- Policy map name.
- QosGroup intId 
- QoS group ID.
- Device string
- A device name from the provider configuration.
- classMap StringName 
- Class map name.
- id String
- The distinguished name of the object.
- policyMap StringName 
- Policy map name.
- qosGroup IntegerId 
- QoS group ID.
- device String
- A device name from the provider configuration.
- classMap stringName 
- Class map name.
- id string
- The distinguished name of the object.
- policyMap stringName 
- Policy map name.
- qosGroup numberId 
- QoS group ID.
- device string
- A device name from the provider configuration.
- class_map_ strname 
- Class map name.
- id str
- The distinguished name of the object.
- policy_map_ strname 
- Policy map name.
- qos_group_ intid 
- QoS group ID.
- device str
- A device name from the provider configuration.
- classMap StringName 
- Class map name.
- id String
- The distinguished name of the object.
- policyMap StringName 
- Policy map name.
- qosGroup NumberId 
- QoS group ID.
- device String
- A device name from the provider configuration.
Package Details
- Repository
- nxos lbrlabs/pulumi-nxos
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the nxosTerraform Provider.