import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * Creates a VMware vRealize Automation Azure cloud account resource. * * ## Example Usage * ### S * * The following example shows how to create an Azure cloud account resource. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumi/vra"; * * const thisAzure = new vra.cloudaccount.Azure("this", { * applicationId: "sample-application-id", * applicationKey: "sample-application=key", * description: "test cloud account", * regions: ["centralus"], * subscriptionId: "sample-subscription-id", * tenantId: "sample-tenant-id", * }); * ``` * * ## Import * * To import the Azure cloud account, use the ID as in the following example * * ```sh * $ pulumi import vra:cloudaccount/azure:Azure new_azure 05956583-6488-4e7d-84c9-92a7b7219a15` * ``` */ export declare class Azure extends pulumi.CustomResource { /** * Get an existing Azure 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?: AzureState, opts?: pulumi.CustomResourceOptions): Azure; /** * Returns true if the given object is an instance of Azure. 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 Azure; /** * Azure Client Application ID. */ readonly applicationId: pulumi.Output; /** * Azure Client Application Secret Key. */ readonly applicationKey: 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 Azure 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; /** * Azure Subscription ID. */ readonly subscriptionId: pulumi.Output; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ readonly tags: pulumi.Output; /** * Azure Tenant ID. */ readonly tenantId: pulumi.Output; /** * Date when entity was last updated. Date and time format is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * Create a Azure 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: AzureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Azure resources. */ export interface AzureState { /** * Azure Client Application ID. */ applicationId?: pulumi.Input; /** * Azure Client Application Secret Key. */ applicationKey?: 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 Azure 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[]>; /** * Azure Subscription ID. */ subscriptionId?: pulumi.Input; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; /** * Azure Tenant ID. */ tenantId?: 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 Azure resource. */ export interface AzureArgs { /** * Azure Client Application ID. */ applicationId: pulumi.Input; /** * Azure Client Application Secret Key. */ applicationKey: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; /** * Name of Azure cloud account. */ name?: pulumi.Input; /** * Set of region names enabled for the cloud account. */ regions: pulumi.Input[]>; /** * Azure Subscription ID. */ subscriptionId: pulumi.Input; /** * Set of tag keys and values to apply to the cloud account. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; /** * Azure Tenant ID. */ tenantId: pulumi.Input; }