iosxe.ClassMap
Explore with Pulumi AI
This resource can manage the Class Map configuration.
Example Usage
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.iosxe.ClassMap;
import com.pulumi.iosxe.ClassMapArgs;
import com.pulumi.iosxe.inputs.ClassMapMatchActivatedServiceTemplateArgs;
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 ClassMap("example", ClassMapArgs.builder()        
            .matchActivatedServiceTemplates(ClassMapMatchActivatedServiceTemplateArgs.builder()
                .service_name("CRITICAL_AUTH_ACCESS")
                .build())
            .matchAuthorizationStatusAuthorized(true)
            .matchAuthorizingMethodPriorityGreaterThans(20)
            .matchMethodDot1x(true)
            .matchMethodMab(true)
            .matchResultTypeAaaTimeout(true)
            .matchResultTypeMethodDot1xAgentNotFound(true)
            .matchResultTypeMethodDot1xAuthoritative(true)
            .matchResultTypeMethodDot1xMethodTimeout(true)
            .matchResultTypeMethodMabAuthoritative(true)
            .prematch("match-all")
            .subscriber(true)
            .type("control")
            .build());
    }
}
Coming soon!
Coming soon!
resources:
  example:
    type: iosxe:ClassMap
    properties:
      matchActivatedServiceTemplates:
        - service_name: CRITICAL_AUTH_ACCESS
      matchAuthorizationStatusAuthorized: true
      matchAuthorizingMethodPriorityGreaterThans:
        - 20
      matchMethodDot1x: true
      matchMethodMab: true
      matchResultTypeAaaTimeout: true
      matchResultTypeMethodDot1xAgentNotFound: true
      matchResultTypeMethodDot1xAuthoritative: true
      matchResultTypeMethodDot1xMethodTimeout: true
      matchResultTypeMethodMabAuthoritative: true
      prematch: match-all
      subscriber: true
      type: control
Create ClassMap Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClassMap(name: string, args: ClassMapArgs, opts?: CustomResourceOptions);@overload
def ClassMap(resource_name: str,
             args: ClassMapArgs,
             opts: Optional[ResourceOptions] = None)
@overload
def ClassMap(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             prematch: Optional[str] = None,
             match_result_type_aaa_timeout: Optional[bool] = None,
             match_method_mab: Optional[bool] = None,
             match_authorization_status_authorized: Optional[bool] = None,
             match_authorization_status_unauthorized: Optional[bool] = None,
             match_result_type_method_dot1x_agent_not_found: Optional[bool] = None,
             match_method_dot1x: Optional[bool] = None,
             match_activated_service_templates: Optional[Sequence[ClassMapMatchActivatedServiceTemplateArgs]] = None,
             description: Optional[str] = None,
             match_authorizing_method_priority_greater_thans: Optional[Sequence[int]] = None,
             match_result_type_method_dot1x_authoritative: Optional[bool] = None,
             match_result_type_method_dot1x_method_timeout: Optional[bool] = None,
             match_result_type_method_mab_authoritative: Optional[bool] = None,
             name: Optional[str] = None,
             device: Optional[str] = None,
             subscriber: Optional[bool] = None,
             type: Optional[str] = None)func NewClassMap(ctx *Context, name string, args ClassMapArgs, opts ...ResourceOption) (*ClassMap, error)public ClassMap(string name, ClassMapArgs args, CustomResourceOptions? opts = null)
public ClassMap(String name, ClassMapArgs args)
public ClassMap(String name, ClassMapArgs args, CustomResourceOptions options)
type: iosxe:ClassMap
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 ClassMapArgs
- 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 ClassMapArgs
- 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 ClassMapArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClassMapArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClassMapArgs
- 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 classMapResource = new Iosxe.ClassMap("classMapResource", new()
{
    Prematch = "string",
    MatchResultTypeAaaTimeout = false,
    MatchMethodMab = false,
    MatchAuthorizationStatusAuthorized = false,
    MatchAuthorizationStatusUnauthorized = false,
    MatchResultTypeMethodDot1xAgentNotFound = false,
    MatchMethodDot1x = false,
    MatchActivatedServiceTemplates = new[]
    {
        new Iosxe.Inputs.ClassMapMatchActivatedServiceTemplateArgs
        {
            ServiceName = "string",
        },
    },
    Description = "string",
    MatchAuthorizingMethodPriorityGreaterThans = new[]
    {
        0,
    },
    MatchResultTypeMethodDot1xAuthoritative = false,
    MatchResultTypeMethodDot1xMethodTimeout = false,
    MatchResultTypeMethodMabAuthoritative = false,
    Name = "string",
    Device = "string",
    Subscriber = false,
    Type = "string",
});
example, err := iosxe.NewClassMap(ctx, "classMapResource", &iosxe.ClassMapArgs{
	Prematch:                                pulumi.String("string"),
	MatchResultTypeAaaTimeout:               pulumi.Bool(false),
	MatchMethodMab:                          pulumi.Bool(false),
	MatchAuthorizationStatusAuthorized:      pulumi.Bool(false),
	MatchAuthorizationStatusUnauthorized:    pulumi.Bool(false),
	MatchResultTypeMethodDot1xAgentNotFound: pulumi.Bool(false),
	MatchMethodDot1x:                        pulumi.Bool(false),
	MatchActivatedServiceTemplates: iosxe.ClassMapMatchActivatedServiceTemplateArray{
		&iosxe.ClassMapMatchActivatedServiceTemplateArgs{
			ServiceName: pulumi.String("string"),
		},
	},
	Description: pulumi.String("string"),
	MatchAuthorizingMethodPriorityGreaterThans: pulumi.IntArray{
		pulumi.Int(0),
	},
	MatchResultTypeMethodDot1xAuthoritative: pulumi.Bool(false),
	MatchResultTypeMethodDot1xMethodTimeout: pulumi.Bool(false),
	MatchResultTypeMethodMabAuthoritative:   pulumi.Bool(false),
	Name:                                    pulumi.String("string"),
	Device:                                  pulumi.String("string"),
	Subscriber:                              pulumi.Bool(false),
	Type:                                    pulumi.String("string"),
})
var classMapResource = new ClassMap("classMapResource", ClassMapArgs.builder()
    .prematch("string")
    .matchResultTypeAaaTimeout(false)
    .matchMethodMab(false)
    .matchAuthorizationStatusAuthorized(false)
    .matchAuthorizationStatusUnauthorized(false)
    .matchResultTypeMethodDot1xAgentNotFound(false)
    .matchMethodDot1x(false)
    .matchActivatedServiceTemplates(ClassMapMatchActivatedServiceTemplateArgs.builder()
        .serviceName("string")
        .build())
    .description("string")
    .matchAuthorizingMethodPriorityGreaterThans(0)
    .matchResultTypeMethodDot1xAuthoritative(false)
    .matchResultTypeMethodDot1xMethodTimeout(false)
    .matchResultTypeMethodMabAuthoritative(false)
    .name("string")
    .device("string")
    .subscriber(false)
    .type("string")
    .build());
class_map_resource = iosxe.ClassMap("classMapResource",
    prematch="string",
    match_result_type_aaa_timeout=False,
    match_method_mab=False,
    match_authorization_status_authorized=False,
    match_authorization_status_unauthorized=False,
    match_result_type_method_dot1x_agent_not_found=False,
    match_method_dot1x=False,
    match_activated_service_templates=[{
        "service_name": "string",
    }],
    description="string",
    match_authorizing_method_priority_greater_thans=[0],
    match_result_type_method_dot1x_authoritative=False,
    match_result_type_method_dot1x_method_timeout=False,
    match_result_type_method_mab_authoritative=False,
    name="string",
    device="string",
    subscriber=False,
    type="string")
const classMapResource = new iosxe.ClassMap("classMapResource", {
    prematch: "string",
    matchResultTypeAaaTimeout: false,
    matchMethodMab: false,
    matchAuthorizationStatusAuthorized: false,
    matchAuthorizationStatusUnauthorized: false,
    matchResultTypeMethodDot1xAgentNotFound: false,
    matchMethodDot1x: false,
    matchActivatedServiceTemplates: [{
        serviceName: "string",
    }],
    description: "string",
    matchAuthorizingMethodPriorityGreaterThans: [0],
    matchResultTypeMethodDot1xAuthoritative: false,
    matchResultTypeMethodDot1xMethodTimeout: false,
    matchResultTypeMethodMabAuthoritative: false,
    name: "string",
    device: "string",
    subscriber: false,
    type: "string",
});
type: iosxe:ClassMap
properties:
    description: string
    device: string
    matchActivatedServiceTemplates:
        - serviceName: string
    matchAuthorizationStatusAuthorized: false
    matchAuthorizationStatusUnauthorized: false
    matchAuthorizingMethodPriorityGreaterThans:
        - 0
    matchMethodDot1x: false
    matchMethodMab: false
    matchResultTypeAaaTimeout: false
    matchResultTypeMethodDot1xAgentNotFound: false
    matchResultTypeMethodDot1xAuthoritative: false
    matchResultTypeMethodDot1xMethodTimeout: false
    matchResultTypeMethodMabAuthoritative: false
    name: string
    prematch: string
    subscriber: false
    type: string
ClassMap 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 ClassMap resource accepts the following input properties:
- Prematch string
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- Description string
- Class-Map description
- Device string
- A device name from the provider configuration.
- MatchActivated List<Lbrlabs.Service Templates Pulumi Package. Iosxe. Inputs. Class Map Match Activated Service Template> 
- match name of service template activated on session
- bool
- authorized
- bool
- unauthorized
- List<int>
- greater than
- MatchMethod boolDot1x 
- dot1x
- MatchMethod boolMab 
- mab
- MatchResult boolType Aaa Timeout 
- aaa timeout type
- MatchResult boolType Method Dot1x Agent Not Found 
- agent not found type
- bool
- failure type
- MatchResult boolType Method Dot1x Method Timeout 
- method_timeout type
- bool
- failure type
- Name string
- name of the class map
- Subscriber bool
- Domain name of the class map
- Type string
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- Prematch string
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- Description string
- Class-Map description
- Device string
- A device name from the provider configuration.
- MatchActivated []ClassService Templates Map Match Activated Service Template Args 
- match name of service template activated on session
- bool
- authorized
- bool
- unauthorized
- []int
- greater than
- MatchMethod boolDot1x 
- dot1x
- MatchMethod boolMab 
- mab
- MatchResult boolType Aaa Timeout 
- aaa timeout type
- MatchResult boolType Method Dot1x Agent Not Found 
- agent not found type
- bool
- failure type
- MatchResult boolType Method Dot1x Method Timeout 
- method_timeout type
- bool
- failure type
- Name string
- name of the class map
- Subscriber bool
- Domain name of the class map
- Type string
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- prematch String
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- description String
- Class-Map description
- device String
- A device name from the provider configuration.
- matchActivated List<ClassService Templates Map Match Activated Service Template> 
- match name of service template activated on session
- Boolean
- authorized
- Boolean
- unauthorized
- List<Integer>
- greater than
- matchMethod BooleanDot1x 
- dot1x
- matchMethod BooleanMab 
- mab
- matchResult BooleanType Aaa Timeout 
- aaa timeout type
- matchResult BooleanType Method Dot1x Agent Not Found 
- agent not found type
- Boolean
- failure type
- matchResult BooleanType Method Dot1x Method Timeout 
- method_timeout type
- Boolean
- failure type
- name String
- name of the class map
- subscriber Boolean
- Domain name of the class map
- type String
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- prematch string
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- description string
- Class-Map description
- device string
- A device name from the provider configuration.
- matchActivated ClassService Templates Map Match Activated Service Template[] 
- match name of service template activated on session
- boolean
- authorized
- boolean
- unauthorized
- number[]
- greater than
- matchMethod booleanDot1x 
- dot1x
- matchMethod booleanMab 
- mab
- matchResult booleanType Aaa Timeout 
- aaa timeout type
- matchResult booleanType Method Dot1x Agent Not Found 
- agent not found type
- boolean
- failure type
- matchResult booleanType Method Dot1x Method Timeout 
- method_timeout type
- boolean
- failure type
- name string
- name of the class map
- subscriber boolean
- Domain name of the class map
- type string
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- prematch str
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- description str
- Class-Map description
- device str
- A device name from the provider configuration.
- match_activated_ Sequence[Classservice_ templates Map Match Activated Service Template Args] 
- match name of service template activated on session
- bool
- authorized
- bool
- unauthorized
- Sequence[int]
- greater than
- match_method_ booldot1x 
- dot1x
- match_method_ boolmab 
- mab
- match_result_ booltype_ aaa_ timeout 
- aaa timeout type
- match_result_ booltype_ method_ dot1x_ agent_ not_ found 
- agent not found type
- bool
- failure type
- match_result_ booltype_ method_ dot1x_ method_ timeout 
- method_timeout type
- bool
- failure type
- name str
- name of the class map
- subscriber bool
- Domain name of the class map
- type str
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- prematch String
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- description String
- Class-Map description
- device String
- A device name from the provider configuration.
- matchActivated List<Property Map>Service Templates 
- match name of service template activated on session
- Boolean
- authorized
- Boolean
- unauthorized
- List<Number>
- greater than
- matchMethod BooleanDot1x 
- dot1x
- matchMethod BooleanMab 
- mab
- matchResult BooleanType Aaa Timeout 
- aaa timeout type
- matchResult BooleanType Method Dot1x Agent Not Found 
- agent not found type
- Boolean
- failure type
- matchResult BooleanType Method Dot1x Method Timeout 
- method_timeout type
- Boolean
- failure type
- name String
- name of the class map
- subscriber Boolean
- Domain name of the class map
- type String
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
Outputs
All input properties are implicitly available as output properties. Additionally, the ClassMap 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 ClassMap Resource
Get an existing ClassMap 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?: ClassMapState, opts?: CustomResourceOptions): ClassMap@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        device: Optional[str] = None,
        match_activated_service_templates: Optional[Sequence[ClassMapMatchActivatedServiceTemplateArgs]] = None,
        match_authorization_status_authorized: Optional[bool] = None,
        match_authorization_status_unauthorized: Optional[bool] = None,
        match_authorizing_method_priority_greater_thans: Optional[Sequence[int]] = None,
        match_method_dot1x: Optional[bool] = None,
        match_method_mab: Optional[bool] = None,
        match_result_type_aaa_timeout: Optional[bool] = None,
        match_result_type_method_dot1x_agent_not_found: Optional[bool] = None,
        match_result_type_method_dot1x_authoritative: Optional[bool] = None,
        match_result_type_method_dot1x_method_timeout: Optional[bool] = None,
        match_result_type_method_mab_authoritative: Optional[bool] = None,
        name: Optional[str] = None,
        prematch: Optional[str] = None,
        subscriber: Optional[bool] = None,
        type: Optional[str] = None) -> ClassMapfunc GetClassMap(ctx *Context, name string, id IDInput, state *ClassMapState, opts ...ResourceOption) (*ClassMap, error)public static ClassMap Get(string name, Input<string> id, ClassMapState? state, CustomResourceOptions? opts = null)public static ClassMap get(String name, Output<String> id, ClassMapState state, CustomResourceOptions options)resources:  _:    type: iosxe:ClassMap    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.
- Description string
- Class-Map description
- Device string
- A device name from the provider configuration.
- MatchActivated List<Lbrlabs.Service Templates Pulumi Package. Iosxe. Inputs. Class Map Match Activated Service Template> 
- match name of service template activated on session
- bool
- authorized
- bool
- unauthorized
- List<int>
- greater than
- MatchMethod boolDot1x 
- dot1x
- MatchMethod boolMab 
- mab
- MatchResult boolType Aaa Timeout 
- aaa timeout type
- MatchResult boolType Method Dot1x Agent Not Found 
- agent not found type
- bool
- failure type
- MatchResult boolType Method Dot1x Method Timeout 
- method_timeout type
- bool
- failure type
- Name string
- name of the class map
- Prematch string
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- Subscriber bool
- Domain name of the class map
- Type string
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- Description string
- Class-Map description
- Device string
- A device name from the provider configuration.
- MatchActivated []ClassService Templates Map Match Activated Service Template Args 
- match name of service template activated on session
- bool
- authorized
- bool
- unauthorized
- []int
- greater than
- MatchMethod boolDot1x 
- dot1x
- MatchMethod boolMab 
- mab
- MatchResult boolType Aaa Timeout 
- aaa timeout type
- MatchResult boolType Method Dot1x Agent Not Found 
- agent not found type
- bool
- failure type
- MatchResult boolType Method Dot1x Method Timeout 
- method_timeout type
- bool
- failure type
- Name string
- name of the class map
- Prematch string
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- Subscriber bool
- Domain name of the class map
- Type string
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- description String
- Class-Map description
- device String
- A device name from the provider configuration.
- matchActivated List<ClassService Templates Map Match Activated Service Template> 
- match name of service template activated on session
- Boolean
- authorized
- Boolean
- unauthorized
- List<Integer>
- greater than
- matchMethod BooleanDot1x 
- dot1x
- matchMethod BooleanMab 
- mab
- matchResult BooleanType Aaa Timeout 
- aaa timeout type
- matchResult BooleanType Method Dot1x Agent Not Found 
- agent not found type
- Boolean
- failure type
- matchResult BooleanType Method Dot1x Method Timeout 
- method_timeout type
- Boolean
- failure type
- name String
- name of the class map
- prematch String
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- subscriber Boolean
- Domain name of the class map
- type String
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- description string
- Class-Map description
- device string
- A device name from the provider configuration.
- matchActivated ClassService Templates Map Match Activated Service Template[] 
- match name of service template activated on session
- boolean
- authorized
- boolean
- unauthorized
- number[]
- greater than
- matchMethod booleanDot1x 
- dot1x
- matchMethod booleanMab 
- mab
- matchResult booleanType Aaa Timeout 
- aaa timeout type
- matchResult booleanType Method Dot1x Agent Not Found 
- agent not found type
- boolean
- failure type
- matchResult booleanType Method Dot1x Method Timeout 
- method_timeout type
- boolean
- failure type
- name string
- name of the class map
- prematch string
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- subscriber boolean
- Domain name of the class map
- type string
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- description str
- Class-Map description
- device str
- A device name from the provider configuration.
- match_activated_ Sequence[Classservice_ templates Map Match Activated Service Template Args] 
- match name of service template activated on session
- bool
- authorized
- bool
- unauthorized
- Sequence[int]
- greater than
- match_method_ booldot1x 
- dot1x
- match_method_ boolmab 
- mab
- match_result_ booltype_ aaa_ timeout 
- aaa timeout type
- match_result_ booltype_ method_ dot1x_ agent_ not_ found 
- agent not found type
- bool
- failure type
- match_result_ booltype_ method_ dot1x_ method_ timeout 
- method_timeout type
- bool
- failure type
- name str
- name of the class map
- prematch str
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- subscriber bool
- Domain name of the class map
- type str
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
- description String
- Class-Map description
- device String
- A device name from the provider configuration.
- matchActivated List<Property Map>Service Templates 
- match name of service template activated on session
- Boolean
- authorized
- Boolean
- unauthorized
- List<Number>
- greater than
- matchMethod BooleanDot1x 
- dot1x
- matchMethod BooleanMab 
- mab
- matchResult BooleanType Aaa Timeout 
- aaa timeout type
- matchResult BooleanType Method Dot1x Agent Not Found 
- agent not found type
- Boolean
- failure type
- matchResult BooleanType Method Dot1x Method Timeout 
- method_timeout type
- Boolean
- failure type
- name String
- name of the class map
- prematch String
- Logical-AND/Logical-OR of all matching statements under this class map - Choices: match-all,match-any,match-none
- subscriber Boolean
- Domain name of the class map
- type String
- type of the class-map - Choices: access-control,appnav,control,inspect,multicast-flows,site-manager,stack,traffic
Supporting Types
ClassMapMatchActivatedServiceTemplate, ClassMapMatchActivatedServiceTemplateArgs            
- ServiceName string
- ServiceName string
- serviceName String
- serviceName string
- service_name str
- serviceName String
Import
 $ pulumi import iosxe:index/classMap:ClassMap example "Cisco-IOS-XE-native:native/policy/Cisco-IOS-XE-policy:class-map=CM1"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- iosxe lbrlabs/pulumi-iosxe
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the iosxeTerraform Provider.