published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw
This resource allows you to execute Check Point Nozomi Data Center Server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const testNozomi = new checkpoint.ManagementNozomiDataCenterServer("testNozomi", {
name: "MY-NOZOMI",
hostname: "127.0.0.1",
keyName: "MY-KEY-NAME",
keyToken: "MY-KEY-TOKEN",
});
import pulumi
import pulumi_checkpoint as checkpoint
test_nozomi = checkpoint.ManagementNozomiDataCenterServer("testNozomi",
name="MY-NOZOMI",
hostname="127.0.0.1",
key_name="MY-KEY-NAME",
key_token="MY-KEY-TOKEN")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := checkpoint.NewManagementNozomiDataCenterServer(ctx, "testNozomi", &checkpoint.ManagementNozomiDataCenterServerArgs{
Name: pulumi.String("MY-NOZOMI"),
Hostname: pulumi.String("127.0.0.1"),
KeyName: pulumi.String("MY-KEY-NAME"),
KeyToken: pulumi.String("MY-KEY-TOKEN"),
})
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 testNozomi = new Checkpoint.ManagementNozomiDataCenterServer("testNozomi", new()
{
Name = "MY-NOZOMI",
Hostname = "127.0.0.1",
KeyName = "MY-KEY-NAME",
KeyToken = "MY-KEY-TOKEN",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementNozomiDataCenterServer;
import com.pulumi.checkpoint.ManagementNozomiDataCenterServerArgs;
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 testNozomi = new ManagementNozomiDataCenterServer("testNozomi", ManagementNozomiDataCenterServerArgs.builder()
.name("MY-NOZOMI")
.hostname("127.0.0.1")
.keyName("MY-KEY-NAME")
.keyToken("MY-KEY-TOKEN")
.build());
}
}
resources:
testNozomi:
type: checkpoint:ManagementNozomiDataCenterServer
properties:
name: MY-NOZOMI
hostname: 127.0.0.1
keyName: MY-KEY-NAME
keyToken: MY-KEY-TOKEN
Example coming soon!
Create ManagementNozomiDataCenterServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementNozomiDataCenterServer(name: string, args: ManagementNozomiDataCenterServerArgs, opts?: CustomResourceOptions);@overload
def ManagementNozomiDataCenterServer(resource_name: str,
args: ManagementNozomiDataCenterServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementNozomiDataCenterServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
hostname: Optional[str] = None,
key_name: Optional[str] = None,
key_token: Optional[str] = None,
certificate_fingerprint: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_nozomi_data_center_server_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
unsafe_auto_accept: Optional[bool] = None)func NewManagementNozomiDataCenterServer(ctx *Context, name string, args ManagementNozomiDataCenterServerArgs, opts ...ResourceOption) (*ManagementNozomiDataCenterServer, error)public ManagementNozomiDataCenterServer(string name, ManagementNozomiDataCenterServerArgs args, CustomResourceOptions? opts = null)
public ManagementNozomiDataCenterServer(String name, ManagementNozomiDataCenterServerArgs args)
public ManagementNozomiDataCenterServer(String name, ManagementNozomiDataCenterServerArgs args, CustomResourceOptions options)
type: checkpoint:ManagementNozomiDataCenterServer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_management_nozomi_data_center_server" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ManagementNozomiDataCenterServerArgs
- 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 ManagementNozomiDataCenterServerArgs
- 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 ManagementNozomiDataCenterServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementNozomiDataCenterServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementNozomiDataCenterServerArgs
- 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 managementNozomiDataCenterServerResource = new Checkpoint.ManagementNozomiDataCenterServer("managementNozomiDataCenterServerResource", new()
{
Hostname = "string",
KeyName = "string",
KeyToken = "string",
CertificateFingerprint = "string",
Color = "string",
Comments = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
ManagementNozomiDataCenterServerId = "string",
Name = "string",
Tags = new[]
{
"string",
},
UnsafeAutoAccept = false,
});
example, err := checkpoint.NewManagementNozomiDataCenterServer(ctx, "managementNozomiDataCenterServerResource", &checkpoint.ManagementNozomiDataCenterServerArgs{
Hostname: pulumi.String("string"),
KeyName: pulumi.String("string"),
KeyToken: pulumi.String("string"),
CertificateFingerprint: pulumi.String("string"),
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementNozomiDataCenterServerId: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UnsafeAutoAccept: pulumi.Bool(false),
})
resource "checkpoint_management_nozomi_data_center_server" "managementNozomiDataCenterServerResource" {
lifecycle {
create_before_destroy = true
}
hostname = "string"
key_name = "string"
key_token = "string"
certificate_fingerprint = "string"
color = "string"
comments = "string"
ignore_errors = false
ignore_warnings = false
management_nozomi_data_center_server_id = "string"
name = "string"
tags = ["string"]
unsafe_auto_accept = false
}
var managementNozomiDataCenterServerResource = new ManagementNozomiDataCenterServer("managementNozomiDataCenterServerResource", ManagementNozomiDataCenterServerArgs.builder()
.hostname("string")
.keyName("string")
.keyToken("string")
.certificateFingerprint("string")
.color("string")
.comments("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.managementNozomiDataCenterServerId("string")
.name("string")
.tags("string")
.unsafeAutoAccept(false)
.build());
management_nozomi_data_center_server_resource = checkpoint.ManagementNozomiDataCenterServer("managementNozomiDataCenterServerResource",
hostname="string",
key_name="string",
key_token="string",
certificate_fingerprint="string",
color="string",
comments="string",
ignore_errors=False,
ignore_warnings=False,
management_nozomi_data_center_server_id="string",
name="string",
tags=["string"],
unsafe_auto_accept=False)
const managementNozomiDataCenterServerResource = new checkpoint.ManagementNozomiDataCenterServer("managementNozomiDataCenterServerResource", {
hostname: "string",
keyName: "string",
keyToken: "string",
certificateFingerprint: "string",
color: "string",
comments: "string",
ignoreErrors: false,
ignoreWarnings: false,
managementNozomiDataCenterServerId: "string",
name: "string",
tags: ["string"],
unsafeAutoAccept: false,
});
type: checkpoint:ManagementNozomiDataCenterServer
properties:
certificateFingerprint: string
color: string
comments: string
hostname: string
ignoreErrors: false
ignoreWarnings: false
keyName: string
keyToken: string
managementNozomiDataCenterServerId: string
name: string
tags:
- string
unsafeAutoAccept: false
ManagementNozomiDataCenterServer 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 ManagementNozomiDataCenterServer resource accepts the following input properties:
- Hostname string
- IP address or hostname of the Nozomi Guardian or CMC server.
- Key
Name string - API key name for Nozomi.
- Key
Token string - API key token for Nozomi.
- Certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- Management
Nozomi stringData Center Server Id - Name string
- Object name.
- List<string>
- Collection of tag identifiers.
- Unsafe
Auto boolAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- Hostname string
- IP address or hostname of the Nozomi Guardian or CMC server.
- Key
Name string - API key name for Nozomi.
- Key
Token string - API key token for Nozomi.
- Certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- Management
Nozomi stringData Center Server Id - Name string
- Object name.
- []string
- Collection of tag identifiers.
- Unsafe
Auto boolAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- hostname string
- IP address or hostname of the Nozomi Guardian or CMC server.
- key_
name string - API key name for Nozomi.
- key_
token string - API key token for Nozomi.
- certificate_
fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- management_
nozomi_ stringdata_ center_ server_ id - name string
- Object name.
- list(string)
- Collection of tag identifiers.
- unsafe_
auto_ boolaccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- hostname String
- IP address or hostname of the Nozomi Guardian or CMC server.
- key
Name String - API key name for Nozomi.
- key
Token String - API key token for Nozomi.
- certificate
Fingerprint String - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- management
Nozomi StringData Center Server Id - name String
- Object name.
- List<String>
- Collection of tag identifiers.
- unsafe
Auto BooleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- hostname string
- IP address or hostname of the Nozomi Guardian or CMC server.
- key
Name string - API key name for Nozomi.
- key
Token string - API key token for Nozomi.
- certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- management
Nozomi stringData Center Server Id - name string
- Object name.
- string[]
- Collection of tag identifiers.
- unsafe
Auto booleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- hostname str
- IP address or hostname of the Nozomi Guardian or CMC server.
- key_
name str - API key name for Nozomi.
- key_
token str - API key token for Nozomi.
- certificate_
fingerprint str - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- management_
nozomi_ strdata_ center_ server_ id - name str
- Object name.
- Sequence[str]
- Collection of tag identifiers.
- unsafe_
auto_ boolaccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- hostname String
- IP address or hostname of the Nozomi Guardian or CMC server.
- key
Name String - API key name for Nozomi.
- key
Token String - API key token for Nozomi.
- certificate
Fingerprint String - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- management
Nozomi StringData Center Server Id - name String
- Object name.
- List<String>
- Collection of tag identifiers.
- unsafe
Auto BooleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementNozomiDataCenterServer 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 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 ManagementNozomiDataCenterServer Resource
Get an existing ManagementNozomiDataCenterServer 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?: ManagementNozomiDataCenterServerState, opts?: CustomResourceOptions): ManagementNozomiDataCenterServer@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate_fingerprint: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
hostname: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
key_name: Optional[str] = None,
key_token: Optional[str] = None,
management_nozomi_data_center_server_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
unsafe_auto_accept: Optional[bool] = None) -> ManagementNozomiDataCenterServerfunc GetManagementNozomiDataCenterServer(ctx *Context, name string, id IDInput, state *ManagementNozomiDataCenterServerState, opts ...ResourceOption) (*ManagementNozomiDataCenterServer, error)public static ManagementNozomiDataCenterServer Get(string name, Input<string> id, ManagementNozomiDataCenterServerState? state, CustomResourceOptions? opts = null)public static ManagementNozomiDataCenterServer get(String name, Output<String> id, ManagementNozomiDataCenterServerState state, CustomResourceOptions options)resources: _: type: checkpoint:ManagementNozomiDataCenterServer get: id: ${id}import {
to = checkpoint_management_nozomi_data_center_server.example
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.
- Certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Hostname string
- IP address or hostname of the Nozomi Guardian or CMC 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. By Setting this parameter to 'true' test connection failure will be ignored.
- Key
Name string - API key name for Nozomi.
- Key
Token string - API key token for Nozomi.
- Management
Nozomi stringData Center Server Id - Name string
- Object name.
- List<string>
- Collection of tag identifiers.
- Unsafe
Auto boolAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- Certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Hostname string
- IP address or hostname of the Nozomi Guardian or CMC 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. By Setting this parameter to 'true' test connection failure will be ignored.
- Key
Name string - API key name for Nozomi.
- Key
Token string - API key token for Nozomi.
- Management
Nozomi stringData Center Server Id - Name string
- Object name.
- []string
- Collection of tag identifiers.
- Unsafe
Auto boolAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- certificate_
fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- hostname string
- IP address or hostname of the Nozomi Guardian or CMC 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. By Setting this parameter to 'true' test connection failure will be ignored.
- key_
name string - API key name for Nozomi.
- key_
token string - API key token for Nozomi.
- management_
nozomi_ stringdata_ center_ server_ id - name string
- Object name.
- list(string)
- Collection of tag identifiers.
- unsafe_
auto_ boolaccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- certificate
Fingerprint String - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- hostname String
- IP address or hostname of the Nozomi Guardian or CMC server.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- key
Name String - API key name for Nozomi.
- key
Token String - API key token for Nozomi.
- management
Nozomi StringData Center Server Id - name String
- Object name.
- List<String>
- Collection of tag identifiers.
- unsafe
Auto BooleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- hostname string
- IP address or hostname of the Nozomi Guardian or CMC server.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- key
Name string - API key name for Nozomi.
- key
Token string - API key token for Nozomi.
- management
Nozomi stringData Center Server Id - name string
- Object name.
- string[]
- Collection of tag identifiers.
- unsafe
Auto booleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- certificate_
fingerprint str - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- hostname str
- IP address or hostname of the Nozomi Guardian or CMC 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. By Setting this parameter to 'true' test connection failure will be ignored.
- key_
name str - API key name for Nozomi.
- key_
token str - API key token for Nozomi.
- management_
nozomi_ strdata_ center_ server_ id - name str
- Object name.
- Sequence[str]
- Collection of tag identifiers.
- unsafe_
auto_ boolaccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- certificate
Fingerprint String - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- hostname String
- IP address or hostname of the Nozomi Guardian or CMC server.
- 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. By Setting this parameter to 'true' test connection failure will be ignored.
- key
Name String - API key name for Nozomi.
- key
Token String - API key token for Nozomi.
- management
Nozomi StringData Center Server Id - name String
- Object name.
- List<String>
- Collection of tag identifiers.
- unsafe
Auto BooleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Thursday, Jul 30, 2026 by checkpointsw