checkpoint.ManagementTrustedClient
Explore with Pulumi AI
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.
- Domains
Assignments List<string> - 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.
- Ipv4Address string
- IPv4 address.
- Ipv4Address
First string - First IPv4 address in the range.
- Ipv4Address
Last string - Last IPv4 address in the range.
- Ipv6Address string
- IPv6 address.
- Ipv6Address
First string - First IPv6 address in the range.
- Ipv6Address
Last string - Last IPv6 address in the range.
- Management
Trusted stringClient Id - Mask
Length4 double - IPv4 mask length.
- Mask
Length6 double - IPv6 mask length.
- Multi
Domain boolServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- Name string
- Object name.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Type string
- Trusted client type.
- Wild
Card 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.
- Domains
Assignments []string - 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.
- Ipv4Address string
- IPv4 address.
- Ipv4Address
First string - First IPv4 address in the range.
- Ipv4Address
Last string - Last IPv4 address in the range.
- Ipv6Address string
- IPv6 address.
- Ipv6Address
First string - First IPv6 address in the range.
- Ipv6Address
Last string - Last IPv6 address in the range.
- Management
Trusted stringClient Id - Mask
Length4 float64 - IPv4 mask length.
- Mask
Length6 float64 - IPv6 mask length.
- Multi
Domain boolServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- Name string
- Object name.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Type string
- Trusted client type.
- Wild
Card 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.
- domains
Assignments List<String> - Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ipv4Address String
- IPv4 address.
- ipv4Address
First String - First IPv4 address in the range.
- ipv4Address
Last String - Last IPv4 address in the range.
- ipv6Address String
- IPv6 address.
- ipv6Address
First String - First IPv6 address in the range.
- ipv6Address
Last String - Last IPv6 address in the range.
- management
Trusted StringClient Id - mask
Length4 Double - IPv4 mask length.
- mask
Length6 Double - IPv6 mask length.
- multi
Domain BooleanServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- name String
- Object name.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- type String
- Trusted client type.
- wild
Card 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.
- domains
Assignments string[] - Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- ipv4Address string
- IPv4 address.
- ipv4Address
First string - First IPv4 address in the range.
- ipv4Address
Last string - Last IPv4 address in the range.
- ipv6Address string
- IPv6 address.
- ipv6Address
First string - First IPv6 address in the range.
- ipv6Address
Last string - Last IPv6 address in the range.
- management
Trusted stringClient Id - mask
Length4 number - IPv4 mask length.
- mask
Length6 number - IPv6 mask length.
- multi
Domain booleanServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- name string
- Object name.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- type string
- Trusted client type.
- wild
Card 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_ strfirst - First IPv4 address in the range.
- ipv4_
address_ strlast - Last IPv4 address in the range.
- ipv6_
address str - IPv6 address.
- ipv6_
address_ strfirst - First IPv6 address in the range.
- ipv6_
address_ strlast - Last IPv6 address in the range.
- management_
trusted_ strclient_ id - mask_
length4 float - IPv4 mask length.
- mask_
length6 float - IPv6 mask length.
- multi_
domain_ boolserver_ trusted_ client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- name str
- Object name.
- 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.
- domains
Assignments List<String> - Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ipv4Address String
- IPv4 address.
- ipv4Address
First String - First IPv4 address in the range.
- ipv4Address
Last String - Last IPv4 address in the range.
- ipv6Address String
- IPv6 address.
- ipv6Address
First String - First IPv6 address in the range.
- ipv6Address
Last String - Last IPv6 address in the range.
- management
Trusted StringClient Id - mask
Length4 Number - IPv4 mask length.
- mask
Length6 Number - IPv6 mask length.
- multi
Domain BooleanServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- name String
- Object name.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- type String
- Trusted client type.
- wild
Card 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.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Domains
Assignments List<string> - 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.
- Ipv4Address string
- IPv4 address.
- Ipv4Address
First string - First IPv4 address in the range.
- Ipv4Address
Last string - Last IPv4 address in the range.
- Ipv6Address string
- IPv6 address.
- Ipv6Address
First string - First IPv6 address in the range.
- Ipv6Address
Last string - Last IPv6 address in the range.
- Management
Trusted stringClient Id - Mask
Length4 double - IPv4 mask length.
- Mask
Length6 double - IPv6 mask length.
- Multi
Domain boolServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- Name string
- Object name.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Type string
- Trusted client type.
- Wild
Card 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.
- Domains
Assignments []string - 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.
- Ipv4Address string
- IPv4 address.
- Ipv4Address
First string - First IPv4 address in the range.
- Ipv4Address
Last string - Last IPv4 address in the range.
- Ipv6Address string
- IPv6 address.
- Ipv6Address
First string - First IPv6 address in the range.
- Ipv6Address
Last string - Last IPv6 address in the range.
- Management
Trusted stringClient Id - Mask
Length4 float64 - IPv4 mask length.
- Mask
Length6 float64 - IPv6 mask length.
- Multi
Domain boolServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- Name string
- Object name.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Type string
- Trusted client type.
- Wild
Card 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.
- domains
Assignments List<String> - Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ipv4Address String
- IPv4 address.
- ipv4Address
First String - First IPv4 address in the range.
- ipv4Address
Last String - Last IPv4 address in the range.
- ipv6Address String
- IPv6 address.
- ipv6Address
First String - First IPv6 address in the range.
- ipv6Address
Last String - Last IPv6 address in the range.
- management
Trusted StringClient Id - mask
Length4 Double - IPv4 mask length.
- mask
Length6 Double - IPv6 mask length.
- multi
Domain BooleanServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- name String
- Object name.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- type String
- Trusted client type.
- wild
Card 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.
- domains
Assignments string[] - Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- ipv4Address string
- IPv4 address.
- ipv4Address
First string - First IPv4 address in the range.
- ipv4Address
Last string - Last IPv4 address in the range.
- ipv6Address string
- IPv6 address.
- ipv6Address
First string - First IPv6 address in the range.
- ipv6Address
Last string - Last IPv6 address in the range.
- management
Trusted stringClient Id - mask
Length4 number - IPv4 mask length.
- mask
Length6 number - IPv6 mask length.
- multi
Domain booleanServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- name string
- Object name.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- type string
- Trusted client type.
- wild
Card 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_ strfirst - First IPv4 address in the range.
- ipv4_
address_ strlast - Last IPv4 address in the range.
- ipv6_
address str - IPv6 address.
- ipv6_
address_ strfirst - First IPv6 address in the range.
- ipv6_
address_ strlast - Last IPv6 address in the range.
- management_
trusted_ strclient_ id - mask_
length4 float - IPv4 mask length.
- mask_
length6 float - IPv6 mask length.
- multi_
domain_ boolserver_ trusted_ client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- name str
- Object name.
- 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.
- domains
Assignments List<String> - Domains to be added to this profile. Use domain name only. See example below: "add-trusted-client (with domain)".
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ipv4Address String
- IPv4 address.
- ipv4Address
First String - First IPv4 address in the range.
- ipv4Address
Last String - Last IPv4 address in the range.
- ipv6Address String
- IPv6 address.
- ipv6Address
First String - First IPv6 address in the range.
- ipv6Address
Last String - Last IPv6 address in the range.
- management
Trusted StringClient Id - mask
Length4 Number - IPv4 mask length.
- mask
Length6 Number - IPv6 mask length.
- multi
Domain BooleanServer Trusted Client - Let this trusted client connect to all Multi-Domain Servers in the deployment.
- name String
- Object name.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- type String
- Trusted client type.
- wild
Card 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.