import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage the Class Map configuration. * * ## Import * * ```sh * $ pulumi import iosxe:index/classMap:ClassMap example "Cisco-IOS-XE-native:native/policy/Cisco-IOS-XE-policy:class-map=CM1" * ``` */ export declare class ClassMap extends pulumi.CustomResource { /** * Get an existing ClassMap resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ClassMapState, opts?: pulumi.CustomResourceOptions): ClassMap; /** * Returns true if the given object is an instance of ClassMap. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ClassMap; /** * Class-Map description */ readonly description: pulumi.Output; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * match name of service template activated on session */ readonly matchActivatedServiceTemplates: pulumi.Output; /** * authorized */ readonly matchAuthorizationStatusAuthorized: pulumi.Output; /** * unauthorized */ readonly matchAuthorizationStatusUnauthorized: pulumi.Output; /** * greater than */ readonly matchAuthorizingMethodPriorityGreaterThans: pulumi.Output; /** * dot1x */ readonly matchMethodDot1x: pulumi.Output; /** * mab */ readonly matchMethodMab: pulumi.Output; /** * aaa timeout type */ readonly matchResultTypeAaaTimeout: pulumi.Output; /** * agent not found type */ readonly matchResultTypeMethodDot1xAgentNotFound: pulumi.Output; /** * failure type */ readonly matchResultTypeMethodDot1xAuthoritative: pulumi.Output; /** * method_timeout type */ readonly matchResultTypeMethodDot1xMethodTimeout: pulumi.Output; /** * failure type */ readonly matchResultTypeMethodMabAuthoritative: pulumi.Output; /** * name of the class map */ readonly name: pulumi.Output; /** * Logical-AND/Logical-OR of all matching statements under this class map - Choices: `match-all`, `match-any`, `match-none` */ readonly prematch: pulumi.Output; /** * Domain name of the class map */ readonly subscriber: pulumi.Output; /** * type of the class-map - Choices: `access-control`, `appnav`, `control`, `inspect`, `multicast-flows`, `site-manager`, * `stack`, `traffic` */ readonly type: pulumi.Output; /** * Create a ClassMap resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ClassMapArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ClassMap resources. */ export interface ClassMapState { /** * Class-Map description */ description?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * match name of service template activated on session */ matchActivatedServiceTemplates?: pulumi.Input[]>; /** * authorized */ matchAuthorizationStatusAuthorized?: pulumi.Input; /** * unauthorized */ matchAuthorizationStatusUnauthorized?: pulumi.Input; /** * greater than */ matchAuthorizingMethodPriorityGreaterThans?: pulumi.Input[]>; /** * dot1x */ matchMethodDot1x?: pulumi.Input; /** * mab */ matchMethodMab?: pulumi.Input; /** * aaa timeout type */ matchResultTypeAaaTimeout?: pulumi.Input; /** * agent not found type */ matchResultTypeMethodDot1xAgentNotFound?: pulumi.Input; /** * failure type */ matchResultTypeMethodDot1xAuthoritative?: pulumi.Input; /** * method_timeout type */ matchResultTypeMethodDot1xMethodTimeout?: pulumi.Input; /** * failure type */ matchResultTypeMethodMabAuthoritative?: pulumi.Input; /** * name of the class map */ name?: pulumi.Input; /** * Logical-AND/Logical-OR of all matching statements under this class map - Choices: `match-all`, `match-any`, `match-none` */ prematch?: pulumi.Input; /** * Domain name of the class map */ subscriber?: pulumi.Input; /** * type of the class-map - Choices: `access-control`, `appnav`, `control`, `inspect`, `multicast-flows`, `site-manager`, * `stack`, `traffic` */ type?: pulumi.Input; } /** * The set of arguments for constructing a ClassMap resource. */ export interface ClassMapArgs { /** * Class-Map description */ description?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * match name of service template activated on session */ matchActivatedServiceTemplates?: pulumi.Input[]>; /** * authorized */ matchAuthorizationStatusAuthorized?: pulumi.Input; /** * unauthorized */ matchAuthorizationStatusUnauthorized?: pulumi.Input; /** * greater than */ matchAuthorizingMethodPriorityGreaterThans?: pulumi.Input[]>; /** * dot1x */ matchMethodDot1x?: pulumi.Input; /** * mab */ matchMethodMab?: pulumi.Input; /** * aaa timeout type */ matchResultTypeAaaTimeout?: pulumi.Input; /** * agent not found type */ matchResultTypeMethodDot1xAgentNotFound?: pulumi.Input; /** * failure type */ matchResultTypeMethodDot1xAuthoritative?: pulumi.Input; /** * method_timeout type */ matchResultTypeMethodDot1xMethodTimeout?: pulumi.Input; /** * failure type */ matchResultTypeMethodMabAuthoritative?: pulumi.Input; /** * name of the class map */ name?: pulumi.Input; /** * Logical-AND/Logical-OR of all matching statements under this class map - Choices: `match-all`, `match-any`, `match-none` */ prematch: pulumi.Input; /** * Domain name of the class map */ subscriber?: pulumi.Input; /** * type of the class-map - Choices: `access-control`, `appnav`, `control`, `inspect`, `multicast-flows`, `site-manager`, * `stack`, `traffic` */ type?: pulumi.Input; }