import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage the Dot1x configuration. * * ## Import * * ```sh * $ pulumi import iosxe:index/dot1x:Dot1x example "Cisco-IOS-XE-native:native/dot1x" * ``` */ export declare class Dot1x extends pulumi.CustomResource { /** * Get an existing Dot1x 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?: Dot1xState, opts?: pulumi.CustomResourceOptions): Dot1x; /** * Returns true if the given object is an instance of Dot1x. 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 Dot1x; /** * Send EAPOL-Success on successful auth-fail Authorization */ readonly authFailEapol: pulumi.Output; /** * Configure 802.1X credentials profiles */ readonly credentials: pulumi.Output; /** * Block all EAPoL transaction on Critical Authentication */ readonly criticalEapolConfigBlock: pulumi.Output; /** * Set 802.1x Critical Authentication Recovery Delay period - Range: `1`-`10000` */ readonly criticalRecoveryDelay: pulumi.Output; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being * managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. * Default value is `all`. - Choices: `all`, `attributes` */ readonly deleteMode: pulumi.Output; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * Show verbose messages in system logs */ readonly loggingVerbose: pulumi.Output; /** * Controlled access is only applied during authentication */ readonly supplicantControlledTransient: pulumi.Output; /** * Force 802.1X supplicant to send multicast packets */ readonly supplicantForceMulticast: pulumi.Output; /** * Enable or Disable SysAuthControl */ readonly systemAuthControl: pulumi.Output; /** * Timeout for device EAPOL capabilities test in seconds - Range: `1`-`65535` */ readonly testTimeout: pulumi.Output; /** * Create a Dot1x 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?: Dot1xArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Dot1x resources. */ export interface Dot1xState { /** * Send EAPOL-Success on successful auth-fail Authorization */ authFailEapol?: pulumi.Input; /** * Configure 802.1X credentials profiles */ credentials?: pulumi.Input[]>; /** * Block all EAPoL transaction on Critical Authentication */ criticalEapolConfigBlock?: pulumi.Input; /** * Set 802.1x Critical Authentication Recovery Delay period - Range: `1`-`10000` */ criticalRecoveryDelay?: pulumi.Input; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being * managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. * Default value is `all`. - Choices: `all`, `attributes` */ deleteMode?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * Show verbose messages in system logs */ loggingVerbose?: pulumi.Input; /** * Controlled access is only applied during authentication */ supplicantControlledTransient?: pulumi.Input; /** * Force 802.1X supplicant to send multicast packets */ supplicantForceMulticast?: pulumi.Input; /** * Enable or Disable SysAuthControl */ systemAuthControl?: pulumi.Input; /** * Timeout for device EAPOL capabilities test in seconds - Range: `1`-`65535` */ testTimeout?: pulumi.Input; } /** * The set of arguments for constructing a Dot1x resource. */ export interface Dot1xArgs { /** * Send EAPOL-Success on successful auth-fail Authorization */ authFailEapol?: pulumi.Input; /** * Configure 802.1X credentials profiles */ credentials?: pulumi.Input[]>; /** * Block all EAPoL transaction on Critical Authentication */ criticalEapolConfigBlock?: pulumi.Input; /** * Set 802.1x Critical Authentication Recovery Delay period - Range: `1`-`10000` */ criticalRecoveryDelay?: pulumi.Input; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being * managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. * Default value is `all`. - Choices: `all`, `attributes` */ deleteMode?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * Show verbose messages in system logs */ loggingVerbose?: pulumi.Input; /** * Controlled access is only applied during authentication */ supplicantControlledTransient?: pulumi.Input; /** * Force 802.1X supplicant to send multicast packets */ supplicantForceMulticast?: pulumi.Input; /** * Enable or Disable SysAuthControl */ systemAuthControl?: pulumi.Input; /** * Timeout for device EAPOL capabilities test in seconds - Range: `1`-`65535` */ testTimeout?: pulumi.Input; }