Class: OCI::DatabaseManagement::Models::ExternalExadataStorageServerSummary

Inherits:
DbmResource
  • Object
show all
Defined in:
lib/oci/database_management/models/external_exadata_storage_server_summary.rb

Overview

The Exadata storage server of the Exadata infrastructure.

Constant Summary

Constants inherited from DbmResource

DbmResource::LIFECYCLE_STATE_ENUM, DbmResource::RESOURCE_TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from DbmResource

#additional_details, #display_name, #id, #internal_id, #lifecycle_details, #lifecycle_state, #resource_type, #status, #time_created, #time_updated, #version

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DbmResource

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ ExternalExadataStorageServerSummary

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :id (String)

    The value to assign to the #id proprety

  • :display_name (String)

    The value to assign to the #display_name proprety

  • :version (String)

    The value to assign to the #version proprety

  • :internal_id (String)

    The value to assign to the #internal_id proprety

  • :status (String)

    The value to assign to the #status proprety

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state proprety

  • :time_created (DateTime)

    The value to assign to the #time_created proprety

  • :time_updated (DateTime)

    The value to assign to the #time_updated proprety

  • :lifecycle_details (String)

    The value to assign to the #lifecycle_details proprety

  • :additional_details (Hash<String, String>)

    The value to assign to the #additional_details proprety

  • :make_model (String)

    The value to assign to the #make_model property

  • :ip_address (String)

    The value to assign to the #ip_address property

  • :cpu_count (Float)

    The value to assign to the #cpu_count property

  • :memory_gb (Float)

    The value to assign to the #memory_gb property

  • :max_hard_disk_iops (Integer)

    The value to assign to the #max_hard_disk_iops property

  • :max_hard_disk_throughput (Integer)

    The value to assign to the #max_hard_disk_throughput property

  • :max_flash_disk_iops (Integer)

    The value to assign to the #max_flash_disk_iops property

  • :max_flash_disk_throughput (Integer)

    The value to assign to the #max_flash_disk_throughput property

  • :connector_id (String)

    The value to assign to the #connector_id property



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 130

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['resourceType'] = 'STORAGE_SERVER_SUMMARY'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.make_model = attributes[:'makeModel'] if attributes[:'makeModel']

  raise 'You cannot provide both :makeModel and :make_model' if attributes.key?(:'makeModel') && attributes.key?(:'make_model')

  self.make_model = attributes[:'make_model'] if attributes[:'make_model']

  self.ip_address = attributes[:'ipAddress'] if attributes[:'ipAddress']

  raise 'You cannot provide both :ipAddress and :ip_address' if attributes.key?(:'ipAddress') && attributes.key?(:'ip_address')

  self.ip_address = attributes[:'ip_address'] if attributes[:'ip_address']

  self.cpu_count = attributes[:'cpuCount'] if attributes[:'cpuCount']

  raise 'You cannot provide both :cpuCount and :cpu_count' if attributes.key?(:'cpuCount') && attributes.key?(:'cpu_count')

  self.cpu_count = attributes[:'cpu_count'] if attributes[:'cpu_count']

  self.memory_gb = attributes[:'memoryGB'] if attributes[:'memoryGB']

  raise 'You cannot provide both :memoryGB and :memory_gb' if attributes.key?(:'memoryGB') && attributes.key?(:'memory_gb')

  self.memory_gb = attributes[:'memory_gb'] if attributes[:'memory_gb']

  self.max_hard_disk_iops = attributes[:'maxHardDiskIOPS'] if attributes[:'maxHardDiskIOPS']

  raise 'You cannot provide both :maxHardDiskIOPS and :max_hard_disk_iops' if attributes.key?(:'maxHardDiskIOPS') && attributes.key?(:'max_hard_disk_iops')

  self.max_hard_disk_iops = attributes[:'max_hard_disk_iops'] if attributes[:'max_hard_disk_iops']

  self.max_hard_disk_throughput = attributes[:'maxHardDiskThroughput'] if attributes[:'maxHardDiskThroughput']

  raise 'You cannot provide both :maxHardDiskThroughput and :max_hard_disk_throughput' if attributes.key?(:'maxHardDiskThroughput') && attributes.key?(:'max_hard_disk_throughput')

  self.max_hard_disk_throughput = attributes[:'max_hard_disk_throughput'] if attributes[:'max_hard_disk_throughput']

  self.max_flash_disk_iops = attributes[:'maxFlashDiskIOPS'] if attributes[:'maxFlashDiskIOPS']

  raise 'You cannot provide both :maxFlashDiskIOPS and :max_flash_disk_iops' if attributes.key?(:'maxFlashDiskIOPS') && attributes.key?(:'max_flash_disk_iops')

  self.max_flash_disk_iops = attributes[:'max_flash_disk_iops'] if attributes[:'max_flash_disk_iops']

  self.max_flash_disk_throughput = attributes[:'maxFlashDiskThroughput'] if attributes[:'maxFlashDiskThroughput']

  raise 'You cannot provide both :maxFlashDiskThroughput and :max_flash_disk_throughput' if attributes.key?(:'maxFlashDiskThroughput') && attributes.key?(:'max_flash_disk_throughput')

  self.max_flash_disk_throughput = attributes[:'max_flash_disk_throughput'] if attributes[:'max_flash_disk_throughput']

  self.connector_id = attributes[:'connectorId'] if attributes[:'connectorId']

  raise 'You cannot provide both :connectorId and :connector_id' if attributes.key?(:'connectorId') && attributes.key?(:'connector_id')

  self.connector_id = attributes[:'connector_id'] if attributes[:'connector_id']
end

Instance Attribute Details

#connector_idString

The OCID of the connector.

Returns:

  • (String)


47
48
49
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 47

def connector_id
  @connector_id
end

#cpu_countFloat

The CPU count of the Exadata storage server.

Returns:

  • (Float)


23
24
25
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 23

def cpu_count
  @cpu_count
end

#ip_addressString

The IP address of the Exadata storage server.

Returns:

  • (String)


19
20
21
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 19

def ip_address
  @ip_address
end

#make_modelString

The make model of the Exadata storage server.

Returns:

  • (String)


15
16
17
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 15

def make_model
  @make_model
end

#max_flash_disk_iopsInteger

The maximum flash disk IO operations per second of the Exadata storage server.

Returns:

  • (Integer)


39
40
41
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 39

def max_flash_disk_iops
  @max_flash_disk_iops
end

#max_flash_disk_throughputInteger

The maximum flash disk IO throughput in MB/s of the Exadata storage server.

Returns:

  • (Integer)


43
44
45
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 43

def max_flash_disk_throughput
  @max_flash_disk_throughput
end

#max_hard_disk_iopsInteger

The maximum hard disk IO operations per second of the Exadata storage server.

Returns:

  • (Integer)


31
32
33
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 31

def max_hard_disk_iops
  @max_hard_disk_iops
end

#max_hard_disk_throughputInteger

The maximum hard disk IO throughput in MB/s of the Exadata storage server.

Returns:

  • (Integer)


35
36
37
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 35

def max_hard_disk_throughput
  @max_hard_disk_throughput
end

#memory_gbFloat

The Exadata storage server memory size in GB.

Returns:

  • (Float)


27
28
29
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 27

def memory_gb
  @memory_gb
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 50

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'display_name': :'displayName',
    'version': :'version',
    'internal_id': :'internalId',
    'status': :'status',
    'lifecycle_state': :'lifecycleState',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'lifecycle_details': :'lifecycleDetails',
    'additional_details': :'additionalDetails',
    'resource_type': :'resourceType',
    'make_model': :'makeModel',
    'ip_address': :'ipAddress',
    'cpu_count': :'cpuCount',
    'memory_gb': :'memoryGB',
    'max_hard_disk_iops': :'maxHardDiskIOPS',
    'max_hard_disk_throughput': :'maxHardDiskThroughput',
    'max_flash_disk_iops': :'maxFlashDiskIOPS',
    'max_flash_disk_throughput': :'maxFlashDiskThroughput',
    'connector_id': :'connectorId'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 78

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'display_name': :'String',
    'version': :'String',
    'internal_id': :'String',
    'status': :'String',
    'lifecycle_state': :'String',
    'time_created': :'DateTime',
    'time_updated': :'DateTime',
    'lifecycle_details': :'String',
    'additional_details': :'Hash<String, String>',
    'resource_type': :'String',
    'make_model': :'String',
    'ip_address': :'String',
    'cpu_count': :'Float',
    'memory_gb': :'Float',
    'max_hard_disk_iops': :'Integer',
    'max_hard_disk_throughput': :'Integer',
    'max_flash_disk_iops': :'Integer',
    'max_flash_disk_throughput': :'Integer',
    'connector_id': :'String'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 202

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    id == other.id &&
    display_name == other.display_name &&
    version == other.version &&
    internal_id == other.internal_id &&
    status == other.status &&
    lifecycle_state == other.lifecycle_state &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    lifecycle_details == other.lifecycle_details &&
    additional_details == other.additional_details &&
    resource_type == other.resource_type &&
    make_model == other.make_model &&
    ip_address == other.ip_address &&
    cpu_count == other.cpu_count &&
    memory_gb == other.memory_gb &&
    max_hard_disk_iops == other.max_hard_disk_iops &&
    max_hard_disk_throughput == other.max_hard_disk_throughput &&
    max_flash_disk_iops == other.max_flash_disk_iops &&
    max_flash_disk_throughput == other.max_flash_disk_throughput &&
    connector_id == other.connector_id
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 251

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)

  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        public_method("#{key}=").call(
          attributes[self.class.attribute_map[key]]
            .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
        )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      public_method("#{key}=").call(
        OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
      )
    end
    # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(other) ⇒ Boolean

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


231
232
233
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 231

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



240
241
242
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 240

def hash
  [id, display_name, version, internal_id, status, lifecycle_state, time_created, time_updated, lifecycle_details, additional_details, resource_type, make_model, ip_address, cpu_count, memory_gb, max_hard_disk_iops, max_hard_disk_throughput, max_flash_disk_iops, max_flash_disk_throughput, connector_id].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



284
285
286
287
288
289
290
291
292
293
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 284

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = public_method(attr).call
    next if value.nil? && !instance_variable_defined?("@#{attr}")

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



278
279
280
# File 'lib/oci/database_management/models/external_exadata_storage_server_summary.rb', line 278

def to_s
  to_hash.to_s
end