import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Policy Map configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getPolicyMap({ * name: "dot1x_policy", * }); * ``` */ export declare function getPolicyMap(args: GetPolicyMapArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPolicyMap. */ export interface GetPolicyMapArgs { /** * A device name from the provider configuration. */ device?: string; /** * Name of the policy map */ name: string; } /** * A collection of values returned by getPolicyMap. */ export interface GetPolicyMapResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * Name of the policy map */ readonly name: string; /** * Domain name of the policy map */ readonly subscriber: boolean; /** * type of the policy-map */ readonly type: string; } /** * This data source can read the Policy Map configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getPolicyMap({ * name: "dot1x_policy", * }); * ``` */ export declare function getPolicyMapOutput(args: GetPolicyMapOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getPolicyMap. */ export interface GetPolicyMapOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * Name of the policy map */ name: pulumi.Input; }