import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * Creates a VMware vRealize Automation GCP cloud account resource. * * ## Example Usage * ### S * * The following example shows how to create a GCP cloud account resource. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumi/vra"; * * const thisGcp = new vra.cloudaccount.Gcp("this", { * clientEmail: "client_email", * description: "terraform test cloud account gcp", * privateKey: "private_key", * privateKeyId: "private_key_id", * projectId: "project_id", * regions: [ * "us-west1", * "us-west2", * ], * tags: [{ * key: "foo", * value: "bar", * }], * }); * ``` * * ## Import * * To import the GCP cloud account, use the ID as in the following example * * ```sh * $ pulumi import vra:cloudaccount/gcp:Gcp new_gcp 05956583-6488-4e7d-84c9-92a7b7219a15` * ``` */ export declare class Gcp extends pulumi.CustomResource { /** * Get an existing Gcp 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?: GcpState, opts?: pulumi.CustomResourceOptions): Gcp; /** * Returns true if the given object is an instance of Gcp. 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 Gcp; /** * GCP Client email. */ readonly clientEmail: pulumi.Output; /** * Date when entity was created. Date and time format is ISO 8601 and UTC. */ readonly createdAt: pulumi.Output; /** * Human-friendly description. */ readonly description: pulumi.Output; /** * HATEOAS of entity. */ readonly links: pulumi.Output; /** * Name of GCP 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; /** * GCP Private key. */ readonly privateKey: pulumi.Output; /** * GCP Private key ID. */ readonly privateKeyId: pulumi.Output; /** * GCP Project ID. */ readonly projectId: pulumi.Output; /** * Set of region names enabled for the cloud account. */ readonly regions: 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; /** * Create a Gcp 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: GcpArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Gcp resources. */ export interface GcpState { /** * GCP Client email. */ clientEmail?: pulumi.Input; /** * Date when entity was created. Date and time format is ISO 8601 and UTC. */ createdAt?: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; /** * HATEOAS of entity. */ links?: pulumi.Input[]>; /** * Name of GCP cloud account. */ name?: pulumi.Input; /** * ID of organization that entity belongs to. */ orgId?: pulumi.Input; /** * Email of entity owner. */ owner?: pulumi.Input; /** * GCP Private key. */ privateKey?: pulumi.Input; /** * GCP Private key ID. */ privateKeyId?: pulumi.Input; /** * GCP Project ID. */ projectId?: pulumi.Input; /** * Set of region names enabled for the cloud account. */ regions?: 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; } /** * The set of arguments for constructing a Gcp resource. */ export interface GcpArgs { /** * GCP Client email. */ clientEmail: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; /** * Name of GCP cloud account. */ name?: pulumi.Input; /** * GCP Private key. */ privateKey: pulumi.Input; /** * GCP Private key ID. */ privateKeyId: pulumi.Input; /** * GCP Project ID. */ projectId: pulumi.Input; /** * Set of region names enabled for the cloud account. */ regions: pulumi.Input[]>; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; }