import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Class Map configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getClassMap({ * name: "CM1", * }); * ``` */ export declare function getClassMap(args: GetClassMapArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getClassMap. */ export interface GetClassMapArgs { /** * A device name from the provider configuration. */ device?: string; /** * name of the class map */ name: string; } /** * A collection of values returned by getClassMap. */ export interface GetClassMapResult { /** * Class-Map description */ readonly description: string; /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * match name of service template activated on session */ readonly matchActivatedServiceTemplates: outputs.GetClassMapMatchActivatedServiceTemplate[]; /** * authorized */ readonly matchAuthorizationStatusAuthorized: boolean; /** * unauthorized */ readonly matchAuthorizationStatusUnauthorized: boolean; /** * greater than */ readonly matchAuthorizingMethodPriorityGreaterThans: number[]; /** * dot1x */ readonly matchMethodDot1x: boolean; /** * mab */ readonly matchMethodMab: boolean; /** * aaa timeout type */ readonly matchResultTypeAaaTimeout: boolean; /** * agent not found type */ readonly matchResultTypeMethodDot1xAgentNotFound: boolean; /** * failure type */ readonly matchResultTypeMethodDot1xAuthoritative: boolean; /** * method_timeout type */ readonly matchResultTypeMethodDot1xMethodTimeout: boolean; /** * failure type */ readonly matchResultTypeMethodMabAuthoritative: boolean; /** * name of the class map */ readonly name: string; /** * Logical-AND/Logical-OR of all matching statements under this class map */ readonly prematch: string; /** * Domain name of the class map */ readonly subscriber: boolean; /** * type of the class-map */ readonly type: string; } /** * This data source can read the Class Map configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getClassMap({ * name: "CM1", * }); * ``` */ export declare function getClassMapOutput(args: GetClassMapOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getClassMap. */ export interface GetClassMapOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * name of the class map */ name: pulumi.Input; }