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_VM_CLUSTER_SUMMARY = 'VM_CLUSTER_SUMMARY'.freeze,
  RESOURCE_TYPE_CLOUD_INFRASTRUCTURE_SUMMARY = 'CLOUD_INFRASTRUCTURE_SUMMARY'.freeze,
  RESOURCE_TYPE_CLOUD_INFRASTRUCTURE = 'CLOUD_INFRASTRUCTURE'.freeze,
  RESOURCE_TYPE_CLOUD_STORAGE_SERVER_SUMMARY = 'CLOUD_STORAGE_SERVER_SUMMARY'.freeze,
  RESOURCE_TYPE_CLOUD_STORAGE_SERVER = 'CLOUD_STORAGE_SERVER'.freeze,
  RESOURCE_TYPE_CLOUD_STORAGE_GRID_SUMMARY = 'CLOUD_STORAGE_GRID_SUMMARY'.freeze,
  RESOURCE_TYPE_CLOUD_STORAGE_GRID = 'CLOUD_STORAGE_GRID'.freeze,
  RESOURCE_TYPE_CLOUD_STORAGE_CONNECTOR_SUMMARY = 'CLOUD_STORAGE_CONNECTOR_SUMMARY'.freeze,
  RESOURCE_TYPE_CLOUD_STORAGE_CONNECTOR = 'CLOUD_STORAGE_CONNECTOR'.freeze,
  RESOURCE_TYPE_MANAGED_DATABASE_SUMMARY = 'MANAGED_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



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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# File 'lib/oci/database_management/models/dbm_resource.rb', line 181

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


88
89
90
# File 'lib/oci/database_management/models/dbm_resource.rb', line 88

def additional_details
  @additional_details
end

#display_nameString

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

Returns:

  • (String)


54
55
56
# File 'lib/oci/database_management/models/dbm_resource.rb', line 54

def display_name
  @display_name
end

#idString

[Required] The OCID of the Exadata resource.

Returns:

  • (String)


50
51
52
# File 'lib/oci/database_management/models/dbm_resource.rb', line 50

def id
  @id
end

#internal_idString

The internal ID of the Exadata resource.

Returns:

  • (String)


62
63
64
# File 'lib/oci/database_management/models/dbm_resource.rb', line 62

def internal_id
  @internal_id
end

#lifecycle_detailsString

The details of the lifecycle state of the Exadata resource.

Returns:

  • (String)


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

def lifecycle_details
  @lifecycle_details
end

#lifecycle_stateString

The current lifecycle state of the database resource.

Returns:

  • (String)


70
71
72
# File 'lib/oci/database_management/models/dbm_resource.rb', line 70

def lifecycle_state
  @lifecycle_state
end

#resource_typeString

[Required] The type of Exadata resource.

Returns:

  • (String)


92
93
94
# File 'lib/oci/database_management/models/dbm_resource.rb', line 92

def resource_type
  @resource_type
end

#statusString

The status of the Exadata resource.

Returns:

  • (String)


66
67
68
# File 'lib/oci/database_management/models/dbm_resource.rb', line 66

def status
  @status
end

#time_createdDateTime

The timestamp of the creation of the Exadata resource.

Returns:

  • (DateTime)


74
75
76
# File 'lib/oci/database_management/models/dbm_resource.rb', line 74

def time_created
  @time_created
end

#time_updatedDateTime

The timestamp of the last update of the Exadata resource.

Returns:

  • (DateTime)


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

def time_updated
  @time_updated
end

#versionString

The version of the Exadata resource.

Returns:

  • (String)


58
59
60
# File 'lib/oci/database_management/models/dbm_resource.rb', line 58

def version
  @version
end

Class Method Details

.attribute_mapObject

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



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/oci/database_management/models/dbm_resource.rb', line 95

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.



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
# File 'lib/oci/database_management/models/dbm_resource.rb', line 137

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::ExadataVmClusterSummary' if type == 'VM_CLUSTER_SUMMARY'
  return 'OCI::DatabaseManagement::Models::CloudExadataStorageConnectorSummary' if type == 'CLOUD_STORAGE_CONNECTOR_SUMMARY'
  return 'OCI::DatabaseManagement::Models::ExternalExadataInfrastructure' if type == 'INFRASTRUCTURE'
  return 'OCI::DatabaseManagement::Models::ExternalExadataInfrastructureSummary' if type == 'INFRASTRUCTURE_SUMMARY'
  return 'OCI::DatabaseManagement::Models::CloudExadataInfrastructure' if type == 'CLOUD_INFRASTRUCTURE'
  return 'OCI::DatabaseManagement::Models::CloudExadataStorageServerSummary' if type == 'CLOUD_STORAGE_SERVER_SUMMARY'
  return 'OCI::DatabaseManagement::Models::CloudExadataStorageGrid' if type == 'CLOUD_STORAGE_GRID'
  return 'OCI::DatabaseManagement::Models::ExternalExadataStorageGridSummary' if type == 'STORAGE_GRID_SUMMARY'
  return 'OCI::DatabaseManagement::Models::CloudExadataStorageConnector' if type == 'CLOUD_STORAGE_CONNECTOR'
  return 'OCI::DatabaseManagement::Models::CloudExadataInfrastructureSummary' if type == 'CLOUD_INFRASTRUCTURE_SUMMARY'
  return 'OCI::DatabaseManagement::Models::ExternalExadataStorageServer' if type == 'STORAGE_SERVER'
  return 'OCI::DatabaseManagement::Models::ExternalExadataStorageGrid' if type == 'STORAGE_GRID'
  return 'OCI::DatabaseManagement::Models::CloudExadataStorageGridSummary' if type == 'CLOUD_STORAGE_GRID_SUMMARY'
  return 'OCI::DatabaseManagement::Models::ExternalExadataDatabaseSystemSummary' if type == 'DATABASE_SYSTEM_SUMMARY'
  return 'OCI::DatabaseManagement::Models::CloudExadataStorageServer' if type == 'CLOUD_STORAGE_SERVER'
  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.



114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/oci/database_management/models/dbm_resource.rb', line 114

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



275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/oci/database_management/models/dbm_resource.rb', line 275

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



315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'lib/oci/database_management/models/dbm_resource.rb', line 315

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


295
296
297
# File 'lib/oci/database_management/models/dbm_resource.rb', line 295

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



304
305
306
# File 'lib/oci/database_management/models/dbm_resource.rb', line 304

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



348
349
350
351
352
353
354
355
356
357
# File 'lib/oci/database_management/models/dbm_resource.rb', line 348

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



342
343
344
# File 'lib/oci/database_management/models/dbm_resource.rb', line 342

def to_s
  to_hash.to_s
end