Class: Azure::Compute::Mgmt::V2019_07_01::Models::CreationData
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2019_07_01::Models::CreationData
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb
Overview
Data used when creating a disk.
Instance Attribute Summary collapse
-
#create_option ⇒ DiskCreateOption
disk's creation.
-
#image_reference ⇒ ImageDiskReference
Disk source information.
-
#source_resource_id ⇒ String
source snapshot or disk.
-
#source_unique_id ⇒ String
identifying the source of this resource.
-
#source_uri ⇒ String
to be imported into a managed disk.
-
#storage_account_id ⇒ String
identifier of the storage account containing the blob to import as a disk.
-
#upload_size_bytes ⇒ Integer
contents of the upload including the VHD footer.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CreationData class as Ruby Hash.
Instance Attribute Details
#create_option ⇒ DiskCreateOption
disk's creation. Possible values include: 'Empty', 'Attach', 'FromImage', 'Import', 'Copy', 'Restore', 'Upload'
18 19 20 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb', line 18 def create_option @create_option end |
#image_reference ⇒ ImageDiskReference
Returns Disk source information.
26 27 28 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb', line 26 def image_reference @image_reference end |
#source_resource_id ⇒ String
source snapshot or disk.
34 35 36 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb', line 34 def source_resource_id @source_resource_id end |
#source_unique_id ⇒ String
identifying the source of this resource.
38 39 40 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb', line 38 def source_unique_id @source_unique_id end |
#source_uri ⇒ String
to be imported into a managed disk.
30 31 32 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb', line 30 def source_uri @source_uri end |
#storage_account_id ⇒ String
identifier of the storage account containing the blob to import as a disk. Required only if the blob is in a different subscription
23 24 25 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb', line 23 def storage_account_id @storage_account_id end |
#upload_size_bytes ⇒ Integer
contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
44 45 46 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb', line 44 def upload_size_bytes @upload_size_bytes end |
Class Method Details
.mapper ⇒ Object
Mapper for CreationData class as Ruby Hash. This will be used for serialization/deserialization.
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb', line 51 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CreationData', type: { name: 'Composite', class_name: 'CreationData', model_properties: { create_option: { client_side_validation: true, required: true, serialized_name: 'createOption', type: { name: 'String' } }, storage_account_id: { client_side_validation: true, required: false, serialized_name: 'storageAccountId', type: { name: 'String' } }, image_reference: { client_side_validation: true, required: false, serialized_name: 'imageReference', type: { name: 'Composite', class_name: 'ImageDiskReference' } }, source_uri: { client_side_validation: true, required: false, serialized_name: 'sourceUri', type: { name: 'String' } }, source_resource_id: { client_side_validation: true, required: false, serialized_name: 'sourceResourceId', type: { name: 'String' } }, source_unique_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'sourceUniqueId', type: { name: 'String' } }, upload_size_bytes: { client_side_validation: true, required: false, serialized_name: 'uploadSizeBytes', type: { name: 'Number' } } } } } end |