checkpoint.ManagementNutanixDataCenterServer
Explore with Pulumi AI
This resource allows you to execute Check Point Nutanix Data Center Server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const testNutanix = new checkpoint.ManagementNutanixDataCenterServer("testNutanix", {
hostname: "127.0.0.1",
password: "admin",
username: "admin",
});
import pulumi
import pulumi_checkpoint as checkpoint
test_nutanix = checkpoint.ManagementNutanixDataCenterServer("testNutanix",
hostname="127.0.0.1",
password="admin",
username="admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := checkpoint.NewManagementNutanixDataCenterServer(ctx, "testNutanix", &checkpoint.ManagementNutanixDataCenterServerArgs{
Hostname: pulumi.String("127.0.0.1"),
Password: pulumi.String("admin"),
Username: pulumi.String("admin"),
})
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 testNutanix = new Checkpoint.ManagementNutanixDataCenterServer("testNutanix", new()
{
Hostname = "127.0.0.1",
Password = "admin",
Username = "admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementNutanixDataCenterServer;
import com.pulumi.checkpoint.ManagementNutanixDataCenterServerArgs;
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 testNutanix = new ManagementNutanixDataCenterServer("testNutanix", ManagementNutanixDataCenterServerArgs.builder()
.hostname("127.0.0.1")
.password("admin")
.username("admin")
.build());
}
}
resources:
testNutanix:
type: checkpoint:ManagementNutanixDataCenterServer
properties:
hostname: 127.0.0.1
password: admin
username: admin
Create ManagementNutanixDataCenterServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementNutanixDataCenterServer(name: string, args: ManagementNutanixDataCenterServerArgs, opts?: CustomResourceOptions);
@overload
def ManagementNutanixDataCenterServer(resource_name: str,
args: ManagementNutanixDataCenterServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementNutanixDataCenterServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
hostname: Optional[str] = None,
password: Optional[str] = None,
username: 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_nutanix_data_center_server_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
unsafe_auto_accept: Optional[bool] = None)
func NewManagementNutanixDataCenterServer(ctx *Context, name string, args ManagementNutanixDataCenterServerArgs, opts ...ResourceOption) (*ManagementNutanixDataCenterServer, error)
public ManagementNutanixDataCenterServer(string name, ManagementNutanixDataCenterServerArgs args, CustomResourceOptions? opts = null)
public ManagementNutanixDataCenterServer(String name, ManagementNutanixDataCenterServerArgs args)
public ManagementNutanixDataCenterServer(String name, ManagementNutanixDataCenterServerArgs args, CustomResourceOptions options)
type: checkpoint:ManagementNutanixDataCenterServer
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 ManagementNutanixDataCenterServerArgs
- 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 ManagementNutanixDataCenterServerArgs
- 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 ManagementNutanixDataCenterServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementNutanixDataCenterServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementNutanixDataCenterServerArgs
- 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 managementNutanixDataCenterServerResource = new Checkpoint.ManagementNutanixDataCenterServer("managementNutanixDataCenterServerResource", new()
{
Hostname = "string",
Password = "string",
Username = "string",
CertificateFingerprint = "string",
Color = "string",
Comments = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
ManagementNutanixDataCenterServerId = "string",
Name = "string",
Tags = new[]
{
"string",
},
UnsafeAutoAccept = false,
});
example, err := checkpoint.NewManagementNutanixDataCenterServer(ctx, "managementNutanixDataCenterServerResource", &checkpoint.ManagementNutanixDataCenterServerArgs{
Hostname: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
CertificateFingerprint: pulumi.String("string"),
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementNutanixDataCenterServerId: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UnsafeAutoAccept: pulumi.Bool(false),
})
var managementNutanixDataCenterServerResource = new ManagementNutanixDataCenterServer("managementNutanixDataCenterServerResource", ManagementNutanixDataCenterServerArgs.builder()
.hostname("string")
.password("string")
.username("string")
.certificateFingerprint("string")
.color("string")
.comments("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.managementNutanixDataCenterServerId("string")
.name("string")
.tags("string")
.unsafeAutoAccept(false)
.build());
management_nutanix_data_center_server_resource = checkpoint.ManagementNutanixDataCenterServer("managementNutanixDataCenterServerResource",
hostname="string",
password="string",
username="string",
certificate_fingerprint="string",
color="string",
comments="string",
ignore_errors=False,
ignore_warnings=False,
management_nutanix_data_center_server_id="string",
name="string",
tags=["string"],
unsafe_auto_accept=False)
const managementNutanixDataCenterServerResource = new checkpoint.ManagementNutanixDataCenterServer("managementNutanixDataCenterServerResource", {
hostname: "string",
password: "string",
username: "string",
certificateFingerprint: "string",
color: "string",
comments: "string",
ignoreErrors: false,
ignoreWarnings: false,
managementNutanixDataCenterServerId: "string",
name: "string",
tags: ["string"],
unsafeAutoAccept: false,
});
type: checkpoint:ManagementNutanixDataCenterServer
properties:
certificateFingerprint: string
color: string
comments: string
hostname: string
ignoreErrors: false
ignoreWarnings: false
managementNutanixDataCenterServerId: string
name: string
password: string
tags:
- string
unsafeAutoAccept: false
username: string
ManagementNutanixDataCenterServer 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 ManagementNutanixDataCenterServer resource accepts the following input properties:
- Hostname string
- IP Address or hostname of the Nutanix Prism server.
- Password string
- Password of the Nutanix Prism server.
- Username string
- Username of the Nutanix Prism server.
- 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.
- Management
Nutanix 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 Nutanix Prism server.
- Password string
- Password of the Nutanix Prism server.
- Username string
- Username of the Nutanix Prism server.
- 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.
- Management
Nutanix 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 Nutanix Prism server.
- password String
- Password of the Nutanix Prism server.
- username String
- Username of the Nutanix Prism server.
- 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.
- management
Nutanix 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 Nutanix Prism server.
- password string
- Password of the Nutanix Prism server.
- username string
- Username of the Nutanix Prism server.
- 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.
- management
Nutanix 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 Nutanix Prism server.
- password str
- Password of the Nutanix Prism server.
- username str
- Username of the Nutanix Prism server.
- 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.
- management_
nutanix_ 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 Nutanix Prism server.
- password String
- Password of the Nutanix Prism server.
- username String
- Username of the Nutanix Prism server.
- 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.
- management
Nutanix 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 ManagementNutanixDataCenterServer resource produces the following output properties:
- Automatic
Refresh bool - Indicates whether the data center server's content is automatically updated.
- Data
Center stringType - Data center type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Automatic
Refresh bool - Indicates whether the data center server's content is automatically updated.
- Data
Center stringType - Data center type.
- Id string
- The provider-assigned unique ID for this managed resource.
- automatic
Refresh Boolean - Indicates whether the data center server's content is automatically updated.
- data
Center StringType - Data center type.
- id String
- The provider-assigned unique ID for this managed resource.
- automatic
Refresh boolean - Indicates whether the data center server's content is automatically updated.
- data
Center stringType - Data center type.
- id string
- The provider-assigned unique ID for this managed resource.
- automatic_
refresh bool - Indicates whether the data center server's content is automatically updated.
- data_
center_ strtype - Data center type.
- id str
- The provider-assigned unique ID for this managed resource.
- automatic
Refresh Boolean - Indicates whether the data center server's content is automatically updated.
- data
Center StringType - Data center type.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ManagementNutanixDataCenterServer Resource
Get an existing ManagementNutanixDataCenterServer 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?: ManagementNutanixDataCenterServerState, opts?: CustomResourceOptions): ManagementNutanixDataCenterServer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
automatic_refresh: Optional[bool] = None,
certificate_fingerprint: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
data_center_type: Optional[str] = None,
hostname: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_nutanix_data_center_server_id: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
unsafe_auto_accept: Optional[bool] = None,
username: Optional[str] = None) -> ManagementNutanixDataCenterServer
func GetManagementNutanixDataCenterServer(ctx *Context, name string, id IDInput, state *ManagementNutanixDataCenterServerState, opts ...ResourceOption) (*ManagementNutanixDataCenterServer, error)
public static ManagementNutanixDataCenterServer Get(string name, Input<string> id, ManagementNutanixDataCenterServerState? state, CustomResourceOptions? opts = null)
public static ManagementNutanixDataCenterServer get(String name, Output<String> id, ManagementNutanixDataCenterServerState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementNutanixDataCenterServer 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.
- Automatic
Refresh bool - Indicates whether the data center server's content is automatically updated.
- 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.
- Data
Center stringType - Data center type.
- Hostname string
- IP Address or hostname of the Nutanix Prism 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
Nutanix stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the Nutanix Prism server.
- 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.
- Username string
- Username of the Nutanix Prism server.
- Automatic
Refresh bool - Indicates whether the data center server's content is automatically updated.
- 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.
- Data
Center stringType - Data center type.
- Hostname string
- IP Address or hostname of the Nutanix Prism 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
Nutanix stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the Nutanix Prism server.
- []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.
- Username string
- Username of the Nutanix Prism server.
- automatic
Refresh Boolean - Indicates whether the data center server's content is automatically updated.
- 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.
- data
Center StringType - Data center type.
- hostname String
- IP Address or hostname of the Nutanix Prism 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.
- management
Nutanix StringData Center Server Id - name String
- Object name.
- password String
- Password of the Nutanix Prism server.
- 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.
- username String
- Username of the Nutanix Prism server.
- automatic
Refresh boolean - Indicates whether the data center server's content is automatically updated.
- 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.
- data
Center stringType - Data center type.
- hostname string
- IP Address or hostname of the Nutanix Prism 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.
- management
Nutanix stringData Center Server Id - name string
- Object name.
- password string
- Password of the Nutanix Prism server.
- 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.
- username string
- Username of the Nutanix Prism server.
- automatic_
refresh bool - Indicates whether the data center server's content is automatically updated.
- 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.
- data_
center_ strtype - Data center type.
- hostname str
- IP Address or hostname of the Nutanix Prism 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_
nutanix_ strdata_ center_ server_ id - name str
- Object name.
- password str
- Password of the Nutanix Prism server.
- 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.
- username str
- Username of the Nutanix Prism server.
- automatic
Refresh Boolean - Indicates whether the data center server's content is automatically updated.
- 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.
- data
Center StringType - Data center type.
- hostname String
- IP Address or hostname of the Nutanix Prism 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.
- management
Nutanix StringData Center Server Id - name String
- Object name.
- password String
- Password of the Nutanix Prism server.
- 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.
- username String
- Username of the Nutanix Prism server.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.