import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Crypto IPSec Transform Set configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIpsecTransformSet({ * name: "TEST", * }); * ``` */ export declare function getCryptoIpsecTransformSet(args: GetCryptoIpsecTransformSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCryptoIpsecTransformSet. */ export interface GetCryptoIpsecTransformSetArgs { /** * A device name from the provider configuration. */ device?: string; name: string; } /** * A collection of values returned by getCryptoIpsecTransformSet. */ export interface GetCryptoIpsecTransformSetResult { /** * A device name from the provider configuration. */ readonly device?: string; readonly esp: string; readonly espHmac: string; /** * The path of the retrieved object. */ readonly id: string; /** * tunnel (datagram encapsulation) mode */ readonly modeTunnel: boolean; readonly name: string; } /** * This data source can read the Crypto IPSec Transform Set configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIpsecTransformSet({ * name: "TEST", * }); * ``` */ export declare function getCryptoIpsecTransformSetOutput(args: GetCryptoIpsecTransformSetOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getCryptoIpsecTransformSet. */ export interface GetCryptoIpsecTransformSetOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; }