vra.StorageProfileAws
Explore with Pulumi AI
Example Usage
S
This is an example of how to create a storage profile aws resource.
Vra storage profile aws:
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
// AWS storage profile using vra_storage_profile_aws resource and EBS disk type.
const thisStorageProfileAws = new vra.StorageProfileAws("thisStorageProfileAws", {
description: "AWS Storage Profile with instance store device type.",
regionId: data.vra_region["this"].id,
defaultItem: false,
supportsEncryption: false,
deviceType: "ebs",
volumeType: "io1",
iops: "1000",
tags: [{
key: "foo",
value: "bar",
}],
});
// AWS storage profile using vra_storage_profile_aws resource and instance store disk type.
const thisIndex_storageProfileAwsStorageProfileAws = new vra.StorageProfileAws("thisIndex/storageProfileAwsStorageProfileAws", {
description: "AWS Storage Profile with instance store device type.",
regionId: data.vra_region["this"].id,
defaultItem: false,
deviceType: "instance-store",
tags: [{
key: "foo",
value: "bar",
}],
});
import pulumi
import pulumi_vra as vra
# AWS storage profile using vra_storage_profile_aws resource and EBS disk type.
this_storage_profile_aws = vra.StorageProfileAws("thisStorageProfileAws",
description="AWS Storage Profile with instance store device type.",
region_id=data["vra_region"]["this"]["id"],
default_item=False,
supports_encryption=False,
device_type="ebs",
volume_type="io1",
iops="1000",
tags=[{
"key": "foo",
"value": "bar",
}])
# AWS storage profile using vra_storage_profile_aws resource and instance store disk type.
this_index_storage_profile_aws_storage_profile_aws = vra.StorageProfileAws("thisIndex/storageProfileAwsStorageProfileAws",
description="AWS Storage Profile with instance store device type.",
region_id=data["vra_region"]["this"]["id"],
default_item=False,
device_type="instance-store",
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 {
// AWS storage profile using vra_storage_profile_aws resource and EBS disk type.
_, err := vra.NewStorageProfileAws(ctx, "thisStorageProfileAws", &vra.StorageProfileAwsArgs{
Description: pulumi.String("AWS Storage Profile with instance store device type."),
RegionId: pulumi.Any(data.Vra_region.This.Id),
DefaultItem: pulumi.Bool(false),
SupportsEncryption: pulumi.Bool(false),
DeviceType: pulumi.String("ebs"),
VolumeType: pulumi.String("io1"),
Iops: pulumi.String("1000"),
Tags: vra.StorageProfileAwsTagArray{
&vra.StorageProfileAwsTagArgs{
Key: pulumi.String("foo"),
Value: pulumi.String("bar"),
},
},
})
if err != nil {
return err
}
// AWS storage profile using vra_storage_profile_aws resource and instance store disk type.
_, err = vra.NewStorageProfileAws(ctx, "thisIndex/storageProfileAwsStorageProfileAws", &vra.StorageProfileAwsArgs{
Description: pulumi.String("AWS Storage Profile with instance store device type."),
RegionId: pulumi.Any(data.Vra_region.This.Id),
DefaultItem: pulumi.Bool(false),
DeviceType: pulumi.String("instance-store"),
Tags: vra.StorageProfileAwsTagArray{
&vra.StorageProfileAwsTagArgs{
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(() =>
{
// AWS storage profile using vra_storage_profile_aws resource and EBS disk type.
var thisStorageProfileAws = new Vra.StorageProfileAws("thisStorageProfileAws", new()
{
Description = "AWS Storage Profile with instance store device type.",
RegionId = data.Vra_region.This.Id,
DefaultItem = false,
SupportsEncryption = false,
DeviceType = "ebs",
VolumeType = "io1",
Iops = "1000",
Tags = new[]
{
new Vra.Inputs.StorageProfileAwsTagArgs
{
Key = "foo",
Value = "bar",
},
},
});
// AWS storage profile using vra_storage_profile_aws resource and instance store disk type.
var thisIndex_storageProfileAwsStorageProfileAws = new Vra.StorageProfileAws("thisIndex/storageProfileAwsStorageProfileAws", new()
{
Description = "AWS Storage Profile with instance store device type.",
RegionId = data.Vra_region.This.Id,
DefaultItem = false,
DeviceType = "instance-store",
Tags = new[]
{
new Vra.Inputs.StorageProfileAwsTagArgs
{
Key = "foo",
Value = "bar",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.StorageProfileAws;
import com.pulumi.vra.StorageProfileAwsArgs;
import com.pulumi.vra.inputs.StorageProfileAwsTagArgs;
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) {
// AWS storage profile using vra_storage_profile_aws resource and EBS disk type.
var thisStorageProfileAws = new StorageProfileAws("thisStorageProfileAws", StorageProfileAwsArgs.builder()
.description("AWS Storage Profile with instance store device type.")
.regionId(data.vra_region().this().id())
.defaultItem(false)
.supportsEncryption(false)
.deviceType("ebs")
.volumeType("io1")
.iops("1000")
.tags(StorageProfileAwsTagArgs.builder()
.key("foo")
.value("bar")
.build())
.build());
// AWS storage profile using vra_storage_profile_aws resource and instance store disk type.
var thisIndex_storageProfileAwsStorageProfileAws = new StorageProfileAws("thisIndex/storageProfileAwsStorageProfileAws", StorageProfileAwsArgs.builder()
.description("AWS Storage Profile with instance store device type.")
.regionId(data.vra_region().this().id())
.defaultItem(false)
.deviceType("instance-store")
.tags(StorageProfileAwsTagArgs.builder()
.key("foo")
.value("bar")
.build())
.build());
}
}
resources:
# AWS storage profile using vra_storage_profile_aws resource and EBS disk type.
thisStorageProfileAws:
type: vra:StorageProfileAws
properties:
description: AWS Storage Profile with instance store device type.
regionId: ${data.vra_region.this.id}
defaultItem: false
supportsEncryption: false
deviceType: ebs
# Volume Types: gp2 - General Purpose SSD, io1 - Provisioned IOPS SSD, sc1 - Cold HDD, ST1 - Throughput Optimized HDD, standard - Magnetic
volumeType: io1
# Supported values: gp2, io1, sc1, st1, standard.
iops: '1000' # Required only when volumeType is io1.
tags:
- key: foo
value: bar
# AWS storage profile using vra_storage_profile_aws resource and instance store disk type.
thisIndex/storageProfileAwsStorageProfileAws:
type: vra:StorageProfileAws
properties:
description: AWS Storage Profile with instance store device type.
regionId: ${data.vra_region.this.id}
defaultItem: false
deviceType: instance-store
tags:
- key: foo
value: bar
A storage profile aws resource supports the following arguments:
Create StorageProfileAws Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StorageProfileAws(name: string, args: StorageProfileAwsArgs, opts?: CustomResourceOptions);
@overload
def StorageProfileAws(resource_name: str,
args: StorageProfileAwsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StorageProfileAws(resource_name: str,
opts: Optional[ResourceOptions] = None,
default_item: Optional[bool] = None,
region_id: Optional[str] = None,
description: Optional[str] = None,
device_type: Optional[str] = None,
iops: Optional[str] = None,
name: Optional[str] = None,
storage_profile_aws_id: Optional[str] = None,
supports_encryption: Optional[bool] = None,
tags: Optional[Sequence[StorageProfileAwsTagArgs]] = None,
volume_type: Optional[str] = None)
func NewStorageProfileAws(ctx *Context, name string, args StorageProfileAwsArgs, opts ...ResourceOption) (*StorageProfileAws, error)
public StorageProfileAws(string name, StorageProfileAwsArgs args, CustomResourceOptions? opts = null)
public StorageProfileAws(String name, StorageProfileAwsArgs args)
public StorageProfileAws(String name, StorageProfileAwsArgs args, CustomResourceOptions options)
type: vra:StorageProfileAws
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 StorageProfileAwsArgs
- 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 StorageProfileAwsArgs
- 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 StorageProfileAwsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StorageProfileAwsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StorageProfileAwsArgs
- 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 storageProfileAwsResource = new Vra.StorageProfileAws("storageProfileAwsResource", new()
{
DefaultItem = false,
RegionId = "string",
Description = "string",
DeviceType = "string",
Iops = "string",
Name = "string",
StorageProfileAwsId = "string",
SupportsEncryption = false,
Tags = new[]
{
new Vra.Inputs.StorageProfileAwsTagArgs
{
Key = "string",
Value = "string",
},
},
VolumeType = "string",
});
example, err := vra.NewStorageProfileAws(ctx, "storageProfileAwsResource", &vra.StorageProfileAwsArgs{
DefaultItem: pulumi.Bool(false),
RegionId: pulumi.String("string"),
Description: pulumi.String("string"),
DeviceType: pulumi.String("string"),
Iops: pulumi.String("string"),
Name: pulumi.String("string"),
StorageProfileAwsId: pulumi.String("string"),
SupportsEncryption: pulumi.Bool(false),
Tags: vra.StorageProfileAwsTagArray{
&vra.StorageProfileAwsTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
VolumeType: pulumi.String("string"),
})
var storageProfileAwsResource = new StorageProfileAws("storageProfileAwsResource", StorageProfileAwsArgs.builder()
.defaultItem(false)
.regionId("string")
.description("string")
.deviceType("string")
.iops("string")
.name("string")
.storageProfileAwsId("string")
.supportsEncryption(false)
.tags(StorageProfileAwsTagArgs.builder()
.key("string")
.value("string")
.build())
.volumeType("string")
.build());
storage_profile_aws_resource = vra.StorageProfileAws("storageProfileAwsResource",
default_item=False,
region_id="string",
description="string",
device_type="string",
iops="string",
name="string",
storage_profile_aws_id="string",
supports_encryption=False,
tags=[{
"key": "string",
"value": "string",
}],
volume_type="string")
const storageProfileAwsResource = new vra.StorageProfileAws("storageProfileAwsResource", {
defaultItem: false,
regionId: "string",
description: "string",
deviceType: "string",
iops: "string",
name: "string",
storageProfileAwsId: "string",
supportsEncryption: false,
tags: [{
key: "string",
value: "string",
}],
volumeType: "string",
});
type: vra:StorageProfileAws
properties:
defaultItem: false
description: string
deviceType: string
iops: string
name: string
regionId: string
storageProfileAwsId: string
supportsEncryption: false
tags:
- key: string
value: string
volumeType: string
StorageProfileAws 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 StorageProfileAws 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.
- Description string
- A human-friendly description.
- Device
Type string - Indicates the type of storage device.
- Iops string
- Indicates maximum I/O operations per second in range(1-20,000).
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Storage
Profile stringAws Id - Supports
Encryption bool - Indicates whether this storage profile supports encryption or not.
- List<Storage
Profile Aws Tag> - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- Volume
Type string - Indicates the type of volume associated with type of storage.
- 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.
- Description string
- A human-friendly description.
- Device
Type string - Indicates the type of storage device.
- Iops string
- Indicates maximum I/O operations per second in range(1-20,000).
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Storage
Profile stringAws Id - Supports
Encryption bool - Indicates whether this storage profile supports encryption or not.
- []Storage
Profile Aws Tag Args - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- Volume
Type string - Indicates the type of volume associated with type of storage.
- 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.
- description String
- A human-friendly description.
- device
Type String - Indicates the type of storage device.
- iops String
- Indicates maximum I/O operations per second in range(1-20,000).
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- storage
Profile StringAws Id - supports
Encryption Boolean - Indicates whether this storage profile supports encryption or not.
- List<Storage
Profile Aws Tag> - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- volume
Type String - Indicates the type of volume associated with type of storage.
- 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.
- description string
- A human-friendly description.
- device
Type string - Indicates the type of storage device.
- iops string
- Indicates maximum I/O operations per second in range(1-20,000).
- name string
- A human-friendly name used as an identifier in APIs that support this option.
- storage
Profile stringAws Id - supports
Encryption boolean - Indicates whether this storage profile supports encryption or not.
- Storage
Profile Aws Tag[] - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- volume
Type string - Indicates the type of volume associated with type of storage.
- 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.
- description str
- A human-friendly description.
- device_
type str - Indicates the type of storage device.
- iops str
- Indicates maximum I/O operations per second in range(1-20,000).
- name str
- A human-friendly name used as an identifier in APIs that support this option.
- storage_
profile_ straws_ id - supports_
encryption bool - Indicates whether this storage profile supports encryption or not.
- Sequence[Storage
Profile Aws Tag Args] - A set of tag keys and optional values that were set on this Network Profile.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- volume_
type str - Indicates the type of volume associated with type of storage.
- 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.
- description String
- A human-friendly description.
- device
Type String - Indicates the type of storage device.
- iops String
- Indicates maximum I/O operations per second in range(1-20,000).
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- storage
Profile StringAws Id - supports
Encryption Boolean - Indicates whether this storage profile supports 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" } ]
- volume
Type String - Indicates the type of volume associated with type of storage.
Outputs
All input properties are implicitly available as output properties. Additionally, the StorageProfileAws 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 Aws 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 Aws 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 Aws 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 Aws 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 Aws 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 StorageProfileAws Resource
Get an existing StorageProfileAws 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?: StorageProfileAwsState, opts?: CustomResourceOptions): StorageProfileAws
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
default_item: Optional[bool] = None,
description: Optional[str] = None,
device_type: Optional[str] = None,
external_region_id: Optional[str] = None,
iops: Optional[str] = None,
links: Optional[Sequence[StorageProfileAwsLinkArgs]] = None,
name: Optional[str] = None,
organization_id: Optional[str] = None,
owner: Optional[str] = None,
region_id: Optional[str] = None,
storage_profile_aws_id: Optional[str] = None,
supports_encryption: Optional[bool] = None,
tags: Optional[Sequence[StorageProfileAwsTagArgs]] = None,
updated_at: Optional[str] = None,
volume_type: Optional[str] = None) -> StorageProfileAws
func GetStorageProfileAws(ctx *Context, name string, id IDInput, state *StorageProfileAwsState, opts ...ResourceOption) (*StorageProfileAws, error)
public static StorageProfileAws Get(string name, Input<string> id, StorageProfileAwsState? state, CustomResourceOptions? opts = null)
public static StorageProfileAws get(String name, Output<String> id, StorageProfileAwsState state, CustomResourceOptions options)
resources: _: type: vra:StorageProfileAws 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.
- Default
Item bool - Indicates if this storage profile is a default profile.
- Description string
- A human-friendly description.
- Device
Type string - Indicates the type of storage device.
- External
Region stringId - The id of the region as seen in the cloud provider for which this profile is defined.
- Iops string
- Indicates maximum I/O operations per second in range(1-20,000).
- Links
List<Storage
Profile Aws 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.
- 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
Profile stringAws Id - Supports
Encryption bool - Indicates whether this storage profile supports encryption or not.
- List<Storage
Profile Aws 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.
- Volume
Type string - Indicates the type of volume associated with type of storage.
- Created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- Default
Item bool - Indicates if this storage profile is a default profile.
- Description string
- A human-friendly description.
- Device
Type string - Indicates the type of storage device.
- External
Region stringId - The id of the region as seen in the cloud provider for which this profile is defined.
- Iops string
- Indicates maximum I/O operations per second in range(1-20,000).
- Links
[]Storage
Profile Aws 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.
- 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
Profile stringAws Id - Supports
Encryption bool - Indicates whether this storage profile supports encryption or not.
- []Storage
Profile Aws 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.
- Volume
Type string - Indicates the type of volume associated with type of storage.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- default
Item Boolean - Indicates if this storage profile is a default profile.
- description String
- A human-friendly description.
- device
Type String - Indicates the type of storage device.
- external
Region StringId - The id of the region as seen in the cloud provider for which this profile is defined.
- iops String
- Indicates maximum I/O operations per second in range(1-20,000).
- links
List<Storage
Profile Aws 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.
- 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
Profile StringAws Id - supports
Encryption Boolean - Indicates whether this storage profile supports encryption or not.
- List<Storage
Profile Aws 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.
- volume
Type String - Indicates the type of volume associated with type of storage.
- created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- default
Item boolean - Indicates if this storage profile is a default profile.
- description string
- A human-friendly description.
- device
Type string - Indicates the type of storage device.
- external
Region stringId - The id of the region as seen in the cloud provider for which this profile is defined.
- iops string
- Indicates maximum I/O operations per second in range(1-20,000).
- links
Storage
Profile Aws 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.
- 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
Profile stringAws Id - supports
Encryption boolean - Indicates whether this storage profile supports encryption or not.
- Storage
Profile Aws 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.
- volume
Type string - Indicates the type of volume associated with type of storage.
- created_
at str - Date when the entity was created. The date is in ISO 6801 and UTC.
- default_
item bool - Indicates if this storage profile is a default profile.
- description str
- A human-friendly description.
- device_
type str - Indicates the type of storage device.
- external_
region_ strid - The id of the region as seen in the cloud provider for which this profile is defined.
- iops str
- Indicates maximum I/O operations per second in range(1-20,000).
- links
Sequence[Storage
Profile Aws 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.
- 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_
profile_ straws_ id - supports_
encryption bool - Indicates whether this storage profile supports encryption or not.
- Sequence[Storage
Profile Aws 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.
- volume_
type str - Indicates the type of volume associated with type of storage.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- default
Item Boolean - Indicates if this storage profile is a default profile.
- description String
- A human-friendly description.
- device
Type String - Indicates the type of storage device.
- external
Region StringId - The id of the region as seen in the cloud provider for which this profile is defined.
- iops String
- Indicates maximum I/O operations per second in range(1-20,000).
- 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.
- 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
Profile StringAws Id - supports
Encryption Boolean - Indicates whether this storage profile supports 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.
- volume
Type String - Indicates the type of volume associated with type of storage.
Supporting Types
StorageProfileAwsLink, StorageProfileAwsLinkArgs
StorageProfileAwsTag, StorageProfileAwsTagArgs
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the
vra
Terraform Provider.