import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Crypto IKEv2 configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIkev2({}); * ``` */ export declare function getCryptoIkev2(args?: GetCryptoIkev2Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCryptoIkev2. */ export interface GetCryptoIkev2Args { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getCryptoIkev2. */ export interface GetCryptoIkev2Result { /** * A device name from the provider configuration. */ readonly device?: string; /** * Enable IKE liveness check for peers */ readonly dpd: number; readonly dpdQuery: string; readonly dpdRetryInterval: number; /** * The path of the retrieved object. */ readonly id: string; /** * Set NAT keepalive interval */ readonly natKeepalive: number; } /** * This data source can read the Crypto IKEv2 configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIkev2({}); * ``` */ export declare function getCryptoIkev2Output(args?: GetCryptoIkev2OutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getCryptoIkev2. */ export interface GetCryptoIkev2OutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }