vra.CloudAccountVmc
Explore with Pulumi AI
Creates a VMware vRealize Automation VMC cloud account resource.
Example Usage
S
Create VMC cloud account:
The following example shows how to create a VMC cloud account resource.
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = new vra.CloudAccountVmc("this", {
    description: "tf test vmc cloud account",
    apiToken: _var.api_token,
    sddcName: _var.sddc_name,
    vcenterHostname: _var.vcenter_hostname,
    vcenterPassword: _var.vcenter_password,
    vcenterUsername: _var.vcenter_username,
    nsxHostname: _var.nsx_hostname,
    dcId: _var.data_collector_id,
    regions: _var.regions,
    acceptSelfSignedCert: true,
    tags: [{
        key: "foo",
        value: "bar",
    }],
});
import pulumi
import pulumi_vra as vra
this = vra.CloudAccountVmc("this",
    description="tf test vmc cloud account",
    api_token=var["api_token"],
    sddc_name=var["sddc_name"],
    vcenter_hostname=var["vcenter_hostname"],
    vcenter_password=var["vcenter_password"],
    vcenter_username=var["vcenter_username"],
    nsx_hostname=var["nsx_hostname"],
    dc_id=var["data_collector_id"],
    regions=var["regions"],
    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.NewCloudAccountVmc(ctx, "this", &vra.CloudAccountVmcArgs{
			Description:          pulumi.String("tf test vmc cloud account"),
			ApiToken:             pulumi.Any(_var.Api_token),
			SddcName:             pulumi.Any(_var.Sddc_name),
			VcenterHostname:      pulumi.Any(_var.Vcenter_hostname),
			VcenterPassword:      pulumi.Any(_var.Vcenter_password),
			VcenterUsername:      pulumi.Any(_var.Vcenter_username),
			NsxHostname:          pulumi.Any(_var.Nsx_hostname),
			DcId:                 pulumi.Any(_var.Data_collector_id),
			Regions:              pulumi.Any(_var.Regions),
			AcceptSelfSignedCert: pulumi.Bool(true),
			Tags: vra.CloudAccountVmcTagArray{
				&vra.CloudAccountVmcTagArgs{
					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.CloudAccountVmc("this", new()
    {
        Description = "tf test vmc cloud account",
        ApiToken = @var.Api_token,
        SddcName = @var.Sddc_name,
        VcenterHostname = @var.Vcenter_hostname,
        VcenterPassword = @var.Vcenter_password,
        VcenterUsername = @var.Vcenter_username,
        NsxHostname = @var.Nsx_hostname,
        DcId = @var.Data_collector_id,
        Regions = @var.Regions,
        AcceptSelfSignedCert = true,
        Tags = new[]
        {
            new Vra.Inputs.CloudAccountVmcTagArgs
            {
                Key = "foo",
                Value = "bar",
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.CloudAccountVmc;
import com.pulumi.vra.CloudAccountVmcArgs;
import com.pulumi.vra.inputs.CloudAccountVmcTagArgs;
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 CloudAccountVmc("this", CloudAccountVmcArgs.builder()
            .description("tf test vmc cloud account")
            .apiToken(var_.api_token())
            .sddcName(var_.sddc_name())
            .vcenterHostname(var_.vcenter_hostname())
            .vcenterPassword(var_.vcenter_password())
            .vcenterUsername(var_.vcenter_username())
            .nsxHostname(var_.nsx_hostname())
            .dcId(var_.data_collector_id())
            .regions(var_.regions())
            .acceptSelfSignedCert(true)
            .tags(CloudAccountVmcTagArgs.builder()
                .key("foo")
                .value("bar")
                .build())
            .build());
    }
}
resources:
  this:
    type: vra:CloudAccountVmc
    properties:
      description: tf test vmc cloud account
      apiToken: ${var.api_token}
      sddcName: ${var.sddc_name}
      vcenterHostname: ${var.vcenter_hostname}
      vcenterPassword: ${var.vcenter_password}
      vcenterUsername: ${var.vcenter_username}
      nsxHostname: ${var.nsx_hostname}
      dcId: ${var.data_collector_id}
      # Required for vRA Cloud, Optional for vRA on-prem
      regions: ${var.regions}
      acceptSelfSignedCert: true
      tags:
        - key: foo
          value: bar
Create CloudAccountVmc Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudAccountVmc(name: string, args: CloudAccountVmcArgs, opts?: CustomResourceOptions);@overload
def CloudAccountVmc(resource_name: str,
                    args: CloudAccountVmcArgs,
                    opts: Optional[ResourceOptions] = None)
@overload
def CloudAccountVmc(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    regions: Optional[Sequence[str]] = None,
                    api_token: Optional[str] = None,
                    vcenter_username: Optional[str] = None,
                    vcenter_password: Optional[str] = None,
                    vcenter_hostname: Optional[str] = None,
                    sddc_name: Optional[str] = None,
                    nsx_hostname: Optional[str] = None,
                    dc_id: Optional[str] = None,
                    name: Optional[str] = None,
                    tags: Optional[Sequence[CloudAccountVmcTagArgs]] = None,
                    description: Optional[str] = None,
                    accept_self_signed_cert: Optional[bool] = None,
                    cloud_account_vmc_id: Optional[str] = None)func NewCloudAccountVmc(ctx *Context, name string, args CloudAccountVmcArgs, opts ...ResourceOption) (*CloudAccountVmc, error)public CloudAccountVmc(string name, CloudAccountVmcArgs args, CustomResourceOptions? opts = null)
public CloudAccountVmc(String name, CloudAccountVmcArgs args)
public CloudAccountVmc(String name, CloudAccountVmcArgs args, CustomResourceOptions options)
type: vra:CloudAccountVmc
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 CloudAccountVmcArgs
- 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 CloudAccountVmcArgs
- 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 CloudAccountVmcArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudAccountVmcArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudAccountVmcArgs
- 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 cloudAccountVmcResource = new Vra.CloudAccountVmc("cloudAccountVmcResource", new()
{
    Regions = new[]
    {
        "string",
    },
    ApiToken = "string",
    VcenterUsername = "string",
    VcenterPassword = "string",
    VcenterHostname = "string",
    SddcName = "string",
    NsxHostname = "string",
    DcId = "string",
    Name = "string",
    Tags = new[]
    {
        new Vra.Inputs.CloudAccountVmcTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
    Description = "string",
    AcceptSelfSignedCert = false,
    CloudAccountVmcId = "string",
});
example, err := vra.NewCloudAccountVmc(ctx, "cloudAccountVmcResource", &vra.CloudAccountVmcArgs{
	Regions: pulumi.StringArray{
		pulumi.String("string"),
	},
	ApiToken:        pulumi.String("string"),
	VcenterUsername: pulumi.String("string"),
	VcenterPassword: pulumi.String("string"),
	VcenterHostname: pulumi.String("string"),
	SddcName:        pulumi.String("string"),
	NsxHostname:     pulumi.String("string"),
	DcId:            pulumi.String("string"),
	Name:            pulumi.String("string"),
	Tags: vra.CloudAccountVmcTagArray{
		&vra.CloudAccountVmcTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
	Description:          pulumi.String("string"),
	AcceptSelfSignedCert: pulumi.Bool(false),
	CloudAccountVmcId:    pulumi.String("string"),
})
var cloudAccountVmcResource = new CloudAccountVmc("cloudAccountVmcResource", CloudAccountVmcArgs.builder()
    .regions("string")
    .apiToken("string")
    .vcenterUsername("string")
    .vcenterPassword("string")
    .vcenterHostname("string")
    .sddcName("string")
    .nsxHostname("string")
    .dcId("string")
    .name("string")
    .tags(CloudAccountVmcTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .description("string")
    .acceptSelfSignedCert(false)
    .cloudAccountVmcId("string")
    .build());
cloud_account_vmc_resource = vra.CloudAccountVmc("cloudAccountVmcResource",
    regions=["string"],
    api_token="string",
    vcenter_username="string",
    vcenter_password="string",
    vcenter_hostname="string",
    sddc_name="string",
    nsx_hostname="string",
    dc_id="string",
    name="string",
    tags=[{
        "key": "string",
        "value": "string",
    }],
    description="string",
    accept_self_signed_cert=False,
    cloud_account_vmc_id="string")
const cloudAccountVmcResource = new vra.CloudAccountVmc("cloudAccountVmcResource", {
    regions: ["string"],
    apiToken: "string",
    vcenterUsername: "string",
    vcenterPassword: "string",
    vcenterHostname: "string",
    sddcName: "string",
    nsxHostname: "string",
    dcId: "string",
    name: "string",
    tags: [{
        key: "string",
        value: "string",
    }],
    description: "string",
    acceptSelfSignedCert: false,
    cloudAccountVmcId: "string",
});
type: vra:CloudAccountVmc
properties:
    acceptSelfSignedCert: false
    apiToken: string
    cloudAccountVmcId: string
    dcId: string
    description: string
    name: string
    nsxHostname: string
    regions:
        - string
    sddcName: string
    tags:
        - key: string
          value: string
    vcenterHostname: string
    vcenterPassword: string
    vcenterUsername: string
CloudAccountVmc 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 CloudAccountVmc resource accepts the following input properties:
- ApiToken string
- VMC API access key.
- NsxHostname string
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- Regions List<string>
- Set of region names enabled for the cloud account.
- SddcName string
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- VcenterHostname string
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- VcenterPassword string
- Password used to authenticate to the cloud Account.
- VcenterUsername string
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- AcceptSelf boolSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- CloudAccount stringVmc Id 
- ID of the VMC cloud account.
- DcId string
- Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- Description string
- Human-friendly description.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- 
List<CloudAccount Vmc Tag> 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- ApiToken string
- VMC API access key.
- NsxHostname string
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- Regions []string
- Set of region names enabled for the cloud account.
- SddcName string
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- VcenterHostname string
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- VcenterPassword string
- Password used to authenticate to the cloud Account.
- VcenterUsername string
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- AcceptSelf boolSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- CloudAccount stringVmc Id 
- ID of the VMC cloud account.
- DcId string
- Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- Description string
- Human-friendly description.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- 
[]CloudAccount Vmc Tag Args 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- apiToken String
- VMC API access key.
- nsxHostname String
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- regions List<String>
- Set of region names enabled for the cloud account.
- sddcName String
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- vcenterHostname String
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenterPassword String
- Password used to authenticate to the cloud Account.
- vcenterUsername String
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- acceptSelf BooleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- cloudAccount StringVmc Id 
- ID of the VMC cloud account.
- dcId String
- Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- description String
- Human-friendly description.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- 
List<CloudAccount Vmc Tag> 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- apiToken string
- VMC API access key.
- nsxHostname string
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- regions string[]
- Set of region names enabled for the cloud account.
- sddcName string
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- vcenterHostname string
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenterPassword string
- Password used to authenticate to the cloud Account.
- vcenterUsername string
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- acceptSelf booleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- cloudAccount stringVmc Id 
- ID of the VMC cloud account.
- dcId string
- Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- description string
- Human-friendly description.
- name string
- Human-friendly name used as an identifier in APIs that support this option.
- 
CloudAccount Vmc Tag[] 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- api_token str
- VMC API access key.
- nsx_hostname str
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- regions Sequence[str]
- Set of region names enabled for the cloud account.
- sddc_name str
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- vcenter_hostname str
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter_password str
- Password used to authenticate to the cloud Account.
- vcenter_username str
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept_self_ boolsigned_ cert 
- Accept self-signed certificate when connecting to the cloud account.
- cloud_account_ strvmc_ id 
- ID of the VMC cloud account.
- dc_id str
- Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- description str
- Human-friendly description.
- name str
- Human-friendly name used as an identifier in APIs that support this option.
- 
Sequence[CloudAccount Vmc Tag Args] 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- apiToken String
- VMC API access key.
- nsxHostname String
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- regions List<String>
- Set of region names enabled for the cloud account.
- sddcName String
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- vcenterHostname String
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenterPassword String
- Password used to authenticate to the cloud Account.
- vcenterUsername String
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- acceptSelf BooleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- cloudAccount StringVmc Id 
- ID of the VMC cloud account.
- dcId String
- Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- description String
- Human-friendly description.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- 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 CloudAccountVmc resource produces the following output properties:
- 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 Vmc Link> 
- HATEOAS of entity.
- OrgId string
- ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- UpdatedAt string
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 Vmc Link 
- HATEOAS of entity.
- OrgId string
- ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- UpdatedAt string
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 Vmc Link> 
- HATEOAS of entity.
- orgId String
- ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- updatedAt String
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 Vmc Link[] 
- HATEOAS of entity.
- orgId string
- ID of organization that entity belongs to.
- owner string
- Email of entity owner.
- updatedAt string
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 Vmc 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 the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 the entity was last updated. Date and time format is ISO 8601 and UTC.
Look up Existing CloudAccountVmc Resource
Get an existing CloudAccountVmc 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?: CloudAccountVmcState, opts?: CustomResourceOptions): CloudAccountVmc@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        accept_self_signed_cert: Optional[bool] = None,
        api_token: Optional[str] = None,
        cloud_account_vmc_id: Optional[str] = None,
        created_at: Optional[str] = None,
        dc_id: Optional[str] = None,
        description: Optional[str] = None,
        links: Optional[Sequence[CloudAccountVmcLinkArgs]] = None,
        name: Optional[str] = None,
        nsx_hostname: Optional[str] = None,
        org_id: Optional[str] = None,
        owner: Optional[str] = None,
        regions: Optional[Sequence[str]] = None,
        sddc_name: Optional[str] = None,
        tags: Optional[Sequence[CloudAccountVmcTagArgs]] = None,
        updated_at: Optional[str] = None,
        vcenter_hostname: Optional[str] = None,
        vcenter_password: Optional[str] = None,
        vcenter_username: Optional[str] = None) -> CloudAccountVmcfunc GetCloudAccountVmc(ctx *Context, name string, id IDInput, state *CloudAccountVmcState, opts ...ResourceOption) (*CloudAccountVmc, error)public static CloudAccountVmc Get(string name, Input<string> id, CloudAccountVmcState? state, CustomResourceOptions? opts = null)public static CloudAccountVmc get(String name, Output<String> id, CloudAccountVmcState state, CustomResourceOptions options)resources:  _:    type: vra:CloudAccountVmc    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.
- ApiToken string
- VMC API access key.
- CloudAccount stringVmc Id 
- ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- Description string
- Human-friendly description.
- Links
List<CloudAccount Vmc Link> 
- HATEOAS of entity.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- NsxHostname string
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- OrgId string
- ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Regions List<string>
- Set of region names enabled for the cloud account.
- SddcName string
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- 
List<CloudAccount Vmc Tag> 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- UpdatedAt string
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- VcenterHostname string
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- VcenterPassword string
- Password used to authenticate to the cloud Account.
- VcenterUsername string
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- AcceptSelf boolSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- ApiToken string
- VMC API access key.
- CloudAccount stringVmc Id 
- ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- Description string
- Human-friendly description.
- Links
[]CloudAccount Vmc Link Args 
- HATEOAS of entity.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- NsxHostname string
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- OrgId string
- ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Regions []string
- Set of region names enabled for the cloud account.
- SddcName string
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- 
[]CloudAccount Vmc Tag Args 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- UpdatedAt string
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- VcenterHostname string
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- VcenterPassword string
- Password used to authenticate to the cloud Account.
- VcenterUsername string
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- acceptSelf BooleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- apiToken String
- VMC API access key.
- cloudAccount StringVmc Id 
- ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- description String
- Human-friendly description.
- links
List<CloudAccount Vmc Link> 
- HATEOAS of entity.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- nsxHostname String
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- orgId String
- ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- regions List<String>
- Set of region names enabled for the cloud account.
- sddcName String
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- 
List<CloudAccount Vmc Tag> 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- updatedAt String
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- vcenterHostname String
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenterPassword String
- Password used to authenticate to the cloud Account.
- vcenterUsername String
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- acceptSelf booleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- apiToken string
- VMC API access key.
- cloudAccount stringVmc Id 
- ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- description string
- Human-friendly description.
- links
CloudAccount Vmc Link[] 
- HATEOAS of entity.
- name string
- Human-friendly name used as an identifier in APIs that support this option.
- nsxHostname string
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- orgId string
- ID of organization that entity belongs to.
- owner string
- Email of entity owner.
- regions string[]
- Set of region names enabled for the cloud account.
- sddcName string
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- 
CloudAccount Vmc Tag[] 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- updatedAt string
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- vcenterHostname string
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenterPassword string
- Password used to authenticate to the cloud Account.
- vcenterUsername string
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept_self_ boolsigned_ cert 
- Accept self-signed certificate when connecting to the cloud account.
- api_token str
- VMC API access key.
- cloud_account_ strvmc_ id 
- ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- description str
- Human-friendly description.
- links
Sequence[CloudAccount Vmc Link Args] 
- HATEOAS of entity.
- name str
- Human-friendly name used as an identifier in APIs that support this option.
- nsx_hostname str
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- org_id str
- ID of organization that entity belongs to.
- owner str
- Email of entity owner.
- regions Sequence[str]
- Set of region names enabled for the cloud account.
- sddc_name str
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- 
Sequence[CloudAccount Vmc Tag Args] 
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- updated_at str
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- vcenter_hostname str
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter_password str
- Password used to authenticate to the cloud Account.
- vcenter_username str
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- acceptSelf BooleanSigned Cert 
- Accept self-signed certificate when connecting to the cloud account.
- apiToken String
- VMC API access key.
- cloudAccount StringVmc Id 
- ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- description String
- Human-friendly description.
- links List<Property Map>
- HATEOAS of entity.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- nsxHostname String
- IP address of the NSX Manager server in the specified SDDC / FQDN.
- orgId String
- ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- regions List<String>
- Set of region names enabled for the cloud account.
- sddcName String
- Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- List<Property Map>
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- updatedAt String
- Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- vcenterHostname String
- IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenterPassword String
- Password used to authenticate to the cloud Account.
- vcenterUsername String
- vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
Supporting Types
CloudAccountVmcLink, CloudAccountVmcLinkArgs        
CloudAccountVmcTag, CloudAccountVmcTagArgs        
Import
To import the VMC cloud account, use the ID as in the following example:
$ pulumi import vra:index/cloudAccountVmc:CloudAccountVmc new_vmc 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.