1. Packages
  2. Cisco IOS XE Resource Provider
  3. API Docs
  4. CryptoIkev2Proposal
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

iosxe.CryptoIkev2Proposal

Explore with Pulumi AI

iosxe logo
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

    This resource can manage the Crypto IKEv2 Proposal configuration.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Iosxe = Lbrlabs.PulumiPackage.Iosxe;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Iosxe.CryptoIkev2Proposal("example", new()
        {
            EncryptionAesGcm256 = true,
            GroupFifteen = true,
            GroupFourteen = true,
            GroupNineteen = true,
            GroupOne = true,
            GroupSixteen = true,
            GroupTwenty = true,
            GroupTwentyFour = true,
            GroupTwentyOne = true,
            GroupTwo = true,
            IntegritySha1 = true,
            PrfSha1 = true,
        });
    
    });
    
    package main
    
    import (
    	"github.com/lbrlabs/pulumi-iosxe/sdk/go/iosxe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iosxe.NewCryptoIkev2Proposal(ctx, "example", &iosxe.CryptoIkev2ProposalArgs{
    			EncryptionAesGcm256: pulumi.Bool(true),
    			GroupFifteen:        pulumi.Bool(true),
    			GroupFourteen:       pulumi.Bool(true),
    			GroupNineteen:       pulumi.Bool(true),
    			GroupOne:            pulumi.Bool(true),
    			GroupSixteen:        pulumi.Bool(true),
    			GroupTwenty:         pulumi.Bool(true),
    			GroupTwentyFour:     pulumi.Bool(true),
    			GroupTwentyOne:      pulumi.Bool(true),
    			GroupTwo:            pulumi.Bool(true),
    			IntegritySha1:       pulumi.Bool(true),
    			PrfSha1:             pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.iosxe.CryptoIkev2Proposal;
    import com.pulumi.iosxe.CryptoIkev2ProposalArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new CryptoIkev2Proposal("example", CryptoIkev2ProposalArgs.builder()        
                .encryptionAesGcm256(true)
                .groupFifteen(true)
                .groupFourteen(true)
                .groupNineteen(true)
                .groupOne(true)
                .groupSixteen(true)
                .groupTwenty(true)
                .groupTwentyFour(true)
                .groupTwentyOne(true)
                .groupTwo(true)
                .integritySha1(true)
                .prfSha1(true)
                .build());
    
        }
    }
    
    import pulumi
    import lbrlabs_pulumi_iosxe as iosxe
    
    example = iosxe.CryptoIkev2Proposal("example",
        encryption_aes_gcm256=True,
        group_fifteen=True,
        group_fourteen=True,
        group_nineteen=True,
        group_one=True,
        group_sixteen=True,
        group_twenty=True,
        group_twenty_four=True,
        group_twenty_one=True,
        group_two=True,
        integrity_sha1=True,
        prf_sha1=True)
    
    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,
    });
    
    resources:
      example:
        type: iosxe:CryptoIkev2Proposal
        properties:
          encryptionAesGcm256: true
          groupFifteen: true
          groupFourteen: true
          groupNineteen: true
          groupOne: true
          groupSixteen: true
          groupTwenty: true
          groupTwentyFour: true
          groupTwentyOne: true
          groupTwo: true
          integritySha1: true
          prfSha1: true
    

    Create CryptoIkev2Proposal Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CryptoIkev2Proposal(name: string, args?: CryptoIkev2ProposalArgs, opts?: CustomResourceOptions);
    @overload
    def CryptoIkev2Proposal(resource_name: str,
                            args: Optional[CryptoIkev2ProposalArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def CryptoIkev2Proposal(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            device: Optional[str] = None,
                            encryption_aes_cbc128: Optional[bool] = None,
                            encryption_aes_cbc192: Optional[bool] = None,
                            encryption_aes_cbc256: Optional[bool] = None,
                            encryption_aes_gcm128: Optional[bool] = None,
                            encryption_aes_gcm256: Optional[bool] = None,
                            encryption_en3des: Optional[bool] = None,
                            group_fifteen: Optional[bool] = None,
                            group_fourteen: Optional[bool] = None,
                            group_nineteen: Optional[bool] = None,
                            group_one: Optional[bool] = None,
                            group_sixteen: Optional[bool] = None,
                            group_twenty: Optional[bool] = None,
                            group_twenty_four: Optional[bool] = None,
                            group_twenty_one: Optional[bool] = None,
                            group_two: Optional[bool] = None,
                            integrity_md5: Optional[bool] = None,
                            integrity_sha1: Optional[bool] = None,
                            integrity_sha256: Optional[bool] = None,
                            integrity_sha384: Optional[bool] = None,
                            integrity_sha512: Optional[bool] = None,
                            name: Optional[str] = None,
                            prf_md5: Optional[bool] = None,
                            prf_sha1: Optional[bool] = None,
                            prf_sha256: Optional[bool] = None,
                            prf_sha384: Optional[bool] = None,
                            prf_sha512: Optional[bool] = None)
    func NewCryptoIkev2Proposal(ctx *Context, name string, args *CryptoIkev2ProposalArgs, opts ...ResourceOption) (*CryptoIkev2Proposal, error)
    public CryptoIkev2Proposal(string name, CryptoIkev2ProposalArgs? args = null, CustomResourceOptions? opts = null)
    public CryptoIkev2Proposal(String name, CryptoIkev2ProposalArgs args)
    public CryptoIkev2Proposal(String name, CryptoIkev2ProposalArgs args, CustomResourceOptions options)
    
    type: iosxe:CryptoIkev2Proposal
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CryptoIkev2ProposalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CryptoIkev2ProposalArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CryptoIkev2ProposalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CryptoIkev2ProposalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CryptoIkev2ProposalArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var cryptoIkev2ProposalResource = new Iosxe.CryptoIkev2Proposal("cryptoIkev2ProposalResource", new()
    {
        Device = "string",
        EncryptionAesCbc128 = false,
        EncryptionAesCbc192 = false,
        EncryptionAesCbc256 = false,
        EncryptionAesGcm128 = false,
        EncryptionAesGcm256 = false,
        EncryptionEn3des = false,
        GroupFifteen = false,
        GroupFourteen = false,
        GroupNineteen = false,
        GroupOne = false,
        GroupSixteen = false,
        GroupTwenty = false,
        GroupTwentyFour = false,
        GroupTwentyOne = false,
        GroupTwo = false,
        IntegrityMd5 = false,
        IntegritySha1 = false,
        IntegritySha256 = false,
        IntegritySha384 = false,
        IntegritySha512 = false,
        Name = "string",
        PrfMd5 = false,
        PrfSha1 = false,
        PrfSha256 = false,
        PrfSha384 = false,
        PrfSha512 = false,
    });
    
    example, err := iosxe.NewCryptoIkev2Proposal(ctx, "cryptoIkev2ProposalResource", &iosxe.CryptoIkev2ProposalArgs{
    	Device:              pulumi.String("string"),
    	EncryptionAesCbc128: pulumi.Bool(false),
    	EncryptionAesCbc192: pulumi.Bool(false),
    	EncryptionAesCbc256: pulumi.Bool(false),
    	EncryptionAesGcm128: pulumi.Bool(false),
    	EncryptionAesGcm256: pulumi.Bool(false),
    	EncryptionEn3des:    pulumi.Bool(false),
    	GroupFifteen:        pulumi.Bool(false),
    	GroupFourteen:       pulumi.Bool(false),
    	GroupNineteen:       pulumi.Bool(false),
    	GroupOne:            pulumi.Bool(false),
    	GroupSixteen:        pulumi.Bool(false),
    	GroupTwenty:         pulumi.Bool(false),
    	GroupTwentyFour:     pulumi.Bool(false),
    	GroupTwentyOne:      pulumi.Bool(false),
    	GroupTwo:            pulumi.Bool(false),
    	IntegrityMd5:        pulumi.Bool(false),
    	IntegritySha1:       pulumi.Bool(false),
    	IntegritySha256:     pulumi.Bool(false),
    	IntegritySha384:     pulumi.Bool(false),
    	IntegritySha512:     pulumi.Bool(false),
    	Name:                pulumi.String("string"),
    	PrfMd5:              pulumi.Bool(false),
    	PrfSha1:             pulumi.Bool(false),
    	PrfSha256:           pulumi.Bool(false),
    	PrfSha384:           pulumi.Bool(false),
    	PrfSha512:           pulumi.Bool(false),
    })
    
    var cryptoIkev2ProposalResource = new CryptoIkev2Proposal("cryptoIkev2ProposalResource", CryptoIkev2ProposalArgs.builder()
        .device("string")
        .encryptionAesCbc128(false)
        .encryptionAesCbc192(false)
        .encryptionAesCbc256(false)
        .encryptionAesGcm128(false)
        .encryptionAesGcm256(false)
        .encryptionEn3des(false)
        .groupFifteen(false)
        .groupFourteen(false)
        .groupNineteen(false)
        .groupOne(false)
        .groupSixteen(false)
        .groupTwenty(false)
        .groupTwentyFour(false)
        .groupTwentyOne(false)
        .groupTwo(false)
        .integrityMd5(false)
        .integritySha1(false)
        .integritySha256(false)
        .integritySha384(false)
        .integritySha512(false)
        .name("string")
        .prfMd5(false)
        .prfSha1(false)
        .prfSha256(false)
        .prfSha384(false)
        .prfSha512(false)
        .build());
    
    crypto_ikev2_proposal_resource = iosxe.CryptoIkev2Proposal("cryptoIkev2ProposalResource",
        device="string",
        encryption_aes_cbc128=False,
        encryption_aes_cbc192=False,
        encryption_aes_cbc256=False,
        encryption_aes_gcm128=False,
        encryption_aes_gcm256=False,
        encryption_en3des=False,
        group_fifteen=False,
        group_fourteen=False,
        group_nineteen=False,
        group_one=False,
        group_sixteen=False,
        group_twenty=False,
        group_twenty_four=False,
        group_twenty_one=False,
        group_two=False,
        integrity_md5=False,
        integrity_sha1=False,
        integrity_sha256=False,
        integrity_sha384=False,
        integrity_sha512=False,
        name="string",
        prf_md5=False,
        prf_sha1=False,
        prf_sha256=False,
        prf_sha384=False,
        prf_sha512=False)
    
    const cryptoIkev2ProposalResource = new iosxe.CryptoIkev2Proposal("cryptoIkev2ProposalResource", {
        device: "string",
        encryptionAesCbc128: false,
        encryptionAesCbc192: false,
        encryptionAesCbc256: false,
        encryptionAesGcm128: false,
        encryptionAesGcm256: false,
        encryptionEn3des: false,
        groupFifteen: false,
        groupFourteen: false,
        groupNineteen: false,
        groupOne: false,
        groupSixteen: false,
        groupTwenty: false,
        groupTwentyFour: false,
        groupTwentyOne: false,
        groupTwo: false,
        integrityMd5: false,
        integritySha1: false,
        integritySha256: false,
        integritySha384: false,
        integritySha512: false,
        name: "string",
        prfMd5: false,
        prfSha1: false,
        prfSha256: false,
        prfSha384: false,
        prfSha512: false,
    });
    
    type: iosxe:CryptoIkev2Proposal
    properties:
        device: string
        encryptionAesCbc128: false
        encryptionAesCbc192: false
        encryptionAesCbc256: false
        encryptionAesGcm128: false
        encryptionAesGcm256: false
        encryptionEn3des: false
        groupFifteen: false
        groupFourteen: false
        groupNineteen: false
        groupOne: false
        groupSixteen: false
        groupTwenty: false
        groupTwentyFour: false
        groupTwentyOne: false
        groupTwo: false
        integrityMd5: false
        integritySha1: false
        integritySha256: false
        integritySha384: false
        integritySha512: false
        name: string
        prfMd5: false
        prfSha1: false
        prfSha256: false
        prfSha384: false
        prfSha512: false
    

    CryptoIkev2Proposal Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The CryptoIkev2Proposal resource accepts the following input properties:

    Device string
    A device name from the provider configuration.
    EncryptionAesCbc128 bool
    AES-CBC-128
    EncryptionAesCbc192 bool
    AES-CBC-192
    EncryptionAesCbc256 bool
    AES-CBC-256
    EncryptionAesGcm128 bool
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    EncryptionAesGcm256 bool
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    EncryptionEn3des bool
    3DES
    GroupFifteen bool
    DH 3072 MODP
    GroupFourteen bool
    DH 2048 MODP
    GroupNineteen bool
    DH 256 ECP
    GroupOne bool
    DH 768 MODP
    GroupSixteen bool
    DH 4096 MODP
    GroupTwenty bool
    DH 384 ECP
    GroupTwentyFour bool
    DH 2048 (256 subgroup) MODP
    GroupTwentyOne bool
    DH 521 ECP
    GroupTwo bool
    DH 1024 MODP
    IntegrityMd5 bool
    Message Digest 5
    IntegritySha1 bool
    Secure Hash Standard
    IntegritySha256 bool
    Secure Hash Standard 2 (256 bit)
    IntegritySha384 bool
    Secure Hash Standard 2 (384 bit)
    IntegritySha512 bool
    Secure Hash Standard 2 (512 bit)
    Name string
    PrfMd5 bool
    Message Digest 5
    PrfSha1 bool
    Secure Hash Standard
    PrfSha256 bool
    Secure Hash Standard 2 (256 bit)
    PrfSha384 bool
    Secure Hash Standard 2 (384 bit)
    PrfSha512 bool
    Secure Hash Standard 2 (512 bit)
    Device string
    A device name from the provider configuration.
    EncryptionAesCbc128 bool
    AES-CBC-128
    EncryptionAesCbc192 bool
    AES-CBC-192
    EncryptionAesCbc256 bool
    AES-CBC-256
    EncryptionAesGcm128 bool
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    EncryptionAesGcm256 bool
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    EncryptionEn3des bool
    3DES
    GroupFifteen bool
    DH 3072 MODP
    GroupFourteen bool
    DH 2048 MODP
    GroupNineteen bool
    DH 256 ECP
    GroupOne bool
    DH 768 MODP
    GroupSixteen bool
    DH 4096 MODP
    GroupTwenty bool
    DH 384 ECP
    GroupTwentyFour bool
    DH 2048 (256 subgroup) MODP
    GroupTwentyOne bool
    DH 521 ECP
    GroupTwo bool
    DH 1024 MODP
    IntegrityMd5 bool
    Message Digest 5
    IntegritySha1 bool
    Secure Hash Standard
    IntegritySha256 bool
    Secure Hash Standard 2 (256 bit)
    IntegritySha384 bool
    Secure Hash Standard 2 (384 bit)
    IntegritySha512 bool
    Secure Hash Standard 2 (512 bit)
    Name string
    PrfMd5 bool
    Message Digest 5
    PrfSha1 bool
    Secure Hash Standard
    PrfSha256 bool
    Secure Hash Standard 2 (256 bit)
    PrfSha384 bool
    Secure Hash Standard 2 (384 bit)
    PrfSha512 bool
    Secure Hash Standard 2 (512 bit)
    device String
    A device name from the provider configuration.
    encryptionAesCbc128 Boolean
    AES-CBC-128
    encryptionAesCbc192 Boolean
    AES-CBC-192
    encryptionAesCbc256 Boolean
    AES-CBC-256
    encryptionAesGcm128 Boolean
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    encryptionAesGcm256 Boolean
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    encryptionEn3des Boolean
    3DES
    groupFifteen Boolean
    DH 3072 MODP
    groupFourteen Boolean
    DH 2048 MODP
    groupNineteen Boolean
    DH 256 ECP
    groupOne Boolean
    DH 768 MODP
    groupSixteen Boolean
    DH 4096 MODP
    groupTwenty Boolean
    DH 384 ECP
    groupTwentyFour Boolean
    DH 2048 (256 subgroup) MODP
    groupTwentyOne Boolean
    DH 521 ECP
    groupTwo Boolean
    DH 1024 MODP
    integrityMd5 Boolean
    Message Digest 5
    integritySha1 Boolean
    Secure Hash Standard
    integritySha256 Boolean
    Secure Hash Standard 2 (256 bit)
    integritySha384 Boolean
    Secure Hash Standard 2 (384 bit)
    integritySha512 Boolean
    Secure Hash Standard 2 (512 bit)
    name String
    prfMd5 Boolean
    Message Digest 5
    prfSha1 Boolean
    Secure Hash Standard
    prfSha256 Boolean
    Secure Hash Standard 2 (256 bit)
    prfSha384 Boolean
    Secure Hash Standard 2 (384 bit)
    prfSha512 Boolean
    Secure Hash Standard 2 (512 bit)
    device string
    A device name from the provider configuration.
    encryptionAesCbc128 boolean
    AES-CBC-128
    encryptionAesCbc192 boolean
    AES-CBC-192
    encryptionAesCbc256 boolean
    AES-CBC-256
    encryptionAesGcm128 boolean
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    encryptionAesGcm256 boolean
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    encryptionEn3des boolean
    3DES
    groupFifteen boolean
    DH 3072 MODP
    groupFourteen boolean
    DH 2048 MODP
    groupNineteen boolean
    DH 256 ECP
    groupOne boolean
    DH 768 MODP
    groupSixteen boolean
    DH 4096 MODP
    groupTwenty boolean
    DH 384 ECP
    groupTwentyFour boolean
    DH 2048 (256 subgroup) MODP
    groupTwentyOne boolean
    DH 521 ECP
    groupTwo boolean
    DH 1024 MODP
    integrityMd5 boolean
    Message Digest 5
    integritySha1 boolean
    Secure Hash Standard
    integritySha256 boolean
    Secure Hash Standard 2 (256 bit)
    integritySha384 boolean
    Secure Hash Standard 2 (384 bit)
    integritySha512 boolean
    Secure Hash Standard 2 (512 bit)
    name string
    prfMd5 boolean
    Message Digest 5
    prfSha1 boolean
    Secure Hash Standard
    prfSha256 boolean
    Secure Hash Standard 2 (256 bit)
    prfSha384 boolean
    Secure Hash Standard 2 (384 bit)
    prfSha512 boolean
    Secure Hash Standard 2 (512 bit)
    device str
    A device name from the provider configuration.
    encryption_aes_cbc128 bool
    AES-CBC-128
    encryption_aes_cbc192 bool
    AES-CBC-192
    encryption_aes_cbc256 bool
    AES-CBC-256
    encryption_aes_gcm128 bool
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    encryption_aes_gcm256 bool
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    encryption_en3des bool
    3DES
    group_fifteen bool
    DH 3072 MODP
    group_fourteen bool
    DH 2048 MODP
    group_nineteen bool
    DH 256 ECP
    group_one bool
    DH 768 MODP
    group_sixteen bool
    DH 4096 MODP
    group_twenty bool
    DH 384 ECP
    group_twenty_four bool
    DH 2048 (256 subgroup) MODP
    group_twenty_one bool
    DH 521 ECP
    group_two bool
    DH 1024 MODP
    integrity_md5 bool
    Message Digest 5
    integrity_sha1 bool
    Secure Hash Standard
    integrity_sha256 bool
    Secure Hash Standard 2 (256 bit)
    integrity_sha384 bool
    Secure Hash Standard 2 (384 bit)
    integrity_sha512 bool
    Secure Hash Standard 2 (512 bit)
    name str
    prf_md5 bool
    Message Digest 5
    prf_sha1 bool
    Secure Hash Standard
    prf_sha256 bool
    Secure Hash Standard 2 (256 bit)
    prf_sha384 bool
    Secure Hash Standard 2 (384 bit)
    prf_sha512 bool
    Secure Hash Standard 2 (512 bit)
    device String
    A device name from the provider configuration.
    encryptionAesCbc128 Boolean
    AES-CBC-128
    encryptionAesCbc192 Boolean
    AES-CBC-192
    encryptionAesCbc256 Boolean
    AES-CBC-256
    encryptionAesGcm128 Boolean
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    encryptionAesGcm256 Boolean
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    encryptionEn3des Boolean
    3DES
    groupFifteen Boolean
    DH 3072 MODP
    groupFourteen Boolean
    DH 2048 MODP
    groupNineteen Boolean
    DH 256 ECP
    groupOne Boolean
    DH 768 MODP
    groupSixteen Boolean
    DH 4096 MODP
    groupTwenty Boolean
    DH 384 ECP
    groupTwentyFour Boolean
    DH 2048 (256 subgroup) MODP
    groupTwentyOne Boolean
    DH 521 ECP
    groupTwo Boolean
    DH 1024 MODP
    integrityMd5 Boolean
    Message Digest 5
    integritySha1 Boolean
    Secure Hash Standard
    integritySha256 Boolean
    Secure Hash Standard 2 (256 bit)
    integritySha384 Boolean
    Secure Hash Standard 2 (384 bit)
    integritySha512 Boolean
    Secure Hash Standard 2 (512 bit)
    name String
    prfMd5 Boolean
    Message Digest 5
    prfSha1 Boolean
    Secure Hash Standard
    prfSha256 Boolean
    Secure Hash Standard 2 (256 bit)
    prfSha384 Boolean
    Secure Hash Standard 2 (384 bit)
    prfSha512 Boolean
    Secure Hash Standard 2 (512 bit)

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CryptoIkev2Proposal resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CryptoIkev2Proposal Resource

    Get an existing CryptoIkev2Proposal resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CryptoIkev2ProposalState, opts?: CustomResourceOptions): CryptoIkev2Proposal
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            encryption_aes_cbc128: Optional[bool] = None,
            encryption_aes_cbc192: Optional[bool] = None,
            encryption_aes_cbc256: Optional[bool] = None,
            encryption_aes_gcm128: Optional[bool] = None,
            encryption_aes_gcm256: Optional[bool] = None,
            encryption_en3des: Optional[bool] = None,
            group_fifteen: Optional[bool] = None,
            group_fourteen: Optional[bool] = None,
            group_nineteen: Optional[bool] = None,
            group_one: Optional[bool] = None,
            group_sixteen: Optional[bool] = None,
            group_twenty: Optional[bool] = None,
            group_twenty_four: Optional[bool] = None,
            group_twenty_one: Optional[bool] = None,
            group_two: Optional[bool] = None,
            integrity_md5: Optional[bool] = None,
            integrity_sha1: Optional[bool] = None,
            integrity_sha256: Optional[bool] = None,
            integrity_sha384: Optional[bool] = None,
            integrity_sha512: Optional[bool] = None,
            name: Optional[str] = None,
            prf_md5: Optional[bool] = None,
            prf_sha1: Optional[bool] = None,
            prf_sha256: Optional[bool] = None,
            prf_sha384: Optional[bool] = None,
            prf_sha512: Optional[bool] = None) -> CryptoIkev2Proposal
    func GetCryptoIkev2Proposal(ctx *Context, name string, id IDInput, state *CryptoIkev2ProposalState, opts ...ResourceOption) (*CryptoIkev2Proposal, error)
    public static CryptoIkev2Proposal Get(string name, Input<string> id, CryptoIkev2ProposalState? state, CustomResourceOptions? opts = null)
    public static CryptoIkev2Proposal get(String name, Output<String> id, CryptoIkev2ProposalState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Device string
    A device name from the provider configuration.
    EncryptionAesCbc128 bool
    AES-CBC-128
    EncryptionAesCbc192 bool
    AES-CBC-192
    EncryptionAesCbc256 bool
    AES-CBC-256
    EncryptionAesGcm128 bool
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    EncryptionAesGcm256 bool
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    EncryptionEn3des bool
    3DES
    GroupFifteen bool
    DH 3072 MODP
    GroupFourteen bool
    DH 2048 MODP
    GroupNineteen bool
    DH 256 ECP
    GroupOne bool
    DH 768 MODP
    GroupSixteen bool
    DH 4096 MODP
    GroupTwenty bool
    DH 384 ECP
    GroupTwentyFour bool
    DH 2048 (256 subgroup) MODP
    GroupTwentyOne bool
    DH 521 ECP
    GroupTwo bool
    DH 1024 MODP
    IntegrityMd5 bool
    Message Digest 5
    IntegritySha1 bool
    Secure Hash Standard
    IntegritySha256 bool
    Secure Hash Standard 2 (256 bit)
    IntegritySha384 bool
    Secure Hash Standard 2 (384 bit)
    IntegritySha512 bool
    Secure Hash Standard 2 (512 bit)
    Name string
    PrfMd5 bool
    Message Digest 5
    PrfSha1 bool
    Secure Hash Standard
    PrfSha256 bool
    Secure Hash Standard 2 (256 bit)
    PrfSha384 bool
    Secure Hash Standard 2 (384 bit)
    PrfSha512 bool
    Secure Hash Standard 2 (512 bit)
    Device string
    A device name from the provider configuration.
    EncryptionAesCbc128 bool
    AES-CBC-128
    EncryptionAesCbc192 bool
    AES-CBC-192
    EncryptionAesCbc256 bool
    AES-CBC-256
    EncryptionAesGcm128 bool
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    EncryptionAesGcm256 bool
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    EncryptionEn3des bool
    3DES
    GroupFifteen bool
    DH 3072 MODP
    GroupFourteen bool
    DH 2048 MODP
    GroupNineteen bool
    DH 256 ECP
    GroupOne bool
    DH 768 MODP
    GroupSixteen bool
    DH 4096 MODP
    GroupTwenty bool
    DH 384 ECP
    GroupTwentyFour bool
    DH 2048 (256 subgroup) MODP
    GroupTwentyOne bool
    DH 521 ECP
    GroupTwo bool
    DH 1024 MODP
    IntegrityMd5 bool
    Message Digest 5
    IntegritySha1 bool
    Secure Hash Standard
    IntegritySha256 bool
    Secure Hash Standard 2 (256 bit)
    IntegritySha384 bool
    Secure Hash Standard 2 (384 bit)
    IntegritySha512 bool
    Secure Hash Standard 2 (512 bit)
    Name string
    PrfMd5 bool
    Message Digest 5
    PrfSha1 bool
    Secure Hash Standard
    PrfSha256 bool
    Secure Hash Standard 2 (256 bit)
    PrfSha384 bool
    Secure Hash Standard 2 (384 bit)
    PrfSha512 bool
    Secure Hash Standard 2 (512 bit)
    device String
    A device name from the provider configuration.
    encryptionAesCbc128 Boolean
    AES-CBC-128
    encryptionAesCbc192 Boolean
    AES-CBC-192
    encryptionAesCbc256 Boolean
    AES-CBC-256
    encryptionAesGcm128 Boolean
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    encryptionAesGcm256 Boolean
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    encryptionEn3des Boolean
    3DES
    groupFifteen Boolean
    DH 3072 MODP
    groupFourteen Boolean
    DH 2048 MODP
    groupNineteen Boolean
    DH 256 ECP
    groupOne Boolean
    DH 768 MODP
    groupSixteen Boolean
    DH 4096 MODP
    groupTwenty Boolean
    DH 384 ECP
    groupTwentyFour Boolean
    DH 2048 (256 subgroup) MODP
    groupTwentyOne Boolean
    DH 521 ECP
    groupTwo Boolean
    DH 1024 MODP
    integrityMd5 Boolean
    Message Digest 5
    integritySha1 Boolean
    Secure Hash Standard
    integritySha256 Boolean
    Secure Hash Standard 2 (256 bit)
    integritySha384 Boolean
    Secure Hash Standard 2 (384 bit)
    integritySha512 Boolean
    Secure Hash Standard 2 (512 bit)
    name String
    prfMd5 Boolean
    Message Digest 5
    prfSha1 Boolean
    Secure Hash Standard
    prfSha256 Boolean
    Secure Hash Standard 2 (256 bit)
    prfSha384 Boolean
    Secure Hash Standard 2 (384 bit)
    prfSha512 Boolean
    Secure Hash Standard 2 (512 bit)
    device string
    A device name from the provider configuration.
    encryptionAesCbc128 boolean
    AES-CBC-128
    encryptionAesCbc192 boolean
    AES-CBC-192
    encryptionAesCbc256 boolean
    AES-CBC-256
    encryptionAesGcm128 boolean
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    encryptionAesGcm256 boolean
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    encryptionEn3des boolean
    3DES
    groupFifteen boolean
    DH 3072 MODP
    groupFourteen boolean
    DH 2048 MODP
    groupNineteen boolean
    DH 256 ECP
    groupOne boolean
    DH 768 MODP
    groupSixteen boolean
    DH 4096 MODP
    groupTwenty boolean
    DH 384 ECP
    groupTwentyFour boolean
    DH 2048 (256 subgroup) MODP
    groupTwentyOne boolean
    DH 521 ECP
    groupTwo boolean
    DH 1024 MODP
    integrityMd5 boolean
    Message Digest 5
    integritySha1 boolean
    Secure Hash Standard
    integritySha256 boolean
    Secure Hash Standard 2 (256 bit)
    integritySha384 boolean
    Secure Hash Standard 2 (384 bit)
    integritySha512 boolean
    Secure Hash Standard 2 (512 bit)
    name string
    prfMd5 boolean
    Message Digest 5
    prfSha1 boolean
    Secure Hash Standard
    prfSha256 boolean
    Secure Hash Standard 2 (256 bit)
    prfSha384 boolean
    Secure Hash Standard 2 (384 bit)
    prfSha512 boolean
    Secure Hash Standard 2 (512 bit)
    device str
    A device name from the provider configuration.
    encryption_aes_cbc128 bool
    AES-CBC-128
    encryption_aes_cbc192 bool
    AES-CBC-192
    encryption_aes_cbc256 bool
    AES-CBC-256
    encryption_aes_gcm128 bool
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    encryption_aes_gcm256 bool
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    encryption_en3des bool
    3DES
    group_fifteen bool
    DH 3072 MODP
    group_fourteen bool
    DH 2048 MODP
    group_nineteen bool
    DH 256 ECP
    group_one bool
    DH 768 MODP
    group_sixteen bool
    DH 4096 MODP
    group_twenty bool
    DH 384 ECP
    group_twenty_four bool
    DH 2048 (256 subgroup) MODP
    group_twenty_one bool
    DH 521 ECP
    group_two bool
    DH 1024 MODP
    integrity_md5 bool
    Message Digest 5
    integrity_sha1 bool
    Secure Hash Standard
    integrity_sha256 bool
    Secure Hash Standard 2 (256 bit)
    integrity_sha384 bool
    Secure Hash Standard 2 (384 bit)
    integrity_sha512 bool
    Secure Hash Standard 2 (512 bit)
    name str
    prf_md5 bool
    Message Digest 5
    prf_sha1 bool
    Secure Hash Standard
    prf_sha256 bool
    Secure Hash Standard 2 (256 bit)
    prf_sha384 bool
    Secure Hash Standard 2 (384 bit)
    prf_sha512 bool
    Secure Hash Standard 2 (512 bit)
    device String
    A device name from the provider configuration.
    encryptionAesCbc128 Boolean
    AES-CBC-128
    encryptionAesCbc192 Boolean
    AES-CBC-192
    encryptionAesCbc256 Boolean
    AES-CBC-256
    encryptionAesGcm128 Boolean
    Combined-mode,128 bit key,16 byte ICV(Authentication Tag)
    encryptionAesGcm256 Boolean
    Combined-mode,256 bit key,16 byte ICV(Authentication Tag)
    encryptionEn3des Boolean
    3DES
    groupFifteen Boolean
    DH 3072 MODP
    groupFourteen Boolean
    DH 2048 MODP
    groupNineteen Boolean
    DH 256 ECP
    groupOne Boolean
    DH 768 MODP
    groupSixteen Boolean
    DH 4096 MODP
    groupTwenty Boolean
    DH 384 ECP
    groupTwentyFour Boolean
    DH 2048 (256 subgroup) MODP
    groupTwentyOne Boolean
    DH 521 ECP
    groupTwo Boolean
    DH 1024 MODP
    integrityMd5 Boolean
    Message Digest 5
    integritySha1 Boolean
    Secure Hash Standard
    integritySha256 Boolean
    Secure Hash Standard 2 (256 bit)
    integritySha384 Boolean
    Secure Hash Standard 2 (384 bit)
    integritySha512 Boolean
    Secure Hash Standard 2 (512 bit)
    name String
    prfMd5 Boolean
    Message Digest 5
    prfSha1 Boolean
    Secure Hash Standard
    prfSha256 Boolean
    Secure Hash Standard 2 (256 bit)
    prfSha384 Boolean
    Secure Hash Standard 2 (384 bit)
    prfSha512 Boolean
    Secure Hash Standard 2 (512 bit)

    Import

     $ pulumi import iosxe:index/cryptoIkev2Proposal:CryptoIkev2Proposal example "Cisco-IOS-XE-native:native/crypto/Cisco-IOS-XE-crypto:ikev2/proposal=PROPOSAL1"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    iosxe lbrlabs/pulumi-iosxe
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the iosxe Terraform Provider.
    iosxe logo
    Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs