import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * Creates a VMware vRealize Automation AWS cloud account resource. * * ## Example Usage * ### S * * The following example shows how to create an AWS cloud account resource. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * const _this = new vra.cloudaccount.Aws("this", { * description: "terraform test cloud account aws", * accessKey: _var.access_key, * secretKey: _var.secret_key, * regions: [ * "us-east-1", * "us-west-1", * ], * tags: [{ * key: "foo", * value: "bar", * }], * }); * ``` * * ## Import * * To import the AWS cloud account, use the ID as in the following example * * ```sh * $ pulumi import vra:cloudaccount/aws:Aws new_aws 05956583-6488-4e7d-84c9-92a7b7219a15` * ``` */ export declare class Aws extends pulumi.CustomResource { /** * Get an existing Aws 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?: AwsState, opts?: pulumi.CustomResourceOptions): Aws; /** * Returns true if the given object is an instance of Aws. 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 Aws; /** * Access key ID for AWS. */ readonly accessKey: 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 AWS 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; /** * Set of region names enabled for the cloud account. */ readonly regions: pulumi.Output; /** * AWS Secret Access Key */ readonly secretKey: 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 Aws 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: AwsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Aws resources. */ export interface AwsState { /** * Access key ID for AWS. */ accessKey?: 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 AWS cloud account. */ name?: 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[]>; /** * AWS Secret Access Key */ secretKey?: 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 Aws resource. */ export interface AwsArgs { /** * Access key ID for AWS. */ accessKey: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; /** * Name of AWS cloud account. */ name?: pulumi.Input; /** * Set of region names enabled for the cloud account. */ regions: pulumi.Input[]>; /** * AWS Secret Access Key */ secretKey: pulumi.Input; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; }