import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * Updates a VMware vRealize Automation fabricDatastoreVsphere resource. * * ## Example Usage * ### S * * You cannot create a fabric datastore vSphere resource, however you can import it using the command specified in the import section below. * * Once a resource is imported, you can update it as shown below: * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumi/vra"; * * const thisDatastoreVSphere = new vra.fabric.DatastoreVSphere("this", { * tags: [{ * key: "foo", * value: "bar", * }], * }); * ``` * * ## Import * * To import the fabric datastore vSphere resource, use the ID as in the following example * * ```sh * $ pulumi import vra:fabric/datastoreVSphere:DatastoreVSphere this 8e0c9a4c-3ab8-48e8-b9d5-0751c871e282 * ``` */ export declare class DatastoreVSphere extends pulumi.CustomResource { /** * Get an existing DatastoreVSphere 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?: DatastoreVSphereState, opts?: pulumi.CustomResourceOptions): DatastoreVSphere; /** * Returns true if the given object is an instance of DatastoreVSphere. 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 DatastoreVSphere; /** * Set of ids of the cloud accounts this entity belongs to. */ readonly cloudAccountIds: pulumi.Output; /** * Date when the entity was created. The date is in ISO 8601 and UTC. */ readonly createdAt: pulumi.Output; /** * A human-friendly description. */ readonly description: pulumi.Output; /** * External entity Id on the provider side. */ readonly externalId: pulumi.Output; /** * Id of datacenter in which the datastore is present. */ readonly externalRegionId: pulumi.Output; /** * Indicates free size available in datastore. */ readonly freeSizeGb: pulumi.Output; /** * HATEOAS of the entity */ readonly links: pulumi.Output; /** * A human-friendly name used as an identifier for the vSphere fabric datastore resource instance. */ readonly name: pulumi.Output; /** * The id of the organization this entity belongs to. */ readonly orgId: pulumi.Output; /** * Email of the user that owns the entity. */ readonly owner: pulumi.Output; /** * A set of tag keys and optional values that were set on this resource: */ readonly tags: pulumi.Output; /** * Type of datastore. */ readonly type: pulumi.Output; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * Create a DatastoreVSphere 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?: DatastoreVSphereArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DatastoreVSphere resources. */ export interface DatastoreVSphereState { /** * Set of ids of the cloud accounts this entity belongs to. */ cloudAccountIds?: pulumi.Input[]>; /** * Date when the entity was created. The date is in ISO 8601 and UTC. */ createdAt?: pulumi.Input; /** * A human-friendly description. */ description?: pulumi.Input; /** * External entity Id on the provider side. */ externalId?: pulumi.Input; /** * Id of datacenter in which the datastore is present. */ externalRegionId?: pulumi.Input; /** * Indicates free size available in datastore. */ freeSizeGb?: pulumi.Input; /** * HATEOAS of the entity */ links?: pulumi.Input[]>; /** * A human-friendly name used as an identifier for the vSphere fabric datastore resource instance. */ name?: pulumi.Input; /** * The id of the organization this entity belongs to. */ orgId?: pulumi.Input; /** * Email of the user that owns the entity. */ owner?: pulumi.Input; /** * A set of tag keys and optional values that were set on this resource: */ tags?: pulumi.Input[]>; /** * Type of datastore. */ type?: pulumi.Input; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a DatastoreVSphere resource. */ export interface DatastoreVSphereArgs { /** * A set of tag keys and optional values that were set on this resource: */ tags?: pulumi.Input[]>; }