Class: Azure::Compute::Mgmt::V2019_07_01::Models::CreationData

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#create_optionDiskCreateOption

disk's creation. Possible values include: 'Empty', 'Attach', 'FromImage', 'Import', 'Copy', 'Restore', 'Upload'

Returns:



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_referenceImageDiskReference

Returns Disk source information.

Returns:



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_idString

source snapshot or disk.

Returns:

  • (String)

    If createOption is Copy, this is the ARM id of the



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_idString

identifying the source of this resource.

Returns:

  • (String)

    If this field is set, this is the unique id



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_uriString

to be imported into a managed disk.

Returns:

  • (String)

    If createOption is Import, this is the URI of a blob



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_idString

identifier of the storage account containing the blob to import as a disk. Required only if the blob is in a different subscription

Returns:

  • (String)

    If createOption is Import, the Azure Resource Manager



23
24
25
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/creation_data.rb', line 23

def 
  @storage_account_id
end

#upload_size_bytesInteger

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).

Returns:

  • (Integer)

    If createOption is Upload, this is the size of the



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

.mapperObject

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