class Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::Hotfix

The details of the hotfix installed in the server.

Attributes

installed_date[RW]

@return [DateTime] The date and time, in UTC, when the KB was installed in the server.

kb_name[RW]

@return [String] The name of the hotfix KB.

Private Class Methods

mapper() click to toggle source

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

# File lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/hotfix.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Hotfix',
    type: {
      name: 'Composite',
      class_name: 'Hotfix',
      model_properties: {
        kb_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'kbName',
          type: {
            name: 'String'
          }
        },
        link: {
          client_side_validation: true,
          required: false,
          serialized_name: 'link',
          type: {
            name: 'String'
          }
        },
        installed_date: {
          client_side_validation: true,
          required: false,
          serialized_name: 'installedDate',
          type: {
            name: 'DateTime'
          }
        }
      }
    }
  }
end