import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * 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. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * const _this = new vra.cloudaccount.Nsxt("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 * * To import the NSX-T cloud account, use the ID as in the following example * * ```sh * $ pulumi import vra:cloudaccount/nsxt:Nsxt new_gcp 05956583-6488-4e7d-84c9-92a7b7219a15` * ``` */ export declare class Nsxt extends pulumi.CustomResource { /** * Get an existing Nsxt 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?: NsxtState, opts?: pulumi.CustomResourceOptions): Nsxt; /** * Returns true if the given object is an instance of Nsxt. 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 Nsxt; /** * Accept self-signed certificate when connecting to the cloud account. */ readonly acceptSelfSignedCert: pulumi.Output; /** * Cloud accounts associated with the cloud account. */ readonly associatedCloudAccountIds: 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. */ readonly dcId: pulumi.Output; /** * Human-friendly description. */ readonly description: pulumi.Output; /** * Host name for NSX-T cloud account. */ readonly hostname: pulumi.Output; /** * HATEOAS of entity. */ readonly links: pulumi.Output; /** * 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. */ readonly managerMode: pulumi.Output; /** * Name of NSX-T cloud account. */ readonly name: pulumi.Output; /** * ID of organization that entity belongs to. */ readonly orgId: pulumi.Output; /** * Email of entity owner. */ readonly owner: pulumi.Output; /** * Password used to authenticate to the cloud Account. */ readonly password: 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 entity was last updated. Date and time format is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * Username used to authenticate to the cloud account. */ readonly username: pulumi.Output; /** * Create a Nsxt 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: NsxtArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Nsxt resources. */ export interface NsxtState { /** * Accept self-signed certificate when connecting to the cloud account. */ acceptSelfSignedCert?: pulumi.Input; /** * Cloud accounts associated with the cloud account. */ associatedCloudAccountIds?: 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. */ dcId?: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; /** * Host name for NSX-T cloud account. */ hostname?: pulumi.Input; /** * HATEOAS of entity. */ links?: pulumi.Input[]>; /** * 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. */ managerMode?: pulumi.Input; /** * Name of NSX-T cloud account. */ name?: pulumi.Input; /** * ID of organization that entity belongs to. */ orgId?: pulumi.Input; /** * Email of entity owner. */ owner?: pulumi.Input; /** * Password used to authenticate to the cloud Account. */ password?: pulumi.Input; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; /** * Date when entity was last updated. Date and time format is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; /** * Username used to authenticate to the cloud account. */ username?: pulumi.Input; } /** * The set of arguments for constructing a Nsxt resource. */ export interface NsxtArgs { /** * Accept self-signed certificate when connecting to the cloud account. */ acceptSelfSignedCert?: pulumi.Input; /** * Identifier of a data collector VM deployed in the on premise infrastructure. */ dcId?: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; /** * Host name for NSX-T cloud account. */ hostname: pulumi.Input; /** * 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. */ managerMode?: pulumi.Input; /** * Name of NSX-T cloud account. */ name?: pulumi.Input; /** * Password used to authenticate to the cloud Account. */ password: pulumi.Input; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; /** * Username used to authenticate to the cloud account. */ username: pulumi.Input; }