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.
- AcceptSelf boolSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- CloudAccount stringNsxt Id 
- ID of NSX-T cloud account.
- DcId string
- Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- ManagerMode 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<CloudAccount 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.
- AcceptSelf boolSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- CloudAccount stringNsxt Id 
- ID of NSX-T cloud account.
- DcId string
- Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- ManagerMode 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.
- 
[]CloudAccount 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.
- acceptSelf BooleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- cloudAccount StringNsxt Id 
- ID of NSX-T cloud account.
- dcId String
- Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- managerMode 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<CloudAccount 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.
- acceptSelf booleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- cloudAccount stringNsxt Id 
- ID of NSX-T cloud account.
- dcId string
- Identifier of a data collector VM deployed in the on premise infrastructure.
- description string
- Human-friendly description.
- managerMode 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.
- 
CloudAccount 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[CloudAccount 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.
- acceptSelf BooleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- cloudAccount StringNsxt Id 
- ID of NSX-T cloud account.
- dcId String
- Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- managerMode 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:
- AssociatedCloud List<string>Account Ids 
- Cloud accounts associated with the cloud account.
- CreatedAt 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<CloudAccount Nsxt Link> 
- HATEOAS of entity.
- OrgId string
- ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- UpdatedAt string
- Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- AssociatedCloud []stringAccount Ids 
- Cloud accounts associated with the cloud account.
- CreatedAt 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
[]CloudAccount Nsxt Link 
- HATEOAS of entity.
- OrgId string
- ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- UpdatedAt string
- Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associatedCloud List<String>Account Ids 
- Cloud accounts associated with the cloud account.
- createdAt 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<CloudAccount Nsxt Link> 
- HATEOAS of entity.
- orgId String
- ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- updatedAt String
- Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associatedCloud string[]Account Ids 
- Cloud accounts associated with the cloud account.
- createdAt 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
CloudAccount Nsxt Link[] 
- HATEOAS of entity.
- orgId string
- ID of organization that entity belongs to.
- owner string
- Email of entity owner.
- updatedAt 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[CloudAccount 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.
- associatedCloud List<String>Account Ids 
- Cloud accounts associated with the cloud account.
- createdAt 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.
- orgId String
- ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- updatedAt 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) -> CloudAccountNsxtfunc 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.
- AcceptSelf boolSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- AssociatedCloud List<string>Account Ids 
- Cloud accounts associated with the cloud account.
- CloudAccount stringNsxt Id 
- ID of NSX-T cloud account.
- CreatedAt string
- Date when entity was created. Date and time format is ISO 8601 and UTC.
- DcId 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<CloudAccount Nsxt Link> 
- HATEOAS of entity.
- ManagerMode 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.
- OrgId 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<CloudAccount Nsxt Tag> 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- UpdatedAt 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.
- AcceptSelf boolSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- AssociatedCloud []stringAccount Ids 
- Cloud accounts associated with the cloud account.
- CloudAccount stringNsxt Id 
- ID of NSX-T cloud account.
- CreatedAt string
- Date when entity was created. Date and time format is ISO 8601 and UTC.
- DcId 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
[]CloudAccount Nsxt Link Args 
- HATEOAS of entity.
- ManagerMode 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.
- OrgId string
- ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Password string
- Password used to authenticate to the cloud Account.
- 
[]CloudAccount Nsxt Tag Args 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- UpdatedAt 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.
- acceptSelf BooleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- associatedCloud List<String>Account Ids 
- Cloud accounts associated with the cloud account.
- cloudAccount StringNsxt Id 
- ID of NSX-T cloud account.
- createdAt String
- Date when entity was created. Date and time format is ISO 8601 and UTC.
- dcId 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<CloudAccount Nsxt Link> 
- HATEOAS of entity.
- managerMode 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.
- orgId 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<CloudAccount Nsxt Tag> 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- updatedAt 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.
- acceptSelf booleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- associatedCloud string[]Account Ids 
- Cloud accounts associated with the cloud account.
- cloudAccount stringNsxt Id 
- ID of NSX-T cloud account.
- createdAt string
- Date when entity was created. Date and time format is ISO 8601 and UTC.
- dcId 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
CloudAccount Nsxt Link[] 
- HATEOAS of entity.
- managerMode 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.
- orgId string
- ID of organization that entity belongs to.
- owner string
- Email of entity owner.
- password string
- Password used to authenticate to the cloud Account.
- 
CloudAccount Nsxt Tag[] 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- updatedAt 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[CloudAccount 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[CloudAccount 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.
- acceptSelf BooleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- associatedCloud List<String>Account Ids 
- Cloud accounts associated with the cloud account.
- cloudAccount StringNsxt Id 
- ID of NSX-T cloud account.
- createdAt String
- Date when entity was created. Date and time format is ISO 8601 and UTC.
- dcId 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.
- managerMode 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.
- orgId 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" } ]
- updatedAt 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 vraTerraform Provider.