import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage the Crypto IKEv2 Profile configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@lbrlabs/pulumi-iosxe"; * * const example = new iosxe.CryptoIkev2Profile("example", { * authenticationLocalPreShare: true, * authenticationRemotePreShare: true, * configExchangeRequest: false, * description: "My description", * dpdInterval: 10, * dpdQuery: "periodic", * dpdRetry: 2, * identityLocalKeyId: "key1", * keyringLocal: "test", * matchAddressLocalIp: "1.2.3.4", * matchFvrfAny: true, * matchIdentityRemoteIpv4Addresses: [{ * address: "1.2.3.4", * mask: "255.255.255.0", * }], * matchIdentityRemoteKeys: ["key1"], * }); * ``` * * ## Import * * ```sh * $ pulumi import iosxe:index/cryptoIkev2Profile:CryptoIkev2Profile example "Cisco-IOS-XE-native:native/crypto/Cisco-IOS-XE-crypto:ikev2/profile=profile1" * ``` */ export declare class CryptoIkev2Profile extends pulumi.CustomResource { /** * Get an existing CryptoIkev2Profile resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: CryptoIkev2ProfileState, opts?: pulumi.CustomResourceOptions): CryptoIkev2Profile; /** * Returns true if the given object is an instance of CryptoIkev2Profile. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CryptoIkev2Profile; /** * Pre-Shared Key */ readonly authenticationLocalPreShare: pulumi.Output; /** * Pre-Shared Key */ readonly authenticationRemotePreShare: pulumi.Output; /** * enable config-exchange request */ readonly configExchangeRequest: pulumi.Output; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being * managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. * Default value is `all`. - Choices: `all`, `attributes` */ readonly deleteMode: pulumi.Output; /** * Specify a description of this profile */ readonly description: pulumi.Output; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * - Range: `10`-`3600` */ readonly dpdInterval: pulumi.Output; /** * - Choices: `on-demand`, `periodic` */ readonly dpdQuery: pulumi.Output; /** * - Range: `2`-`60` */ readonly dpdRetry: pulumi.Output; /** * address */ readonly identityLocalAddress: pulumi.Output; /** * key-id opaque string - proprietary types of identification key-id string */ readonly identityLocalKeyId: pulumi.Output; /** * Keyring name */ readonly keyringLocal: pulumi.Output; readonly matchAddressLocalIp: pulumi.Output; readonly matchFvrf: pulumi.Output; /** * Any fvrf */ readonly matchFvrfAny: pulumi.Output; readonly matchIdentityRemoteIpv4Addresses: pulumi.Output; readonly matchIdentityRemoteIpv6Prefixes: pulumi.Output; /** * key-id opaque string */ readonly matchIdentityRemoteKeys: pulumi.Output; /** * Match the profile for incoming connections only */ readonly matchInboundOnly: pulumi.Output; readonly name: pulumi.Output; /** * Create a CryptoIkev2Profile resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: CryptoIkev2ProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CryptoIkev2Profile resources. */ export interface CryptoIkev2ProfileState { /** * Pre-Shared Key */ authenticationLocalPreShare?: pulumi.Input; /** * Pre-Shared Key */ authenticationRemotePreShare?: pulumi.Input; /** * enable config-exchange request */ configExchangeRequest?: pulumi.Input; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being * managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. * Default value is `all`. - Choices: `all`, `attributes` */ deleteMode?: pulumi.Input; /** * Specify a description of this profile */ description?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * - Range: `10`-`3600` */ dpdInterval?: pulumi.Input; /** * - Choices: `on-demand`, `periodic` */ dpdQuery?: pulumi.Input; /** * - Range: `2`-`60` */ dpdRetry?: pulumi.Input; /** * address */ identityLocalAddress?: pulumi.Input; /** * key-id opaque string - proprietary types of identification key-id string */ identityLocalKeyId?: pulumi.Input; /** * Keyring name */ keyringLocal?: pulumi.Input; matchAddressLocalIp?: pulumi.Input; matchFvrf?: pulumi.Input; /** * Any fvrf */ matchFvrfAny?: pulumi.Input; matchIdentityRemoteIpv4Addresses?: pulumi.Input[]>; matchIdentityRemoteIpv6Prefixes?: pulumi.Input[]>; /** * key-id opaque string */ matchIdentityRemoteKeys?: pulumi.Input[]>; /** * Match the profile for incoming connections only */ matchInboundOnly?: pulumi.Input; name?: pulumi.Input; } /** * The set of arguments for constructing a CryptoIkev2Profile resource. */ export interface CryptoIkev2ProfileArgs { /** * Pre-Shared Key */ authenticationLocalPreShare?: pulumi.Input; /** * Pre-Shared Key */ authenticationRemotePreShare?: pulumi.Input; /** * enable config-exchange request */ configExchangeRequest?: pulumi.Input; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being * managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. * Default value is `all`. - Choices: `all`, `attributes` */ deleteMode?: pulumi.Input; /** * Specify a description of this profile */ description?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * - Range: `10`-`3600` */ dpdInterval?: pulumi.Input; /** * - Choices: `on-demand`, `periodic` */ dpdQuery?: pulumi.Input; /** * - Range: `2`-`60` */ dpdRetry?: pulumi.Input; /** * address */ identityLocalAddress?: pulumi.Input; /** * key-id opaque string - proprietary types of identification key-id string */ identityLocalKeyId?: pulumi.Input; /** * Keyring name */ keyringLocal?: pulumi.Input; matchAddressLocalIp?: pulumi.Input; matchFvrf?: pulumi.Input; /** * Any fvrf */ matchFvrfAny?: pulumi.Input; matchIdentityRemoteIpv4Addresses?: pulumi.Input[]>; matchIdentityRemoteIpv6Prefixes?: pulumi.Input[]>; /** * key-id opaque string */ matchIdentityRemoteKeys?: pulumi.Input[]>; /** * Match the profile for incoming connections only */ matchInboundOnly?: pulumi.Input; name?: pulumi.Input; }