Class: Azure::Compute::Mgmt::V2015_06_15::Models::VirtualMachineExtensionHandlerInstanceView

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2015-06-15/generated/azure_mgmt_compute/models/virtual_machine_extension_handler_instance_view.rb

Overview

The instance view of a virtual machine extension handler.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#statusInstanceViewStatus

Returns The extension handler status.

Returns:



23
24
25
# File 'lib/2015-06-15/generated/azure_mgmt_compute/models/virtual_machine_extension_handler_instance_view.rb', line 23

def status
  @status
end

#typeString

publisher and type.

Returns:

  • (String)

    Full type of the extension handler which includes both



17
18
19
# File 'lib/2015-06-15/generated/azure_mgmt_compute/models/virtual_machine_extension_handler_instance_view.rb', line 17

def type
  @type
end

#type_handler_versionString

Returns The type version of the extension handler.

Returns:

  • (String)

    The type version of the extension handler.



20
21
22
# File 'lib/2015-06-15/generated/azure_mgmt_compute/models/virtual_machine_extension_handler_instance_view.rb', line 20

def type_handler_version
  @type_handler_version
end

Class Method Details

.mapperObject

Mapper for VirtualMachineExtensionHandlerInstanceView class as Ruby Hash. This will be used for serialization/deserialization.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/2015-06-15/generated/azure_mgmt_compute/models/virtual_machine_extension_handler_instance_view.rb', line 31

def self.mapper()
  {
    required: false,
    serialized_name: 'VirtualMachineExtensionHandlerInstanceView',
    type: {
      name: 'Composite',
      class_name: 'VirtualMachineExtensionHandlerInstanceView',
      model_properties: {
        type: {
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        type_handler_version: {
          required: false,
          serialized_name: 'typeHandlerVersion',
          type: {
            name: 'String'
          }
        },
        status: {
          required: false,
          serialized_name: 'status',
          type: {
            name: 'Composite',
            class_name: 'InstanceViewStatus'
          }
        }
      }
    }
  }
end