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

checkpoint.ManagementCommandSetInternalTrustedCa

Explore with Pulumi AI

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

    Create ManagementCommandSetInternalTrustedCa Resource

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

    Constructor syntax

    new ManagementCommandSetInternalTrustedCa(name: string, args?: ManagementCommandSetInternalTrustedCaArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementCommandSetInternalTrustedCa(resource_name: str,
                                              args: Optional[ManagementCommandSetInternalTrustedCaArgs] = None,
                                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementCommandSetInternalTrustedCa(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              allow_certificates_from_branches: Optional[bool] = None,
                                              branches: Optional[Sequence[str]] = None,
                                              cache_crl: Optional[bool] = None,
                                              color: Optional[str] = None,
                                              comments: Optional[str] = None,
                                              crl_cache_method: Optional[str] = None,
                                              crl_cache_timeout: Optional[float] = None,
                                              domains_to_processes: Optional[Sequence[str]] = None,
                                              ignore_errors: Optional[bool] = None,
                                              ignore_warnings: Optional[bool] = None,
                                              management_command_set_internal_trusted_ca_id: Optional[str] = None,
                                              retrieve_crl_from_http_servers: Optional[bool] = None,
                                              tags: Optional[Sequence[str]] = None)
    func NewManagementCommandSetInternalTrustedCa(ctx *Context, name string, args *ManagementCommandSetInternalTrustedCaArgs, opts ...ResourceOption) (*ManagementCommandSetInternalTrustedCa, error)
    public ManagementCommandSetInternalTrustedCa(string name, ManagementCommandSetInternalTrustedCaArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementCommandSetInternalTrustedCa(String name, ManagementCommandSetInternalTrustedCaArgs args)
    public ManagementCommandSetInternalTrustedCa(String name, ManagementCommandSetInternalTrustedCaArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementCommandSetInternalTrustedCa
    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 ManagementCommandSetInternalTrustedCaArgs
    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 ManagementCommandSetInternalTrustedCaArgs
    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 ManagementCommandSetInternalTrustedCaArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementCommandSetInternalTrustedCaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementCommandSetInternalTrustedCaArgs
    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 managementCommandSetInternalTrustedCaResource = new Checkpoint.ManagementCommandSetInternalTrustedCa("managementCommandSetInternalTrustedCaResource", new()
    {
        AllowCertificatesFromBranches = false,
        Branches = new[]
        {
            "string",
        },
        CacheCrl = false,
        Color = "string",
        Comments = "string",
        CrlCacheMethod = "string",
        CrlCacheTimeout = 0,
        DomainsToProcesses = new[]
        {
            "string",
        },
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementCommandSetInternalTrustedCaId = "string",
        RetrieveCrlFromHttpServers = false,
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := checkpoint.NewManagementCommandSetInternalTrustedCa(ctx, "managementCommandSetInternalTrustedCaResource", &checkpoint.ManagementCommandSetInternalTrustedCaArgs{
    	AllowCertificatesFromBranches: pulumi.Bool(false),
    	Branches: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CacheCrl:        pulumi.Bool(false),
    	Color:           pulumi.String("string"),
    	Comments:        pulumi.String("string"),
    	CrlCacheMethod:  pulumi.String("string"),
    	CrlCacheTimeout: pulumi.Float64(0),
    	DomainsToProcesses: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	IgnoreErrors:                            pulumi.Bool(false),
    	IgnoreWarnings:                          pulumi.Bool(false),
    	ManagementCommandSetInternalTrustedCaId: pulumi.String("string"),
    	RetrieveCrlFromHttpServers:              pulumi.Bool(false),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var managementCommandSetInternalTrustedCaResource = new ManagementCommandSetInternalTrustedCa("managementCommandSetInternalTrustedCaResource", ManagementCommandSetInternalTrustedCaArgs.builder()
        .allowCertificatesFromBranches(false)
        .branches("string")
        .cacheCrl(false)
        .color("string")
        .comments("string")
        .crlCacheMethod("string")
        .crlCacheTimeout(0)
        .domainsToProcesses("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementCommandSetInternalTrustedCaId("string")
        .retrieveCrlFromHttpServers(false)
        .tags("string")
        .build());
    
    management_command_set_internal_trusted_ca_resource = checkpoint.ManagementCommandSetInternalTrustedCa("managementCommandSetInternalTrustedCaResource",
        allow_certificates_from_branches=False,
        branches=["string"],
        cache_crl=False,
        color="string",
        comments="string",
        crl_cache_method="string",
        crl_cache_timeout=0,
        domains_to_processes=["string"],
        ignore_errors=False,
        ignore_warnings=False,
        management_command_set_internal_trusted_ca_id="string",
        retrieve_crl_from_http_servers=False,
        tags=["string"])
    
    const managementCommandSetInternalTrustedCaResource = new checkpoint.ManagementCommandSetInternalTrustedCa("managementCommandSetInternalTrustedCaResource", {
        allowCertificatesFromBranches: false,
        branches: ["string"],
        cacheCrl: false,
        color: "string",
        comments: "string",
        crlCacheMethod: "string",
        crlCacheTimeout: 0,
        domainsToProcesses: ["string"],
        ignoreErrors: false,
        ignoreWarnings: false,
        managementCommandSetInternalTrustedCaId: "string",
        retrieveCrlFromHttpServers: false,
        tags: ["string"],
    });
    
    type: checkpoint:ManagementCommandSetInternalTrustedCa
    properties:
        allowCertificatesFromBranches: false
        branches:
            - string
        cacheCrl: false
        color: string
        comments: string
        crlCacheMethod: string
        crlCacheTimeout: 0
        domainsToProcesses:
            - string
        ignoreErrors: false
        ignoreWarnings: false
        managementCommandSetInternalTrustedCaId: string
        retrieveCrlFromHttpServers: false
        tags:
            - string
    

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

    AllowCertificatesFromBranches bool
    Allow only certificates from listed branches.
    Branches List<string>
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    CacheCrl bool
    Cache Certificate Revocation List on the Security Gateway.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CrlCacheMethod string
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    CrlCacheTimeout double
    When to fetch new Certificate Revocation List (in minutes).
    DomainsToProcesses List<string>
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    ManagementCommandSetInternalTrustedCaId string
    RetrieveCrlFromHttpServers bool
    Whether to retrieve Certificate Revocation List from http servers.
    Tags List<string>
    Collection of tag identifiers.
    AllowCertificatesFromBranches bool
    Allow only certificates from listed branches.
    Branches []string
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    CacheCrl bool
    Cache Certificate Revocation List on the Security Gateway.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CrlCacheMethod string
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    CrlCacheTimeout float64
    When to fetch new Certificate Revocation List (in minutes).
    DomainsToProcesses []string
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    ManagementCommandSetInternalTrustedCaId string
    RetrieveCrlFromHttpServers bool
    Whether to retrieve Certificate Revocation List from http servers.
    Tags []string
    Collection of tag identifiers.
    allowCertificatesFromBranches Boolean
    Allow only certificates from listed branches.
    branches List<String>
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    cacheCrl Boolean
    Cache Certificate Revocation List on the Security Gateway.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    crlCacheMethod String
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    crlCacheTimeout Double
    When to fetch new Certificate Revocation List (in minutes).
    domainsToProcesses List<String>
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    managementCommandSetInternalTrustedCaId String
    retrieveCrlFromHttpServers Boolean
    Whether to retrieve Certificate Revocation List from http servers.
    tags List<String>
    Collection of tag identifiers.
    allowCertificatesFromBranches boolean
    Allow only certificates from listed branches.
    branches string[]
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    cacheCrl boolean
    Cache Certificate Revocation List on the Security Gateway.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    crlCacheMethod string
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    crlCacheTimeout number
    When to fetch new Certificate Revocation List (in minutes).
    domainsToProcesses string[]
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    managementCommandSetInternalTrustedCaId string
    retrieveCrlFromHttpServers boolean
    Whether to retrieve Certificate Revocation List from http servers.
    tags string[]
    Collection of tag identifiers.
    allow_certificates_from_branches bool
    Allow only certificates from listed branches.
    branches Sequence[str]
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    cache_crl bool
    Cache Certificate Revocation List on the Security Gateway.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    crl_cache_method str
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    crl_cache_timeout float
    When to fetch new Certificate Revocation List (in minutes).
    domains_to_processes Sequence[str]
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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_command_set_internal_trusted_ca_id str
    retrieve_crl_from_http_servers bool
    Whether to retrieve Certificate Revocation List from http servers.
    tags Sequence[str]
    Collection of tag identifiers.
    allowCertificatesFromBranches Boolean
    Allow only certificates from listed branches.
    branches List<String>
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    cacheCrl Boolean
    Cache Certificate Revocation List on the Security Gateway.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    crlCacheMethod String
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    crlCacheTimeout Number
    When to fetch new Certificate Revocation List (in minutes).
    domainsToProcesses List<String>
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    managementCommandSetInternalTrustedCaId String
    retrieveCrlFromHttpServers Boolean
    Whether to retrieve Certificate Revocation List from http servers.
    tags List<String>
    Collection of tag identifiers.

    Outputs

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

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

    Look up Existing ManagementCommandSetInternalTrustedCa Resource

    Get an existing ManagementCommandSetInternalTrustedCa 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?: ManagementCommandSetInternalTrustedCaState, opts?: CustomResourceOptions): ManagementCommandSetInternalTrustedCa
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_certificates_from_branches: Optional[bool] = None,
            branches: Optional[Sequence[str]] = None,
            cache_crl: Optional[bool] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            crl_cache_method: Optional[str] = None,
            crl_cache_timeout: Optional[float] = None,
            domains_to_processes: Optional[Sequence[str]] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_command_set_internal_trusted_ca_id: Optional[str] = None,
            retrieve_crl_from_http_servers: Optional[bool] = None,
            tags: Optional[Sequence[str]] = None,
            uid: Optional[str] = None) -> ManagementCommandSetInternalTrustedCa
    func GetManagementCommandSetInternalTrustedCa(ctx *Context, name string, id IDInput, state *ManagementCommandSetInternalTrustedCaState, opts ...ResourceOption) (*ManagementCommandSetInternalTrustedCa, error)
    public static ManagementCommandSetInternalTrustedCa Get(string name, Input<string> id, ManagementCommandSetInternalTrustedCaState? state, CustomResourceOptions? opts = null)
    public static ManagementCommandSetInternalTrustedCa get(String name, Output<String> id, ManagementCommandSetInternalTrustedCaState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementCommandSetInternalTrustedCa    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:
    AllowCertificatesFromBranches bool
    Allow only certificates from listed branches.
    Branches List<string>
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    CacheCrl bool
    Cache Certificate Revocation List on the Security Gateway.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CrlCacheMethod string
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    CrlCacheTimeout double
    When to fetch new Certificate Revocation List (in minutes).
    DomainsToProcesses List<string>
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    ManagementCommandSetInternalTrustedCaId string
    RetrieveCrlFromHttpServers bool
    Whether to retrieve Certificate Revocation List from http servers.
    Tags List<string>
    Collection of tag identifiers.
    Uid string
    Object unique identifier.
    AllowCertificatesFromBranches bool
    Allow only certificates from listed branches.
    Branches []string
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    CacheCrl bool
    Cache Certificate Revocation List on the Security Gateway.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CrlCacheMethod string
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    CrlCacheTimeout float64
    When to fetch new Certificate Revocation List (in minutes).
    DomainsToProcesses []string
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    ManagementCommandSetInternalTrustedCaId string
    RetrieveCrlFromHttpServers bool
    Whether to retrieve Certificate Revocation List from http servers.
    Tags []string
    Collection of tag identifiers.
    Uid string
    Object unique identifier.
    allowCertificatesFromBranches Boolean
    Allow only certificates from listed branches.
    branches List<String>
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    cacheCrl Boolean
    Cache Certificate Revocation List on the Security Gateway.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    crlCacheMethod String
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    crlCacheTimeout Double
    When to fetch new Certificate Revocation List (in minutes).
    domainsToProcesses List<String>
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    managementCommandSetInternalTrustedCaId String
    retrieveCrlFromHttpServers Boolean
    Whether to retrieve Certificate Revocation List from http servers.
    tags List<String>
    Collection of tag identifiers.
    uid String
    Object unique identifier.
    allowCertificatesFromBranches boolean
    Allow only certificates from listed branches.
    branches string[]
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    cacheCrl boolean
    Cache Certificate Revocation List on the Security Gateway.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    crlCacheMethod string
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    crlCacheTimeout number
    When to fetch new Certificate Revocation List (in minutes).
    domainsToProcesses string[]
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    managementCommandSetInternalTrustedCaId string
    retrieveCrlFromHttpServers boolean
    Whether to retrieve Certificate Revocation List from http servers.
    tags string[]
    Collection of tag identifiers.
    uid string
    Object unique identifier.
    allow_certificates_from_branches bool
    Allow only certificates from listed branches.
    branches Sequence[str]
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    cache_crl bool
    Cache Certificate Revocation List on the Security Gateway.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    crl_cache_method str
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    crl_cache_timeout float
    When to fetch new Certificate Revocation List (in minutes).
    domains_to_processes Sequence[str]
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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_command_set_internal_trusted_ca_id str
    retrieve_crl_from_http_servers bool
    Whether to retrieve Certificate Revocation List from http servers.
    tags Sequence[str]
    Collection of tag identifiers.
    uid str
    Object unique identifier.
    allowCertificatesFromBranches Boolean
    Allow only certificates from listed branches.
    branches List<String>
    Branches to allow certificates from. Required only if "allow-certificates-from-branches" set to "true".
    cacheCrl Boolean
    Cache Certificate Revocation List on the Security Gateway.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    crlCacheMethod String
    Weather to retrieve new Certificate Revocation List after the certificate expires or after a fixed period.
    crlCacheTimeout Number
    When to fetch new Certificate Revocation List (in minutes).
    domainsToProcesses List<String>
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.
    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.
    managementCommandSetInternalTrustedCaId String
    retrieveCrlFromHttpServers Boolean
    Whether to retrieve Certificate Revocation List from http servers.
    tags List<String>
    Collection of tag identifiers.
    uid String
    Object unique identifier.

    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