class Azure::Compute::Mgmt::V2017_03_30::Models::VirtualMachineExtensionHandlerInstanceView

The instance view of a virtual machine extension handler.

Attributes

status[RW]

@return [InstanceViewStatus] The extension handler status.

type[RW]

@return [String] Specifies the type of the extension; an example is “CustomScriptExtension”.

type_handler_version[RW]

@return [String] Specifies the version of the script handler.

Private Class Methods

mapper() click to toggle source

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

# File lib/2017-03-30/generated/azure_mgmt_compute/models/virtual_machine_extension_handler_instance_view.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'VirtualMachineExtensionHandlerInstanceView',
    type: {
      name: 'Composite',
      class_name: 'VirtualMachineExtensionHandlerInstanceView',
      model_properties: {
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        type_handler_version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'typeHandlerVersion',
          type: {
            name: 'String'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'Composite',
            class_name: 'InstanceViewStatus'
          }
        }
      }
    }
  }
end