import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Crypto IPSec Profile configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIpsecProfile({ * name: "vpn200", * }); * ``` */ export declare function getCryptoIpsecProfile(args: GetCryptoIpsecProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCryptoIpsecProfile. */ export interface GetCryptoIpsecProfileArgs { /** * A device name from the provider configuration. */ device?: string; name: string; } /** * A collection of values returned by getCryptoIpsecProfile. */ export interface GetCryptoIpsecProfileResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; readonly name: string; /** * Specify ikev2 Profile */ readonly setIsakmpProfileIkev2ProfileIkev2ProfileCaseIkev2Profile: string; /** * Specify isakmp Profile */ readonly setIsakmpProfileIkev2ProfileIsakmpProfileCaseIsakmpProfile: string; /** * Specify list of transform sets in priority order */ readonly setTransformSets: string[]; } /** * This data source can read the Crypto IPSec Profile configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIpsecProfile({ * name: "vpn200", * }); * ``` */ export declare function getCryptoIpsecProfileOutput(args: GetCryptoIpsecProfileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getCryptoIpsecProfile. */ export interface GetCryptoIpsecProfileOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; }