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", {});
import pulumi
import pulumi_scm as scm
example = scm.IpsecCryptoProfile("example")
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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var example = new Scm.IpsecCryptoProfile("example");
});
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");
}
}
resources:
example:
type: scm:IpsecCryptoProfile
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 string
- The unique name of the resource.
- args IpsecCryptoProfileArgs
- 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 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 string
- The unique name of the resource.
- args IpsecCryptoProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IpsecCryptoProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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
Ipsec
Crypto Profile Lifetime - The Lifetime param.
- Ah
Ipsec
Crypto Profile Ah - The Ah param. Ensure that only one of the following is specified:
ah
,esp
- Device string
- The Device param.
- Dh
Group 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
Ipsec
Crypto Profile Esp - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- Folder string
- The Folder param.
- Lifesize
Ipsec
Crypto Profile Lifesize - 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
Ipsec
Crypto Profile Lifetime Args - The Lifetime param.
- Ah
Ipsec
Crypto Profile Ah Args - The Ah param. Ensure that only one of the following is specified:
ah
,esp
- Device string
- The Device param.
- Dh
Group 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
Ipsec
Crypto Profile Esp Args - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- Folder string
- The Folder param.
- Lifesize
Ipsec
Crypto Profile Lifesize Args - 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
Ipsec
Crypto Profile Lifetime - The Lifetime param.
- ah
Ipsec
Crypto Profile Ah - The Ah param. Ensure that only one of the following is specified:
ah
,esp
- device String
- The Device param.
- dh
Group 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
Ipsec
Crypto Profile Esp - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- folder String
- The Folder param.
- lifesize
Ipsec
Crypto Profile Lifesize - 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
Ipsec
Crypto Profile Lifetime - The Lifetime param.
- ah
Ipsec
Crypto Profile Ah - The Ah param. Ensure that only one of the following is specified:
ah
,esp
- device string
- The Device param.
- dh
Group 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
Ipsec
Crypto Profile Esp - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- folder string
- The Folder param.
- lifesize
Ipsec
Crypto Profile Lifesize - 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
Ipsec
Crypto Profile Lifetime Args - The Lifetime param.
- ah
Ipsec
Crypto Profile Ah Args - 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
Ipsec
Crypto Profile Esp Args - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- folder str
- The Folder param.
- lifesize
Ipsec
Crypto Profile Lifesize Args - 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 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.
- dh
Group 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:
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)
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.
- Ah
Ipsec
Crypto Profile Ah - The Ah param. Ensure that only one of the following is specified:
ah
,esp
- Device string
- The Device param.
- Dh
Group 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
Ipsec
Crypto Profile Esp - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- Folder string
- The Folder param.
- Lifesize
Ipsec
Crypto Profile Lifesize - The Lifesize param.
- Lifetime
Ipsec
Crypto Profile Lifetime - 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
Ipsec
Crypto Profile Ah Args - The Ah param. Ensure that only one of the following is specified:
ah
,esp
- Device string
- The Device param.
- Dh
Group 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
Ipsec
Crypto Profile Esp Args - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- Folder string
- The Folder param.
- Lifesize
Ipsec
Crypto Profile Lifesize Args - The Lifesize param.
- Lifetime
Ipsec
Crypto Profile Lifetime Args - 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
Ipsec
Crypto Profile Ah - The Ah param. Ensure that only one of the following is specified:
ah
,esp
- device String
- The Device param.
- dh
Group 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
Ipsec
Crypto Profile Esp - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- folder String
- The Folder param.
- lifesize
Ipsec
Crypto Profile Lifesize - The Lifesize param.
- lifetime
Ipsec
Crypto Profile Lifetime - 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
Ipsec
Crypto Profile Ah - The Ah param. Ensure that only one of the following is specified:
ah
,esp
- device string
- The Device param.
- dh
Group 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
Ipsec
Crypto Profile Esp - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- folder string
- The Folder param.
- lifesize
Ipsec
Crypto Profile Lifesize - The Lifesize param.
- lifetime
Ipsec
Crypto Profile Lifetime - 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
Ipsec
Crypto Profile Ah Args - 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
Ipsec
Crypto Profile Esp Args - The Esp param. Ensure that only one of the following is specified:
ah
,esp
- folder str
- The Folder param.
- lifesize
Ipsec
Crypto Profile Lifesize Args - The Lifesize param.
- lifetime
Ipsec
Crypto Profile Lifetime Args - 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.
- dh
Group 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 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 []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 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 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 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 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 List<string>
- Authentication algorithm.
- Encryptions 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 []string
- Authentication algorithm.
- Encryptions []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 List<String>
- Authentication algorithm.
- encryptions 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 string[]
- Authentication algorithm.
- encryptions 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 Sequence[str]
- Authentication algorithm.
- encryptions 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 List<String>
- Authentication algorithm.
- encryptions 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.