Class: Azure::Hanaonazure::Mgmt::V2017_11_03_preview::Models::HardwareProfile

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/hardware_profile.rb

Overview

Specifies the hardware settings for the HANA instance.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#hana_instance_sizeHanaInstanceSizeNamesEnum

Possible values include: ‘S72m’, ‘S144m’, ‘S72’, ‘S144’, ‘S192’, ‘S192m’, ‘S192xm’, ‘S96’, ‘S112’, ‘S224’, ‘S224m’, ‘S224om’, ‘S224oo’, ‘S224oom’, ‘S224ooo’, ‘S384’, ‘S384m’, ‘S384xm’, ‘S384xxm’, ‘S576m’, ‘S576xm’, ‘S768’, ‘S768m’, ‘S768xm’, ‘S960m’

Returns:



24
25
26
# File 'lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/hardware_profile.rb', line 24

def hana_instance_size
  @hana_instance_size
end

#hardware_typeHanaHardwareTypeNamesEnum

and/or their product name). Possible values include: ‘Cisco_UCS’, ‘HPE’

Returns:



17
18
19
# File 'lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/hardware_profile.rb', line 17

def hardware_type
  @hardware_type
end

Class Method Details

.mapperObject

Mapper for HardwareProfile 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
# File 'lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/hardware_profile.rb', line 31

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'HardwareProfile',
    type: {
      name: 'Composite',
      class_name: 'HardwareProfile',
      model_properties: {
        hardware_type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'hardwareType',
          type: {
            name: 'String'
          }
        },
        hana_instance_size: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'hanaInstanceSize',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end