Class: OCI::DatabaseManagement::Models::ExternalExadataInfrastructure

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

Overview

The details of the Exadata infrastructure.

Constant Summary collapse

RACK_SIZE_ENUM =
[
  RACK_SIZE_FULL = 'FULL'.freeze,
  RACK_SIZE_HALF = 'HALF'.freeze,
  RACK_SIZE_QUARTER = 'QUARTER'.freeze,
  RACK_SIZE_EIGHTH = 'EIGHTH'.freeze,
  RACK_SIZE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
LICENSE_MODEL_ENUM =
[
  LICENSE_MODEL_LICENSE_INCLUDED = 'LICENSE_INCLUDED'.freeze,
  LICENSE_MODEL_BRING_YOUR_OWN_LICENSE = 'BRING_YOUR_OWN_LICENSE'.freeze,
  LICENSE_MODEL_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

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 = {}) ⇒ ExternalExadataInfrastructure

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



123
124
125
126
127
128
129
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
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 123

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

  attributes['resourceType'] = 'INFRASTRUCTURE'

  super(attributes)

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

  self.rack_size = attributes[:'rackSize'] if attributes[:'rackSize']

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

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

  self.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId']

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

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

  self.license_model = attributes[:'licenseModel'] if attributes[:'licenseModel']

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

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

  self.storage_grid = attributes[:'storageGrid'] if attributes[:'storageGrid']

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

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

  self.database_systems = attributes[:'databaseSystems'] if attributes[:'databaseSystems']

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

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

  self.database_compartments = attributes[:'databaseCompartments'] if attributes[:'databaseCompartments']

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

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

Instance Attribute Details

#compartment_idString

The OCID of the compartment.

Returns:

  • (String)


33
34
35
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 33

def compartment_id
  @compartment_id
end

#database_compartmentsArray<String>

The list of [OCIDs] (docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartments.

Returns:

  • (Array<String>)


49
50
51
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 49

def database_compartments
  @database_compartments
end

#database_systemsArray<OCI::DatabaseManagement::Models::ExternalExadataDatabaseSystemSummary>

A list of DB systems.



45
46
47
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 45

def database_systems
  @database_systems
end

#license_modelString

The Oracle license model that applies to the database management resources.

Returns:

  • (String)


38
39
40
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 38

def license_model
  @license_model
end

#rack_sizeString

The rack size of the Exadata infrastructure.

Returns:

  • (String)


29
30
31
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 29

def rack_size
  @rack_size
end

#storage_gridOCI::DatabaseManagement::Models::ExternalExadataStorageGridSummary



41
42
43
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 41

def storage_grid
  @storage_grid
end

Class Method Details

.attribute_mapObject

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



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

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',
    'rack_size': :'rackSize',
    'compartment_id': :'compartmentId',
    'license_model': :'licenseModel',
    'storage_grid': :'storageGrid',
    'database_systems': :'databaseSystems',
    'database_compartments': :'databaseCompartments'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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

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',
    'rack_size': :'String',
    'compartment_id': :'String',
    'license_model': :'String',
    'storage_grid': :'OCI::DatabaseManagement::Models::ExternalExadataStorageGridSummary',
    'database_systems': :'Array<OCI::DatabaseManagement::Models::ExternalExadataDatabaseSystemSummary>',
    'database_compartments': :'Array<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



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

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 &&
    rack_size == other.rack_size &&
    compartment_id == other.compartment_id &&
    license_model == other.license_model &&
    storage_grid == other.storage_grid &&
    database_systems == other.database_systems &&
    database_compartments == other.database_compartments
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



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

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


229
230
231
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 229

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



238
239
240
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 238

def hash
  [id, display_name, version, internal_id, status, lifecycle_state, time_created, time_updated, lifecycle_details, additional_details, resource_type, rack_size, compartment_id, license_model, storage_grid, database_systems, database_compartments].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



282
283
284
285
286
287
288
289
290
291
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 282

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



276
277
278
# File 'lib/oci/database_management/models/external_exadata_infrastructure.rb', line 276

def to_s
  to_hash.to_s
end