import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage the Crypto IKEv2 Proposal configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@lbrlabs/pulumi-iosxe"; * * const example = new iosxe.CryptoIkev2Proposal("example", { * encryptionAesGcm256: true, * groupFifteen: true, * groupFourteen: true, * groupNineteen: true, * groupOne: true, * groupSixteen: true, * groupTwenty: true, * groupTwentyFour: true, * groupTwentyOne: true, * groupTwo: true, * integritySha1: true, * prfSha1: true, * }); * ``` * * ## Import * * ```sh * $ pulumi import iosxe:index/cryptoIkev2Proposal:CryptoIkev2Proposal example "Cisco-IOS-XE-native:native/crypto/Cisco-IOS-XE-crypto:ikev2/proposal=PROPOSAL1" * ``` */ export declare class CryptoIkev2Proposal extends pulumi.CustomResource { /** * Get an existing CryptoIkev2Proposal 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?: CryptoIkev2ProposalState, opts?: pulumi.CustomResourceOptions): CryptoIkev2Proposal; /** * Returns true if the given object is an instance of CryptoIkev2Proposal. 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 CryptoIkev2Proposal; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * AES-CBC-128 */ readonly encryptionAesCbc128: pulumi.Output; /** * AES-CBC-192 */ readonly encryptionAesCbc192: pulumi.Output; /** * AES-CBC-256 */ readonly encryptionAesCbc256: pulumi.Output; /** * Combined-mode,128 bit key,16 byte ICV(Authentication Tag) */ readonly encryptionAesGcm128: pulumi.Output; /** * Combined-mode,256 bit key,16 byte ICV(Authentication Tag) */ readonly encryptionAesGcm256: pulumi.Output; /** * 3DES */ readonly encryptionEn3des: pulumi.Output; /** * DH 3072 MODP */ readonly groupFifteen: pulumi.Output; /** * DH 2048 MODP */ readonly groupFourteen: pulumi.Output; /** * DH 256 ECP */ readonly groupNineteen: pulumi.Output; /** * DH 768 MODP */ readonly groupOne: pulumi.Output; /** * DH 4096 MODP */ readonly groupSixteen: pulumi.Output; /** * DH 384 ECP */ readonly groupTwenty: pulumi.Output; /** * DH 2048 (256 subgroup) MODP */ readonly groupTwentyFour: pulumi.Output; /** * DH 521 ECP */ readonly groupTwentyOne: pulumi.Output; /** * DH 1024 MODP */ readonly groupTwo: pulumi.Output; /** * Message Digest 5 */ readonly integrityMd5: pulumi.Output; /** * Secure Hash Standard */ readonly integritySha1: pulumi.Output; /** * Secure Hash Standard 2 (256 bit) */ readonly integritySha256: pulumi.Output; /** * Secure Hash Standard 2 (384 bit) */ readonly integritySha384: pulumi.Output; /** * Secure Hash Standard 2 (512 bit) */ readonly integritySha512: pulumi.Output; readonly name: pulumi.Output; /** * Message Digest 5 */ readonly prfMd5: pulumi.Output; /** * Secure Hash Standard */ readonly prfSha1: pulumi.Output; /** * Secure Hash Standard 2 (256 bit) */ readonly prfSha256: pulumi.Output; /** * Secure Hash Standard 2 (384 bit) */ readonly prfSha384: pulumi.Output; /** * Secure Hash Standard 2 (512 bit) */ readonly prfSha512: pulumi.Output; /** * Create a CryptoIkev2Proposal 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?: CryptoIkev2ProposalArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CryptoIkev2Proposal resources. */ export interface CryptoIkev2ProposalState { /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * AES-CBC-128 */ encryptionAesCbc128?: pulumi.Input; /** * AES-CBC-192 */ encryptionAesCbc192?: pulumi.Input; /** * AES-CBC-256 */ encryptionAesCbc256?: pulumi.Input; /** * Combined-mode,128 bit key,16 byte ICV(Authentication Tag) */ encryptionAesGcm128?: pulumi.Input; /** * Combined-mode,256 bit key,16 byte ICV(Authentication Tag) */ encryptionAesGcm256?: pulumi.Input; /** * 3DES */ encryptionEn3des?: pulumi.Input; /** * DH 3072 MODP */ groupFifteen?: pulumi.Input; /** * DH 2048 MODP */ groupFourteen?: pulumi.Input; /** * DH 256 ECP */ groupNineteen?: pulumi.Input; /** * DH 768 MODP */ groupOne?: pulumi.Input; /** * DH 4096 MODP */ groupSixteen?: pulumi.Input; /** * DH 384 ECP */ groupTwenty?: pulumi.Input; /** * DH 2048 (256 subgroup) MODP */ groupTwentyFour?: pulumi.Input; /** * DH 521 ECP */ groupTwentyOne?: pulumi.Input; /** * DH 1024 MODP */ groupTwo?: pulumi.Input; /** * Message Digest 5 */ integrityMd5?: pulumi.Input; /** * Secure Hash Standard */ integritySha1?: pulumi.Input; /** * Secure Hash Standard 2 (256 bit) */ integritySha256?: pulumi.Input; /** * Secure Hash Standard 2 (384 bit) */ integritySha384?: pulumi.Input; /** * Secure Hash Standard 2 (512 bit) */ integritySha512?: pulumi.Input; name?: pulumi.Input; /** * Message Digest 5 */ prfMd5?: pulumi.Input; /** * Secure Hash Standard */ prfSha1?: pulumi.Input; /** * Secure Hash Standard 2 (256 bit) */ prfSha256?: pulumi.Input; /** * Secure Hash Standard 2 (384 bit) */ prfSha384?: pulumi.Input; /** * Secure Hash Standard 2 (512 bit) */ prfSha512?: pulumi.Input; } /** * The set of arguments for constructing a CryptoIkev2Proposal resource. */ export interface CryptoIkev2ProposalArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * AES-CBC-128 */ encryptionAesCbc128?: pulumi.Input; /** * AES-CBC-192 */ encryptionAesCbc192?: pulumi.Input; /** * AES-CBC-256 */ encryptionAesCbc256?: pulumi.Input; /** * Combined-mode,128 bit key,16 byte ICV(Authentication Tag) */ encryptionAesGcm128?: pulumi.Input; /** * Combined-mode,256 bit key,16 byte ICV(Authentication Tag) */ encryptionAesGcm256?: pulumi.Input; /** * 3DES */ encryptionEn3des?: pulumi.Input; /** * DH 3072 MODP */ groupFifteen?: pulumi.Input; /** * DH 2048 MODP */ groupFourteen?: pulumi.Input; /** * DH 256 ECP */ groupNineteen?: pulumi.Input; /** * DH 768 MODP */ groupOne?: pulumi.Input; /** * DH 4096 MODP */ groupSixteen?: pulumi.Input; /** * DH 384 ECP */ groupTwenty?: pulumi.Input; /** * DH 2048 (256 subgroup) MODP */ groupTwentyFour?: pulumi.Input; /** * DH 521 ECP */ groupTwentyOne?: pulumi.Input; /** * DH 1024 MODP */ groupTwo?: pulumi.Input; /** * Message Digest 5 */ integrityMd5?: pulumi.Input; /** * Secure Hash Standard */ integritySha1?: pulumi.Input; /** * Secure Hash Standard 2 (256 bit) */ integritySha256?: pulumi.Input; /** * Secure Hash Standard 2 (384 bit) */ integritySha384?: pulumi.Input; /** * Secure Hash Standard 2 (512 bit) */ integritySha512?: pulumi.Input; name?: pulumi.Input; /** * Message Digest 5 */ prfMd5?: pulumi.Input; /** * Secure Hash Standard */ prfSha1?: pulumi.Input; /** * Secure Hash Standard 2 (256 bit) */ prfSha256?: pulumi.Input; /** * Secure Hash Standard 2 (384 bit) */ prfSha384?: pulumi.Input; /** * Secure Hash Standard 2 (512 bit) */ prfSha512?: pulumi.Input; }