checkpoint.ManagementDataCenterObject
Explore with Pulumi AI
This resource allows you to add/update/delete Check Point Data Center Object.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const dco1 = new checkpoint.ManagementDataCenterObject("dco1", {
dataCenterName: "myAws1",
uri: "/Region - EU (Frankfurt)/VPCs/vpc-0e5983c1d08b53e75/VPCEndpoints",
});
import pulumi
import pulumi_checkpoint as checkpoint
dco1 = checkpoint.ManagementDataCenterObject("dco1",
data_center_name="myAws1",
uri="/Region - EU (Frankfurt)/VPCs/vpc-0e5983c1d08b53e75/VPCEndpoints")
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.NewManagementDataCenterObject(ctx, "dco1", &checkpoint.ManagementDataCenterObjectArgs{
DataCenterName: pulumi.String("myAws1"),
Uri: pulumi.String("/Region - EU (Frankfurt)/VPCs/vpc-0e5983c1d08b53e75/VPCEndpoints"),
})
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 dco1 = new Checkpoint.ManagementDataCenterObject("dco1", new()
{
DataCenterName = "myAws1",
Uri = "/Region - EU (Frankfurt)/VPCs/vpc-0e5983c1d08b53e75/VPCEndpoints",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementDataCenterObject;
import com.pulumi.checkpoint.ManagementDataCenterObjectArgs;
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 dco1 = new ManagementDataCenterObject("dco1", ManagementDataCenterObjectArgs.builder()
.dataCenterName("myAws1")
.uri("/Region - EU (Frankfurt)/VPCs/vpc-0e5983c1d08b53e75/VPCEndpoints")
.build());
}
}
resources:
dco1:
type: checkpoint:ManagementDataCenterObject
properties:
dataCenterName: myAws1
uri: /Region - EU (Frankfurt)/VPCs/vpc-0e5983c1d08b53e75/VPCEndpoints
Create ManagementDataCenterObject Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementDataCenterObject(name: string, args?: ManagementDataCenterObjectArgs, opts?: CustomResourceOptions);
@overload
def ManagementDataCenterObject(resource_name: str,
args: Optional[ManagementDataCenterObjectArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementDataCenterObject(resource_name: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
data_center_name: Optional[str] = None,
data_center_uid: Optional[str] = None,
groups: Optional[Sequence[str]] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_data_center_object_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
uid_in_data_center: Optional[str] = None,
uri: Optional[str] = None,
wait_for_object_sync: Optional[bool] = None)
func NewManagementDataCenterObject(ctx *Context, name string, args *ManagementDataCenterObjectArgs, opts ...ResourceOption) (*ManagementDataCenterObject, error)
public ManagementDataCenterObject(string name, ManagementDataCenterObjectArgs? args = null, CustomResourceOptions? opts = null)
public ManagementDataCenterObject(String name, ManagementDataCenterObjectArgs args)
public ManagementDataCenterObject(String name, ManagementDataCenterObjectArgs args, CustomResourceOptions options)
type: checkpoint:ManagementDataCenterObject
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 ManagementDataCenterObjectArgs
- 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 ManagementDataCenterObjectArgs
- 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 ManagementDataCenterObjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementDataCenterObjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementDataCenterObjectArgs
- 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 managementDataCenterObjectResource = new Checkpoint.ManagementDataCenterObject("managementDataCenterObjectResource", new()
{
Color = "string",
Comments = "string",
DataCenterName = "string",
DataCenterUid = "string",
Groups = new[]
{
"string",
},
IgnoreErrors = false,
IgnoreWarnings = false,
ManagementDataCenterObjectId = "string",
Name = "string",
Tags = new[]
{
"string",
},
UidInDataCenter = "string",
Uri = "string",
WaitForObjectSync = false,
});
example, err := checkpoint.NewManagementDataCenterObject(ctx, "managementDataCenterObjectResource", &checkpoint.ManagementDataCenterObjectArgs{
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
DataCenterName: pulumi.String("string"),
DataCenterUid: pulumi.String("string"),
Groups: pulumi.StringArray{
pulumi.String("string"),
},
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementDataCenterObjectId: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UidInDataCenter: pulumi.String("string"),
Uri: pulumi.String("string"),
WaitForObjectSync: pulumi.Bool(false),
})
var managementDataCenterObjectResource = new ManagementDataCenterObject("managementDataCenterObjectResource", ManagementDataCenterObjectArgs.builder()
.color("string")
.comments("string")
.dataCenterName("string")
.dataCenterUid("string")
.groups("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.managementDataCenterObjectId("string")
.name("string")
.tags("string")
.uidInDataCenter("string")
.uri("string")
.waitForObjectSync(false)
.build());
management_data_center_object_resource = checkpoint.ManagementDataCenterObject("managementDataCenterObjectResource",
color="string",
comments="string",
data_center_name="string",
data_center_uid="string",
groups=["string"],
ignore_errors=False,
ignore_warnings=False,
management_data_center_object_id="string",
name="string",
tags=["string"],
uid_in_data_center="string",
uri="string",
wait_for_object_sync=False)
const managementDataCenterObjectResource = new checkpoint.ManagementDataCenterObject("managementDataCenterObjectResource", {
color: "string",
comments: "string",
dataCenterName: "string",
dataCenterUid: "string",
groups: ["string"],
ignoreErrors: false,
ignoreWarnings: false,
managementDataCenterObjectId: "string",
name: "string",
tags: ["string"],
uidInDataCenter: "string",
uri: "string",
waitForObjectSync: false,
});
type: checkpoint:ManagementDataCenterObject
properties:
color: string
comments: string
dataCenterName: string
dataCenterUid: string
groups:
- string
ignoreErrors: false
ignoreWarnings: false
managementDataCenterObjectId: string
name: string
tags:
- string
uidInDataCenter: string
uri: string
waitForObjectSync: false
ManagementDataCenterObject 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 ManagementDataCenterObject resource accepts the following input properties:
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Center stringName - Name of the Data Center Server the object is in.
- Data
Center stringUid - Unique identifier of the Data Center Server the object is in.
- Groups List<string>
- Collection of group identifiers.
- 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
Data stringCenter Object Id - Name string
- Override default name on data-center.
- List<string>
- Collection of tag identifiers.
- Uid
In stringData Center - Unique identifier of the object in the Data Center.
- Uri string
- URI of the object in the Data Center Server.
- Wait
For boolObject Sync - When set to true, the provider will wait for object sync with the management server.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Center stringName - Name of the Data Center Server the object is in.
- Data
Center stringUid - Unique identifier of the Data Center Server the object is in.
- Groups []string
- Collection of group identifiers.
- 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
Data stringCenter Object Id - Name string
- Override default name on data-center.
- []string
- Collection of tag identifiers.
- Uid
In stringData Center - Unique identifier of the object in the Data Center.
- Uri string
- URI of the object in the Data Center Server.
- Wait
For boolObject Sync - When set to true, the provider will wait for object sync with the management server.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Center StringName - Name of the Data Center Server the object is in.
- data
Center StringUid - Unique identifier of the Data Center Server the object is in.
- groups List<String>
- Collection of group identifiers.
- 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
Data StringCenter Object Id - name String
- Override default name on data-center.
- List<String>
- Collection of tag identifiers.
- uid
In StringData Center - Unique identifier of the object in the Data Center.
- uri String
- URI of the object in the Data Center Server.
- wait
For BooleanObject Sync - When set to true, the provider will wait for object sync with the management server.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- data
Center stringName - Name of the Data Center Server the object is in.
- data
Center stringUid - Unique identifier of the Data Center Server the object is in.
- groups string[]
- Collection of group identifiers.
- 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
Data stringCenter Object Id - name string
- Override default name on data-center.
- string[]
- Collection of tag identifiers.
- uid
In stringData Center - Unique identifier of the object in the Data Center.
- uri string
- URI of the object in the Data Center Server.
- wait
For booleanObject Sync - When set to true, the provider will wait for object sync with the management server.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- data_
center_ strname - Name of the Data Center Server the object is in.
- data_
center_ struid - Unique identifier of the Data Center Server the object is in.
- groups Sequence[str]
- Collection of group identifiers.
- 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_
data_ strcenter_ object_ id - name str
- Override default name on data-center.
- Sequence[str]
- Collection of tag identifiers.
- uid_
in_ strdata_ center - Unique identifier of the object in the Data Center.
- uri str
- URI of the object in the Data Center Server.
- wait_
for_ boolobject_ sync - When set to true, the provider will wait for object sync with the management server.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Center StringName - Name of the Data Center Server the object is in.
- data
Center StringUid - Unique identifier of the Data Center Server the object is in.
- groups List<String>
- Collection of group identifiers.
- 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
Data StringCenter Object Id - name String
- Override default name on data-center.
- List<String>
- Collection of tag identifiers.
- uid
In StringData Center - Unique identifier of the object in the Data Center.
- uri String
- URI of the object in the Data Center Server.
- wait
For BooleanObject Sync - When set to true, the provider will wait for object sync with the management server.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementDataCenterObject resource produces the following output properties:
- Additional
Properties List<ManagementData Center Object Additional Property> - Additional properties on the object.
- Data
Centers List<ManagementData Center Object Data Center> - The Data Center the object is on.
- Deleted bool
- Indicates if the object is inaccessible or deleted on Data Center Server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name
In stringData Center - Object Name in Data Center
- Type
In stringData Center - Object type in Data Center.
- Updated
On Dictionary<string, string>Data Center - Last update time in the Data Center
- Additional
Properties []ManagementData Center Object Additional Property - Additional properties on the object.
- Data
Centers []ManagementData Center Object Data Center - The Data Center the object is on.
- Deleted bool
- Indicates if the object is inaccessible or deleted on Data Center Server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name
In stringData Center - Object Name in Data Center
- Type
In stringData Center - Object type in Data Center.
- Updated
On map[string]stringData Center - Last update time in the Data Center
- additional
Properties List<ManagementData Center Object Additional Property> - Additional properties on the object.
- data
Centers List<ManagementData Center Object Data Center> - The Data Center the object is on.
- deleted Boolean
- Indicates if the object is inaccessible or deleted on Data Center Server.
- id String
- The provider-assigned unique ID for this managed resource.
- name
In StringData Center - Object Name in Data Center
- type
In StringData Center - Object type in Data Center.
- updated
On Map<String,String>Data Center - Last update time in the Data Center
- additional
Properties ManagementData Center Object Additional Property[] - Additional properties on the object.
- data
Centers ManagementData Center Object Data Center[] - The Data Center the object is on.
- deleted boolean
- Indicates if the object is inaccessible or deleted on Data Center Server.
- id string
- The provider-assigned unique ID for this managed resource.
- name
In stringData Center - Object Name in Data Center
- type
In stringData Center - Object type in Data Center.
- updated
On {[key: string]: string}Data Center - Last update time in the Data Center
- additional_
properties Sequence[ManagementData Center Object Additional Property] - Additional properties on the object.
- data_
centers Sequence[ManagementData Center Object Data Center] - The Data Center the object is on.
- deleted bool
- Indicates if the object is inaccessible or deleted on Data Center Server.
- id str
- The provider-assigned unique ID for this managed resource.
- name_
in_ strdata_ center - Object Name in Data Center
- type_
in_ strdata_ center - Object type in Data Center.
- updated_
on_ Mapping[str, str]data_ center - Last update time in the Data Center
- additional
Properties List<Property Map> - Additional properties on the object.
- data
Centers List<Property Map> - The Data Center the object is on.
- deleted Boolean
- Indicates if the object is inaccessible or deleted on Data Center Server.
- id String
- The provider-assigned unique ID for this managed resource.
- name
In StringData Center - Object Name in Data Center
- type
In StringData Center - Object type in Data Center.
- updated
On Map<String>Data Center - Last update time in the Data Center
Look up Existing ManagementDataCenterObject Resource
Get an existing ManagementDataCenterObject 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?: ManagementDataCenterObjectState, opts?: CustomResourceOptions): ManagementDataCenterObject
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
additional_properties: Optional[Sequence[ManagementDataCenterObjectAdditionalPropertyArgs]] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
data_center_name: Optional[str] = None,
data_center_uid: Optional[str] = None,
data_centers: Optional[Sequence[ManagementDataCenterObjectDataCenterArgs]] = None,
deleted: Optional[bool] = None,
groups: Optional[Sequence[str]] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_data_center_object_id: Optional[str] = None,
name: Optional[str] = None,
name_in_data_center: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
type_in_data_center: Optional[str] = None,
uid_in_data_center: Optional[str] = None,
updated_on_data_center: Optional[Mapping[str, str]] = None,
uri: Optional[str] = None,
wait_for_object_sync: Optional[bool] = None) -> ManagementDataCenterObject
func GetManagementDataCenterObject(ctx *Context, name string, id IDInput, state *ManagementDataCenterObjectState, opts ...ResourceOption) (*ManagementDataCenterObject, error)
public static ManagementDataCenterObject Get(string name, Input<string> id, ManagementDataCenterObjectState? state, CustomResourceOptions? opts = null)
public static ManagementDataCenterObject get(String name, Output<String> id, ManagementDataCenterObjectState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementDataCenterObject 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.
- Additional
Properties List<ManagementData Center Object Additional Property> - Additional properties on the object.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Center stringName - Name of the Data Center Server the object is in.
- Data
Center stringUid - Unique identifier of the Data Center Server the object is in.
- Data
Centers List<ManagementData Center Object Data Center> - The Data Center the object is on.
- Deleted bool
- Indicates if the object is inaccessible or deleted on Data Center Server.
- Groups List<string>
- Collection of group identifiers.
- 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
Data stringCenter Object Id - Name string
- Override default name on data-center.
- Name
In stringData Center - Object Name in Data Center
- List<string>
- Collection of tag identifiers.
- Type
In stringData Center - Object type in Data Center.
- Uid
In stringData Center - Unique identifier of the object in the Data Center.
- Updated
On Dictionary<string, string>Data Center - Last update time in the Data Center
- Uri string
- URI of the object in the Data Center Server.
- Wait
For boolObject Sync - When set to true, the provider will wait for object sync with the management server.
- Additional
Properties []ManagementData Center Object Additional Property Args - Additional properties on the object.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Center stringName - Name of the Data Center Server the object is in.
- Data
Center stringUid - Unique identifier of the Data Center Server the object is in.
- Data
Centers []ManagementData Center Object Data Center Args - The Data Center the object is on.
- Deleted bool
- Indicates if the object is inaccessible or deleted on Data Center Server.
- Groups []string
- Collection of group identifiers.
- 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
Data stringCenter Object Id - Name string
- Override default name on data-center.
- Name
In stringData Center - Object Name in Data Center
- []string
- Collection of tag identifiers.
- Type
In stringData Center - Object type in Data Center.
- Uid
In stringData Center - Unique identifier of the object in the Data Center.
- Updated
On map[string]stringData Center - Last update time in the Data Center
- Uri string
- URI of the object in the Data Center Server.
- Wait
For boolObject Sync - When set to true, the provider will wait for object sync with the management server.
- additional
Properties List<ManagementData Center Object Additional Property> - Additional properties on the object.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Center StringName - Name of the Data Center Server the object is in.
- data
Center StringUid - Unique identifier of the Data Center Server the object is in.
- data
Centers List<ManagementData Center Object Data Center> - The Data Center the object is on.
- deleted Boolean
- Indicates if the object is inaccessible or deleted on Data Center Server.
- groups List<String>
- Collection of group identifiers.
- 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
Data StringCenter Object Id - name String
- Override default name on data-center.
- name
In StringData Center - Object Name in Data Center
- List<String>
- Collection of tag identifiers.
- type
In StringData Center - Object type in Data Center.
- uid
In StringData Center - Unique identifier of the object in the Data Center.
- updated
On Map<String,String>Data Center - Last update time in the Data Center
- uri String
- URI of the object in the Data Center Server.
- wait
For BooleanObject Sync - When set to true, the provider will wait for object sync with the management server.
- additional
Properties ManagementData Center Object Additional Property[] - Additional properties on the object.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- data
Center stringName - Name of the Data Center Server the object is in.
- data
Center stringUid - Unique identifier of the Data Center Server the object is in.
- data
Centers ManagementData Center Object Data Center[] - The Data Center the object is on.
- deleted boolean
- Indicates if the object is inaccessible or deleted on Data Center Server.
- groups string[]
- Collection of group identifiers.
- 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
Data stringCenter Object Id - name string
- Override default name on data-center.
- name
In stringData Center - Object Name in Data Center
- string[]
- Collection of tag identifiers.
- type
In stringData Center - Object type in Data Center.
- uid
In stringData Center - Unique identifier of the object in the Data Center.
- updated
On {[key: string]: string}Data Center - Last update time in the Data Center
- uri string
- URI of the object in the Data Center Server.
- wait
For booleanObject Sync - When set to true, the provider will wait for object sync with the management server.
- additional_
properties Sequence[ManagementData Center Object Additional Property Args] - Additional properties on the object.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- data_
center_ strname - Name of the Data Center Server the object is in.
- data_
center_ struid - Unique identifier of the Data Center Server the object is in.
- data_
centers Sequence[ManagementData Center Object Data Center Args] - The Data Center the object is on.
- deleted bool
- Indicates if the object is inaccessible or deleted on Data Center Server.
- groups Sequence[str]
- Collection of group identifiers.
- 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_
data_ strcenter_ object_ id - name str
- Override default name on data-center.
- name_
in_ strdata_ center - Object Name in Data Center
- Sequence[str]
- Collection of tag identifiers.
- type_
in_ strdata_ center - Object type in Data Center.
- uid_
in_ strdata_ center - Unique identifier of the object in the Data Center.
- updated_
on_ Mapping[str, str]data_ center - Last update time in the Data Center
- uri str
- URI of the object in the Data Center Server.
- wait_
for_ boolobject_ sync - When set to true, the provider will wait for object sync with the management server.
- additional
Properties List<Property Map> - Additional properties on the object.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Center StringName - Name of the Data Center Server the object is in.
- data
Center StringUid - Unique identifier of the Data Center Server the object is in.
- data
Centers List<Property Map> - The Data Center the object is on.
- deleted Boolean
- Indicates if the object is inaccessible or deleted on Data Center Server.
- groups List<String>
- Collection of group identifiers.
- 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
Data StringCenter Object Id - name String
- Override default name on data-center.
- name
In StringData Center - Object Name in Data Center
- List<String>
- Collection of tag identifiers.
- type
In StringData Center - Object type in Data Center.
- uid
In StringData Center - Unique identifier of the object in the Data Center.
- updated
On Map<String>Data Center - Last update time in the Data Center
- uri String
- URI of the object in the Data Center Server.
- wait
For BooleanObject Sync - When set to true, the provider will wait for object sync with the management server.
Supporting Types
ManagementDataCenterObjectAdditionalProperty, ManagementDataCenterObjectAdditionalPropertyArgs
ManagementDataCenterObjectDataCenter, ManagementDataCenterObjectDataCenterArgs
- Automatic
Refresh bool - Object unique identifier.
- Data
Center stringType - Data Center type.
- Name string
- Object name. Should be unique in the domain.
- Properties
List<Management
Data Center Object Data Center Property> - List of Data Center properties.
- Uid string
- Object unique identifier.
- Automatic
Refresh bool - Object unique identifier.
- Data
Center stringType - Data Center type.
- Name string
- Object name. Should be unique in the domain.
- Properties
[]Management
Data Center Object Data Center Property - List of Data Center properties.
- Uid string
- Object unique identifier.
- automatic
Refresh Boolean - Object unique identifier.
- data
Center StringType - Data Center type.
- name String
- Object name. Should be unique in the domain.
- properties
List<Management
Data Center Object Data Center Property> - List of Data Center properties.
- uid String
- Object unique identifier.
- automatic
Refresh boolean - Object unique identifier.
- data
Center stringType - Data Center type.
- name string
- Object name. Should be unique in the domain.
- properties
Management
Data Center Object Data Center Property[] - List of Data Center properties.
- uid string
- Object unique identifier.
- automatic_
refresh bool - Object unique identifier.
- data_
center_ strtype - Data Center type.
- name str
- Object name. Should be unique in the domain.
- properties
Sequence[Management
Data Center Object Data Center Property] - List of Data Center properties.
- uid str
- Object unique identifier.
- automatic
Refresh Boolean - Object unique identifier.
- data
Center StringType - Data Center type.
- name String
- Object name. Should be unique in the domain.
- properties List<Property Map>
- List of Data Center properties.
- uid String
- Object unique identifier.
ManagementDataCenterObjectDataCenterProperty, ManagementDataCenterObjectDataCenterPropertyArgs
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.