import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * Provides a VMware vRA vra.cloudaccount.Azure data source. * * ## Example Usage * ### S * * **Azure cloud account data source by its id:** * * This is an example of how to read the cloud account data source using its id. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumi/vra"; * * const this = vra.cloudaccount.getAzure({ * id: _var.vra_cloud_account_azure_id, * }); * ``` * * **Azure cloud account data source by its name:** * * This is an example of how to read the cloud account data source using its name. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumi/vra"; * * const this = vra.cloudaccount.getAzure({ * name: _var.vra_cloud_account_azure_name, * }); * ``` */ export declare function getAzure(args?: GetAzureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAzure. */ export interface GetAzureArgs { /** * The id of this Azure cloud account. */ id?: string; /** * The name of this Azure cloud account. */ name?: string; /** * A set of tag keys and optional values that were set on this resource. * example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: inputs.cloudaccount.GetAzureTag[]; } /** * A collection of values returned by getAzure. */ export interface GetAzureResult { /** * Azure Client Application ID. */ readonly applicationId: string; /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ readonly createdAt: string; /** * A human-friendly description. */ readonly description: string; readonly id: string; /** * HATEOAS of the entity. */ readonly links: outputs.cloudaccount.GetAzureLink[]; readonly name: string; /** * The id of the organization this entity belongs to. */ readonly orgId: string; /** * Email of the user that owns the entity. */ readonly owner: string; /** * A set of region names that are enabled for this account. */ readonly regions: string[]; /** * Azure Subscription ID. */ readonly subscriptionId: string; /** * A set of tag keys and optional values that were set on this resource. * example:[ { "key" : "vmware", "value": "provider" } ] */ readonly tags: outputs.cloudaccount.GetAzureTag[]; /** * Azure Tenant ID. */ readonly tenantId: string; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ readonly updatedAt: string; } export declare function getAzureOutput(args?: GetAzureOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getAzure. */ export interface GetAzureOutputArgs { /** * The id of this Azure cloud account. */ id?: pulumi.Input; /** * The name of this Azure cloud account. */ name?: pulumi.Input; /** * A set of tag keys and optional values that were set on this resource. * example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; }