Class: OCI::DatabaseManagement::Models::DbmResource

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

Overview

The base Exadata resource. This class has direct subclasses. If you are using this class as input to a service operations then you should favor using a subclass over the base class

Constant Summary collapse

LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_CREATING = 'CREATING'.freeze,
  LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze,
  LIFECYCLE_STATE_INACTIVE = 'INACTIVE'.freeze,
  LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze,
  LIFECYCLE_STATE_DELETING = 'DELETING'.freeze,
  LIFECYCLE_STATE_DELETED = 'DELETED'.freeze,
  LIFECYCLE_STATE_FAILED = 'FAILED'.freeze,
  LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
RESOURCE_TYPE_ENUM =
[
  RESOURCE_TYPE_INFRASTRUCTURE_SUMMARY = 'INFRASTRUCTURE_SUMMARY'.freeze,
  RESOURCE_TYPE_INFRASTRUCTURE = 'INFRASTRUCTURE'.freeze,
  RESOURCE_TYPE_STORAGE_SERVER_SUMMARY = 'STORAGE_SERVER_SUMMARY'.freeze,
  RESOURCE_TYPE_STORAGE_SERVER = 'STORAGE_SERVER'.freeze,
  RESOURCE_TYPE_STORAGE_GRID_SUMMARY = 'STORAGE_GRID_SUMMARY'.freeze,
  RESOURCE_TYPE_STORAGE_GRID = 'STORAGE_GRID'.freeze,
  RESOURCE_TYPE_STORAGE_CONNECTOR_SUMMARY = 'STORAGE_CONNECTOR_SUMMARY'.freeze,
  RESOURCE_TYPE_STORAGE_CONNECTOR = 'STORAGE_CONNECTOR'.freeze,
  RESOURCE_TYPE_DATABASE_SYSTEM_SUMMARY = 'DATABASE_SYSTEM_SUMMARY'.freeze,
  RESOURCE_TYPE_DATABASE_SUMMARY = 'DATABASE_SUMMARY'.freeze,
  RESOURCE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ DbmResource

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 property

  • :display_name (String)

    The value to assign to the #display_name property

  • :version (String)

    The value to assign to the #version property

  • :internal_id (String)

    The value to assign to the #internal_id property

  • :status (String)

    The value to assign to the #status property

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state property

  • :time_created (DateTime)

    The value to assign to the #time_created property

  • :time_updated (DateTime)

    The value to assign to the #time_updated property

  • :lifecycle_details (String)

    The value to assign to the #lifecycle_details property

  • :additional_details (Hash<String, String>)

    The value to assign to the #additional_details property

  • :resource_type (String)

    The value to assign to the #resource_type property



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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
# File 'lib/oci/database_management/models/dbm_resource.rb', line 162

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

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

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

  self.display_name = attributes[:'displayName'] if attributes[:'displayName']

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

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

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

  self.internal_id = attributes[:'internalId'] if attributes[:'internalId']

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

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

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

  self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState']

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

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

  self.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated']

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

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

  self.time_updated = attributes[:'timeUpdated'] if attributes[:'timeUpdated']

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

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

  self.lifecycle_details = attributes[:'lifecycleDetails'] if attributes[:'lifecycleDetails']

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

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

  self.additional_details = attributes[:'additionalDetails'] if attributes[:'additionalDetails']

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

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

  self.resource_type = attributes[:'resourceType'] if attributes[:'resourceType']

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

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

Instance Attribute Details

#additional_detailsHash<String, String>

The additional details of the resource defined in {\"key\": \"value\"} format. Example: {\"bar-key\": \"value\"}

Returns:

  • (Hash<String, String>)


78
79
80
# File 'lib/oci/database_management/models/dbm_resource.rb', line 78

def additional_details
  @additional_details
end

#display_nameString

[Required] The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

Returns:

  • (String)


44
45
46
# File 'lib/oci/database_management/models/dbm_resource.rb', line 44

def display_name
  @display_name
end

#idString

[Required] The OCID of the Exadata resource.

Returns:

  • (String)


40
41
42
# File 'lib/oci/database_management/models/dbm_resource.rb', line 40

def id
  @id
end

#internal_idString

The internal ID of the Exadata resource.

Returns:

  • (String)


52
53
54
# File 'lib/oci/database_management/models/dbm_resource.rb', line 52

def internal_id
  @internal_id
end

#lifecycle_detailsString

The details of the lifecycle state of the Exadata resource.

Returns:

  • (String)


72
73
74
# File 'lib/oci/database_management/models/dbm_resource.rb', line 72

def lifecycle_details
  @lifecycle_details
end

#lifecycle_stateString

The current lifecycle state of the database resource.

Returns:

  • (String)


60
61
62
# File 'lib/oci/database_management/models/dbm_resource.rb', line 60

def lifecycle_state
  @lifecycle_state
end

#resource_typeString

[Required] The type of Exadata resource.

Returns:

  • (String)


82
83
84
# File 'lib/oci/database_management/models/dbm_resource.rb', line 82

def resource_type
  @resource_type
end

#statusString

The status of the Exadata resource.

Returns:

  • (String)


56
57
58
# File 'lib/oci/database_management/models/dbm_resource.rb', line 56

def status
  @status
end

#time_createdDateTime

The timestamp of the creation of the Exadata resource.

Returns:

  • (DateTime)


64
65
66
# File 'lib/oci/database_management/models/dbm_resource.rb', line 64

def time_created
  @time_created
end

#time_updatedDateTime

The timestamp of the last update of the Exadata resource.

Returns:

  • (DateTime)


68
69
70
# File 'lib/oci/database_management/models/dbm_resource.rb', line 68

def time_updated
  @time_updated
end

#versionString

The version of the Exadata resource.

Returns:

  • (String)


48
49
50
# File 'lib/oci/database_management/models/dbm_resource.rb', line 48

def version
  @version
end

Class Method Details

.attribute_mapObject

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



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/oci/database_management/models/dbm_resource.rb', line 85

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'
    # rubocop:enable Style/SymbolLiteral
  }
end

.get_subtype(object_hash) ⇒ Object

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.



127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/oci/database_management/models/dbm_resource.rb', line 127

def self.get_subtype(object_hash)
  type = object_hash[:'resourceType'] # rubocop:disable Style/SymbolLiteral

  return 'OCI::DatabaseManagement::Models::ExternalExadataStorageConnector' if type == 'STORAGE_CONNECTOR'
  return 'OCI::DatabaseManagement::Models::ExternalExadataStorageGridSummary' if type == 'STORAGE_GRID_SUMMARY'
  return 'OCI::DatabaseManagement::Models::ExternalExadataStorageServer' if type == 'STORAGE_SERVER'
  return 'OCI::DatabaseManagement::Models::ExternalExadataInfrastructure' if type == 'INFRASTRUCTURE'
  return 'OCI::DatabaseManagement::Models::ExternalExadataStorageGrid' if type == 'STORAGE_GRID'
  return 'OCI::DatabaseManagement::Models::ExternalExadataInfrastructureSummary' if type == 'INFRASTRUCTURE_SUMMARY'
  return 'OCI::DatabaseManagement::Models::ExternalExadataDatabaseSystemSummary' if type == 'DATABASE_SYSTEM_SUMMARY'
  return 'OCI::DatabaseManagement::Models::ExternalExadataStorageConnectorSummary' if type == 'STORAGE_CONNECTOR_SUMMARY'
  return 'OCI::DatabaseManagement::Models::ExternalExadataStorageServerSummary' if type == 'STORAGE_SERVER_SUMMARY'

  # TODO: Log a warning when the subtype is not found.
  'OCI::DatabaseManagement::Models::DbmResource'
end

.swagger_typesObject

Attribute type mapping.



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/oci/database_management/models/dbm_resource.rb', line 104

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



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
# File 'lib/oci/database_management/models/dbm_resource.rb', line 256

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



296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
# File 'lib/oci/database_management/models/dbm_resource.rb', line 296

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


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

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



285
286
287
# File 'lib/oci/database_management/models/dbm_resource.rb', line 285

def hash
  [id, display_name, version, internal_id, status, lifecycle_state, time_created, time_updated, lifecycle_details, additional_details, resource_type].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



329
330
331
332
333
334
335
336
337
338
# File 'lib/oci/database_management/models/dbm_resource.rb', line 329

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



323
324
325
# File 'lib/oci/database_management/models/dbm_resource.rb', line 323

def to_s
  to_hash.to_s
end