vra.StorageProfileAzure
Explore with Pulumi AI
Example Usage
S
This is an example of how to create a storage profile azure resource.
Vra storage profile azure:
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
// Azure storage profile using vra_storage_profile_azure resource with managed disk.
const thisStorageProfileAzure = new vra.StorageProfileAzure("thisStorageProfileAzure", {
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 thisIndex_storageProfileAzureStorageProfileAzure = new vra.StorageProfileAzure("thisIndex/storageProfileAzureStorageProfileAzure", {
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",
}],
});
import pulumi
import pulumi_vra as vra
# Azure storage profile using vra_storage_profile_azure resource with managed disk.
this_storage_profile_azure = vra.StorageProfileAzure("thisStorageProfileAzure",
description="Azure Storage Profile with managed disks.",
region_id=data["vra_region"]["this"]["id"],
default_item=False,
supports_encryption=False,
data_disk_caching="None",
disk_type="Standard_LRS",
os_disk_caching="None",
tags=[{
"key": "foo",
"value": "bar",
}])
# Azure storage profile using vra_storage_profile_azure resource with unmanaged disk.
this_index_storage_profile_azure_storage_profile_azure = vra.StorageProfileAzure("thisIndex/storageProfileAzureStorageProfileAzure",
description="Azure Storage Profile with unmanaged disks.",
region_id=data["vra_region"]["this"]["id"],
default_item=False,
supports_encryption=False,
data_disk_caching="None",
os_disk_caching="None",
tags=[{
"key": "foo",
"value": "bar",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/vra/vra"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Azure storage profile using vra_storage_profile_azure resource with managed disk.
_, err := vra.NewStorageProfileAzure(ctx, "thisStorageProfileAzure", &vra.StorageProfileAzureArgs{
Description: pulumi.String("Azure Storage Profile with managed disks."),
RegionId: pulumi.Any(data.Vra_region.This.Id),
DefaultItem: pulumi.Bool(false),
SupportsEncryption: pulumi.Bool(false),
DataDiskCaching: pulumi.String("None"),
DiskType: pulumi.String("Standard_LRS"),
OsDiskCaching: pulumi.String("None"),
Tags: vra.StorageProfileAzureTagArray{
&vra.StorageProfileAzureTagArgs{
Key: pulumi.String("foo"),
Value: pulumi.String("bar"),
},
},
})
if err != nil {
return err
}
// Azure storage profile using vra_storage_profile_azure resource with unmanaged disk.
_, err = vra.NewStorageProfileAzure(ctx, "thisIndex/storageProfileAzureStorageProfileAzure", &vra.StorageProfileAzureArgs{
Description: pulumi.String("Azure Storage Profile with unmanaged disks."),
RegionId: pulumi.Any(data.Vra_region.This.Id),
DefaultItem: pulumi.Bool(false),
SupportsEncryption: pulumi.Bool(false),
DataDiskCaching: pulumi.String("None"),
OsDiskCaching: pulumi.String("None"),
Tags: vra.StorageProfileAzureTagArray{
&vra.StorageProfileAzureTagArgs{
Key: pulumi.String("foo"),
Value: pulumi.String("bar"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vra = Pulumi.Vra;
return await Deployment.RunAsync(() =>
{
// Azure storage profile using vra_storage_profile_azure resource with managed disk.
var thisStorageProfileAzure = new Vra.StorageProfileAzure("thisStorageProfileAzure", new()
{
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 = new[]
{
new Vra.Inputs.StorageProfileAzureTagArgs
{
Key = "foo",
Value = "bar",
},
},
});
// Azure storage profile using vra_storage_profile_azure resource with unmanaged disk.
var thisIndex_storageProfileAzureStorageProfileAzure = new Vra.StorageProfileAzure("thisIndex/storageProfileAzureStorageProfileAzure", new()
{
Description = "Azure Storage Profile with unmanaged disks.",
RegionId = data.Vra_region.This.Id,
DefaultItem = false,
SupportsEncryption = false,
DataDiskCaching = "None",
OsDiskCaching = "None",
Tags = new[]
{
new Vra.Inputs.StorageProfileAzureTagArgs
{
Key = "foo",
Value = "bar",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.StorageProfileAzure;
import com.pulumi.vra.StorageProfileAzureArgs;
import com.pulumi.vra.inputs.StorageProfileAzureTagArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// Azure storage profile using vra_storage_profile_azure resource with managed disk.
var thisStorageProfileAzure = new StorageProfileAzure("thisStorageProfileAzure", StorageProfileAzureArgs.builder()
.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(StorageProfileAzureTagArgs.builder()
.key("foo")
.value("bar")
.build())
.build());
// Azure storage profile using vra_storage_profile_azure resource with unmanaged disk.
var thisIndex_storageProfileAzureStorageProfileAzure = new StorageProfileAzure("thisIndex/storageProfileAzureStorageProfileAzure", StorageProfileAzureArgs.builder()
.description("Azure Storage Profile with unmanaged disks.")
.regionId(data.vra_region().this().id())
.defaultItem(false)
.supportsEncryption(false)
.dataDiskCaching("None")
.osDiskCaching("None")
.tags(StorageProfileAzureTagArgs.builder()
.key("foo")
.value("bar")
.build())
.build());
}
}
resources:
# Azure storage profile using vra_storage_profile_azure resource with managed disk.
thisStorageProfileAzure:
type: vra:StorageProfileAzure
properties:
description: Azure Storage Profile with managed disks.
regionId: ${data.vra_region.this.id}
defaultItem: false
supportsEncryption: false
dataDiskCaching: None
# Supported Values: None, ReadOnly, ReadWrite
diskType: Standard_LRS
# Supported Values: Standard_LRS, StandardSSD_LRS, Premium_LRS
osDiskCaching: None # Supported Values: None, ReadOnly, ReadWrite
tags:
- key: foo
value: bar
# Azure storage profile using vra_storage_profile_azure resource with unmanaged disk.
thisIndex/storageProfileAzureStorageProfileAzure:
type: vra:StorageProfileAzure
properties:
description: Azure Storage Profile with unmanaged disks.
regionId: ${data.vra_region.this.id}
defaultItem: false
supportsEncryption: false
dataDiskCaching: None
# Supported Values: None, ReadOnly, ReadWrite
osDiskCaching: None # Supported Values: None, ReadOnly, ReadWrite
tags:
- key: foo
value: bar
A storage profile azure resource supports the following arguments:
Create StorageProfileAzure Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StorageProfileAzure(name: string, args: StorageProfileAzureArgs, opts?: CustomResourceOptions);
@overload
def StorageProfileAzure(resource_name: str,
args: StorageProfileAzureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StorageProfileAzure(resource_name: str,
opts: Optional[ResourceOptions] = None,
default_item: Optional[bool] = None,
region_id: Optional[str] = None,
data_disk_caching: Optional[str] = None,
description: Optional[str] = None,
disk_type: Optional[str] = None,
name: Optional[str] = None,
os_disk_caching: Optional[str] = None,
storage_account_id: Optional[str] = None,
storage_profile_azure_id: Optional[str] = None,
supports_encryption: Optional[bool] = None,
tags: Optional[Sequence[StorageProfileAzureTagArgs]] = None)
func NewStorageProfileAzure(ctx *Context, name string, args StorageProfileAzureArgs, opts ...ResourceOption) (*StorageProfileAzure, error)
public StorageProfileAzure(string name, StorageProfileAzureArgs args, CustomResourceOptions? opts = null)
public StorageProfileAzure(String name, StorageProfileAzureArgs args)
public StorageProfileAzure(String name, StorageProfileAzureArgs args, CustomResourceOptions options)
type: vra:StorageProfileAzure
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args StorageProfileAzureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args StorageProfileAzureArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args StorageProfileAzureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StorageProfileAzureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StorageProfileAzureArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var storageProfileAzureResource = new Vra.StorageProfileAzure("storageProfileAzureResource", new()
{
DefaultItem = false,
RegionId = "string",
DataDiskCaching = "string",
Description = "string",
DiskType = "string",
Name = "string",
OsDiskCaching = "string",
StorageAccountId = "string",
StorageProfileAzureId = "string",
SupportsEncryption = false,
Tags = new[]
{
new Vra.Inputs.StorageProfileAzureTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := vra.NewStorageProfileAzure(ctx, "storageProfileAzureResource", &vra.StorageProfileAzureArgs{
DefaultItem: pulumi.Bool(false),
RegionId: pulumi.String("string"),
DataDiskCaching: pulumi.String("string"),
Description: pulumi.String("string"),
DiskType: pulumi.String("string"),
Name: pulumi.String("string"),
OsDiskCaching: pulumi.String("string"),
StorageAccountId: pulumi.String("string"),
StorageProfileAzureId: pulumi.String("string"),
SupportsEncryption: pulumi.Bool(false),
Tags: vra.StorageProfileAzureTagArray{
&vra.StorageProfileAzureTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var storageProfileAzureResource = new StorageProfileAzure("storageProfileAzureResource", StorageProfileAzureArgs.builder()
.defaultItem(false)
.regionId("string")
.dataDiskCaching("string")
.description("string")
.diskType("string")
.name("string")
.osDiskCaching("string")
.storageAccountId("string")
.storageProfileAzureId("string")
.supportsEncryption(false)
.tags(StorageProfileAzureTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
storage_profile_azure_resource = vra.StorageProfileAzure("storageProfileAzureResource",
default_item=False,
region_id="string",
data_disk_caching="string",
description="string",
disk_type="string",
name="string",
os_disk_caching="string",
storage_account_id="string",
storage_profile_azure_id="string",
supports_encryption=False,
tags=[{
"key": "string",
"value": "string",
}])
const storageProfileAzureResource = new vra.StorageProfileAzure("storageProfileAzureResource", {
defaultItem: false,
regionId: "string",
dataDiskCaching: "string",
description: "string",
diskType: "string",
name: "string",
osDiskCaching: "string",
storageAccountId: "string",
storageProfileAzureId: "string",
supportsEncryption: false,
tags: [{
key: "string",
value: "string",
}],
});
type: vra:StorageProfileAzure
properties:
dataDiskCaching: string
defaultItem: false
description: string
diskType: string
name: string
osDiskCaching: string
regionId: string
storageAccountId: string
storageProfileAzureId: string
supportsEncryption: false
tags:
- key: string
value: string
StorageProfileAzure Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The StorageProfileAzure resource accepts the following input properties:
- Default
Item bool - Indicates if this storage profile is a default profile.
- Region
Id string - A link to the region that is associated with the storage profile.
- Data
Disk stringCaching - Indicates the caching mechanism for additional disk.
- Description string
- A human-friendly description.
- Disk
Type string - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Os
Disk stringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- Storage
Account stringId - Id of a storage account where in the disk is placed.
- Storage
Profile stringAzure Id - Supports
Encryption bool - Indicates whether this storage policy should support encryption or not.
- List<Storage
Profile Azure Tag> - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- Default
Item bool - Indicates if this storage profile is a default profile.
- Region
Id string - A link to the region that is associated with the storage profile.
- Data
Disk stringCaching - Indicates the caching mechanism for additional disk.
- Description string
- A human-friendly description.
- Disk
Type string - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Os
Disk stringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- Storage
Account stringId - Id of a storage account where in the disk is placed.
- Storage
Profile stringAzure Id - Supports
Encryption bool - Indicates whether this storage policy should support encryption or not.
- []Storage
Profile Azure Tag Args - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- default
Item Boolean - Indicates if this storage profile is a default profile.
- region
Id String - A link to the region that is associated with the storage profile.
- data
Disk StringCaching - Indicates the caching mechanism for additional disk.
- description String
- A human-friendly description.
- disk
Type String - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- os
Disk StringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- storage
Account StringId - Id of a storage account where in the disk is placed.
- storage
Profile StringAzure Id - supports
Encryption Boolean - Indicates whether this storage policy should support encryption or not.
- List<Storage
Profile Azure Tag> - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- default
Item boolean - Indicates if this storage profile is a default profile.
- region
Id string - A link to the region that is associated with the storage profile.
- data
Disk stringCaching - Indicates the caching mechanism for additional disk.
- description string
- A human-friendly description.
- disk
Type string - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- name string
- A human-friendly name used as an identifier in APIs that support this option.
- os
Disk stringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- storage
Account stringId - Id of a storage account where in the disk is placed.
- storage
Profile stringAzure Id - supports
Encryption boolean - Indicates whether this storage policy should support encryption or not.
- Storage
Profile Azure Tag[] - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- default_
item bool - Indicates if this storage profile is a default profile.
- region_
id str - A link to the region that is associated with the storage profile.
- data_
disk_ strcaching - Indicates the caching mechanism for additional disk.
- description str
- A human-friendly description.
- disk_
type str - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- name str
- A human-friendly name used as an identifier in APIs that support this option.
- os_
disk_ strcaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- storage_
account_ strid - Id of a storage account where in the disk is placed.
- storage_
profile_ strazure_ id - supports_
encryption bool - Indicates whether this storage policy should support encryption or not.
- Sequence[Storage
Profile Azure Tag Args] - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- default
Item Boolean - Indicates if this storage profile is a default profile.
- region
Id String - A link to the region that is associated with the storage profile.
- data
Disk StringCaching - Indicates the caching mechanism for additional disk.
- description String
- A human-friendly description.
- disk
Type String - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- os
Disk StringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- storage
Account StringId - Id of a storage account where in the disk is placed.
- storage
Profile StringAzure Id - supports
Encryption Boolean - Indicates whether this storage policy should support encryption or not.
- List<Property Map>
- A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
Outputs
All input properties are implicitly available as output properties. Additionally, the StorageProfileAzure resource produces the following output properties:
- Created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- External
Region stringId - The id of the region as seen in the cloud provider for which this profile is defined.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
List<Storage
Profile Azure Link> - HATEOAS of the entity
- Organization
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- Created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- External
Region stringId - The id of the region as seen in the cloud provider for which this profile is defined.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
[]Storage
Profile Azure Link - HATEOAS of the entity
- Organization
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- external
Region StringId - The id of the region as seen in the cloud provider for which this profile is defined.
- id String
- The provider-assigned unique ID for this managed resource.
- links
List<Storage
Profile Azure Link> - HATEOAS of the entity
- organization
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- external
Region stringId - The id of the region as seen in the cloud provider for which this profile is defined.
- id string
- The provider-assigned unique ID for this managed resource.
- links
Storage
Profile Azure Link[] - HATEOAS of the entity
- organization
Id string - The id of the organization this entity belongs to.
- owner string
- Email of the user that owns the entity.
- updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created_
at str - Date when the entity was created. The date is in ISO 6801 and UTC.
- external_
region_ strid - The id of the region as seen in the cloud provider for which this profile is defined.
- id str
- The provider-assigned unique ID for this managed resource.
- links
Sequence[Storage
Profile Azure Link] - HATEOAS of the entity
- organization_
id str - The id of the organization this entity belongs to.
- owner str
- Email of the user that owns the entity.
- updated_
at str - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- external
Region StringId - The id of the region as seen in the cloud provider for which this profile is defined.
- id String
- The provider-assigned unique ID for this managed resource.
- links List<Property Map>
- HATEOAS of the entity
- organization
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
Look up Existing StorageProfileAzure Resource
Get an existing StorageProfileAzure resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: StorageProfileAzureState, opts?: CustomResourceOptions): StorageProfileAzure
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
data_disk_caching: Optional[str] = None,
default_item: Optional[bool] = None,
description: Optional[str] = None,
disk_type: Optional[str] = None,
external_region_id: Optional[str] = None,
links: Optional[Sequence[StorageProfileAzureLinkArgs]] = None,
name: Optional[str] = None,
organization_id: Optional[str] = None,
os_disk_caching: Optional[str] = None,
owner: Optional[str] = None,
region_id: Optional[str] = None,
storage_account_id: Optional[str] = None,
storage_profile_azure_id: Optional[str] = None,
supports_encryption: Optional[bool] = None,
tags: Optional[Sequence[StorageProfileAzureTagArgs]] = None,
updated_at: Optional[str] = None) -> StorageProfileAzure
func GetStorageProfileAzure(ctx *Context, name string, id IDInput, state *StorageProfileAzureState, opts ...ResourceOption) (*StorageProfileAzure, error)
public static StorageProfileAzure Get(string name, Input<string> id, StorageProfileAzureState? state, CustomResourceOptions? opts = null)
public static StorageProfileAzure get(String name, Output<String> id, StorageProfileAzureState state, CustomResourceOptions options)
resources: _: type: vra:StorageProfileAzure get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- Data
Disk stringCaching - Indicates the caching mechanism for additional disk.
- Default
Item bool - Indicates if this storage profile is a default profile.
- Description string
- A human-friendly description.
- Disk
Type string - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- External
Region stringId - The id of the region as seen in the cloud provider for which this profile is defined.
- Links
List<Storage
Profile Azure Link> - HATEOAS of the entity
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Organization
Id string - The id of the organization this entity belongs to.
- Os
Disk stringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- Owner string
- Email of the user that owns the entity.
- Region
Id string - A link to the region that is associated with the storage profile.
- Storage
Account stringId - Id of a storage account where in the disk is placed.
- Storage
Profile stringAzure Id - Supports
Encryption bool - Indicates whether this storage policy should support encryption or not.
- List<Storage
Profile Azure Tag> - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- Created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- Data
Disk stringCaching - Indicates the caching mechanism for additional disk.
- Default
Item bool - Indicates if this storage profile is a default profile.
- Description string
- A human-friendly description.
- Disk
Type string - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- External
Region stringId - The id of the region as seen in the cloud provider for which this profile is defined.
- Links
[]Storage
Profile Azure Link Args - HATEOAS of the entity
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Organization
Id string - The id of the organization this entity belongs to.
- Os
Disk stringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- Owner string
- Email of the user that owns the entity.
- Region
Id string - A link to the region that is associated with the storage profile.
- Storage
Account stringId - Id of a storage account where in the disk is placed.
- Storage
Profile stringAzure Id - Supports
Encryption bool - Indicates whether this storage policy should support encryption or not.
- []Storage
Profile Azure Tag Args - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- data
Disk StringCaching - Indicates the caching mechanism for additional disk.
- default
Item Boolean - Indicates if this storage profile is a default profile.
- description String
- A human-friendly description.
- disk
Type String - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- external
Region StringId - The id of the region as seen in the cloud provider for which this profile is defined.
- links
List<Storage
Profile Azure Link> - HATEOAS of the entity
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- organization
Id String - The id of the organization this entity belongs to.
- os
Disk StringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- owner String
- Email of the user that owns the entity.
- region
Id String - A link to the region that is associated with the storage profile.
- storage
Account StringId - Id of a storage account where in the disk is placed.
- storage
Profile StringAzure Id - supports
Encryption Boolean - Indicates whether this storage policy should support encryption or not.
- List<Storage
Profile Azure Tag> - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- data
Disk stringCaching - Indicates the caching mechanism for additional disk.
- default
Item boolean - Indicates if this storage profile is a default profile.
- description string
- A human-friendly description.
- disk
Type string - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- external
Region stringId - The id of the region as seen in the cloud provider for which this profile is defined.
- links
Storage
Profile Azure Link[] - HATEOAS of the entity
- name string
- A human-friendly name used as an identifier in APIs that support this option.
- organization
Id string - The id of the organization this entity belongs to.
- os
Disk stringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- owner string
- Email of the user that owns the entity.
- region
Id string - A link to the region that is associated with the storage profile.
- storage
Account stringId - Id of a storage account where in the disk is placed.
- storage
Profile stringAzure Id - supports
Encryption boolean - Indicates whether this storage policy should support encryption or not.
- Storage
Profile Azure Tag[] - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created_
at str - Date when the entity was created. The date is in ISO 6801 and UTC.
- data_
disk_ strcaching - Indicates the caching mechanism for additional disk.
- default_
item bool - Indicates if this storage profile is a default profile.
- description str
- A human-friendly description.
- disk_
type str - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- external_
region_ strid - The id of the region as seen in the cloud provider for which this profile is defined.
- links
Sequence[Storage
Profile Azure Link Args] - HATEOAS of the entity
- name str
- A human-friendly name used as an identifier in APIs that support this option.
- organization_
id str - The id of the organization this entity belongs to.
- os_
disk_ strcaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- owner str
- Email of the user that owns the entity.
- region_
id str - A link to the region that is associated with the storage profile.
- storage_
account_ strid - Id of a storage account where in the disk is placed.
- storage_
profile_ strazure_ id - supports_
encryption bool - Indicates whether this storage policy should support encryption or not.
- Sequence[Storage
Profile Azure Tag Args] - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- updated_
at str - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- data
Disk StringCaching - Indicates the caching mechanism for additional disk.
- default
Item Boolean - Indicates if this storage profile is a default profile.
- description String
- A human-friendly description.
- disk
Type String - Indicates the performance tier for the storage type. Premium disks are SSD backed and Standard disks are HDD backed.
- external
Region StringId - The id of the region as seen in the cloud provider for which this profile is defined.
- links List<Property Map>
- HATEOAS of the entity
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- organization
Id String - The id of the organization this entity belongs to.
- os
Disk StringCaching - Indicates the caching mechanism for OS disk. Default policy for OS disks is Read/Write.
- owner String
- Email of the user that owns the entity.
- region
Id String - A link to the region that is associated with the storage profile.
- storage
Account StringId - Id of a storage account where in the disk is placed.
- storage
Profile StringAzure Id - supports
Encryption Boolean - Indicates whether this storage policy should support encryption or not.
- List<Property Map>
- A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
Supporting Types
StorageProfileAzureLink, StorageProfileAzureLinkArgs
StorageProfileAzureTag, StorageProfileAzureTagArgs
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the
vra
Terraform Provider.