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. * * **Vra storage profile azure:** * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * // Azure storage profile using vra_storage_profile_azure resource with managed disk. * const thisAzure = new vra.storageprofile.Azure("thisAzure", { * description: "Azure Storage Profile with managed disks.", * regionId: data.vra_region["this"].id, * defaultItem: false, * supportsEncryption: false, * dataDiskCaching: "None", * diskType: "Standard_LRS", * osDiskCaching: "None", * tags: [{ * key: "foo", * value: "bar", * }], * }); * // Azure storage profile using vra_storage_profile_azure resource with unmanaged disk. * const thisStorageprofile_azureAzure = new vra.storageprofile.Azure("thisStorageprofile/azureAzure", { * description: "Azure Storage Profile with unmanaged disks.", * regionId: data.vra_region["this"].id, * defaultItem: false, * supportsEncryption: false, * dataDiskCaching: "None", * osDiskCaching: "None", * tags: [{ * key: "foo", * value: "bar", * }], * }); * ``` * * A storage profile azure resource supports the following arguments: */ 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; /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ readonly createdAt: pulumi.Output; /** * Indicates the caching mechanism for additional disk. */ readonly dataDiskCaching: pulumi.Output; /** * Indicates if this storage profile is a default profile. */ readonly defaultItem: pulumi.Output; /** * A human-friendly description. */ readonly description: pulumi.Output; /** * Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed. */ readonly diskType: pulumi.Output; /** * The id of the region as seen in the cloud provider for which this profile is defined. */ readonly externalRegionId: pulumi.Output; /** * HATEOAS of the entity */ readonly links: pulumi.Output; /** * A human-friendly name used as an identifier in APIs that support this option. */ readonly name: pulumi.Output; /** * The id of the organization this entity belongs to. */ readonly organizationId: pulumi.Output; /** * Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write. */ readonly osDiskCaching: pulumi.Output; /** * Email of the user that owns the entity. */ readonly owner: pulumi.Output; /** * A link to the region that is associated with the storage profile. */ readonly regionId: pulumi.Output; /** * Id of a storage account where in the disk is placed. */ readonly storageAccountId: pulumi.Output; /** * Indicates whether this storage policy should support encryption or not. */ readonly supportsEncryption: pulumi.Output; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ readonly tags: pulumi.Output; /** * Date when the entity was last updated. The date 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 { /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ createdAt?: pulumi.Input; /** * Indicates the caching mechanism for additional disk. */ dataDiskCaching?: pulumi.Input; /** * Indicates if this storage profile is a default profile. */ defaultItem?: pulumi.Input; /** * A human-friendly description. */ description?: pulumi.Input; /** * Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed. */ diskType?: pulumi.Input; /** * The id of the region as seen in the cloud provider for which this profile is defined. */ externalRegionId?: pulumi.Input; /** * HATEOAS of the entity */ links?: pulumi.Input[]>; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * The id of the organization this entity belongs to. */ organizationId?: pulumi.Input; /** * Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write. */ osDiskCaching?: pulumi.Input; /** * Email of the user that owns the entity. */ owner?: pulumi.Input; /** * A link to the region that is associated with the storage profile. */ regionId?: pulumi.Input; /** * Id of a storage account where in the disk is placed. */ storageAccountId?: pulumi.Input; /** * Indicates whether this storage policy should support encryption or not. */ supportsEncryption?: 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[]>; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a Azure resource. */ export interface AzureArgs { /** * Indicates the caching mechanism for additional disk. */ dataDiskCaching?: pulumi.Input; /** * Indicates if this storage profile is a default profile. */ defaultItem: pulumi.Input; /** * A human-friendly description. */ description?: pulumi.Input; /** * Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed. */ diskType?: pulumi.Input; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write. */ osDiskCaching?: pulumi.Input; /** * A link to the region that is associated with the storage profile. */ regionId: pulumi.Input; /** * Id of a storage account where in the disk is placed. */ storageAccountId?: pulumi.Input; /** * Indicates whether this storage policy should support encryption or not. */ supportsEncryption?: 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[]>; }