1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementPasscodeProfile
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementPasscodeProfile

Explore with Pulumi AI

checkpoint logo
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

    This resource allows you to execute Check Point Passcode Profile.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementPasscodeProfile("example", {
        allowSimplePasscode: false,
        enableInactivityTimeLock: true,
        enablePasscodeFailedAttempts: false,
        forcePasscodeExpiration: false,
        maxInactivityTimeLock: 10,
        minPasscodeComplexCharacters: 3,
        minPasscodeLength: 10,
        passcodeExpirationPeriod: 190,
        requireAlphanumericPasscode: true,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementPasscodeProfile("example",
        allow_simple_passcode=False,
        enable_inactivity_time_lock=True,
        enable_passcode_failed_attempts=False,
        force_passcode_expiration=False,
        max_inactivity_time_lock=10,
        min_passcode_complex_characters=3,
        min_passcode_length=10,
        passcode_expiration_period=190,
        require_alphanumeric_passcode=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewManagementPasscodeProfile(ctx, "example", &checkpoint.ManagementPasscodeProfileArgs{
    			AllowSimplePasscode:          pulumi.Bool(false),
    			EnableInactivityTimeLock:     pulumi.Bool(true),
    			EnablePasscodeFailedAttempts: pulumi.Bool(false),
    			ForcePasscodeExpiration:      pulumi.Bool(false),
    			MaxInactivityTimeLock:        pulumi.Float64(10),
    			MinPasscodeComplexCharacters: pulumi.Float64(3),
    			MinPasscodeLength:            pulumi.Float64(10),
    			PasscodeExpirationPeriod:     pulumi.Float64(190),
    			RequireAlphanumericPasscode:  pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Checkpoint.ManagementPasscodeProfile("example", new()
        {
            AllowSimplePasscode = false,
            EnableInactivityTimeLock = true,
            EnablePasscodeFailedAttempts = false,
            ForcePasscodeExpiration = false,
            MaxInactivityTimeLock = 10,
            MinPasscodeComplexCharacters = 3,
            MinPasscodeLength = 10,
            PasscodeExpirationPeriod = 190,
            RequireAlphanumericPasscode = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementPasscodeProfile;
    import com.pulumi.checkpoint.ManagementPasscodeProfileArgs;
    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 ManagementPasscodeProfile("example", ManagementPasscodeProfileArgs.builder()
                .allowSimplePasscode(false)
                .enableInactivityTimeLock(true)
                .enablePasscodeFailedAttempts(false)
                .forcePasscodeExpiration(false)
                .maxInactivityTimeLock(10)
                .minPasscodeComplexCharacters(3)
                .minPasscodeLength(10)
                .passcodeExpirationPeriod(190)
                .requireAlphanumericPasscode(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementPasscodeProfile
        properties:
          allowSimplePasscode: false
          enableInactivityTimeLock: true
          enablePasscodeFailedAttempts: false
          forcePasscodeExpiration: false
          maxInactivityTimeLock: 10
          minPasscodeComplexCharacters: 3
          minPasscodeLength: 10
          passcodeExpirationPeriod: 190
          requireAlphanumericPasscode: true
    

    Create ManagementPasscodeProfile Resource

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

    Constructor syntax

    new ManagementPasscodeProfile(name: string, args?: ManagementPasscodeProfileArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementPasscodeProfile(resource_name: str,
                                  args: Optional[ManagementPasscodeProfileArgs] = None,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementPasscodeProfile(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  allow_simple_passcode: Optional[bool] = None,
                                  color: Optional[str] = None,
                                  comments: Optional[str] = None,
                                  enable_inactivity_time_lock: Optional[bool] = None,
                                  enable_passcode_failed_attempts: Optional[bool] = None,
                                  enable_passcode_history: Optional[bool] = None,
                                  force_passcode_expiration: Optional[bool] = None,
                                  ignore_errors: Optional[bool] = None,
                                  ignore_warnings: Optional[bool] = None,
                                  management_passcode_profile_id: Optional[str] = None,
                                  max_inactivity_time_lock: Optional[float] = None,
                                  max_passcode_failed_attempts: Optional[float] = None,
                                  min_passcode_complex_characters: Optional[float] = None,
                                  min_passcode_length: Optional[float] = None,
                                  name: Optional[str] = None,
                                  passcode_expiration_period: Optional[float] = None,
                                  passcode_history: Optional[float] = None,
                                  require_alphanumeric_passcode: Optional[bool] = None,
                                  tags: Optional[Sequence[str]] = None)
    func NewManagementPasscodeProfile(ctx *Context, name string, args *ManagementPasscodeProfileArgs, opts ...ResourceOption) (*ManagementPasscodeProfile, error)
    public ManagementPasscodeProfile(string name, ManagementPasscodeProfileArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementPasscodeProfile(String name, ManagementPasscodeProfileArgs args)
    public ManagementPasscodeProfile(String name, ManagementPasscodeProfileArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementPasscodeProfile
    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 ManagementPasscodeProfileArgs
    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 ManagementPasscodeProfileArgs
    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 ManagementPasscodeProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementPasscodeProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementPasscodeProfileArgs
    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 managementPasscodeProfileResource = new Checkpoint.ManagementPasscodeProfile("managementPasscodeProfileResource", new()
    {
        AllowSimplePasscode = false,
        Color = "string",
        Comments = "string",
        EnableInactivityTimeLock = false,
        EnablePasscodeFailedAttempts = false,
        EnablePasscodeHistory = false,
        ForcePasscodeExpiration = false,
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementPasscodeProfileId = "string",
        MaxInactivityTimeLock = 0,
        MaxPasscodeFailedAttempts = 0,
        MinPasscodeComplexCharacters = 0,
        MinPasscodeLength = 0,
        Name = "string",
        PasscodeExpirationPeriod = 0,
        PasscodeHistory = 0,
        RequireAlphanumericPasscode = false,
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := checkpoint.NewManagementPasscodeProfile(ctx, "managementPasscodeProfileResource", &checkpoint.ManagementPasscodeProfileArgs{
    	AllowSimplePasscode:          pulumi.Bool(false),
    	Color:                        pulumi.String("string"),
    	Comments:                     pulumi.String("string"),
    	EnableInactivityTimeLock:     pulumi.Bool(false),
    	EnablePasscodeFailedAttempts: pulumi.Bool(false),
    	EnablePasscodeHistory:        pulumi.Bool(false),
    	ForcePasscodeExpiration:      pulumi.Bool(false),
    	IgnoreErrors:                 pulumi.Bool(false),
    	IgnoreWarnings:               pulumi.Bool(false),
    	ManagementPasscodeProfileId:  pulumi.String("string"),
    	MaxInactivityTimeLock:        pulumi.Float64(0),
    	MaxPasscodeFailedAttempts:    pulumi.Float64(0),
    	MinPasscodeComplexCharacters: pulumi.Float64(0),
    	MinPasscodeLength:            pulumi.Float64(0),
    	Name:                         pulumi.String("string"),
    	PasscodeExpirationPeriod:     pulumi.Float64(0),
    	PasscodeHistory:              pulumi.Float64(0),
    	RequireAlphanumericPasscode:  pulumi.Bool(false),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var managementPasscodeProfileResource = new ManagementPasscodeProfile("managementPasscodeProfileResource", ManagementPasscodeProfileArgs.builder()
        .allowSimplePasscode(false)
        .color("string")
        .comments("string")
        .enableInactivityTimeLock(false)
        .enablePasscodeFailedAttempts(false)
        .enablePasscodeHistory(false)
        .forcePasscodeExpiration(false)
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementPasscodeProfileId("string")
        .maxInactivityTimeLock(0)
        .maxPasscodeFailedAttempts(0)
        .minPasscodeComplexCharacters(0)
        .minPasscodeLength(0)
        .name("string")
        .passcodeExpirationPeriod(0)
        .passcodeHistory(0)
        .requireAlphanumericPasscode(false)
        .tags("string")
        .build());
    
    management_passcode_profile_resource = checkpoint.ManagementPasscodeProfile("managementPasscodeProfileResource",
        allow_simple_passcode=False,
        color="string",
        comments="string",
        enable_inactivity_time_lock=False,
        enable_passcode_failed_attempts=False,
        enable_passcode_history=False,
        force_passcode_expiration=False,
        ignore_errors=False,
        ignore_warnings=False,
        management_passcode_profile_id="string",
        max_inactivity_time_lock=0,
        max_passcode_failed_attempts=0,
        min_passcode_complex_characters=0,
        min_passcode_length=0,
        name="string",
        passcode_expiration_period=0,
        passcode_history=0,
        require_alphanumeric_passcode=False,
        tags=["string"])
    
    const managementPasscodeProfileResource = new checkpoint.ManagementPasscodeProfile("managementPasscodeProfileResource", {
        allowSimplePasscode: false,
        color: "string",
        comments: "string",
        enableInactivityTimeLock: false,
        enablePasscodeFailedAttempts: false,
        enablePasscodeHistory: false,
        forcePasscodeExpiration: false,
        ignoreErrors: false,
        ignoreWarnings: false,
        managementPasscodeProfileId: "string",
        maxInactivityTimeLock: 0,
        maxPasscodeFailedAttempts: 0,
        minPasscodeComplexCharacters: 0,
        minPasscodeLength: 0,
        name: "string",
        passcodeExpirationPeriod: 0,
        passcodeHistory: 0,
        requireAlphanumericPasscode: false,
        tags: ["string"],
    });
    
    type: checkpoint:ManagementPasscodeProfile
    properties:
        allowSimplePasscode: false
        color: string
        comments: string
        enableInactivityTimeLock: false
        enablePasscodeFailedAttempts: false
        enablePasscodeHistory: false
        forcePasscodeExpiration: false
        ignoreErrors: false
        ignoreWarnings: false
        managementPasscodeProfileId: string
        maxInactivityTimeLock: 0
        maxPasscodeFailedAttempts: 0
        minPasscodeComplexCharacters: 0
        minPasscodeLength: 0
        name: string
        passcodeExpirationPeriod: 0
        passcodeHistory: 0
        requireAlphanumericPasscode: false
        tags:
            - string
    

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

    AllowSimplePasscode bool
    The passcode length is 4 and only numeric values allowed.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    EnableInactivityTimeLock bool
    Lock the device if app is inactive.
    EnablePasscodeFailedAttempts bool
    Exit after few failures in passcode verification.
    EnablePasscodeHistory bool
    Check passcode history for reparations.
    ForcePasscodeExpiration bool
    Enable/disable expiration date to the passcode.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementPasscodeProfileId string
    MaxInactivityTimeLock double
    Time without user input before passcode must be re-entered (in minutes).
    MaxPasscodeFailedAttempts double
    Number of failed attempts allowed.
    MinPasscodeComplexCharacters double
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    MinPasscodeLength double
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    Name string
    Object name.
    PasscodeExpirationPeriod double
    The period in days after which the passcode will expire.
    PasscodeHistory double
    Number of passcodes that will be kept in history.
    RequireAlphanumericPasscode bool
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    AllowSimplePasscode bool
    The passcode length is 4 and only numeric values allowed.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    EnableInactivityTimeLock bool
    Lock the device if app is inactive.
    EnablePasscodeFailedAttempts bool
    Exit after few failures in passcode verification.
    EnablePasscodeHistory bool
    Check passcode history for reparations.
    ForcePasscodeExpiration bool
    Enable/disable expiration date to the passcode.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementPasscodeProfileId string
    MaxInactivityTimeLock float64
    Time without user input before passcode must be re-entered (in minutes).
    MaxPasscodeFailedAttempts float64
    Number of failed attempts allowed.
    MinPasscodeComplexCharacters float64
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    MinPasscodeLength float64
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    Name string
    Object name.
    PasscodeExpirationPeriod float64
    The period in days after which the passcode will expire.
    PasscodeHistory float64
    Number of passcodes that will be kept in history.
    RequireAlphanumericPasscode bool
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    allowSimplePasscode Boolean
    The passcode length is 4 and only numeric values allowed.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    enableInactivityTimeLock Boolean
    Lock the device if app is inactive.
    enablePasscodeFailedAttempts Boolean
    Exit after few failures in passcode verification.
    enablePasscodeHistory Boolean
    Check passcode history for reparations.
    forcePasscodeExpiration Boolean
    Enable/disable expiration date to the passcode.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementPasscodeProfileId String
    maxInactivityTimeLock Double
    Time without user input before passcode must be re-entered (in minutes).
    maxPasscodeFailedAttempts Double
    Number of failed attempts allowed.
    minPasscodeComplexCharacters Double
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    minPasscodeLength Double
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    name String
    Object name.
    passcodeExpirationPeriod Double
    The period in days after which the passcode will expire.
    passcodeHistory Double
    Number of passcodes that will be kept in history.
    requireAlphanumericPasscode Boolean
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    allowSimplePasscode boolean
    The passcode length is 4 and only numeric values allowed.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    enableInactivityTimeLock boolean
    Lock the device if app is inactive.
    enablePasscodeFailedAttempts boolean
    Exit after few failures in passcode verification.
    enablePasscodeHistory boolean
    Check passcode history for reparations.
    forcePasscodeExpiration boolean
    Enable/disable expiration date to the passcode.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementPasscodeProfileId string
    maxInactivityTimeLock number
    Time without user input before passcode must be re-entered (in minutes).
    maxPasscodeFailedAttempts number
    Number of failed attempts allowed.
    minPasscodeComplexCharacters number
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    minPasscodeLength number
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    name string
    Object name.
    passcodeExpirationPeriod number
    The period in days after which the passcode will expire.
    passcodeHistory number
    Number of passcodes that will be kept in history.
    requireAlphanumericPasscode boolean
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    allow_simple_passcode bool
    The passcode length is 4 and only numeric values allowed.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    enable_inactivity_time_lock bool
    Lock the device if app is inactive.
    enable_passcode_failed_attempts bool
    Exit after few failures in passcode verification.
    enable_passcode_history bool
    Check passcode history for reparations.
    force_passcode_expiration bool
    Enable/disable expiration date to the passcode.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_passcode_profile_id str
    max_inactivity_time_lock float
    Time without user input before passcode must be re-entered (in minutes).
    max_passcode_failed_attempts float
    Number of failed attempts allowed.
    min_passcode_complex_characters float
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    min_passcode_length float
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    name str
    Object name.
    passcode_expiration_period float
    The period in days after which the passcode will expire.
    passcode_history float
    Number of passcodes that will be kept in history.
    require_alphanumeric_passcode bool
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    allowSimplePasscode Boolean
    The passcode length is 4 and only numeric values allowed.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    enableInactivityTimeLock Boolean
    Lock the device if app is inactive.
    enablePasscodeFailedAttempts Boolean
    Exit after few failures in passcode verification.
    enablePasscodeHistory Boolean
    Check passcode history for reparations.
    forcePasscodeExpiration Boolean
    Enable/disable expiration date to the passcode.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementPasscodeProfileId String
    maxInactivityTimeLock Number
    Time without user input before passcode must be re-entered (in minutes).
    maxPasscodeFailedAttempts Number
    Number of failed attempts allowed.
    minPasscodeComplexCharacters Number
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    minPasscodeLength Number
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    name String
    Object name.
    passcodeExpirationPeriod Number
    The period in days after which the passcode will expire.
    passcodeHistory Number
    Number of passcodes that will be kept in history.
    requireAlphanumericPasscode Boolean
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.

    Outputs

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

    Get an existing ManagementPasscodeProfile 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?: ManagementPasscodeProfileState, opts?: CustomResourceOptions): ManagementPasscodeProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_simple_passcode: Optional[bool] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            enable_inactivity_time_lock: Optional[bool] = None,
            enable_passcode_failed_attempts: Optional[bool] = None,
            enable_passcode_history: Optional[bool] = None,
            force_passcode_expiration: Optional[bool] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_passcode_profile_id: Optional[str] = None,
            max_inactivity_time_lock: Optional[float] = None,
            max_passcode_failed_attempts: Optional[float] = None,
            min_passcode_complex_characters: Optional[float] = None,
            min_passcode_length: Optional[float] = None,
            name: Optional[str] = None,
            passcode_expiration_period: Optional[float] = None,
            passcode_history: Optional[float] = None,
            require_alphanumeric_passcode: Optional[bool] = None,
            tags: Optional[Sequence[str]] = None) -> ManagementPasscodeProfile
    func GetManagementPasscodeProfile(ctx *Context, name string, id IDInput, state *ManagementPasscodeProfileState, opts ...ResourceOption) (*ManagementPasscodeProfile, error)
    public static ManagementPasscodeProfile Get(string name, Input<string> id, ManagementPasscodeProfileState? state, CustomResourceOptions? opts = null)
    public static ManagementPasscodeProfile get(String name, Output<String> id, ManagementPasscodeProfileState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementPasscodeProfile    get:      id: ${id}
    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:
    AllowSimplePasscode bool
    The passcode length is 4 and only numeric values allowed.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    EnableInactivityTimeLock bool
    Lock the device if app is inactive.
    EnablePasscodeFailedAttempts bool
    Exit after few failures in passcode verification.
    EnablePasscodeHistory bool
    Check passcode history for reparations.
    ForcePasscodeExpiration bool
    Enable/disable expiration date to the passcode.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementPasscodeProfileId string
    MaxInactivityTimeLock double
    Time without user input before passcode must be re-entered (in minutes).
    MaxPasscodeFailedAttempts double
    Number of failed attempts allowed.
    MinPasscodeComplexCharacters double
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    MinPasscodeLength double
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    Name string
    Object name.
    PasscodeExpirationPeriod double
    The period in days after which the passcode will expire.
    PasscodeHistory double
    Number of passcodes that will be kept in history.
    RequireAlphanumericPasscode bool
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    AllowSimplePasscode bool
    The passcode length is 4 and only numeric values allowed.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    EnableInactivityTimeLock bool
    Lock the device if app is inactive.
    EnablePasscodeFailedAttempts bool
    Exit after few failures in passcode verification.
    EnablePasscodeHistory bool
    Check passcode history for reparations.
    ForcePasscodeExpiration bool
    Enable/disable expiration date to the passcode.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementPasscodeProfileId string
    MaxInactivityTimeLock float64
    Time without user input before passcode must be re-entered (in minutes).
    MaxPasscodeFailedAttempts float64
    Number of failed attempts allowed.
    MinPasscodeComplexCharacters float64
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    MinPasscodeLength float64
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    Name string
    Object name.
    PasscodeExpirationPeriod float64
    The period in days after which the passcode will expire.
    PasscodeHistory float64
    Number of passcodes that will be kept in history.
    RequireAlphanumericPasscode bool
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    allowSimplePasscode Boolean
    The passcode length is 4 and only numeric values allowed.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    enableInactivityTimeLock Boolean
    Lock the device if app is inactive.
    enablePasscodeFailedAttempts Boolean
    Exit after few failures in passcode verification.
    enablePasscodeHistory Boolean
    Check passcode history for reparations.
    forcePasscodeExpiration Boolean
    Enable/disable expiration date to the passcode.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementPasscodeProfileId String
    maxInactivityTimeLock Double
    Time without user input before passcode must be re-entered (in minutes).
    maxPasscodeFailedAttempts Double
    Number of failed attempts allowed.
    minPasscodeComplexCharacters Double
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    minPasscodeLength Double
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    name String
    Object name.
    passcodeExpirationPeriod Double
    The period in days after which the passcode will expire.
    passcodeHistory Double
    Number of passcodes that will be kept in history.
    requireAlphanumericPasscode Boolean
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    allowSimplePasscode boolean
    The passcode length is 4 and only numeric values allowed.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    enableInactivityTimeLock boolean
    Lock the device if app is inactive.
    enablePasscodeFailedAttempts boolean
    Exit after few failures in passcode verification.
    enablePasscodeHistory boolean
    Check passcode history for reparations.
    forcePasscodeExpiration boolean
    Enable/disable expiration date to the passcode.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementPasscodeProfileId string
    maxInactivityTimeLock number
    Time without user input before passcode must be re-entered (in minutes).
    maxPasscodeFailedAttempts number
    Number of failed attempts allowed.
    minPasscodeComplexCharacters number
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    minPasscodeLength number
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    name string
    Object name.
    passcodeExpirationPeriod number
    The period in days after which the passcode will expire.
    passcodeHistory number
    Number of passcodes that will be kept in history.
    requireAlphanumericPasscode boolean
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    allow_simple_passcode bool
    The passcode length is 4 and only numeric values allowed.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    enable_inactivity_time_lock bool
    Lock the device if app is inactive.
    enable_passcode_failed_attempts bool
    Exit after few failures in passcode verification.
    enable_passcode_history bool
    Check passcode history for reparations.
    force_passcode_expiration bool
    Enable/disable expiration date to the passcode.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_passcode_profile_id str
    max_inactivity_time_lock float
    Time without user input before passcode must be re-entered (in minutes).
    max_passcode_failed_attempts float
    Number of failed attempts allowed.
    min_passcode_complex_characters float
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    min_passcode_length float
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    name str
    Object name.
    passcode_expiration_period float
    The period in days after which the passcode will expire.
    passcode_history float
    Number of passcodes that will be kept in history.
    require_alphanumeric_passcode bool
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    allowSimplePasscode Boolean
    The passcode length is 4 and only numeric values allowed.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    enableInactivityTimeLock Boolean
    Lock the device if app is inactive.
    enablePasscodeFailedAttempts Boolean
    Exit after few failures in passcode verification.
    enablePasscodeHistory Boolean
    Check passcode history for reparations.
    forcePasscodeExpiration Boolean
    Enable/disable expiration date to the passcode.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementPasscodeProfileId String
    maxInactivityTimeLock Number
    Time without user input before passcode must be re-entered (in minutes).
    maxPasscodeFailedAttempts Number
    Number of failed attempts allowed.
    minPasscodeComplexCharacters Number
    Minimum number of complex characters (if "require-alphanumeric-passcode" is enabled). The number of the complex characters cannot be greater than number of the passcode length.
    minPasscodeLength Number
    Minimum passcode length - relevant if "allow-simple-passcode" is disable.
    name String
    Object name.
    passcodeExpirationPeriod Number
    The period in days after which the passcode will expire.
    passcodeHistory Number
    Number of passcodes that will be kept in history.
    requireAlphanumericPasscode Boolean
    Require alphanumeric characters in the passcode - relevant if "allow-simple-passcode" is disable.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw