1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. IpsecCryptoProfile
Strata Cloud Manager v0.3.1 published on Thursday, Mar 13, 2025 by Pulumi

scm.IpsecCryptoProfile

Explore with Pulumi AI

Retrieves a config item.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";

const example = new scm.IpsecCryptoProfile("example", {});
Copy
import pulumi
import pulumi_scm as scm

example = scm.IpsecCryptoProfile("example")
Copy
package main

import (
	"github.com/pulumi/pulumi-scm/sdk/go/scm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := scm.NewIpsecCryptoProfile(ctx, "example", nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;

return await Deployment.RunAsync(() => 
{
    var example = new Scm.IpsecCryptoProfile("example");

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.IpsecCryptoProfile;
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 IpsecCryptoProfile("example");

    }
}
Copy
resources:
  example:
    type: scm:IpsecCryptoProfile
Copy

Create IpsecCryptoProfile Resource

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

Constructor syntax

new IpsecCryptoProfile(name: string, args: IpsecCryptoProfileArgs, opts?: CustomResourceOptions);
@overload
def IpsecCryptoProfile(resource_name: str,
                       args: IpsecCryptoProfileArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def IpsecCryptoProfile(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       lifetime: Optional[IpsecCryptoProfileLifetimeArgs] = None,
                       ah: Optional[IpsecCryptoProfileAhArgs] = None,
                       device: Optional[str] = None,
                       dh_group: Optional[str] = None,
                       esp: Optional[IpsecCryptoProfileEspArgs] = None,
                       folder: Optional[str] = None,
                       lifesize: Optional[IpsecCryptoProfileLifesizeArgs] = None,
                       name: Optional[str] = None,
                       snippet: Optional[str] = None)
func NewIpsecCryptoProfile(ctx *Context, name string, args IpsecCryptoProfileArgs, opts ...ResourceOption) (*IpsecCryptoProfile, error)
public IpsecCryptoProfile(string name, IpsecCryptoProfileArgs args, CustomResourceOptions? opts = null)
public IpsecCryptoProfile(String name, IpsecCryptoProfileArgs args)
public IpsecCryptoProfile(String name, IpsecCryptoProfileArgs args, CustomResourceOptions options)
type: scm:IpsecCryptoProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IpsecCryptoProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. IpsecCryptoProfileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. IpsecCryptoProfileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IpsecCryptoProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. IpsecCryptoProfileArgs
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 ipsecCryptoProfileResource = new Scm.IpsecCryptoProfile("ipsecCryptoProfileResource", new()
{
    Lifetime = new Scm.Inputs.IpsecCryptoProfileLifetimeArgs
    {
        Days = 0,
        Hours = 0,
        Minutes = 0,
        Seconds = 0,
    },
    Ah = new Scm.Inputs.IpsecCryptoProfileAhArgs
    {
        Authentications = new[]
        {
            "string",
        },
    },
    Device = "string",
    DhGroup = "string",
    Esp = new Scm.Inputs.IpsecCryptoProfileEspArgs
    {
        Authentications = new[]
        {
            "string",
        },
        Encryptions = new[]
        {
            "string",
        },
    },
    Folder = "string",
    Lifesize = new Scm.Inputs.IpsecCryptoProfileLifesizeArgs
    {
        Gb = 0,
        Kb = 0,
        Mb = 0,
        Tb = 0,
    },
    Name = "string",
    Snippet = "string",
});
Copy
example, err := scm.NewIpsecCryptoProfile(ctx, "ipsecCryptoProfileResource", &scm.IpsecCryptoProfileArgs{
	Lifetime: &scm.IpsecCryptoProfileLifetimeArgs{
		Days:    pulumi.Int(0),
		Hours:   pulumi.Int(0),
		Minutes: pulumi.Int(0),
		Seconds: pulumi.Int(0),
	},
	Ah: &scm.IpsecCryptoProfileAhArgs{
		Authentications: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Device:  pulumi.String("string"),
	DhGroup: pulumi.String("string"),
	Esp: &scm.IpsecCryptoProfileEspArgs{
		Authentications: pulumi.StringArray{
			pulumi.String("string"),
		},
		Encryptions: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Folder: pulumi.String("string"),
	Lifesize: &scm.IpsecCryptoProfileLifesizeArgs{
		Gb: pulumi.Int(0),
		Kb: pulumi.Int(0),
		Mb: pulumi.Int(0),
		Tb: pulumi.Int(0),
	},
	Name:    pulumi.String("string"),
	Snippet: pulumi.String("string"),
})
Copy
var ipsecCryptoProfileResource = new IpsecCryptoProfile("ipsecCryptoProfileResource", IpsecCryptoProfileArgs.builder()
    .lifetime(IpsecCryptoProfileLifetimeArgs.builder()
        .days(0)
        .hours(0)
        .minutes(0)
        .seconds(0)
        .build())
    .ah(IpsecCryptoProfileAhArgs.builder()
        .authentications("string")
        .build())
    .device("string")
    .dhGroup("string")
    .esp(IpsecCryptoProfileEspArgs.builder()
        .authentications("string")
        .encryptions("string")
        .build())
    .folder("string")
    .lifesize(IpsecCryptoProfileLifesizeArgs.builder()
        .gb(0)
        .kb(0)
        .mb(0)
        .tb(0)
        .build())
    .name("string")
    .snippet("string")
    .build());
Copy
ipsec_crypto_profile_resource = scm.IpsecCryptoProfile("ipsecCryptoProfileResource",
    lifetime={
        "days": 0,
        "hours": 0,
        "minutes": 0,
        "seconds": 0,
    },
    ah={
        "authentications": ["string"],
    },
    device="string",
    dh_group="string",
    esp={
        "authentications": ["string"],
        "encryptions": ["string"],
    },
    folder="string",
    lifesize={
        "gb": 0,
        "kb": 0,
        "mb": 0,
        "tb": 0,
    },
    name="string",
    snippet="string")
Copy
const ipsecCryptoProfileResource = new scm.IpsecCryptoProfile("ipsecCryptoProfileResource", {
    lifetime: {
        days: 0,
        hours: 0,
        minutes: 0,
        seconds: 0,
    },
    ah: {
        authentications: ["string"],
    },
    device: "string",
    dhGroup: "string",
    esp: {
        authentications: ["string"],
        encryptions: ["string"],
    },
    folder: "string",
    lifesize: {
        gb: 0,
        kb: 0,
        mb: 0,
        tb: 0,
    },
    name: "string",
    snippet: "string",
});
Copy
type: scm:IpsecCryptoProfile
properties:
    ah:
        authentications:
            - string
    device: string
    dhGroup: string
    esp:
        authentications:
            - string
        encryptions:
            - string
    folder: string
    lifesize:
        gb: 0
        kb: 0
        mb: 0
        tb: 0
    lifetime:
        days: 0
        hours: 0
        minutes: 0
        seconds: 0
    name: string
    snippet: string
Copy

IpsecCryptoProfile Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The IpsecCryptoProfile resource accepts the following input properties:

Lifetime This property is required. IpsecCryptoProfileLifetime
The Lifetime param.
Ah IpsecCryptoProfileAh
The Ah param. Ensure that only one of the following is specified: ah, esp
Device string
The Device param.
DhGroup string
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
Esp IpsecCryptoProfileEsp
The Esp param. Ensure that only one of the following is specified: ah, esp
Folder string
The Folder param.
Lifesize IpsecCryptoProfileLifesize
The Lifesize param.
Name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
Snippet string
The Snippet param.
Lifetime This property is required. IpsecCryptoProfileLifetimeArgs
The Lifetime param.
Ah IpsecCryptoProfileAhArgs
The Ah param. Ensure that only one of the following is specified: ah, esp
Device string
The Device param.
DhGroup string
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
Esp IpsecCryptoProfileEspArgs
The Esp param. Ensure that only one of the following is specified: ah, esp
Folder string
The Folder param.
Lifesize IpsecCryptoProfileLifesizeArgs
The Lifesize param.
Name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
Snippet string
The Snippet param.
lifetime This property is required. IpsecCryptoProfileLifetime
The Lifetime param.
ah IpsecCryptoProfileAh
The Ah param. Ensure that only one of the following is specified: ah, esp
device String
The Device param.
dhGroup String
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
esp IpsecCryptoProfileEsp
The Esp param. Ensure that only one of the following is specified: ah, esp
folder String
The Folder param.
lifesize IpsecCryptoProfileLifesize
The Lifesize param.
name String
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
snippet String
The Snippet param.
lifetime This property is required. IpsecCryptoProfileLifetime
The Lifetime param.
ah IpsecCryptoProfileAh
The Ah param. Ensure that only one of the following is specified: ah, esp
device string
The Device param.
dhGroup string
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
esp IpsecCryptoProfileEsp
The Esp param. Ensure that only one of the following is specified: ah, esp
folder string
The Folder param.
lifesize IpsecCryptoProfileLifesize
The Lifesize param.
name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
snippet string
The Snippet param.
lifetime This property is required. IpsecCryptoProfileLifetimeArgs
The Lifetime param.
ah IpsecCryptoProfileAhArgs
The Ah param. Ensure that only one of the following is specified: ah, esp
device str
The Device param.
dh_group str
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
esp IpsecCryptoProfileEspArgs
The Esp param. Ensure that only one of the following is specified: ah, esp
folder str
The Folder param.
lifesize IpsecCryptoProfileLifesizeArgs
The Lifesize param.
name str
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
snippet str
The Snippet param.
lifetime This property is required. Property Map
The Lifetime param.
ah Property Map
The Ah param. Ensure that only one of the following is specified: ah, esp
device String
The Device param.
dhGroup String
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
esp Property Map
The Esp param. Ensure that only one of the following is specified: ah, esp
folder String
The Folder param.
lifesize Property Map
The Lifesize param.
name String
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
snippet String
The Snippet param.

Outputs

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

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

Look up Existing IpsecCryptoProfile Resource

Get an existing IpsecCryptoProfile 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?: IpsecCryptoProfileState, opts?: CustomResourceOptions): IpsecCryptoProfile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        ah: Optional[IpsecCryptoProfileAhArgs] = None,
        device: Optional[str] = None,
        dh_group: Optional[str] = None,
        esp: Optional[IpsecCryptoProfileEspArgs] = None,
        folder: Optional[str] = None,
        lifesize: Optional[IpsecCryptoProfileLifesizeArgs] = None,
        lifetime: Optional[IpsecCryptoProfileLifetimeArgs] = None,
        name: Optional[str] = None,
        snippet: Optional[str] = None,
        tfid: Optional[str] = None) -> IpsecCryptoProfile
func GetIpsecCryptoProfile(ctx *Context, name string, id IDInput, state *IpsecCryptoProfileState, opts ...ResourceOption) (*IpsecCryptoProfile, error)
public static IpsecCryptoProfile Get(string name, Input<string> id, IpsecCryptoProfileState? state, CustomResourceOptions? opts = null)
public static IpsecCryptoProfile get(String name, Output<String> id, IpsecCryptoProfileState state, CustomResourceOptions options)
resources:  _:    type: scm:IpsecCryptoProfile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Ah IpsecCryptoProfileAh
The Ah param. Ensure that only one of the following is specified: ah, esp
Device string
The Device param.
DhGroup string
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
Esp IpsecCryptoProfileEsp
The Esp param. Ensure that only one of the following is specified: ah, esp
Folder string
The Folder param.
Lifesize IpsecCryptoProfileLifesize
The Lifesize param.
Lifetime IpsecCryptoProfileLifetime
The Lifetime param.
Name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
Snippet string
The Snippet param.
Tfid string
Ah IpsecCryptoProfileAhArgs
The Ah param. Ensure that only one of the following is specified: ah, esp
Device string
The Device param.
DhGroup string
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
Esp IpsecCryptoProfileEspArgs
The Esp param. Ensure that only one of the following is specified: ah, esp
Folder string
The Folder param.
Lifesize IpsecCryptoProfileLifesizeArgs
The Lifesize param.
Lifetime IpsecCryptoProfileLifetimeArgs
The Lifetime param.
Name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
Snippet string
The Snippet param.
Tfid string
ah IpsecCryptoProfileAh
The Ah param. Ensure that only one of the following is specified: ah, esp
device String
The Device param.
dhGroup String
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
esp IpsecCryptoProfileEsp
The Esp param. Ensure that only one of the following is specified: ah, esp
folder String
The Folder param.
lifesize IpsecCryptoProfileLifesize
The Lifesize param.
lifetime IpsecCryptoProfileLifetime
The Lifetime param.
name String
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
snippet String
The Snippet param.
tfid String
ah IpsecCryptoProfileAh
The Ah param. Ensure that only one of the following is specified: ah, esp
device string
The Device param.
dhGroup string
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
esp IpsecCryptoProfileEsp
The Esp param. Ensure that only one of the following is specified: ah, esp
folder string
The Folder param.
lifesize IpsecCryptoProfileLifesize
The Lifesize param.
lifetime IpsecCryptoProfileLifetime
The Lifetime param.
name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
snippet string
The Snippet param.
tfid string
ah IpsecCryptoProfileAhArgs
The Ah param. Ensure that only one of the following is specified: ah, esp
device str
The Device param.
dh_group str
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
esp IpsecCryptoProfileEspArgs
The Esp param. Ensure that only one of the following is specified: ah, esp
folder str
The Folder param.
lifesize IpsecCryptoProfileLifesizeArgs
The Lifesize param.
lifetime IpsecCryptoProfileLifetimeArgs
The Lifetime param.
name str
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
snippet str
The Snippet param.
tfid str
ah Property Map
The Ah param. Ensure that only one of the following is specified: ah, esp
device String
The Device param.
dhGroup String
phase-2 DH group (PFS DH group). String must be one of these: "no-pfs", "group1", "group2", "group5", "group14", "group19", "group20". Default: "group2".
esp Property Map
The Esp param. Ensure that only one of the following is specified: ah, esp
folder String
The Folder param.
lifesize Property Map
The Lifesize param.
lifetime Property Map
The Lifetime param.
name String
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
snippet String
The Snippet param.
tfid String

Supporting Types

IpsecCryptoProfileAh
, IpsecCryptoProfileAhArgs

Authentications This property is required. List<string>
The Authentications param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
Authentications This property is required. []string
The Authentications param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
authentications This property is required. List<String>
The Authentications param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
authentications This property is required. string[]
The Authentications param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
authentications This property is required. Sequence[str]
The Authentications param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
authentications This property is required. List<String>
The Authentications param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".

IpsecCryptoProfileEsp
, IpsecCryptoProfileEspArgs

Authentications This property is required. List<string>
Authentication algorithm.
Encryptions This property is required. List<string>
Encryption algorithm. Individual elements in this list are subject to additional validation. String must be one of these: "des", "3des", "aes-128-cbc", "aes-192-cbc", "aes-256-cbc", "aes-128-gcm", "aes-256-gcm", "null".
Authentications This property is required. []string
Authentication algorithm.
Encryptions This property is required. []string
Encryption algorithm. Individual elements in this list are subject to additional validation. String must be one of these: "des", "3des", "aes-128-cbc", "aes-192-cbc", "aes-256-cbc", "aes-128-gcm", "aes-256-gcm", "null".
authentications This property is required. List<String>
Authentication algorithm.
encryptions This property is required. List<String>
Encryption algorithm. Individual elements in this list are subject to additional validation. String must be one of these: "des", "3des", "aes-128-cbc", "aes-192-cbc", "aes-256-cbc", "aes-128-gcm", "aes-256-gcm", "null".
authentications This property is required. string[]
Authentication algorithm.
encryptions This property is required. string[]
Encryption algorithm. Individual elements in this list are subject to additional validation. String must be one of these: "des", "3des", "aes-128-cbc", "aes-192-cbc", "aes-256-cbc", "aes-128-gcm", "aes-256-gcm", "null".
authentications This property is required. Sequence[str]
Authentication algorithm.
encryptions This property is required. Sequence[str]
Encryption algorithm. Individual elements in this list are subject to additional validation. String must be one of these: "des", "3des", "aes-128-cbc", "aes-192-cbc", "aes-256-cbc", "aes-128-gcm", "aes-256-gcm", "null".
authentications This property is required. List<String>
Authentication algorithm.
encryptions This property is required. List<String>
Encryption algorithm. Individual elements in this list are subject to additional validation. String must be one of these: "des", "3des", "aes-128-cbc", "aes-192-cbc", "aes-256-cbc", "aes-128-gcm", "aes-256-gcm", "null".

IpsecCryptoProfileLifesize
, IpsecCryptoProfileLifesizeArgs

Gb int
specify lifesize in gigabytes(GB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
Kb int
specify lifesize in kilobytes(KB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
Mb int
specify lifesize in megabytes(MB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
Tb int
specify lifesize in terabytes(TB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
Gb int
specify lifesize in gigabytes(GB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
Kb int
specify lifesize in kilobytes(KB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
Mb int
specify lifesize in megabytes(MB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
Tb int
specify lifesize in terabytes(TB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
gb Integer
specify lifesize in gigabytes(GB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
kb Integer
specify lifesize in kilobytes(KB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
mb Integer
specify lifesize in megabytes(MB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
tb Integer
specify lifesize in terabytes(TB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
gb number
specify lifesize in gigabytes(GB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
kb number
specify lifesize in kilobytes(KB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
mb number
specify lifesize in megabytes(MB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
tb number
specify lifesize in terabytes(TB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
gb int
specify lifesize in gigabytes(GB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
kb int
specify lifesize in kilobytes(KB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
mb int
specify lifesize in megabytes(MB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
tb int
specify lifesize in terabytes(TB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
gb Number
specify lifesize in gigabytes(GB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
kb Number
specify lifesize in kilobytes(KB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
mb Number
specify lifesize in megabytes(MB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb
tb Number
specify lifesize in terabytes(TB). Value must be between 1 and 65535. Ensure that only one of the following is specified: gb, kb, mb, tb

IpsecCryptoProfileLifetime
, IpsecCryptoProfileLifetimeArgs

Days int
specify lifetime in days. Value must be between 1 and 365. Ensure that only one of the following is specified: days, hours, minutes, seconds
Hours int
specify lifetime in hours. Value must be between 1 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
Minutes int
specify lifetime in minutes. Value must be between 3 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
Seconds int
specify lifetime in seconds. Value must be between 180 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
Days int
specify lifetime in days. Value must be between 1 and 365. Ensure that only one of the following is specified: days, hours, minutes, seconds
Hours int
specify lifetime in hours. Value must be between 1 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
Minutes int
specify lifetime in minutes. Value must be between 3 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
Seconds int
specify lifetime in seconds. Value must be between 180 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
days Integer
specify lifetime in days. Value must be between 1 and 365. Ensure that only one of the following is specified: days, hours, minutes, seconds
hours Integer
specify lifetime in hours. Value must be between 1 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
minutes Integer
specify lifetime in minutes. Value must be between 3 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
seconds Integer
specify lifetime in seconds. Value must be between 180 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
days number
specify lifetime in days. Value must be between 1 and 365. Ensure that only one of the following is specified: days, hours, minutes, seconds
hours number
specify lifetime in hours. Value must be between 1 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
minutes number
specify lifetime in minutes. Value must be between 3 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
seconds number
specify lifetime in seconds. Value must be between 180 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
days int
specify lifetime in days. Value must be between 1 and 365. Ensure that only one of the following is specified: days, hours, minutes, seconds
hours int
specify lifetime in hours. Value must be between 1 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
minutes int
specify lifetime in minutes. Value must be between 3 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
seconds int
specify lifetime in seconds. Value must be between 180 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
days Number
specify lifetime in days. Value must be between 1 and 365. Ensure that only one of the following is specified: days, hours, minutes, seconds
hours Number
specify lifetime in hours. Value must be between 1 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
minutes Number
specify lifetime in minutes. Value must be between 3 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds
seconds Number
specify lifetime in seconds. Value must be between 180 and 65535. Ensure that only one of the following is specified: days, hours, minutes, seconds

Package Details

Repository
scm pulumi/pulumi-scm
License
Apache-2.0
Notes
This Pulumi package is based on the scm Terraform Provider.