Class: Azure::Compute::Mgmt::V2017_12_01::Models::VirtualMachineExtensionHandlerInstanceView
- Inherits:
- 
      Object
      
        - Object
- Azure::Compute::Mgmt::V2017_12_01::Models::VirtualMachineExtensionHandlerInstanceView
 
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-12-01/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
- 
  
    
      #status  ⇒ InstanceViewStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The extension handler status. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    “CustomScriptExtension”. 
- 
  
    
      #type_handler_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the version of the script handler. 
Class Method Summary collapse
- 
  
    
      .mapper  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Mapper for VirtualMachineExtensionHandlerInstanceView class as Ruby Hash. 
Instance Attribute Details
#status ⇒ InstanceViewStatus
Returns The extension handler status.
| 23 24 25 | # File 'lib/2017-12-01/generated/azure_mgmt_compute/models/virtual_machine_extension_handler_instance_view.rb', line 23 def status @status end | 
#type ⇒ String
“CustomScriptExtension”.
| 17 18 19 | # File 'lib/2017-12-01/generated/azure_mgmt_compute/models/virtual_machine_extension_handler_instance_view.rb', line 17 def type @type end | 
#type_handler_version ⇒ String
Returns Specifies the version of the script handler.
| 20 21 22 | # File 'lib/2017-12-01/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
.mapper ⇒ Object
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 65 66 67 68 | # File 'lib/2017-12-01/generated/azure_mgmt_compute/models/virtual_machine_extension_handler_instance_view.rb', line 31 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 |