Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::Hotfix

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/hotfix.rb

Overview

The details of the hotfix installed in the server.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#installed_dateDateTime

in the server.

Returns:

  • (DateTime)

    The date and time, in UTC, when the KB was installed



23
24
25
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/hotfix.rb', line 23

def installed_date
  @installed_date
end

#kb_nameString

Returns The name of the hotfix KB.

Returns:

  • (String)

    The name of the hotfix KB.



16
17
18
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/hotfix.rb', line 16

def kb_name
  @kb_name
end

Returns The link to the KB Article.

Returns:

  • (String)

    The link to the KB Article.



19
20
21
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/hotfix.rb', line 19

def link
  @link
end

Class Method Details

.mapperObject

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



30
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
# 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