powerstore.Volume
Explore with Pulumi AI
Import
#Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.
#Licensed under the Mozilla Public License Version 2.0 (the “License”);
#you may not use this file except in compliance with the License.
#You may obtain a copy of the License at
http://mozilla.org/MPL/2.0/
#Unless required by applicable law or agreed to in writing, software
#distributed under the License is distributed on an “AS IS” BASIS,
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#limitations under the License.
Below are the steps to import volume :
Step 1 - To import a volume , we need the id of that volume
Step 2 - To check the id of the volume we can make Get request to volume endpoint. eg. https://10.0.0.1/api/rest/volume which will return list of all volume ids.
Step 3 - Add empty resource block in tf file.
eg.
resource “powerstore_volume” “resource_block_name” {
(resource arguments)
}
$ pulumi import powerstore:index/volume:Volume Step 4 - Execute the command: "powerstore_volume.resource_block_name" "id_of_the_volume" (resource_block_name must be taken from step 3 and id must be taken from step 2)
Step 5 - After successful execution of the command , check the state file
Create Volume Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Volume(name: string, args: VolumeArgs, opts?: CustomResourceOptions);
@overload
def Volume(resource_name: str,
args: VolumeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Volume(resource_name: str,
opts: Optional[ResourceOptions] = None,
size: Optional[float] = None,
logical_unit_number: Optional[float] = None,
min_size: Optional[float] = None,
appliance_name: Optional[str] = None,
app_type: Optional[str] = None,
description: Optional[str] = None,
host_group_id: Optional[str] = None,
host_group_name: Optional[str] = None,
host_id: Optional[str] = None,
appliance_id: Optional[str] = None,
host_name: Optional[str] = None,
capacity_unit: Optional[str] = None,
name: Optional[str] = None,
performance_policy_id: Optional[str] = None,
protection_policy_id: Optional[str] = None,
protection_policy_name: Optional[str] = None,
sector_size: Optional[float] = None,
app_type_other: Optional[str] = None,
volume_group_id: Optional[str] = None,
volume_group_name: Optional[str] = None)
func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)
public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: powerstore:Volume
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 VolumeArgs
- 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 VolumeArgs
- 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 VolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeArgs
- 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 volumeResource = new Powerstore.Volume("volumeResource", new()
{
Size = 0,
LogicalUnitNumber = 0,
MinSize = 0,
ApplianceName = "string",
AppType = "string",
Description = "string",
HostGroupId = "string",
HostGroupName = "string",
HostId = "string",
ApplianceId = "string",
HostName = "string",
CapacityUnit = "string",
Name = "string",
PerformancePolicyId = "string",
ProtectionPolicyId = "string",
ProtectionPolicyName = "string",
SectorSize = 0,
AppTypeOther = "string",
VolumeGroupId = "string",
VolumeGroupName = "string",
});
example, err := powerstore.NewVolume(ctx, "volumeResource", &powerstore.VolumeArgs{
Size: pulumi.Float64(0),
LogicalUnitNumber: pulumi.Float64(0),
MinSize: pulumi.Float64(0),
ApplianceName: pulumi.String("string"),
AppType: pulumi.String("string"),
Description: pulumi.String("string"),
HostGroupId: pulumi.String("string"),
HostGroupName: pulumi.String("string"),
HostId: pulumi.String("string"),
ApplianceId: pulumi.String("string"),
HostName: pulumi.String("string"),
CapacityUnit: pulumi.String("string"),
Name: pulumi.String("string"),
PerformancePolicyId: pulumi.String("string"),
ProtectionPolicyId: pulumi.String("string"),
ProtectionPolicyName: pulumi.String("string"),
SectorSize: pulumi.Float64(0),
AppTypeOther: pulumi.String("string"),
VolumeGroupId: pulumi.String("string"),
VolumeGroupName: pulumi.String("string"),
})
var volumeResource = new Volume("volumeResource", VolumeArgs.builder()
.size(0)
.logicalUnitNumber(0)
.minSize(0)
.applianceName("string")
.appType("string")
.description("string")
.hostGroupId("string")
.hostGroupName("string")
.hostId("string")
.applianceId("string")
.hostName("string")
.capacityUnit("string")
.name("string")
.performancePolicyId("string")
.protectionPolicyId("string")
.protectionPolicyName("string")
.sectorSize(0)
.appTypeOther("string")
.volumeGroupId("string")
.volumeGroupName("string")
.build());
volume_resource = powerstore.Volume("volumeResource",
size=0,
logical_unit_number=0,
min_size=0,
appliance_name="string",
app_type="string",
description="string",
host_group_id="string",
host_group_name="string",
host_id="string",
appliance_id="string",
host_name="string",
capacity_unit="string",
name="string",
performance_policy_id="string",
protection_policy_id="string",
protection_policy_name="string",
sector_size=0,
app_type_other="string",
volume_group_id="string",
volume_group_name="string")
const volumeResource = new powerstore.Volume("volumeResource", {
size: 0,
logicalUnitNumber: 0,
minSize: 0,
applianceName: "string",
appType: "string",
description: "string",
hostGroupId: "string",
hostGroupName: "string",
hostId: "string",
applianceId: "string",
hostName: "string",
capacityUnit: "string",
name: "string",
performancePolicyId: "string",
protectionPolicyId: "string",
protectionPolicyName: "string",
sectorSize: 0,
appTypeOther: "string",
volumeGroupId: "string",
volumeGroupName: "string",
});
type: powerstore:Volume
properties:
appType: string
appTypeOther: string
applianceId: string
applianceName: string
capacityUnit: string
description: string
hostGroupId: string
hostGroupName: string
hostId: string
hostName: string
logicalUnitNumber: 0
minSize: 0
name: string
performancePolicyId: string
protectionPolicyId: string
protectionPolicyName: string
sectorSize: 0
size: 0
volumeGroupId: string
volumeGroupName: string
Volume 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 Volume resource accepts the following input properties:
- Size double
- The size of the volume.
- App
Type string - The app type of the volume.
- App
Type stringOther - The app type other of the volume.
- Appliance
Id string - The appliance_id of the volume.
- Appliance
Name string - The appliance name of the volume.
- Capacity
Unit string - The Capacity Unit corresponding to the size.
- Description string
- The description of the volume.
- Host
Group stringId - The host group id of the volume.
- Host
Group stringName - The host group name of the volume.
- Host
Id string - The host id of the volume.
- Host
Name string - The host name of the volume.
- Logical
Unit doubleNumber - The current amount of data written to the volume.
- Min
Size double - The minimum size of the volume.
- Name string
- The name of the volume.
- Performance
Policy stringId - The performancepolicyid of the volume.
- Protection
Policy stringId - The protectionpolicyid of the volume.
- Protection
Policy stringName - The protection policy name of the volume.
- Sector
Size double - The sector size of the volume.
- Volume
Group stringId - The volume group id of the volume.
- Volume
Group stringName - The volume group name of the volume.
- Size float64
- The size of the volume.
- App
Type string - The app type of the volume.
- App
Type stringOther - The app type other of the volume.
- Appliance
Id string - The appliance_id of the volume.
- Appliance
Name string - The appliance name of the volume.
- Capacity
Unit string - The Capacity Unit corresponding to the size.
- Description string
- The description of the volume.
- Host
Group stringId - The host group id of the volume.
- Host
Group stringName - The host group name of the volume.
- Host
Id string - The host id of the volume.
- Host
Name string - The host name of the volume.
- Logical
Unit float64Number - The current amount of data written to the volume.
- Min
Size float64 - The minimum size of the volume.
- Name string
- The name of the volume.
- Performance
Policy stringId - The performancepolicyid of the volume.
- Protection
Policy stringId - The protectionpolicyid of the volume.
- Protection
Policy stringName - The protection policy name of the volume.
- Sector
Size float64 - The sector size of the volume.
- Volume
Group stringId - The volume group id of the volume.
- Volume
Group stringName - The volume group name of the volume.
- size Double
- The size of the volume.
- app
Type String - The app type of the volume.
- app
Type StringOther - The app type other of the volume.
- appliance
Id String - The appliance_id of the volume.
- appliance
Name String - The appliance name of the volume.
- capacity
Unit String - The Capacity Unit corresponding to the size.
- description String
- The description of the volume.
- host
Group StringId - The host group id of the volume.
- host
Group StringName - The host group name of the volume.
- host
Id String - The host id of the volume.
- host
Name String - The host name of the volume.
- logical
Unit DoubleNumber - The current amount of data written to the volume.
- min
Size Double - The minimum size of the volume.
- name String
- The name of the volume.
- performance
Policy StringId - The performancepolicyid of the volume.
- protection
Policy StringId - The protectionpolicyid of the volume.
- protection
Policy StringName - The protection policy name of the volume.
- sector
Size Double - The sector size of the volume.
- volume
Group StringId - The volume group id of the volume.
- volume
Group StringName - The volume group name of the volume.
- size number
- The size of the volume.
- app
Type string - The app type of the volume.
- app
Type stringOther - The app type other of the volume.
- appliance
Id string - The appliance_id of the volume.
- appliance
Name string - The appliance name of the volume.
- capacity
Unit string - The Capacity Unit corresponding to the size.
- description string
- The description of the volume.
- host
Group stringId - The host group id of the volume.
- host
Group stringName - The host group name of the volume.
- host
Id string - The host id of the volume.
- host
Name string - The host name of the volume.
- logical
Unit numberNumber - The current amount of data written to the volume.
- min
Size number - The minimum size of the volume.
- name string
- The name of the volume.
- performance
Policy stringId - The performancepolicyid of the volume.
- protection
Policy stringId - The protectionpolicyid of the volume.
- protection
Policy stringName - The protection policy name of the volume.
- sector
Size number - The sector size of the volume.
- volume
Group stringId - The volume group id of the volume.
- volume
Group stringName - The volume group name of the volume.
- size float
- The size of the volume.
- app_
type str - The app type of the volume.
- app_
type_ strother - The app type other of the volume.
- appliance_
id str - The appliance_id of the volume.
- appliance_
name str - The appliance name of the volume.
- capacity_
unit str - The Capacity Unit corresponding to the size.
- description str
- The description of the volume.
- host_
group_ strid - The host group id of the volume.
- host_
group_ strname - The host group name of the volume.
- host_
id str - The host id of the volume.
- host_
name str - The host name of the volume.
- logical_
unit_ floatnumber - The current amount of data written to the volume.
- min_
size float - The minimum size of the volume.
- name str
- The name of the volume.
- performance_
policy_ strid - The performancepolicyid of the volume.
- protection_
policy_ strid - The protectionpolicyid of the volume.
- protection_
policy_ strname - The protection policy name of the volume.
- sector_
size float - The sector size of the volume.
- volume_
group_ strid - The volume group id of the volume.
- volume_
group_ strname - The volume group name of the volume.
- size Number
- The size of the volume.
- app
Type String - The app type of the volume.
- app
Type StringOther - The app type other of the volume.
- appliance
Id String - The appliance_id of the volume.
- appliance
Name String - The appliance name of the volume.
- capacity
Unit String - The Capacity Unit corresponding to the size.
- description String
- The description of the volume.
- host
Group StringId - The host group id of the volume.
- host
Group StringName - The host group name of the volume.
- host
Id String - The host id of the volume.
- host
Name String - The host name of the volume.
- logical
Unit NumberNumber - The current amount of data written to the volume.
- min
Size Number - The minimum size of the volume.
- name String
- The name of the volume.
- performance
Policy StringId - The performancepolicyid of the volume.
- protection
Policy StringId - The protectionpolicyid of the volume.
- protection
Policy StringName - The protection policy name of the volume.
- sector
Size Number - The sector size of the volume.
- volume
Group StringId - The volume group id of the volume.
- volume
Group StringName - The volume group name of the volume.
Outputs
All input properties are implicitly available as output properties. Additionally, the Volume resource produces the following output properties:
- Creation
Timestamp string - The creation_timestamp of the volume.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Replication boolDestination - The isreplicationdestination of the volume.
- Logical
Used double - Current amount of data used by the volume.
- Nguid string
- The nguid of the volume.
- Node
Affinity string - The node_affinity of the volume.
- Nsid double
- The nsid of the volume.
- State string
- The state of the volume.
- Type string
- The type of the volume.
- Wwn string
- The wwn of the volume.
- Creation
Timestamp string - The creation_timestamp of the volume.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Replication boolDestination - The isreplicationdestination of the volume.
- Logical
Used float64 - Current amount of data used by the volume.
- Nguid string
- The nguid of the volume.
- Node
Affinity string - The node_affinity of the volume.
- Nsid float64
- The nsid of the volume.
- State string
- The state of the volume.
- Type string
- The type of the volume.
- Wwn string
- The wwn of the volume.
- creation
Timestamp String - The creation_timestamp of the volume.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Replication BooleanDestination - The isreplicationdestination of the volume.
- logical
Used Double - Current amount of data used by the volume.
- nguid String
- The nguid of the volume.
- node
Affinity String - The node_affinity of the volume.
- nsid Double
- The nsid of the volume.
- state String
- The state of the volume.
- type String
- The type of the volume.
- wwn String
- The wwn of the volume.
- creation
Timestamp string - The creation_timestamp of the volume.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Replication booleanDestination - The isreplicationdestination of the volume.
- logical
Used number - Current amount of data used by the volume.
- nguid string
- The nguid of the volume.
- node
Affinity string - The node_affinity of the volume.
- nsid number
- The nsid of the volume.
- state string
- The state of the volume.
- type string
- The type of the volume.
- wwn string
- The wwn of the volume.
- creation_
timestamp str - The creation_timestamp of the volume.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
replication_ booldestination - The isreplicationdestination of the volume.
- logical_
used float - Current amount of data used by the volume.
- nguid str
- The nguid of the volume.
- node_
affinity str - The node_affinity of the volume.
- nsid float
- The nsid of the volume.
- state str
- The state of the volume.
- type str
- The type of the volume.
- wwn str
- The wwn of the volume.
- creation
Timestamp String - The creation_timestamp of the volume.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Replication BooleanDestination - The isreplicationdestination of the volume.
- logical
Used Number - Current amount of data used by the volume.
- nguid String
- The nguid of the volume.
- node
Affinity String - The node_affinity of the volume.
- nsid Number
- The nsid of the volume.
- state String
- The state of the volume.
- type String
- The type of the volume.
- wwn String
- The wwn of the volume.
Look up Existing Volume Resource
Get an existing Volume 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?: VolumeState, opts?: CustomResourceOptions): Volume
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
app_type: Optional[str] = None,
app_type_other: Optional[str] = None,
appliance_id: Optional[str] = None,
appliance_name: Optional[str] = None,
capacity_unit: Optional[str] = None,
creation_timestamp: Optional[str] = None,
description: Optional[str] = None,
host_group_id: Optional[str] = None,
host_group_name: Optional[str] = None,
host_id: Optional[str] = None,
host_name: Optional[str] = None,
is_replication_destination: Optional[bool] = None,
logical_unit_number: Optional[float] = None,
logical_used: Optional[float] = None,
min_size: Optional[float] = None,
name: Optional[str] = None,
nguid: Optional[str] = None,
node_affinity: Optional[str] = None,
nsid: Optional[float] = None,
performance_policy_id: Optional[str] = None,
protection_policy_id: Optional[str] = None,
protection_policy_name: Optional[str] = None,
sector_size: Optional[float] = None,
size: Optional[float] = None,
state: Optional[str] = None,
type: Optional[str] = None,
volume_group_id: Optional[str] = None,
volume_group_name: Optional[str] = None,
wwn: Optional[str] = None) -> Volume
func GetVolume(ctx *Context, name string, id IDInput, state *VolumeState, opts ...ResourceOption) (*Volume, error)
public static Volume Get(string name, Input<string> id, VolumeState? state, CustomResourceOptions? opts = null)
public static Volume get(String name, Output<String> id, VolumeState state, CustomResourceOptions options)
resources: _: type: powerstore:Volume 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.
- App
Type string - The app type of the volume.
- App
Type stringOther - The app type other of the volume.
- Appliance
Id string - The appliance_id of the volume.
- Appliance
Name string - The appliance name of the volume.
- Capacity
Unit string - The Capacity Unit corresponding to the size.
- Creation
Timestamp string - The creation_timestamp of the volume.
- Description string
- The description of the volume.
- Host
Group stringId - The host group id of the volume.
- Host
Group stringName - The host group name of the volume.
- Host
Id string - The host id of the volume.
- Host
Name string - The host name of the volume.
- Is
Replication boolDestination - The isreplicationdestination of the volume.
- Logical
Unit doubleNumber - The current amount of data written to the volume.
- Logical
Used double - Current amount of data used by the volume.
- Min
Size double - The minimum size of the volume.
- Name string
- The name of the volume.
- Nguid string
- The nguid of the volume.
- Node
Affinity string - The node_affinity of the volume.
- Nsid double
- The nsid of the volume.
- Performance
Policy stringId - The performancepolicyid of the volume.
- Protection
Policy stringId - The protectionpolicyid of the volume.
- Protection
Policy stringName - The protection policy name of the volume.
- Sector
Size double - The sector size of the volume.
- Size double
- The size of the volume.
- State string
- The state of the volume.
- Type string
- The type of the volume.
- Volume
Group stringId - The volume group id of the volume.
- Volume
Group stringName - The volume group name of the volume.
- Wwn string
- The wwn of the volume.
- App
Type string - The app type of the volume.
- App
Type stringOther - The app type other of the volume.
- Appliance
Id string - The appliance_id of the volume.
- Appliance
Name string - The appliance name of the volume.
- Capacity
Unit string - The Capacity Unit corresponding to the size.
- Creation
Timestamp string - The creation_timestamp of the volume.
- Description string
- The description of the volume.
- Host
Group stringId - The host group id of the volume.
- Host
Group stringName - The host group name of the volume.
- Host
Id string - The host id of the volume.
- Host
Name string - The host name of the volume.
- Is
Replication boolDestination - The isreplicationdestination of the volume.
- Logical
Unit float64Number - The current amount of data written to the volume.
- Logical
Used float64 - Current amount of data used by the volume.
- Min
Size float64 - The minimum size of the volume.
- Name string
- The name of the volume.
- Nguid string
- The nguid of the volume.
- Node
Affinity string - The node_affinity of the volume.
- Nsid float64
- The nsid of the volume.
- Performance
Policy stringId - The performancepolicyid of the volume.
- Protection
Policy stringId - The protectionpolicyid of the volume.
- Protection
Policy stringName - The protection policy name of the volume.
- Sector
Size float64 - The sector size of the volume.
- Size float64
- The size of the volume.
- State string
- The state of the volume.
- Type string
- The type of the volume.
- Volume
Group stringId - The volume group id of the volume.
- Volume
Group stringName - The volume group name of the volume.
- Wwn string
- The wwn of the volume.
- app
Type String - The app type of the volume.
- app
Type StringOther - The app type other of the volume.
- appliance
Id String - The appliance_id of the volume.
- appliance
Name String - The appliance name of the volume.
- capacity
Unit String - The Capacity Unit corresponding to the size.
- creation
Timestamp String - The creation_timestamp of the volume.
- description String
- The description of the volume.
- host
Group StringId - The host group id of the volume.
- host
Group StringName - The host group name of the volume.
- host
Id String - The host id of the volume.
- host
Name String - The host name of the volume.
- is
Replication BooleanDestination - The isreplicationdestination of the volume.
- logical
Unit DoubleNumber - The current amount of data written to the volume.
- logical
Used Double - Current amount of data used by the volume.
- min
Size Double - The minimum size of the volume.
- name String
- The name of the volume.
- nguid String
- The nguid of the volume.
- node
Affinity String - The node_affinity of the volume.
- nsid Double
- The nsid of the volume.
- performance
Policy StringId - The performancepolicyid of the volume.
- protection
Policy StringId - The protectionpolicyid of the volume.
- protection
Policy StringName - The protection policy name of the volume.
- sector
Size Double - The sector size of the volume.
- size Double
- The size of the volume.
- state String
- The state of the volume.
- type String
- The type of the volume.
- volume
Group StringId - The volume group id of the volume.
- volume
Group StringName - The volume group name of the volume.
- wwn String
- The wwn of the volume.
- app
Type string - The app type of the volume.
- app
Type stringOther - The app type other of the volume.
- appliance
Id string - The appliance_id of the volume.
- appliance
Name string - The appliance name of the volume.
- capacity
Unit string - The Capacity Unit corresponding to the size.
- creation
Timestamp string - The creation_timestamp of the volume.
- description string
- The description of the volume.
- host
Group stringId - The host group id of the volume.
- host
Group stringName - The host group name of the volume.
- host
Id string - The host id of the volume.
- host
Name string - The host name of the volume.
- is
Replication booleanDestination - The isreplicationdestination of the volume.
- logical
Unit numberNumber - The current amount of data written to the volume.
- logical
Used number - Current amount of data used by the volume.
- min
Size number - The minimum size of the volume.
- name string
- The name of the volume.
- nguid string
- The nguid of the volume.
- node
Affinity string - The node_affinity of the volume.
- nsid number
- The nsid of the volume.
- performance
Policy stringId - The performancepolicyid of the volume.
- protection
Policy stringId - The protectionpolicyid of the volume.
- protection
Policy stringName - The protection policy name of the volume.
- sector
Size number - The sector size of the volume.
- size number
- The size of the volume.
- state string
- The state of the volume.
- type string
- The type of the volume.
- volume
Group stringId - The volume group id of the volume.
- volume
Group stringName - The volume group name of the volume.
- wwn string
- The wwn of the volume.
- app_
type str - The app type of the volume.
- app_
type_ strother - The app type other of the volume.
- appliance_
id str - The appliance_id of the volume.
- appliance_
name str - The appliance name of the volume.
- capacity_
unit str - The Capacity Unit corresponding to the size.
- creation_
timestamp str - The creation_timestamp of the volume.
- description str
- The description of the volume.
- host_
group_ strid - The host group id of the volume.
- host_
group_ strname - The host group name of the volume.
- host_
id str - The host id of the volume.
- host_
name str - The host name of the volume.
- is_
replication_ booldestination - The isreplicationdestination of the volume.
- logical_
unit_ floatnumber - The current amount of data written to the volume.
- logical_
used float - Current amount of data used by the volume.
- min_
size float - The minimum size of the volume.
- name str
- The name of the volume.
- nguid str
- The nguid of the volume.
- node_
affinity str - The node_affinity of the volume.
- nsid float
- The nsid of the volume.
- performance_
policy_ strid - The performancepolicyid of the volume.
- protection_
policy_ strid - The protectionpolicyid of the volume.
- protection_
policy_ strname - The protection policy name of the volume.
- sector_
size float - The sector size of the volume.
- size float
- The size of the volume.
- state str
- The state of the volume.
- type str
- The type of the volume.
- volume_
group_ strid - The volume group id of the volume.
- volume_
group_ strname - The volume group name of the volume.
- wwn str
- The wwn of the volume.
- app
Type String - The app type of the volume.
- app
Type StringOther - The app type other of the volume.
- appliance
Id String - The appliance_id of the volume.
- appliance
Name String - The appliance name of the volume.
- capacity
Unit String - The Capacity Unit corresponding to the size.
- creation
Timestamp String - The creation_timestamp of the volume.
- description String
- The description of the volume.
- host
Group StringId - The host group id of the volume.
- host
Group StringName - The host group name of the volume.
- host
Id String - The host id of the volume.
- host
Name String - The host name of the volume.
- is
Replication BooleanDestination - The isreplicationdestination of the volume.
- logical
Unit NumberNumber - The current amount of data written to the volume.
- logical
Used Number - Current amount of data used by the volume.
- min
Size Number - The minimum size of the volume.
- name String
- The name of the volume.
- nguid String
- The nguid of the volume.
- node
Affinity String - The node_affinity of the volume.
- nsid Number
- The nsid of the volume.
- performance
Policy StringId - The performancepolicyid of the volume.
- protection
Policy StringId - The protectionpolicyid of the volume.
- protection
Policy StringName - The protection policy name of the volume.
- sector
Size Number - The sector size of the volume.
- size Number
- The size of the volume.
- state String
- The state of the volume.
- type String
- The type of the volume.
- volume
Group StringId - The volume group id of the volume.
- volume
Group StringName - The volume group name of the volume.
- wwn String
- The wwn of the volume.
Package Details
- Repository
- powerstore dell/terraform-provider-powerstore
- License
- Notes
- This Pulumi package is based on the
powerstore
Terraform Provider.