1. Packages
  2. Vra Provider
  3. API Docs
  4. CloudAccountNsxv
vra 0.12.0 published on Monday, Apr 14, 2025 by vmware

vra.CloudAccountNsxv

Explore with Pulumi AI

vra logo
vra 0.12.0 published on Monday, Apr 14, 2025 by vmware

    Creates a VMware vRealize Automation NSX-V cloud account resource.

    Example Usage

    S

    The following example shows how to create an NSX-V cloud account resource.

    import * as pulumi from "@pulumi/pulumi";
    import * as vra from "@pulumi/vra";
    
    const _this = new vra.CloudAccountNsxv("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.CloudAccountNsxv("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.NewCloudAccountNsxv(ctx, "this", &vra.CloudAccountNsxvArgs{
    			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.CloudAccountNsxvTagArray{
    				&vra.CloudAccountNsxvTagArgs{
    					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.CloudAccountNsxv("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.CloudAccountNsxvTagArgs
                {
                    Key = "foo",
                    Value = "bar",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vra.CloudAccountNsxv;
    import com.pulumi.vra.CloudAccountNsxvArgs;
    import com.pulumi.vra.inputs.CloudAccountNsxvTagArgs;
    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 CloudAccountNsxv("this", CloudAccountNsxvArgs.builder()
                .description("foobar")
                .username(var_.username())
                .password(var_.password())
                .hostname(var_.hostname())
                .dcId(var_.vra_data_collector_id())
                .acceptSelfSignedCert(true)
                .tags(CloudAccountNsxvTagArgs.builder()
                    .key("foo")
                    .value("bar")
                    .build())
                .build());
    
        }
    }
    
    resources:
      this:
        type: vra:CloudAccountNsxv
        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 CloudAccountNsxv Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CloudAccountNsxv(name: string, args: CloudAccountNsxvArgs, opts?: CustomResourceOptions);
    @overload
    def CloudAccountNsxv(resource_name: str,
                         args: CloudAccountNsxvArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudAccountNsxv(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_nsxv_id: Optional[str] = None,
                         dc_id: Optional[str] = None,
                         description: Optional[str] = None,
                         name: Optional[str] = None,
                         tags: Optional[Sequence[CloudAccountNsxvTagArgs]] = None)
    func NewCloudAccountNsxv(ctx *Context, name string, args CloudAccountNsxvArgs, opts ...ResourceOption) (*CloudAccountNsxv, error)
    public CloudAccountNsxv(string name, CloudAccountNsxvArgs args, CustomResourceOptions? opts = null)
    public CloudAccountNsxv(String name, CloudAccountNsxvArgs args)
    public CloudAccountNsxv(String name, CloudAccountNsxvArgs args, CustomResourceOptions options)
    
    type: vra:CloudAccountNsxv
    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 CloudAccountNsxvArgs
    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 CloudAccountNsxvArgs
    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 CloudAccountNsxvArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudAccountNsxvArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudAccountNsxvArgs
    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 cloudAccountNsxvResource = new Vra.CloudAccountNsxv("cloudAccountNsxvResource", new()
    {
        Hostname = "string",
        Password = "string",
        Username = "string",
        AcceptSelfSignedCert = false,
        CloudAccountNsxvId = "string",
        DcId = "string",
        Description = "string",
        Name = "string",
        Tags = new[]
        {
            new Vra.Inputs.CloudAccountNsxvTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := vra.NewCloudAccountNsxv(ctx, "cloudAccountNsxvResource", &vra.CloudAccountNsxvArgs{
    	Hostname:             pulumi.String("string"),
    	Password:             pulumi.String("string"),
    	Username:             pulumi.String("string"),
    	AcceptSelfSignedCert: pulumi.Bool(false),
    	CloudAccountNsxvId:   pulumi.String("string"),
    	DcId:                 pulumi.String("string"),
    	Description:          pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	Tags: vra.CloudAccountNsxvTagArray{
    		&vra.CloudAccountNsxvTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    })
    
    var cloudAccountNsxvResource = new CloudAccountNsxv("cloudAccountNsxvResource", CloudAccountNsxvArgs.builder()
        .hostname("string")
        .password("string")
        .username("string")
        .acceptSelfSignedCert(false)
        .cloudAccountNsxvId("string")
        .dcId("string")
        .description("string")
        .name("string")
        .tags(CloudAccountNsxvTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    cloud_account_nsxv_resource = vra.CloudAccountNsxv("cloudAccountNsxvResource",
        hostname="string",
        password="string",
        username="string",
        accept_self_signed_cert=False,
        cloud_account_nsxv_id="string",
        dc_id="string",
        description="string",
        name="string",
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const cloudAccountNsxvResource = new vra.CloudAccountNsxv("cloudAccountNsxvResource", {
        hostname: "string",
        password: "string",
        username: "string",
        acceptSelfSignedCert: false,
        cloudAccountNsxvId: "string",
        dcId: "string",
        description: "string",
        name: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: vra:CloudAccountNsxv
    properties:
        acceptSelfSignedCert: false
        cloudAccountNsxvId: string
        dcId: string
        description: string
        hostname: string
        name: string
        password: string
        tags:
            - key: string
              value: string
        username: string
    

    CloudAccountNsxv 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 CloudAccountNsxv resource accepts the following input properties:

    Hostname string
    Host name for NSX-V cloud account.
    Password string
    Password used to authenticate to the cloud account.
    Username string
    Username used to authenticate with the cloud account.
    AcceptSelfSignedCert bool
    Accept self-signed certificate when connecting to the cloud account.
    CloudAccountNsxvId string
    ID of NSX-V cloud account.
    DcId string
    Identifier of a data collector VM deployed in the on premise infrastructure.
    Description string
    Human-friendly description.
    Name string
    Name of NSX-V cloud account.
    Tags List<CloudAccountNsxvTag>
    Set of tag keys and values to apply to the cloud account.
    Example: [ { "key" : "vmware", "value": "provider" } ]
    Hostname string
    Host name for NSX-V cloud account.
    Password string
    Password used to authenticate to the cloud account.
    Username string
    Username used to authenticate with the cloud account.
    AcceptSelfSignedCert bool
    Accept self-signed certificate when connecting to the cloud account.
    CloudAccountNsxvId string
    ID of NSX-V cloud account.
    DcId string
    Identifier of a data collector VM deployed in the on premise infrastructure.
    Description string
    Human-friendly description.
    Name string
    Name of NSX-V cloud account.
    Tags []CloudAccountNsxvTagArgs
    Set of tag keys and values to apply to the cloud account.
    Example: [ { "key" : "vmware", "value": "provider" } ]
    hostname String
    Host name for NSX-V cloud account.
    password String
    Password used to authenticate to the cloud account.
    username String
    Username used to authenticate with the cloud account.
    acceptSelfSignedCert Boolean
    Accept self-signed certificate when connecting to the cloud account.
    cloudAccountNsxvId String
    ID of NSX-V cloud account.
    dcId String
    Identifier of a data collector VM deployed in the on premise infrastructure.
    description String
    Human-friendly description.
    name String
    Name of NSX-V cloud account.
    tags List<CloudAccountNsxvTag>
    Set of tag keys and values to apply to the cloud account.
    Example: [ { "key" : "vmware", "value": "provider" } ]
    hostname string
    Host name for NSX-V cloud account.
    password string
    Password used to authenticate to the cloud account.
    username string
    Username used to authenticate with the cloud account.
    acceptSelfSignedCert boolean
    Accept self-signed certificate when connecting to the cloud account.
    cloudAccountNsxvId string
    ID of NSX-V cloud account.
    dcId string
    Identifier of a data collector VM deployed in the on premise infrastructure.
    description string
    Human-friendly description.
    name string
    Name of NSX-V cloud account.
    tags CloudAccountNsxvTag[]
    Set of tag keys and values to apply to the cloud account.
    Example: [ { "key" : "vmware", "value": "provider" } ]
    hostname str
    Host name for NSX-V cloud account.
    password str
    Password used to authenticate to the cloud account.
    username str
    Username used to authenticate with the cloud account.
    accept_self_signed_cert bool
    Accept self-signed certificate when connecting to the cloud account.
    cloud_account_nsxv_id str
    ID of NSX-V cloud account.
    dc_id str
    Identifier of a data collector VM deployed in the on premise infrastructure.
    description str
    Human-friendly description.
    name str
    Name of NSX-V cloud account.
    tags Sequence[CloudAccountNsxvTagArgs]
    Set of tag keys and values to apply to the cloud account.
    Example: [ { "key" : "vmware", "value": "provider" } ]
    hostname String
    Host name for NSX-V cloud account.
    password String
    Password used to authenticate to the cloud account.
    username String
    Username used to authenticate with the cloud account.
    acceptSelfSignedCert Boolean
    Accept self-signed certificate when connecting to the cloud account.
    cloudAccountNsxvId String
    ID of NSX-V cloud account.
    dcId String
    Identifier of a data collector VM deployed in the on premise infrastructure.
    description String
    Human-friendly description.
    name String
    Name of NSX-V cloud account.
    tags 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 CloudAccountNsxv resource produces the following output properties:

    AssociatedCloudAccountIds List<string>
    Cloud accounts associated to 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<CloudAccountNsxvLink>
    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.
    AssociatedCloudAccountIds []string
    Cloud accounts associated to 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 []CloudAccountNsxvLink
    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.
    associatedCloudAccountIds List<String>
    Cloud accounts associated to 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<CloudAccountNsxvLink>
    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.
    associatedCloudAccountIds string[]
    Cloud accounts associated to 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 CloudAccountNsxvLink[]
    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_account_ids Sequence[str]
    Cloud accounts associated to 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[CloudAccountNsxvLink]
    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.
    associatedCloudAccountIds List<String>
    Cloud accounts associated to 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 CloudAccountNsxv Resource

    Get an existing CloudAccountNsxv 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?: CloudAccountNsxvState, opts?: CustomResourceOptions): CloudAccountNsxv
    @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_nsxv_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[CloudAccountNsxvLinkArgs]] = None,
            name: Optional[str] = None,
            org_id: Optional[str] = None,
            owner: Optional[str] = None,
            password: Optional[str] = None,
            tags: Optional[Sequence[CloudAccountNsxvTagArgs]] = None,
            updated_at: Optional[str] = None,
            username: Optional[str] = None) -> CloudAccountNsxv
    func GetCloudAccountNsxv(ctx *Context, name string, id IDInput, state *CloudAccountNsxvState, opts ...ResourceOption) (*CloudAccountNsxv, error)
    public static CloudAccountNsxv Get(string name, Input<string> id, CloudAccountNsxvState? state, CustomResourceOptions? opts = null)
    public static CloudAccountNsxv get(String name, Output<String> id, CloudAccountNsxvState state, CustomResourceOptions options)
    resources:  _:    type: vra:CloudAccountNsxv    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.
    The following state arguments are supported:
    AcceptSelfSignedCert bool
    Accept self-signed certificate when connecting to the cloud account.
    AssociatedCloudAccountIds List<string>
    Cloud accounts associated to the cloud account.
    CloudAccountNsxvId string
    ID of NSX-V 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-V cloud account.
    Links List<CloudAccountNsxvLink>
    HATEOAS of entity.
    Name string
    Name of NSX-V 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.
    Tags List<CloudAccountNsxvTag>
    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 with the cloud account.
    AcceptSelfSignedCert bool
    Accept self-signed certificate when connecting to the cloud account.
    AssociatedCloudAccountIds []string
    Cloud accounts associated to the cloud account.
    CloudAccountNsxvId string
    ID of NSX-V 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-V cloud account.
    Links []CloudAccountNsxvLinkArgs
    HATEOAS of entity.
    Name string
    Name of NSX-V 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.
    Tags []CloudAccountNsxvTagArgs
    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 with the cloud account.
    acceptSelfSignedCert Boolean
    Accept self-signed certificate when connecting to the cloud account.
    associatedCloudAccountIds List<String>
    Cloud accounts associated to the cloud account.
    cloudAccountNsxvId String
    ID of NSX-V 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-V cloud account.
    links List<CloudAccountNsxvLink>
    HATEOAS of entity.
    name String
    Name of NSX-V 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.
    tags List<CloudAccountNsxvTag>
    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 with the cloud account.
    acceptSelfSignedCert boolean
    Accept self-signed certificate when connecting to the cloud account.
    associatedCloudAccountIds string[]
    Cloud accounts associated to the cloud account.
    cloudAccountNsxvId string
    ID of NSX-V 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-V cloud account.
    links CloudAccountNsxvLink[]
    HATEOAS of entity.
    name string
    Name of NSX-V 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.
    tags CloudAccountNsxvTag[]
    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 with the cloud account.
    accept_self_signed_cert bool
    Accept self-signed certificate when connecting to the cloud account.
    associated_cloud_account_ids Sequence[str]
    Cloud accounts associated to the cloud account.
    cloud_account_nsxv_id str
    ID of NSX-V 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-V cloud account.
    links Sequence[CloudAccountNsxvLinkArgs]
    HATEOAS of entity.
    name str
    Name of NSX-V 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.
    tags Sequence[CloudAccountNsxvTagArgs]
    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 with the cloud account.
    acceptSelfSignedCert Boolean
    Accept self-signed certificate when connecting to the cloud account.
    associatedCloudAccountIds List<String>
    Cloud accounts associated to the cloud account.
    cloudAccountNsxvId String
    ID of NSX-V 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-V cloud account.
    links List<Property Map>
    HATEOAS of entity.
    name String
    Name of NSX-V 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.
    tags 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 with the cloud account.

    Supporting Types

    Href string
    Hrefs List<string>
    Rel string
    Href string
    Hrefs []string
    Rel string
    href String
    hrefs List<String>
    rel String
    href string
    hrefs string[]
    rel string
    href str
    hrefs Sequence[str]
    rel str
    href String
    hrefs List<String>
    rel String

    CloudAccountNsxvTag, CloudAccountNsxvTagArgs

    Key string
    Value string
    Key string
    Value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    Import

    To import the NSX-V cloud account, use the ID as in the following example:

    $ pulumi import vra:index/cloudAccountNsxv:CloudAccountNsxv 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.
    vra logo
    vra 0.12.0 published on Monday, Apr 14, 2025 by vmware