import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * 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. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * const _this = new vra.cloudaccount.Vmc("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 * * To import the VMC cloud account, use the ID as in the following example * * ```sh * $ pulumi import vra:cloudaccount/vmc:Vmc new_vmc 05956583-6488-4e7d-84c9-92a7b7219a15` * ``` */ export declare class Vmc extends pulumi.CustomResource { /** * Get an existing Vmc resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: VmcState, opts?: pulumi.CustomResourceOptions): Vmc; /** * Returns true if the given object is an instance of Vmc. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Vmc; /** * Accept self-signed certificate when connecting to the cloud account. */ readonly acceptSelfSignedCert: pulumi.Output; /** * VMC API access key. */ readonly apiToken: pulumi.Output; /** * Date when entity was created. Date and time format is ISO 8601 and UTC. */ readonly createdAt: pulumi.Output; /** * Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector. */ readonly dcId: pulumi.Output; /** * Human-friendly description. */ readonly description: pulumi.Output; /** * HATEOAS of entity. */ readonly links: pulumi.Output; /** * Human-friendly name used as an identifier in APIs that support this option. */ readonly name: pulumi.Output; /** * IP address of the NSX Manager server in the specified SDDC / FQDN. */ readonly nsxHostname: pulumi.Output; /** * ID of organization that entity belongs to. */ readonly orgId: pulumi.Output; /** * Email of entity owner. */ readonly owner: pulumi.Output; /** * Set of region names enabled for the cloud account. */ readonly regions: pulumi.Output; /** * Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported. */ readonly sddcName: pulumi.Output; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ readonly tags: pulumi.Output; /** * Date when the entity was last updated. Date and time format is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter. */ readonly vcenterHostname: pulumi.Output; /** * Password used to authenticate to the cloud Account. */ readonly vcenterPassword: pulumi.Output; /** * vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials. */ readonly vcenterUsername: pulumi.Output; /** * Create a Vmc resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: VmcArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Vmc resources. */ export interface VmcState { /** * Accept self-signed certificate when connecting to the cloud account. */ acceptSelfSignedCert?: pulumi.Input; /** * VMC API access key. */ apiToken?: pulumi.Input; /** * Date when entity was created. Date and time format is ISO 8601 and UTC. */ createdAt?: pulumi.Input; /** * Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector. */ dcId?: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; /** * HATEOAS of entity. */ links?: pulumi.Input[]>; /** * Human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * IP address of the NSX Manager server in the specified SDDC / FQDN. */ nsxHostname?: pulumi.Input; /** * ID of organization that entity belongs to. */ orgId?: pulumi.Input; /** * Email of entity owner. */ owner?: pulumi.Input; /** * Set of region names enabled for the cloud account. */ regions?: pulumi.Input[]>; /** * Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported. */ sddcName?: pulumi.Input; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; /** * Date when the entity was last updated. Date and time format is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; /** * IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter. */ vcenterHostname?: pulumi.Input; /** * Password used to authenticate to the cloud Account. */ vcenterPassword?: pulumi.Input; /** * vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials. */ vcenterUsername?: pulumi.Input; } /** * The set of arguments for constructing a Vmc resource. */ export interface VmcArgs { /** * Accept self-signed certificate when connecting to the cloud account. */ acceptSelfSignedCert?: pulumi.Input; /** * VMC API access key. */ apiToken: pulumi.Input; /** * Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector. */ dcId?: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; /** * Human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * IP address of the NSX Manager server in the specified SDDC / FQDN. */ nsxHostname: pulumi.Input; /** * Set of region names enabled for the cloud account. */ regions: pulumi.Input[]>; /** * Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported. */ sddcName: pulumi.Input; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; /** * IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter. */ vcenterHostname: pulumi.Input; /** * Password used to authenticate to the cloud Account. */ vcenterPassword: pulumi.Input; /** * vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials. */ vcenterUsername: pulumi.Input; }