cpln.VolumeSet
Explore with Pulumi AI
Create VolumeSet Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VolumeSet(name: string, args: VolumeSetArgs, opts?: CustomResourceOptions);
@overload
def VolumeSet(resource_name: str,
args: VolumeSetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VolumeSet(resource_name: str,
opts: Optional[ResourceOptions] = None,
gvc: Optional[str] = None,
initial_capacity: Optional[int] = None,
performance_class: Optional[str] = None,
autoscaling: Optional[VolumeSetAutoscalingArgs] = None,
description: Optional[str] = None,
file_system_type: Optional[str] = None,
name: Optional[str] = None,
snapshots: Optional[VolumeSetSnapshotsArgs] = None,
storage_class_suffix: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewVolumeSet(ctx *Context, name string, args VolumeSetArgs, opts ...ResourceOption) (*VolumeSet, error)
public VolumeSet(string name, VolumeSetArgs args, CustomResourceOptions? opts = null)
public VolumeSet(String name, VolumeSetArgs args)
public VolumeSet(String name, VolumeSetArgs args, CustomResourceOptions options)
type: cpln:VolumeSet
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 VolumeSetArgs
- 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 VolumeSetArgs
- 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 VolumeSetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeSetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeSetArgs
- 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 volumeSetResource = new Cpln.VolumeSet("volumeSetResource", new()
{
Gvc = "string",
InitialCapacity = 0,
PerformanceClass = "string",
Autoscaling = new Cpln.Inputs.VolumeSetAutoscalingArgs
{
MaxCapacity = 0,
MinFreePercentage = 0,
ScalingFactor = 0,
},
Description = "string",
FileSystemType = "string",
Name = "string",
Snapshots = new Cpln.Inputs.VolumeSetSnapshotsArgs
{
CreateFinalSnapshot = false,
RetentionDuration = "string",
Schedule = "string",
},
StorageClassSuffix = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := cpln.NewVolumeSet(ctx, "volumeSetResource", &cpln.VolumeSetArgs{
Gvc: pulumi.String("string"),
InitialCapacity: pulumi.Int(0),
PerformanceClass: pulumi.String("string"),
Autoscaling: &cpln.VolumeSetAutoscalingArgs{
MaxCapacity: pulumi.Int(0),
MinFreePercentage: pulumi.Int(0),
ScalingFactor: pulumi.Float64(0),
},
Description: pulumi.String("string"),
FileSystemType: pulumi.String("string"),
Name: pulumi.String("string"),
Snapshots: &cpln.VolumeSetSnapshotsArgs{
CreateFinalSnapshot: pulumi.Bool(false),
RetentionDuration: pulumi.String("string"),
Schedule: pulumi.String("string"),
},
StorageClassSuffix: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var volumeSetResource = new VolumeSet("volumeSetResource", VolumeSetArgs.builder()
.gvc("string")
.initialCapacity(0)
.performanceClass("string")
.autoscaling(VolumeSetAutoscalingArgs.builder()
.maxCapacity(0)
.minFreePercentage(0)
.scalingFactor(0)
.build())
.description("string")
.fileSystemType("string")
.name("string")
.snapshots(VolumeSetSnapshotsArgs.builder()
.createFinalSnapshot(false)
.retentionDuration("string")
.schedule("string")
.build())
.storageClassSuffix("string")
.tags(Map.of("string", "string"))
.build());
volume_set_resource = cpln.VolumeSet("volumeSetResource",
gvc="string",
initial_capacity=0,
performance_class="string",
autoscaling={
"max_capacity": 0,
"min_free_percentage": 0,
"scaling_factor": 0,
},
description="string",
file_system_type="string",
name="string",
snapshots={
"create_final_snapshot": False,
"retention_duration": "string",
"schedule": "string",
},
storage_class_suffix="string",
tags={
"string": "string",
})
const volumeSetResource = new cpln.VolumeSet("volumeSetResource", {
gvc: "string",
initialCapacity: 0,
performanceClass: "string",
autoscaling: {
maxCapacity: 0,
minFreePercentage: 0,
scalingFactor: 0,
},
description: "string",
fileSystemType: "string",
name: "string",
snapshots: {
createFinalSnapshot: false,
retentionDuration: "string",
schedule: "string",
},
storageClassSuffix: "string",
tags: {
string: "string",
},
});
type: cpln:VolumeSet
properties:
autoscaling:
maxCapacity: 0
minFreePercentage: 0
scalingFactor: 0
description: string
fileSystemType: string
gvc: string
initialCapacity: 0
name: string
performanceClass: string
snapshots:
createFinalSnapshot: false
retentionDuration: string
schedule: string
storageClassSuffix: string
tags:
string: string
VolumeSet 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 VolumeSet resource accepts the following input properties:
- Gvc string
- Name of the associated GVC.
- Initial
Capacity int - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - Performance
Class string - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- Autoscaling
Pulumiverse.
Cpln. Inputs. Volume Set Autoscaling - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- Description string
- Description of the Volume Set.
- File
System stringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- Name string
- Name of the Volume Set.
- Snapshots
Pulumiverse.
Cpln. Inputs. Volume Set Snapshots - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- Storage
Class stringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- Dictionary<string, string>
- Key-value map of resource tags.
- Gvc string
- Name of the associated GVC.
- Initial
Capacity int - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - Performance
Class string - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- Autoscaling
Volume
Set Autoscaling Args - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- Description string
- Description of the Volume Set.
- File
System stringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- Name string
- Name of the Volume Set.
- Snapshots
Volume
Set Snapshots Args - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- Storage
Class stringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- map[string]string
- Key-value map of resource tags.
- gvc String
- Name of the associated GVC.
- initial
Capacity Integer - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - performance
Class String - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- autoscaling
Volume
Set Autoscaling - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- description String
- Description of the Volume Set.
- file
System StringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- name String
- Name of the Volume Set.
- snapshots
Volume
Set Snapshots - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- storage
Class StringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- Map<String,String>
- Key-value map of resource tags.
- gvc string
- Name of the associated GVC.
- initial
Capacity number - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - performance
Class string - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- autoscaling
Volume
Set Autoscaling - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- description string
- Description of the Volume Set.
- file
System stringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- name string
- Name of the Volume Set.
- snapshots
Volume
Set Snapshots - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- storage
Class stringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- {[key: string]: string}
- Key-value map of resource tags.
- gvc str
- Name of the associated GVC.
- initial_
capacity int - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - performance_
class str - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- autoscaling
Volume
Set Autoscaling Args - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- description str
- Description of the Volume Set.
- file_
system_ strtype - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- name str
- Name of the Volume Set.
- snapshots
Volume
Set Snapshots Args - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- storage_
class_ strsuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- Mapping[str, str]
- Key-value map of resource tags.
- gvc String
- Name of the associated GVC.
- initial
Capacity Number - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - performance
Class String - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- autoscaling Property Map
- Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- description String
- Description of the Volume Set.
- file
System StringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- name String
- Name of the Volume Set.
- snapshots Property Map
- Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- storage
Class StringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- Map<String>
- Key-value map of resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the VolumeSet resource produces the following output properties:
- Cpln
Id string - ID, in GUID format, of the Volume Set.
- Id string
- The provider-assigned unique ID for this managed resource.
- Self
Link string - Full link to this resource. Can be referenced by other resources.
- Statuses
List<Pulumiverse.
Cpln. Outputs. Volume Set Status> - Status of the Volume Set.
- Volumeset
Link string - Output used when linking a volume set to a workload.
- Cpln
Id string - ID, in GUID format, of the Volume Set.
- Id string
- The provider-assigned unique ID for this managed resource.
- Self
Link string - Full link to this resource. Can be referenced by other resources.
- Statuses
[]Volume
Set Status - Status of the Volume Set.
- Volumeset
Link string - Output used when linking a volume set to a workload.
- cpln
Id String - ID, in GUID format, of the Volume Set.
- id String
- The provider-assigned unique ID for this managed resource.
- self
Link String - Full link to this resource. Can be referenced by other resources.
- statuses
List<Volume
Set Status> - Status of the Volume Set.
- volumeset
Link String - Output used when linking a volume set to a workload.
- cpln
Id string - ID, in GUID format, of the Volume Set.
- id string
- The provider-assigned unique ID for this managed resource.
- self
Link string - Full link to this resource. Can be referenced by other resources.
- statuses
Volume
Set Status[] - Status of the Volume Set.
- volumeset
Link string - Output used when linking a volume set to a workload.
- cpln_
id str - ID, in GUID format, of the Volume Set.
- id str
- The provider-assigned unique ID for this managed resource.
- self_
link str - Full link to this resource. Can be referenced by other resources.
- statuses
Sequence[Volume
Set Status] - Status of the Volume Set.
- volumeset_
link str - Output used when linking a volume set to a workload.
- cpln
Id String - ID, in GUID format, of the Volume Set.
- id String
- The provider-assigned unique ID for this managed resource.
- self
Link String - Full link to this resource. Can be referenced by other resources.
- statuses List<Property Map>
- Status of the Volume Set.
- volumeset
Link String - Output used when linking a volume set to a workload.
Look up Existing VolumeSet Resource
Get an existing VolumeSet 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?: VolumeSetState, opts?: CustomResourceOptions): VolumeSet
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
autoscaling: Optional[VolumeSetAutoscalingArgs] = None,
cpln_id: Optional[str] = None,
description: Optional[str] = None,
file_system_type: Optional[str] = None,
gvc: Optional[str] = None,
initial_capacity: Optional[int] = None,
name: Optional[str] = None,
performance_class: Optional[str] = None,
self_link: Optional[str] = None,
snapshots: Optional[VolumeSetSnapshotsArgs] = None,
statuses: Optional[Sequence[VolumeSetStatusArgs]] = None,
storage_class_suffix: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
volumeset_link: Optional[str] = None) -> VolumeSet
func GetVolumeSet(ctx *Context, name string, id IDInput, state *VolumeSetState, opts ...ResourceOption) (*VolumeSet, error)
public static VolumeSet Get(string name, Input<string> id, VolumeSetState? state, CustomResourceOptions? opts = null)
public static VolumeSet get(String name, Output<String> id, VolumeSetState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Autoscaling
Pulumiverse.
Cpln. Inputs. Volume Set Autoscaling - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- Cpln
Id string - ID, in GUID format, of the Volume Set.
- Description string
- Description of the Volume Set.
- File
System stringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- Gvc string
- Name of the associated GVC.
- Initial
Capacity int - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - Name string
- Name of the Volume Set.
- Performance
Class string - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- Self
Link string - Full link to this resource. Can be referenced by other resources.
- Snapshots
Pulumiverse.
Cpln. Inputs. Volume Set Snapshots - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- Statuses
List<Pulumiverse.
Cpln. Inputs. Volume Set Status> - Status of the Volume Set.
- Storage
Class stringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- Dictionary<string, string>
- Key-value map of resource tags.
- Volumeset
Link string - Output used when linking a volume set to a workload.
- Autoscaling
Volume
Set Autoscaling Args - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- Cpln
Id string - ID, in GUID format, of the Volume Set.
- Description string
- Description of the Volume Set.
- File
System stringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- Gvc string
- Name of the associated GVC.
- Initial
Capacity int - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - Name string
- Name of the Volume Set.
- Performance
Class string - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- Self
Link string - Full link to this resource. Can be referenced by other resources.
- Snapshots
Volume
Set Snapshots Args - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- Statuses
[]Volume
Set Status Args - Status of the Volume Set.
- Storage
Class stringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- map[string]string
- Key-value map of resource tags.
- Volumeset
Link string - Output used when linking a volume set to a workload.
- autoscaling
Volume
Set Autoscaling - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- cpln
Id String - ID, in GUID format, of the Volume Set.
- description String
- Description of the Volume Set.
- file
System StringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- gvc String
- Name of the associated GVC.
- initial
Capacity Integer - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - name String
- Name of the Volume Set.
- performance
Class String - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- self
Link String - Full link to this resource. Can be referenced by other resources.
- snapshots
Volume
Set Snapshots - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- statuses
List<Volume
Set Status> - Status of the Volume Set.
- storage
Class StringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- Map<String,String>
- Key-value map of resource tags.
- volumeset
Link String - Output used when linking a volume set to a workload.
- autoscaling
Volume
Set Autoscaling - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- cpln
Id string - ID, in GUID format, of the Volume Set.
- description string
- Description of the Volume Set.
- file
System stringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- gvc string
- Name of the associated GVC.
- initial
Capacity number - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - name string
- Name of the Volume Set.
- performance
Class string - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- self
Link string - Full link to this resource. Can be referenced by other resources.
- snapshots
Volume
Set Snapshots - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- statuses
Volume
Set Status[] - Status of the Volume Set.
- storage
Class stringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- {[key: string]: string}
- Key-value map of resource tags.
- volumeset
Link string - Output used when linking a volume set to a workload.
- autoscaling
Volume
Set Autoscaling Args - Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- cpln_
id str - ID, in GUID format, of the Volume Set.
- description str
- Description of the Volume Set.
- file_
system_ strtype - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- gvc str
- Name of the associated GVC.
- initial_
capacity int - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - name str
- Name of the Volume Set.
- performance_
class str - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- self_
link str - Full link to this resource. Can be referenced by other resources.
- snapshots
Volume
Set Snapshots Args - Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- statuses
Sequence[Volume
Set Status Args] - Status of the Volume Set.
- storage_
class_ strsuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- Mapping[str, str]
- Key-value map of resource tags.
- volumeset_
link str - Output used when linking a volume set to a workload.
- autoscaling Property Map
- Automated adjustment of the volume set's capacity based on predefined metrics or conditions.
- cpln
Id String - ID, in GUID format, of the Volume Set.
- description String
- Description of the Volume Set.
- file
System StringType - Each volume set has a single, immutable file system. Valid types:
xfs
orext4
- gvc String
- Name of the associated GVC.
- initial
Capacity Number - The initial volume size in this set, specified in GB. The minimum size for the performance class
general-purpose-ssd
is10 GB
, whilehigh-throughput-ssd
requires at least200 GB
. - name String
- Name of the Volume Set.
- performance
Class String - Each volume set has a single, immutable, performance class. Valid classes:
general-purpose-ssd
orhigh-throughput-ssd
- self
Link String - Full link to this resource. Can be referenced by other resources.
- snapshots Property Map
- Point-in-time copies of data stored within the volume set, capturing the state of the data at a specific moment.
- statuses List<Property Map>
- Status of the Volume Set.
- storage
Class StringSuffix - For self-hosted locations only. The storage class used for volumes in this set will be {performanceClass}-{fileSystemType}-{storageClassSuffix} if it exists, otherwise it will be {performanceClass}-{fileSystemType}
- Map<String>
- Key-value map of resource tags.
- volumeset
Link String - Output used when linking a volume set to a workload.
Supporting Types
VolumeSetAutoscaling, VolumeSetAutoscalingArgs
- Max
Capacity int - Min
Free intPercentage - Scaling
Factor double
- Max
Capacity int - Min
Free intPercentage - Scaling
Factor float64
- max
Capacity Integer - min
Free IntegerPercentage - scaling
Factor Double
- max
Capacity number - min
Free numberPercentage - scaling
Factor number
- max_
capacity int - min_
free_ intpercentage - scaling_
factor float
- max
Capacity Number - min
Free NumberPercentage - scaling
Factor Number
VolumeSetSnapshots, VolumeSetSnapshotsArgs
- Create
Final boolSnapshot - Retention
Duration string - Schedule string
- Create
Final boolSnapshot - Retention
Duration string - Schedule string
- create
Final BooleanSnapshot - retention
Duration String - schedule String
- create
Final booleanSnapshot - retention
Duration string - schedule string
- create_
final_ boolsnapshot - retention_
duration str - schedule str
- create
Final BooleanSnapshot - retention
Duration String - schedule String
VolumeSetStatus, VolumeSetStatusArgs
- Binding
Id string - Locations List<string>
- Parent
Id string - Used
By stringWorkload
- Binding
Id string - Locations []string
- Parent
Id string - Used
By stringWorkload
- binding
Id String - locations List<String>
- parent
Id String - used
By StringWorkload
- binding
Id string - locations string[]
- parent
Id string - used
By stringWorkload
- binding_
id str - locations Sequence[str]
- parent_
id str - used_
by_ strworkload
- binding
Id String - locations List<String>
- parent
Id String - used
By StringWorkload
Package Details
- Repository
- cpln pulumiverse/pulumi-cpln
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cpln
Terraform Provider.