import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage the Policy Map Event configuration. * * ## Import * * ```sh * $ pulumi import iosxe:index/policyMapEvent:PolicyMapEvent example "Cisco-IOS-XE-native:native/policy/Cisco-IOS-XE-policy:policy-map=dot1x_policy/event=authentication-success" * ``` */ export declare class PolicyMapEvent extends pulumi.CustomResource { /** * Get an existing PolicyMapEvent 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?: PolicyMapEventState, opts?: pulumi.CustomResourceOptions): PolicyMapEvent; /** * Returns true if the given object is an instance of PolicyMapEvent. 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 PolicyMapEvent; /** * class number, 1 for 1st class, 2 for 2nd... */ readonly classNumbers: pulumi.Output; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * - Choices: `aaa-available`, `absolute-timeout`, `agent-found`, `authentication-failure`, `authentication-success`, * `authorization-failure`, `authorization-success`, `identity-update`, `inactivity-timeout`, * `remote-authentication-failure`, `remote-authentication-success`, `remote-update`, `session-disconnected`, * `session-started`, `tag-added`, `tag-removed`, `template-activated`, `template-activation-failed`, * `template-deactivated`, `template-deactivation-failed`, `timer-expiry`, `violation` */ readonly eventType: pulumi.Output; /** * - Choices: `match-all`, `match-first` */ readonly matchType: pulumi.Output; /** * Name of the policy map */ readonly name: pulumi.Output; /** * Create a PolicyMapEvent 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: PolicyMapEventArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PolicyMapEvent resources. */ export interface PolicyMapEventState { /** * class number, 1 for 1st class, 2 for 2nd... */ classNumbers?: pulumi.Input[]>; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * - Choices: `aaa-available`, `absolute-timeout`, `agent-found`, `authentication-failure`, `authentication-success`, * `authorization-failure`, `authorization-success`, `identity-update`, `inactivity-timeout`, * `remote-authentication-failure`, `remote-authentication-success`, `remote-update`, `session-disconnected`, * `session-started`, `tag-added`, `tag-removed`, `template-activated`, `template-activation-failed`, * `template-deactivated`, `template-deactivation-failed`, `timer-expiry`, `violation` */ eventType?: pulumi.Input; /** * - Choices: `match-all`, `match-first` */ matchType?: pulumi.Input; /** * Name of the policy map */ name?: pulumi.Input; } /** * The set of arguments for constructing a PolicyMapEvent resource. */ export interface PolicyMapEventArgs { /** * class number, 1 for 1st class, 2 for 2nd... */ classNumbers?: pulumi.Input[]>; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * - Choices: `aaa-available`, `absolute-timeout`, `agent-found`, `authentication-failure`, `authentication-success`, * `authorization-failure`, `authorization-success`, `identity-update`, `inactivity-timeout`, * `remote-authentication-failure`, `remote-authentication-success`, `remote-update`, `session-disconnected`, * `session-started`, `tag-added`, `tag-removed`, `template-activated`, `template-activation-failed`, * `template-deactivated`, `template-deactivation-failed`, `timer-expiry`, `violation` */ eventType: pulumi.Input; /** * - Choices: `match-all`, `match-first` */ matchType?: pulumi.Input; /** * Name of the policy map */ name?: pulumi.Input; }