import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage the Policy Map configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@lbrlabs/pulumi-iosxe"; * * const example = new iosxe.PolicyMap("example", { * subscriber: true, * type: "control", * }); * ``` * * ## Import * * ```sh * $ pulumi import iosxe:index/policyMap:PolicyMap example "Cisco-IOS-XE-native:native/policy/Cisco-IOS-XE-policy:policy-map=dot1x_policy" * ``` */ export declare class PolicyMap extends pulumi.CustomResource { /** * Get an existing PolicyMap 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?: PolicyMapState, opts?: pulumi.CustomResourceOptions): PolicyMap; /** * Returns true if the given object is an instance of PolicyMap. 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 PolicyMap; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * Name of the policy map */ readonly name: pulumi.Output; /** * Domain name of the policy map */ readonly subscriber: pulumi.Output; /** * type of the policy-map - Choices: `access-control`, `appnav`, `control`, `epbr`, `inspect`, `packet-service`, * `performance-monitor`, `queueing`, `service`, `service-chain`, `umbrella` */ readonly type: pulumi.Output; /** * Create a PolicyMap 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?: PolicyMapArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PolicyMap resources. */ export interface PolicyMapState { /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * Name of the policy map */ name?: pulumi.Input; /** * Domain name of the policy map */ subscriber?: pulumi.Input; /** * type of the policy-map - Choices: `access-control`, `appnav`, `control`, `epbr`, `inspect`, `packet-service`, * `performance-monitor`, `queueing`, `service`, `service-chain`, `umbrella` */ type?: pulumi.Input; } /** * The set of arguments for constructing a PolicyMap resource. */ export interface PolicyMapArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * Name of the policy map */ name?: pulumi.Input; /** * Domain name of the policy map */ subscriber?: pulumi.Input; /** * type of the policy-map - Choices: `access-control`, `appnav`, `control`, `epbr`, `inspect`, `packet-service`, * `performance-monitor`, `queueing`, `service`, `service-chain`, `umbrella` */ type?: pulumi.Input; }