1. Packages
  2. Strata Cloud Manager (Palo Alto SCM)
  3. API Docs
  4. IkeCryptoProfile
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

scm.IkeCryptoProfile

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

    Retrieves a config item.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const example = new scm.IkeCryptoProfile("example", {});
    
    import pulumi
    import pulumi_scm as scm
    
    example = scm.IkeCryptoProfile("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.NewIkeCryptoProfile(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.IkeCryptoProfile("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.IkeCryptoProfile;
    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 IkeCryptoProfile("example");
    
        }
    }
    
    resources:
      example:
        type: scm:IkeCryptoProfile
    

    Create IkeCryptoProfile Resource

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

    Constructor syntax

    new IkeCryptoProfile(name: string, args: IkeCryptoProfileArgs, opts?: CustomResourceOptions);
    @overload
    def IkeCryptoProfile(resource_name: str,
                         args: IkeCryptoProfileArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def IkeCryptoProfile(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         dh_groups: Optional[Sequence[str]] = None,
                         encryptions: Optional[Sequence[str]] = None,
                         hashes: Optional[Sequence[str]] = None,
                         authentication_multiple: Optional[int] = None,
                         device: Optional[str] = None,
                         folder: Optional[str] = None,
                         lifetime: Optional[IkeCryptoProfileLifetimeArgs] = None,
                         name: Optional[str] = None,
                         snippet: Optional[str] = None)
    func NewIkeCryptoProfile(ctx *Context, name string, args IkeCryptoProfileArgs, opts ...ResourceOption) (*IkeCryptoProfile, error)
    public IkeCryptoProfile(string name, IkeCryptoProfileArgs args, CustomResourceOptions? opts = null)
    public IkeCryptoProfile(String name, IkeCryptoProfileArgs args)
    public IkeCryptoProfile(String name, IkeCryptoProfileArgs args, CustomResourceOptions options)
    
    type: scm:IkeCryptoProfile
    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 IkeCryptoProfileArgs
    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 IkeCryptoProfileArgs
    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 IkeCryptoProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IkeCryptoProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IkeCryptoProfileArgs
    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 ikeCryptoProfileResource = new Scm.IkeCryptoProfile("ikeCryptoProfileResource", new()
    {
        DhGroups = new[]
        {
            "string",
        },
        Encryptions = new[]
        {
            "string",
        },
        Hashes = new[]
        {
            "string",
        },
        AuthenticationMultiple = 0,
        Device = "string",
        Folder = "string",
        Lifetime = new Scm.Inputs.IkeCryptoProfileLifetimeArgs
        {
            Days = 0,
            Hours = 0,
            Minutes = 0,
            Seconds = 0,
        },
        Name = "string",
        Snippet = "string",
    });
    
    example, err := scm.NewIkeCryptoProfile(ctx, "ikeCryptoProfileResource", &scm.IkeCryptoProfileArgs{
    	DhGroups: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Encryptions: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Hashes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AuthenticationMultiple: pulumi.Int(0),
    	Device:                 pulumi.String("string"),
    	Folder:                 pulumi.String("string"),
    	Lifetime: &scm.IkeCryptoProfileLifetimeArgs{
    		Days:    pulumi.Int(0),
    		Hours:   pulumi.Int(0),
    		Minutes: pulumi.Int(0),
    		Seconds: pulumi.Int(0),
    	},
    	Name:    pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    })
    
    var ikeCryptoProfileResource = new IkeCryptoProfile("ikeCryptoProfileResource", IkeCryptoProfileArgs.builder()
        .dhGroups("string")
        .encryptions("string")
        .hashes("string")
        .authenticationMultiple(0)
        .device("string")
        .folder("string")
        .lifetime(IkeCryptoProfileLifetimeArgs.builder()
            .days(0)
            .hours(0)
            .minutes(0)
            .seconds(0)
            .build())
        .name("string")
        .snippet("string")
        .build());
    
    ike_crypto_profile_resource = scm.IkeCryptoProfile("ikeCryptoProfileResource",
        dh_groups=["string"],
        encryptions=["string"],
        hashes=["string"],
        authentication_multiple=0,
        device="string",
        folder="string",
        lifetime=scm.IkeCryptoProfileLifetimeArgs(
            days=0,
            hours=0,
            minutes=0,
            seconds=0,
        ),
        name="string",
        snippet="string")
    
    const ikeCryptoProfileResource = new scm.IkeCryptoProfile("ikeCryptoProfileResource", {
        dhGroups: ["string"],
        encryptions: ["string"],
        hashes: ["string"],
        authenticationMultiple: 0,
        device: "string",
        folder: "string",
        lifetime: {
            days: 0,
            hours: 0,
            minutes: 0,
            seconds: 0,
        },
        name: "string",
        snippet: "string",
    });
    
    type: scm:IkeCryptoProfile
    properties:
        authenticationMultiple: 0
        device: string
        dhGroups:
            - string
        encryptions:
            - string
        folder: string
        hashes:
            - string
        lifetime:
            days: 0
            hours: 0
            minutes: 0
            seconds: 0
        name: string
        snippet: string
    

    IkeCryptoProfile 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 IkeCryptoProfile resource accepts the following input properties:

    DhGroups List<string>
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    Hashes List<string>
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    AuthenticationMultiple int
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Lifetime IkeCryptoProfileLifetime
    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.
    DhGroups []string
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    Hashes []string
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    AuthenticationMultiple int
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Lifetime IkeCryptoProfileLifetimeArgs
    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.
    dhGroups List<String>
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    hashes List<String>
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    authenticationMultiple Integer
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    device String
    The Device param.
    folder String
    The Folder param.
    lifetime IkeCryptoProfileLifetime
    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.
    dhGroups string[]
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    hashes string[]
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    authenticationMultiple number
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    device string
    The Device param.
    folder string
    The Folder param.
    lifetime IkeCryptoProfileLifetime
    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.
    dh_groups Sequence[str]
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    hashes Sequence[str]
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    authentication_multiple int
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    device str
    The Device param.
    folder str
    The Folder param.
    lifetime IkeCryptoProfileLifetimeArgs
    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.
    dhGroups List<String>
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    hashes List<String>
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    authenticationMultiple Number
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    device String
    The Device param.
    folder String
    The Folder 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.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IkeCryptoProfile 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 IkeCryptoProfile Resource

    Get an existing IkeCryptoProfile 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?: IkeCryptoProfileState, opts?: CustomResourceOptions): IkeCryptoProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authentication_multiple: Optional[int] = None,
            device: Optional[str] = None,
            dh_groups: Optional[Sequence[str]] = None,
            encryptions: Optional[Sequence[str]] = None,
            folder: Optional[str] = None,
            hashes: Optional[Sequence[str]] = None,
            lifetime: Optional[IkeCryptoProfileLifetimeArgs] = None,
            name: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> IkeCryptoProfile
    func GetIkeCryptoProfile(ctx *Context, name string, id IDInput, state *IkeCryptoProfileState, opts ...ResourceOption) (*IkeCryptoProfile, error)
    public static IkeCryptoProfile Get(string name, Input<string> id, IkeCryptoProfileState? state, CustomResourceOptions? opts = null)
    public static IkeCryptoProfile get(String name, Output<String> id, IkeCryptoProfileState 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:
    AuthenticationMultiple int
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    Device string
    The Device param.
    DhGroups List<string>
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    Folder string
    The Folder param.
    Hashes List<string>
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    Lifetime IkeCryptoProfileLifetime
    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
    AuthenticationMultiple int
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    Device string
    The Device param.
    DhGroups []string
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    Folder string
    The Folder param.
    Hashes []string
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    Lifetime IkeCryptoProfileLifetimeArgs
    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
    authenticationMultiple Integer
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    device String
    The Device param.
    dhGroups List<String>
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    folder String
    The Folder param.
    hashes List<String>
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    lifetime IkeCryptoProfileLifetime
    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
    authenticationMultiple number
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    device string
    The Device param.
    dhGroups string[]
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    folder string
    The Folder param.
    hashes string[]
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    lifetime IkeCryptoProfileLifetime
    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
    authentication_multiple int
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    device str
    The Device param.
    dh_groups Sequence[str]
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    folder str
    The Folder param.
    hashes Sequence[str]
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    lifetime IkeCryptoProfileLifetimeArgs
    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
    authenticationMultiple Number
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled. Value must be less than or equal to 50. Default: 0.
    device String
    The Device param.
    dhGroups List<String>
    The DhGroups param. Individual elements in this list are subject to additional validation. String must be one of these: "group1", "group2", "group5", "group14", "group19", "group20".
    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".
    folder String
    The Folder param.
    hashes List<String>
    The Hashes param. Individual elements in this list are subject to additional validation. String must be one of these: "md5", "sha1", "sha256", "sha384", "sha512".
    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

    IkeCryptoProfileLifetime, IkeCryptoProfileLifetimeArgs

    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.
    scm logo
    Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi