IBlockStorageProviderCreateVolume Method |
Creates a new block storage volume.
Namespace: net.openstack.Core.ProvidersAssembly: openstacknet (in openstacknet.dll) Version: 1.7.7+Branch.master.Sha.25d803f397c8693c2c13777ef6675f796f520f2c
Syntax Volume CreateVolume(
int size,
string displayDescription = null,
string displayName = null,
string snapshotId = null,
string volumeType = null,
string region = null,
CloudIdentity identity = null
)
Function CreateVolume (
size As Integer,
Optional displayDescription As String = Nothing,
Optional displayName As String = Nothing,
Optional snapshotId As String = Nothing,
Optional volumeType As String = Nothing,
Optional region As String = Nothing,
Optional identity As CloudIdentity = Nothing
) As Volume
Volume^ CreateVolume(
int size,
String^ displayDescription = nullptr,
String^ displayName = nullptr,
String^ snapshotId = nullptr,
String^ volumeType = nullptr,
String^ region = nullptr,
CloudIdentity^ identity = nullptr
)
abstract CreateVolume :
size : int *
?displayDescription : string *
?displayName : string *
?snapshotId : string *
?volumeType : string *
?region : string *
?identity : CloudIdentity
(* Defaults:
let _displayDescription = defaultArg displayDescription null
let _displayName = defaultArg displayName null
let _snapshotId = defaultArg snapshotId null
let _volumeType = defaultArg volumeType null
let _region = defaultArg region null
let _identity = defaultArg identity null
*)
-> Volume
Parameters
- size
- Type: SystemInt32
The size of the volume in GB. - displayDescription (Optional)
- Type: SystemString
A description of the volume. - displayName (Optional)
- Type: SystemString
The name of the volume. - snapshotId (Optional)
- Type: SystemString
The snapshot from which to create a volume. The value should be or obtained from Snapshot.Id. - volumeType (Optional)
- Type: SystemString
The type of volume to create. If not defined, then the default is used. The value should be or obtained from VolumeType.Id. - region (Optional)
- Type: SystemString
The region in which to execute this action. If not specified, the user's default region will be used. - identity (Optional)
- Type: net.openstack.Core.DomainCloudIdentity
The cloud identity to use for this request. If not specified, the default identity for the current provider instance will be used.
Return Value
Type:
Volume if the request succeeded; otherwise,
.
Exceptions Version Information .NET Framework
Supported in: 4.5
openstack.net
Supported in: 1.6, 1.5, 1.4, 1.3.6
See Also