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

checkpoint.ManagementTrustedClient

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 Trusted Client.

    Create ManagementTrustedClient Resource

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

    Constructor syntax

    new ManagementTrustedClient(name: string, args?: ManagementTrustedClientArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementTrustedClient(resource_name: str,
                                args: Optional[ManagementTrustedClientArgs] = None,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementTrustedClient(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                color: Optional[str] = None,
                                comments: Optional[str] = None,
                                domains_assignments: Optional[Sequence[str]] = None,
                                ignore_errors: Optional[bool] = None,
                                ignore_warnings: Optional[bool] = None,
                                ipv4_address: Optional[str] = None,
                                ipv4_address_first: Optional[str] = None,
                                ipv4_address_last: Optional[str] = None,
                                ipv6_address: Optional[str] = None,
                                ipv6_address_first: Optional[str] = None,
                                ipv6_address_last: Optional[str] = None,
                                management_trusted_client_id: Optional[str] = None,
                                mask_length4: Optional[float] = None,
                                mask_length6: Optional[float] = None,
                                multi_domain_server_trusted_client: Optional[bool] = None,
                                name: Optional[str] = None,
                                tags: Optional[Sequence[str]] = None,
                                type: Optional[str] = None,
                                wild_card: Optional[str] = None)
    func NewManagementTrustedClient(ctx *Context, name string, args *ManagementTrustedClientArgs, opts ...ResourceOption) (*ManagementTrustedClient, error)
    public ManagementTrustedClient(string name, ManagementTrustedClientArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementTrustedClient(String name, ManagementTrustedClientArgs args)
    public ManagementTrustedClient(String name, ManagementTrustedClientArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementTrustedClient
    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 ManagementTrustedClientArgs
    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 ManagementTrustedClientArgs
    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 ManagementTrustedClientArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementTrustedClientArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementTrustedClientArgs
    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 managementTrustedClientResource = new Checkpoint.ManagementTrustedClient("managementTrustedClientResource", new()
    {
        Color = "string",
        Comments = "string",
        DomainsAssignments = new[]
        {
            "string",
        },
        IgnoreErrors = false,
        IgnoreWarnings = false,
        Ipv4Address = "string",
        Ipv4AddressFirst = "string",
        Ipv4AddressLast = "string",
        Ipv6Address = "string",
        Ipv6AddressFirst = "string",
        Ipv6AddressLast = "string",
        ManagementTrustedClientId = "string",
        MaskLength4 = 0,
        MaskLength6 = 0,
        MultiDomainServerTrustedClient = false,
        Name = "string",
        Tags = new[]
        {
            "string",
        },
        Type = "string",
        WildCard = "string",
    });
    
    example, err := checkpoint.NewManagementTrustedClient(ctx, "managementTrustedClientResource", &checkpoint.ManagementTrustedClientArgs{
    	Color:    pulumi.String("string"),
    	Comments: pulumi.String("string"),
    	DomainsAssignments: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	IgnoreErrors:                   pulumi.Bool(false),
    	IgnoreWarnings:                 pulumi.Bool(false),
    	Ipv4Address:                    pulumi.String("string"),
    	Ipv4AddressFirst:               pulumi.String("string"),
    	Ipv4AddressLast:                pulumi.String("string"),
    	Ipv6Address:                    pulumi.String("string"),
    	Ipv6AddressFirst:               pulumi.String("string"),
    	Ipv6AddressLast:                pulumi.String("string"),
    	ManagementTrustedClientId:      pulumi.String("string"),
    	MaskLength4:                    pulumi.Float64(0),
    	MaskLength6:                    pulumi.Float64(0),
    	MultiDomainServerTrustedClient: pulumi.Bool(false),
    	Name:                           pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Type:     pulumi.String("string"),
    	WildCard: pulumi.String("string"),
    })
    
    var managementTrustedClientResource = new ManagementTrustedClient("managementTrustedClientResource", ManagementTrustedClientArgs.builder()
        .color("string")
        .comments("string")
        .domainsAssignments("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .ipv4Address("string")
        .ipv4AddressFirst("string")
        .ipv4AddressLast("string")
        .ipv6Address("string")
        .ipv6AddressFirst("string")
        .ipv6AddressLast("string")
        .managementTrustedClientId("string")
        .maskLength4(0)
        .maskLength6(0)
        .multiDomainServerTrustedClient(false)
        .name("string")
        .tags("string")
        .type("string")
        .wildCard("string")
        .build());
    
    management_trusted_client_resource = checkpoint.ManagementTrustedClient("managementTrustedClientResource",
        color="string",
        comments="string",
        domains_assignments=["string"],
        ignore_errors=False,
        ignore_warnings=False,
        ipv4_address="string",
        ipv4_address_first="string",
        ipv4_address_last="string",
        ipv6_address="string",
        ipv6_address_first="string",
        ipv6_address_last="string",
        management_trusted_client_id="string",
        mask_length4=0,
        mask_length6=0,
        multi_domain_server_trusted_client=False,
        name="string",
        tags=["string"],
        type="string",
        wild_card="string")
    
    const managementTrustedClientResource = new checkpoint.ManagementTrustedClient("managementTrustedClientResource", {
        color: "string",
        comments: "string",
        domainsAssignments: ["string"],
        ignoreErrors: false,
        ignoreWarnings: false,
        ipv4Address: "string",
        ipv4AddressFirst: "string",
        ipv4AddressLast: "string",
        ipv6Address: "string",
        ipv6AddressFirst: "string",
        ipv6AddressLast: "string",
        managementTrustedClientId: "string",
        maskLength4: 0,
        maskLength6: 0,
        multiDomainServerTrustedClient: false,
        name: "string",
        tags: ["string"],
        type: "string",
        wildCard: "string",
    });
    
    type: checkpoint:ManagementTrustedClient
    properties:
        color: string
        comments: string
        domainsAssignments:
            - string
        ignoreErrors: false
        ignoreWarnings: false
        ipv4Address: string
        ipv4AddressFirst: string
        ipv4AddressLast: string
        ipv6Address: string
        ipv6AddressFirst: string
        ipv6AddressLast: string
        managementTrustedClientId: string
        maskLength4: 0
        maskLength6: 0
        multiDomainServerTrustedClient: false
        name: string
        tags:
            - string
        type: string
        wildCard: string
    

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

    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    DomainsAssignments List<string>
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    Ipv4Address string
    IPv4 address.
    Ipv4AddressFirst string
    First IPv4 address in the range.
    Ipv4AddressLast string
    Last IPv4 address in the range.
    Ipv6Address string
    IPv6 address.
    Ipv6AddressFirst string
    First IPv6 address in the range.
    Ipv6AddressLast string
    Last IPv6 address in the range.
    ManagementTrustedClientId string
    MaskLength4 double
    IPv4 mask length.
    MaskLength6 double
    IPv6 mask length.
    MultiDomainServerTrustedClient bool
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    Name string
    Object name.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    Type string
    Trusted client type.
    WildCard string
    IP wild card (e.g. 192.0.2.*).
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    DomainsAssignments []string
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    Ipv4Address string
    IPv4 address.
    Ipv4AddressFirst string
    First IPv4 address in the range.
    Ipv4AddressLast string
    Last IPv4 address in the range.
    Ipv6Address string
    IPv6 address.
    Ipv6AddressFirst string
    First IPv6 address in the range.
    Ipv6AddressLast string
    Last IPv6 address in the range.
    ManagementTrustedClientId string
    MaskLength4 float64
    IPv4 mask length.
    MaskLength6 float64
    IPv6 mask length.
    MultiDomainServerTrustedClient bool
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    Name string
    Object name.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    Type string
    Trusted client type.
    WildCard string
    IP wild card (e.g. 192.0.2.*).
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    domainsAssignments List<String>
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    ipv4Address String
    IPv4 address.
    ipv4AddressFirst String
    First IPv4 address in the range.
    ipv4AddressLast String
    Last IPv4 address in the range.
    ipv6Address String
    IPv6 address.
    ipv6AddressFirst String
    First IPv6 address in the range.
    ipv6AddressLast String
    Last IPv6 address in the range.
    managementTrustedClientId String
    maskLength4 Double
    IPv4 mask length.
    maskLength6 Double
    IPv6 mask length.
    multiDomainServerTrustedClient Boolean
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    type String
    Trusted client type.
    wildCard String
    IP wild card (e.g. 192.0.2.*).
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    domainsAssignments string[]
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    ipv4Address string
    IPv4 address.
    ipv4AddressFirst string
    First IPv4 address in the range.
    ipv4AddressLast string
    Last IPv4 address in the range.
    ipv6Address string
    IPv6 address.
    ipv6AddressFirst string
    First IPv6 address in the range.
    ipv6AddressLast string
    Last IPv6 address in the range.
    managementTrustedClientId string
    maskLength4 number
    IPv4 mask length.
    maskLength6 number
    IPv6 mask length.
    multiDomainServerTrustedClient boolean
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    name string
    Object name.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    type string
    Trusted client type.
    wildCard string
    IP wild card (e.g. 192.0.2.*).
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    domains_assignments Sequence[str]
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    ipv4_address str
    IPv4 address.
    ipv4_address_first str
    First IPv4 address in the range.
    ipv4_address_last str
    Last IPv4 address in the range.
    ipv6_address str
    IPv6 address.
    ipv6_address_first str
    First IPv6 address in the range.
    ipv6_address_last str
    Last IPv6 address in the range.
    management_trusted_client_id str
    mask_length4 float
    IPv4 mask length.
    mask_length6 float
    IPv6 mask length.
    multi_domain_server_trusted_client bool
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    name str
    Object name.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    type str
    Trusted client type.
    wild_card str
    IP wild card (e.g. 192.0.2.*).
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    domainsAssignments List<String>
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    ipv4Address String
    IPv4 address.
    ipv4AddressFirst String
    First IPv4 address in the range.
    ipv4AddressLast String
    Last IPv4 address in the range.
    ipv6Address String
    IPv6 address.
    ipv6AddressFirst String
    First IPv6 address in the range.
    ipv6AddressLast String
    Last IPv6 address in the range.
    managementTrustedClientId String
    maskLength4 Number
    IPv4 mask length.
    maskLength6 Number
    IPv6 mask length.
    multiDomainServerTrustedClient Boolean
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    type String
    Trusted client type.
    wildCard String
    IP wild card (e.g. 192.0.2.*).

    Outputs

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

    Get an existing ManagementTrustedClient 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?: ManagementTrustedClientState, opts?: CustomResourceOptions): ManagementTrustedClient
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            domains_assignments: Optional[Sequence[str]] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            ipv4_address: Optional[str] = None,
            ipv4_address_first: Optional[str] = None,
            ipv4_address_last: Optional[str] = None,
            ipv6_address: Optional[str] = None,
            ipv6_address_first: Optional[str] = None,
            ipv6_address_last: Optional[str] = None,
            management_trusted_client_id: Optional[str] = None,
            mask_length4: Optional[float] = None,
            mask_length6: Optional[float] = None,
            multi_domain_server_trusted_client: Optional[bool] = None,
            name: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            type: Optional[str] = None,
            wild_card: Optional[str] = None) -> ManagementTrustedClient
    func GetManagementTrustedClient(ctx *Context, name string, id IDInput, state *ManagementTrustedClientState, opts ...ResourceOption) (*ManagementTrustedClient, error)
    public static ManagementTrustedClient Get(string name, Input<string> id, ManagementTrustedClientState? state, CustomResourceOptions? opts = null)
    public static ManagementTrustedClient get(String name, Output<String> id, ManagementTrustedClientState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementTrustedClient    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:
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    DomainsAssignments List<string>
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    Ipv4Address string
    IPv4 address.
    Ipv4AddressFirst string
    First IPv4 address in the range.
    Ipv4AddressLast string
    Last IPv4 address in the range.
    Ipv6Address string
    IPv6 address.
    Ipv6AddressFirst string
    First IPv6 address in the range.
    Ipv6AddressLast string
    Last IPv6 address in the range.
    ManagementTrustedClientId string
    MaskLength4 double
    IPv4 mask length.
    MaskLength6 double
    IPv6 mask length.
    MultiDomainServerTrustedClient bool
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    Name string
    Object name.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    Type string
    Trusted client type.
    WildCard string
    IP wild card (e.g. 192.0.2.*).
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    DomainsAssignments []string
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    Ipv4Address string
    IPv4 address.
    Ipv4AddressFirst string
    First IPv4 address in the range.
    Ipv4AddressLast string
    Last IPv4 address in the range.
    Ipv6Address string
    IPv6 address.
    Ipv6AddressFirst string
    First IPv6 address in the range.
    Ipv6AddressLast string
    Last IPv6 address in the range.
    ManagementTrustedClientId string
    MaskLength4 float64
    IPv4 mask length.
    MaskLength6 float64
    IPv6 mask length.
    MultiDomainServerTrustedClient bool
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    Name string
    Object name.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    Type string
    Trusted client type.
    WildCard string
    IP wild card (e.g. 192.0.2.*).
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    domainsAssignments List<String>
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    ipv4Address String
    IPv4 address.
    ipv4AddressFirst String
    First IPv4 address in the range.
    ipv4AddressLast String
    Last IPv4 address in the range.
    ipv6Address String
    IPv6 address.
    ipv6AddressFirst String
    First IPv6 address in the range.
    ipv6AddressLast String
    Last IPv6 address in the range.
    managementTrustedClientId String
    maskLength4 Double
    IPv4 mask length.
    maskLength6 Double
    IPv6 mask length.
    multiDomainServerTrustedClient Boolean
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    type String
    Trusted client type.
    wildCard String
    IP wild card (e.g. 192.0.2.*).
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    domainsAssignments string[]
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    ipv4Address string
    IPv4 address.
    ipv4AddressFirst string
    First IPv4 address in the range.
    ipv4AddressLast string
    Last IPv4 address in the range.
    ipv6Address string
    IPv6 address.
    ipv6AddressFirst string
    First IPv6 address in the range.
    ipv6AddressLast string
    Last IPv6 address in the range.
    managementTrustedClientId string
    maskLength4 number
    IPv4 mask length.
    maskLength6 number
    IPv6 mask length.
    multiDomainServerTrustedClient boolean
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    name string
    Object name.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    type string
    Trusted client type.
    wildCard string
    IP wild card (e.g. 192.0.2.*).
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    domains_assignments Sequence[str]
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    ipv4_address str
    IPv4 address.
    ipv4_address_first str
    First IPv4 address in the range.
    ipv4_address_last str
    Last IPv4 address in the range.
    ipv6_address str
    IPv6 address.
    ipv6_address_first str
    First IPv6 address in the range.
    ipv6_address_last str
    Last IPv6 address in the range.
    management_trusted_client_id str
    mask_length4 float
    IPv4 mask length.
    mask_length6 float
    IPv6 mask length.
    multi_domain_server_trusted_client bool
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    name str
    Object name.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    type str
    Trusted client type.
    wild_card str
    IP wild card (e.g. 192.0.2.*).
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    domainsAssignments List<String>
    Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
    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.
    ipv4Address String
    IPv4 address.
    ipv4AddressFirst String
    First IPv4 address in the range.
    ipv4AddressLast String
    Last IPv4 address in the range.
    ipv6Address String
    IPv6 address.
    ipv6AddressFirst String
    First IPv6 address in the range.
    ipv6AddressLast String
    Last IPv6 address in the range.
    managementTrustedClientId String
    maskLength4 Number
    IPv4 mask length.
    maskLength6 Number
    IPv6 mask length.
    multiDomainServerTrustedClient Boolean
    Let this trusted client connect to all Multi-Domain Servers in the deployment.
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    type String
    Trusted client type.
    wildCard String
    IP wild card (e.g. 192.0.2.*).

    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