import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * Updates a VMware vRealize Automation fabricCompute resource. * * ## Example Usage * ### S * * You cannot create a fabric compute 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 thisCompute = new vra.fabric.Compute("this", { * tags: [{ * key: "foo", * value: "bar", * }], * }); * ``` * * ## Import * * To import the fabric compute resource, use the ID as in the following example * * ```sh * $ pulumi import vra:fabric/compute:Compute this 88fdea8b-92ed-4aa9-b6ee-4670412961b0 * ``` */ export declare class Compute extends pulumi.CustomResource { /** * Get an existing Compute 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?: ComputeState, opts?: pulumi.CustomResourceOptions): Compute; /** * Returns true if the given object is an instance of Compute. 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 Compute; /** * Date when the entity was created. The date is in ISO 8601 and UTC. */ readonly createdAt: pulumi.Output; /** * A list of key value pair of custom properties for the fabric compute resource. */ readonly customProperties: pulumi.Output<{ [key: string]: any; }>; /** * A human-friendly description. */ readonly description: pulumi.Output; /** * The id of the external entity on the provider side. */ readonly externalId: pulumi.Output; /** * The external region id of the fabric compute. */ readonly externalRegionId: pulumi.Output; /** * The external zone id of the fabric compute. */ readonly externalZoneId: pulumi.Output; /** * Lifecycle status of the compute instance. */ readonly lifecycleState: pulumi.Output; /** * HATEOAS of the entity. */ readonly links: pulumi.Output; /** * A human-friendly name used as an identifier for the fabric compute 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; /** * Power state of fabric compute instance. */ readonly powerState: pulumi.Output; /** * A set of tag keys and optional values that were set on this resource: */ readonly tags: pulumi.Output; /** * Type of the fabric compute instance. */ readonly type: pulumi.Output; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * Create a Compute 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?: ComputeArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Compute resources. */ export interface ComputeState { /** * Date when the entity was created. The date is in ISO 8601 and UTC. */ createdAt?: pulumi.Input; /** * A list of key value pair of custom properties for the fabric compute resource. */ customProperties?: pulumi.Input<{ [key: string]: any; }>; /** * A human-friendly description. */ description?: pulumi.Input; /** * The id of the external entity on the provider side. */ externalId?: pulumi.Input; /** * The external region id of the fabric compute. */ externalRegionId?: pulumi.Input; /** * The external zone id of the fabric compute. */ externalZoneId?: pulumi.Input; /** * Lifecycle status of the compute instance. */ lifecycleState?: pulumi.Input; /** * HATEOAS of the entity. */ links?: pulumi.Input[]>; /** * A human-friendly name used as an identifier for the fabric compute 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; /** * Power state of fabric compute instance. */ powerState?: pulumi.Input; /** * A set of tag keys and optional values that were set on this resource: */ tags?: pulumi.Input[]>; /** * Type of the fabric compute instance. */ 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 Compute resource. */ export interface ComputeArgs { /** * A set of tag keys and optional values that were set on this resource: */ tags?: pulumi.Input[]>; }