class Azure::HybridCompute::Mgmt::V2020_08_02::Models::MachineExtensionInstanceView
Describes the Machine
Extension Instance View.
Attributes
name[RW]
@return [String] The machine extension name.
status[RW]
@return [MachineExtensionInstanceViewStatus] Instance view 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 MachineExtensionInstanceView
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-08-02/generated/azure_mgmt_hybrid_compute/models/machine_extension_instance_view.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MachineExtensionInstanceView', type: { name: 'Composite', class_name: 'MachineExtensionInstanceView', model_properties: { name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, type_handler_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'typeHandlerVersion', type: { name: 'String' } }, status: { client_side_validation: true, required: false, serialized_name: 'status', type: { name: 'Composite', class_name: 'MachineExtensionInstanceViewStatus' } } } } } end