import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Crypto IKEv2 Policy configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIkev2Policy({ * name: "policy1", * }); * ``` */ export declare function getCryptoIkev2Policy(args: GetCryptoIkev2PolicyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCryptoIkev2Policy. */ export interface GetCryptoIkev2PolicyArgs { /** * A device name from the provider configuration. */ device?: string; name: string; } /** * A collection of values returned by getCryptoIkev2Policy. */ export interface GetCryptoIkev2PolicyResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * Local address */ readonly matchAddressLocalIps: string[]; readonly matchFvrf: string; /** * Any fvrf */ readonly matchFvrfAny: boolean; /** * inbound only for controller */ readonly matchInboundOnly: boolean; readonly name: string; /** * Specify Proposal */ readonly proposals: outputs.GetCryptoIkev2PolicyProposal[]; } /** * This data source can read the Crypto IKEv2 Policy configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCryptoIkev2Policy({ * name: "policy1", * }); * ``` */ export declare function getCryptoIkev2PolicyOutput(args: GetCryptoIkev2PolicyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getCryptoIkev2Policy. */ export interface GetCryptoIkev2PolicyOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; }