class Azure::Compute::Mgmt::V2020_12_01::Models::VirtualMachineScaleSetVMExtensionUpdate

Describes a VMSS VM Extension.

Attributes

auto_upgrade_minor_version[RW]

@return [Boolean] Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.

enable_automatic_upgrade[RW]

@return [Boolean] Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.

force_update_tag[RW]

@return [String] How the extension handler should be forced to update even if the extension configuration has not changed.

name[RW]

@return [String] The name of the extension.

protected_settings[RW]

@return The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.

publisher[RW]

@return [String] The name of the extension handler publisher.

settings[RW]

@return Json formatted public settings for the extension.

type[RW]

@return [String] Resource type

type1[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 VirtualMachineScaleSetVMExtensionUpdate class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2020-12-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_vmextension_update.rb, line 58
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'VirtualMachineScaleSetVMExtensionUpdate',
    type: {
      name: 'Composite',
      class_name: 'VirtualMachineScaleSetVMExtensionUpdate',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        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'
          }
        },
        force_update_tag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.forceUpdateTag',
          type: {
            name: 'String'
          }
        },
        publisher: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.publisher',
          type: {
            name: 'String'
          }
        },
        type1: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.type',
          type: {
            name: 'String'
          }
        },
        type_handler_version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.typeHandlerVersion',
          type: {
            name: 'String'
          }
        },
        auto_upgrade_minor_version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.autoUpgradeMinorVersion',
          type: {
            name: 'Boolean'
          }
        },
        enable_automatic_upgrade: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.enableAutomaticUpgrade',
          type: {
            name: 'Boolean'
          }
        },
        settings: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.settings',
          type: {
            name: 'Object'
          }
        },
        protected_settings: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.protectedSettings',
          type: {
            name: 'Object'
          }
        }
      }
    }
  }
end