vra.CloudAccountNsxt
Explore with Pulumi AI
Creates a VMware vRealize Automation NSX-T cloud account resource.
Example Usage
S
The following example shows how to create an NSX-T cloud account resource.
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = new vra.CloudAccountNsxt("this", {
description: "foobar",
username: _var.username,
password: _var.password,
hostname: _var.hostname,
dcId: _var.vra_data_collector_id,
acceptSelfSignedCert: true,
tags: [{
key: "foo",
value: "bar",
}],
});
import pulumi
import pulumi_vra as vra
this = vra.CloudAccountNsxt("this",
description="foobar",
username=var["username"],
password=var["password"],
hostname=var["hostname"],
dc_id=var["vra_data_collector_id"],
accept_self_signed_cert=True,
tags=[{
"key": "foo",
"value": "bar",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/vra/vra"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vra.NewCloudAccountNsxt(ctx, "this", &vra.CloudAccountNsxtArgs{
Description: pulumi.String("foobar"),
Username: pulumi.Any(_var.Username),
Password: pulumi.Any(_var.Password),
Hostname: pulumi.Any(_var.Hostname),
DcId: pulumi.Any(_var.Vra_data_collector_id),
AcceptSelfSignedCert: pulumi.Bool(true),
Tags: vra.CloudAccountNsxtTagArray{
&vra.CloudAccountNsxtTagArgs{
Key: pulumi.String("foo"),
Value: pulumi.String("bar"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vra = Pulumi.Vra;
return await Deployment.RunAsync(() =>
{
var @this = new Vra.CloudAccountNsxt("this", new()
{
Description = "foobar",
Username = @var.Username,
Password = @var.Password,
Hostname = @var.Hostname,
DcId = @var.Vra_data_collector_id,
AcceptSelfSignedCert = true,
Tags = new[]
{
new Vra.Inputs.CloudAccountNsxtTagArgs
{
Key = "foo",
Value = "bar",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.CloudAccountNsxt;
import com.pulumi.vra.CloudAccountNsxtArgs;
import com.pulumi.vra.inputs.CloudAccountNsxtTagArgs;
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 this_ = new CloudAccountNsxt("this", CloudAccountNsxtArgs.builder()
.description("foobar")
.username(var_.username())
.password(var_.password())
.hostname(var_.hostname())
.dcId(var_.vra_data_collector_id())
.acceptSelfSignedCert(true)
.tags(CloudAccountNsxtTagArgs.builder()
.key("foo")
.value("bar")
.build())
.build());
}
}
resources:
this:
type: vra:CloudAccountNsxt
properties:
description: foobar
username: ${var.username}
password: ${var.password}
hostname: ${var.hostname}
dcId: ${var.vra_data_collector_id}
acceptSelfSignedCert: true
tags:
- key: foo
value: bar
Create CloudAccountNsxt Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudAccountNsxt(name: string, args: CloudAccountNsxtArgs, opts?: CustomResourceOptions);
@overload
def CloudAccountNsxt(resource_name: str,
args: CloudAccountNsxtArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudAccountNsxt(resource_name: str,
opts: Optional[ResourceOptions] = None,
hostname: Optional[str] = None,
password: Optional[str] = None,
username: Optional[str] = None,
accept_self_signed_cert: Optional[bool] = None,
cloud_account_nsxt_id: Optional[str] = None,
dc_id: Optional[str] = None,
description: Optional[str] = None,
manager_mode: Optional[bool] = None,
name: Optional[str] = None,
tags: Optional[Sequence[CloudAccountNsxtTagArgs]] = None)
func NewCloudAccountNsxt(ctx *Context, name string, args CloudAccountNsxtArgs, opts ...ResourceOption) (*CloudAccountNsxt, error)
public CloudAccountNsxt(string name, CloudAccountNsxtArgs args, CustomResourceOptions? opts = null)
public CloudAccountNsxt(String name, CloudAccountNsxtArgs args)
public CloudAccountNsxt(String name, CloudAccountNsxtArgs args, CustomResourceOptions options)
type: vra:CloudAccountNsxt
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 CloudAccountNsxtArgs
- 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 CloudAccountNsxtArgs
- 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 CloudAccountNsxtArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudAccountNsxtArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudAccountNsxtArgs
- 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 cloudAccountNsxtResource = new Vra.CloudAccountNsxt("cloudAccountNsxtResource", new()
{
Hostname = "string",
Password = "string",
Username = "string",
AcceptSelfSignedCert = false,
CloudAccountNsxtId = "string",
DcId = "string",
Description = "string",
ManagerMode = false,
Name = "string",
Tags = new[]
{
new Vra.Inputs.CloudAccountNsxtTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := vra.NewCloudAccountNsxt(ctx, "cloudAccountNsxtResource", &vra.CloudAccountNsxtArgs{
Hostname: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
AcceptSelfSignedCert: pulumi.Bool(false),
CloudAccountNsxtId: pulumi.String("string"),
DcId: pulumi.String("string"),
Description: pulumi.String("string"),
ManagerMode: pulumi.Bool(false),
Name: pulumi.String("string"),
Tags: vra.CloudAccountNsxtTagArray{
&vra.CloudAccountNsxtTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var cloudAccountNsxtResource = new CloudAccountNsxt("cloudAccountNsxtResource", CloudAccountNsxtArgs.builder()
.hostname("string")
.password("string")
.username("string")
.acceptSelfSignedCert(false)
.cloudAccountNsxtId("string")
.dcId("string")
.description("string")
.managerMode(false)
.name("string")
.tags(CloudAccountNsxtTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
cloud_account_nsxt_resource = vra.CloudAccountNsxt("cloudAccountNsxtResource",
hostname="string",
password="string",
username="string",
accept_self_signed_cert=False,
cloud_account_nsxt_id="string",
dc_id="string",
description="string",
manager_mode=False,
name="string",
tags=[{
"key": "string",
"value": "string",
}])
const cloudAccountNsxtResource = new vra.CloudAccountNsxt("cloudAccountNsxtResource", {
hostname: "string",
password: "string",
username: "string",
acceptSelfSignedCert: false,
cloudAccountNsxtId: "string",
dcId: "string",
description: "string",
managerMode: false,
name: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: vra:CloudAccountNsxt
properties:
acceptSelfSignedCert: false
cloudAccountNsxtId: string
dcId: string
description: string
hostname: string
managerMode: false
name: string
password: string
tags:
- key: string
value: string
username: string
CloudAccountNsxt 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 CloudAccountNsxt resource accepts the following input properties:
- Hostname string
- Host name for NSX-T cloud account.
- Password string
- Password used to authenticate to the cloud Account.
- Username string
- Username used to authenticate to the cloud account.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Cloud
Account stringNsxt Id - ID of NSX-T cloud account.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- Manager
Mode bool - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- Name string
- Name of NSX-T cloud account.
- List<Cloud
Account Nsxt Tag> - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- Hostname string
- Host name for NSX-T cloud account.
- Password string
- Password used to authenticate to the cloud Account.
- Username string
- Username used to authenticate to the cloud account.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Cloud
Account stringNsxt Id - ID of NSX-T cloud account.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- Manager
Mode bool - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- Name string
- Name of NSX-T cloud account.
- []Cloud
Account Nsxt Tag Args - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- hostname String
- Host name for NSX-T cloud account.
- password String
- Password used to authenticate to the cloud Account.
- username String
- Username used to authenticate to the cloud account.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- cloud
Account StringNsxt Id - ID of NSX-T cloud account.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- manager
Mode Boolean - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- name String
- Name of NSX-T cloud account.
- List<Cloud
Account Nsxt Tag> - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- hostname string
- Host name for NSX-T cloud account.
- password string
- Password used to authenticate to the cloud Account.
- username string
- Username used to authenticate to the cloud account.
- accept
Self booleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- cloud
Account stringNsxt Id - ID of NSX-T cloud account.
- dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- description string
- Human-friendly description.
- manager
Mode boolean - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- name string
- Name of NSX-T cloud account.
- Cloud
Account Nsxt Tag[] - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- hostname str
- Host name for NSX-T cloud account.
- password str
- Password used to authenticate to the cloud Account.
- username str
- Username used to authenticate to the cloud account.
- accept_
self_ boolsigned_ cert - Accept self-signed certificate when connecting to the cloud account.
- cloud_
account_ strnsxt_ id - ID of NSX-T cloud account.
- dc_
id str - Identifier of a data collector VM deployed in the on premise infrastructure.
- description str
- Human-friendly description.
- manager_
mode bool - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- name str
- Name of NSX-T cloud account.
- Sequence[Cloud
Account Nsxt Tag Args] - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- hostname String
- Host name for NSX-T cloud account.
- password String
- Password used to authenticate to the cloud Account.
- username String
- Username used to authenticate to the cloud account.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- cloud
Account StringNsxt Id - ID of NSX-T cloud account.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- manager
Mode Boolean - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- name String
- Name of NSX-T cloud account.
- List<Property Map>
- Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudAccountNsxt resource produces the following output properties:
- Associated
Cloud List<string>Account Ids - Cloud accounts associated with the cloud account.
- Created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
List<Cloud
Account Nsxt Link> - HATEOAS of entity.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Associated
Cloud []stringAccount Ids - Cloud accounts associated with the cloud account.
- Created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
[]Cloud
Account Nsxt Link - HATEOAS of entity.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associated
Cloud List<String>Account Ids - Cloud accounts associated with the cloud account.
- created
At String - Date when entity was created. Date and time format is ISO 8601 and UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- links
List<Cloud
Account Nsxt Link> - HATEOAS of entity.
- org
Id String - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associated
Cloud string[]Account Ids - Cloud accounts associated with the cloud account.
- created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- id string
- The provider-assigned unique ID for this managed resource.
- links
Cloud
Account Nsxt Link[] - HATEOAS of entity.
- org
Id string - ID of organization that entity belongs to.
- owner string
- Email of entity owner.
- updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associated_
cloud_ Sequence[str]account_ ids - Cloud accounts associated with the cloud account.
- created_
at str - Date when entity was created. Date and time format is ISO 8601 and UTC.
- id str
- The provider-assigned unique ID for this managed resource.
- links
Sequence[Cloud
Account Nsxt Link] - HATEOAS of entity.
- org_
id str - ID of organization that entity belongs to.
- owner str
- Email of entity owner.
- updated_
at str - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associated
Cloud List<String>Account Ids - Cloud accounts associated with the cloud account.
- created
At String - Date when entity was created. Date and time format is ISO 8601 and UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- links List<Property Map>
- HATEOAS of entity.
- org
Id String - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
Look up Existing CloudAccountNsxt Resource
Get an existing CloudAccountNsxt 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?: CloudAccountNsxtState, opts?: CustomResourceOptions): CloudAccountNsxt
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accept_self_signed_cert: Optional[bool] = None,
associated_cloud_account_ids: Optional[Sequence[str]] = None,
cloud_account_nsxt_id: Optional[str] = None,
created_at: Optional[str] = None,
dc_id: Optional[str] = None,
description: Optional[str] = None,
hostname: Optional[str] = None,
links: Optional[Sequence[CloudAccountNsxtLinkArgs]] = None,
manager_mode: Optional[bool] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
owner: Optional[str] = None,
password: Optional[str] = None,
tags: Optional[Sequence[CloudAccountNsxtTagArgs]] = None,
updated_at: Optional[str] = None,
username: Optional[str] = None) -> CloudAccountNsxt
func GetCloudAccountNsxt(ctx *Context, name string, id IDInput, state *CloudAccountNsxtState, opts ...ResourceOption) (*CloudAccountNsxt, error)
public static CloudAccountNsxt Get(string name, Input<string> id, CloudAccountNsxtState? state, CustomResourceOptions? opts = null)
public static CloudAccountNsxt get(String name, Output<String> id, CloudAccountNsxtState state, CustomResourceOptions options)
resources: _: type: vra:CloudAccountNsxt 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.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Associated
Cloud List<string>Account Ids - Cloud accounts associated with the cloud account.
- Cloud
Account stringNsxt Id - ID of NSX-T cloud account.
- Created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- Hostname string
- Host name for NSX-T cloud account.
- Links
List<Cloud
Account Nsxt Link> - HATEOAS of entity.
- Manager
Mode bool - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- Name string
- Name of NSX-T cloud account.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Password string
- Password used to authenticate to the cloud Account.
- List<Cloud
Account Nsxt Tag> - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Username string
- Username used to authenticate to the cloud account.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Associated
Cloud []stringAccount Ids - Cloud accounts associated with the cloud account.
- Cloud
Account stringNsxt Id - ID of NSX-T cloud account.
- Created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- Hostname string
- Host name for NSX-T cloud account.
- Links
[]Cloud
Account Nsxt Link Args - HATEOAS of entity.
- Manager
Mode bool - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- Name string
- Name of NSX-T cloud account.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Password string
- Password used to authenticate to the cloud Account.
- []Cloud
Account Nsxt Tag Args - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Username string
- Username used to authenticate to the cloud account.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- associated
Cloud List<String>Account Ids - Cloud accounts associated with the cloud account.
- cloud
Account StringNsxt Id - ID of NSX-T cloud account.
- created
At String - Date when entity was created. Date and time format is ISO 8601 and UTC.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- hostname String
- Host name for NSX-T cloud account.
- links
List<Cloud
Account Nsxt Link> - HATEOAS of entity.
- manager
Mode Boolean - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- name String
- Name of NSX-T cloud account.
- org
Id String - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- password String
- Password used to authenticate to the cloud Account.
- List<Cloud
Account Nsxt Tag> - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- username String
- Username used to authenticate to the cloud account.
- accept
Self booleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- associated
Cloud string[]Account Ids - Cloud accounts associated with the cloud account.
- cloud
Account stringNsxt Id - ID of NSX-T cloud account.
- created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- description string
- Human-friendly description.
- hostname string
- Host name for NSX-T cloud account.
- links
Cloud
Account Nsxt Link[] - HATEOAS of entity.
- manager
Mode boolean - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- name string
- Name of NSX-T cloud account.
- org
Id string - ID of organization that entity belongs to.
- owner string
- Email of entity owner.
- password string
- Password used to authenticate to the cloud Account.
- Cloud
Account Nsxt Tag[] - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- username string
- Username used to authenticate to the cloud account.
- accept_
self_ boolsigned_ cert - Accept self-signed certificate when connecting to the cloud account.
- associated_
cloud_ Sequence[str]account_ ids - Cloud accounts associated with the cloud account.
- cloud_
account_ strnsxt_ id - ID of NSX-T cloud account.
- created_
at str - Date when entity was created. Date and time format is ISO 8601 and UTC.
- dc_
id str - Identifier of a data collector VM deployed in the on premise infrastructure.
- description str
- Human-friendly description.
- hostname str
- Host name for NSX-T cloud account.
- links
Sequence[Cloud
Account Nsxt Link Args] - HATEOAS of entity.
- manager_
mode bool - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- name str
- Name of NSX-T cloud account.
- org_
id str - ID of organization that entity belongs to.
- owner str
- Email of entity owner.
- password str
- Password used to authenticate to the cloud Account.
- Sequence[Cloud
Account Nsxt Tag Args] - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated_
at str - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- username str
- Username used to authenticate to the cloud account.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- associated
Cloud List<String>Account Ids - Cloud accounts associated with the cloud account.
- cloud
Account StringNsxt Id - ID of NSX-T cloud account.
- created
At String - Date when entity was created. Date and time format is ISO 8601 and UTC.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- hostname String
- Host name for NSX-T cloud account.
- links List<Property Map>
- HATEOAS of entity.
- manager
Mode Boolean - Create NSX-T cloud account in Manager (legacy) mode. When set to true, NSX-T cloud account is created in Manager mode. Mode cannot be changed after cloud account is created. Default value is false.
- name String
- Name of NSX-T cloud account.
- org
Id String - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- password String
- Password used to authenticate to the cloud Account.
- List<Property Map>
- Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- username String
- Username used to authenticate to the cloud account.
Supporting Types
CloudAccountNsxtLink, CloudAccountNsxtLinkArgs
CloudAccountNsxtTag, CloudAccountNsxtTagArgs
Import
To import the NSX-T cloud account, use the ID as in the following example:
$ pulumi import vra:index/cloudAccountNsxt:CloudAccountNsxt new_gcp 05956583-6488-4e7d-84c9-92a7b7219a15`
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the
vra
Terraform Provider.