import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Crypto IKEv2 Keyring configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIkev2Keyring({ * name: "keyring1", * }); * ``` */ export declare function getCryptoIkev2Keyring(args: GetCryptoIkev2KeyringArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCryptoIkev2Keyring. */ export interface GetCryptoIkev2KeyringArgs { /** * A device name from the provider configuration. */ device?: string; name: string; } /** * A collection of values returned by getCryptoIkev2Keyring. */ export interface GetCryptoIkev2KeyringResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; readonly name: string; /** * Configure a Peer and associated keys */ readonly peers: outputs.GetCryptoIkev2KeyringPeer[]; } /** * This data source can read the Crypto IKEv2 Keyring configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIkev2Keyring({ * name: "keyring1", * }); * ``` */ export declare function getCryptoIkev2KeyringOutput(args: GetCryptoIkev2KeyringOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getCryptoIkev2Keyring. */ export interface GetCryptoIkev2KeyringOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; }