import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * ## Example Usage * ### S * This is an example of how to create a storage profile azure resource. * * **Storage profile azure data source by its id:** * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumi/vra"; * * const this = vra.storageprofile.getAzure({ * id: vra_storage_profile_azure["this"].id, * }); * ``` * * **Vra storage profile data source filter by external region id:** * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumi/vra"; * * const thisAzure = pulumi.output(vra.storageprofile.getAzure({ * filter: "externalRegionId eq 'foobar'", * })); * ``` * * A storage profile azure data source supports the following arguments: */ export declare function getAzure(args?: GetAzureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAzure. */ export interface GetAzureArgs { /** * Filter query string that is supported by vRA multi-cloud IaaS API. Example: regionId eq '' and cloudAccountId eq ''. */ filter?: string; /** * The id of the image profile instance. */ id?: string; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ tags?: inputs.storageprofile.GetAzureTag[]; } /** * A collection of values returned by getAzure. */ export interface GetAzureResult { readonly cloudAccountId: string; /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ readonly createdAt: string; /** * Indicates the caching mechanism for additional disk. */ readonly dataDiskCaching: string; /** * Indicates if this storage profile is a default profile. */ readonly defaultItem: boolean; /** * A human-friendly description. */ readonly description: string; /** * Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed. */ readonly diskType: string; /** * The id of the region as seen in the cloud provider for which this profile is defined. */ readonly externalRegionId: string; readonly filter?: string; readonly id: string; /** * HATEOAS of the entity */ readonly links: outputs.storageprofile.GetAzureLink[]; /** * A human-friendly name used as an identifier in APIs that support this option. */ readonly name: string; readonly orgId: string; /** * Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write. */ readonly osDiskCaching: string; /** * Email of the user that owns the entity. */ readonly owner: string; /** * Indicates whether this storage policy should support encryption or not. */ readonly supportsEncryption: boolean; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ readonly tags: outputs.storageprofile.GetAzureTag[]; /** * 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 { /** * Filter query string that is supported by vRA multi-cloud IaaS API. Example: regionId eq '' and cloudAccountId eq ''. */ filter?: pulumi.Input; /** * The id of the image profile instance. */ id?: pulumi.Input; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ tags?: pulumi.Input[]>; }