Class: OCI::Database::Models::DbSystemSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database/models/db_system_summary.rb

Overview

The Database Service supports several types of DB Systems, ranging in size, price, and performance. For details about each type of system, see:

To use any of the API operations, you must be authorized in an IAM policy. If you’re not authorized, talk to an administrator. If you’re an administrator who needs to write policies to give users access, see [Getting Started with Policies](docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).

For information about access control and compartments, see [Overview of the Identity Service](docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/overview.htm).

For information about Availability Domains, see [Regions and Availability Domains](docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/regions.htm).

To get a list of Availability Domains, use the ‘ListAvailabilityDomains` operation in the Identity Service API.

Constant Summary collapse

DATABASE_EDITION_ENUM =

rubocop:disable Metrics/LineLength

[
  DATABASE_EDITION_STANDARD_EDITION = 'STANDARD_EDITION'.freeze,
  DATABASE_EDITION_ENTERPRISE_EDITION = 'ENTERPRISE_EDITION'.freeze,
  DATABASE_EDITION_ENTERPRISE_EDITION_EXTREME_PERFORMANCE = 'ENTERPRISE_EDITION_EXTREME_PERFORMANCE'.freeze,
  DATABASE_EDITION_ENTERPRISE_EDITION_HIGH_PERFORMANCE = 'ENTERPRISE_EDITION_HIGH_PERFORMANCE'.freeze,
  DATABASE_EDITION_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
DISK_REDUNDANCY_ENUM =
[
  DISK_REDUNDANCY_HIGH = 'HIGH'.freeze,
  DISK_REDUNDANCY_NORMAL = 'NORMAL'.freeze,
  DISK_REDUNDANCY_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
LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_PROVISIONING = 'PROVISIONING'.freeze,
  LIFECYCLE_STATE_AVAILABLE = 'AVAILABLE'.freeze,
  LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze,
  LIFECYCLE_STATE_TERMINATING = 'TERMINATING'.freeze,
  LIFECYCLE_STATE_TERMINATED = 'TERMINATED'.freeze,
  LIFECYCLE_STATE_FAILED = 'FAILED'.freeze,
  LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ DbSystemSummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :availability_domain (String)

    The value to assign to the #availability_domain property

  • :backup_subnet_id (String)

    The value to assign to the #backup_subnet_id property

  • :cluster_name (String)

    The value to assign to the #cluster_name property

  • :compartment_id (String)

    The value to assign to the #compartment_id property

  • :cpu_core_count (Integer)

    The value to assign to the #cpu_core_count property

  • :data_storage_percentage (Integer)

    The value to assign to the #data_storage_percentage property

  • :data_storage_size_in_gbs (Integer)

    The value to assign to the #data_storage_size_in_gbs property

  • :database_edition (String)

    The value to assign to the #database_edition property

  • :defined_tags (Hash<String, Hash<String, Object>>)

    The value to assign to the #defined_tags property

  • :disk_redundancy (String)

    The value to assign to the #disk_redundancy property

  • :display_name (String)

    The value to assign to the #display_name property

  • :domain (String)

    The value to assign to the #domain property

  • :freeform_tags (Hash<String, String>)

    The value to assign to the #freeform_tags property

  • :hostname (String)

    The value to assign to the #hostname property

  • :id (String)

    The value to assign to the #id property

  • :last_patch_history_entry_id (String)

    The value to assign to the #last_patch_history_entry_id property

  • :license_model (String)

    The value to assign to the #license_model property

  • :lifecycle_details (String)

    The value to assign to the #lifecycle_details property

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state property

  • :listener_port (Integer)

    The value to assign to the #listener_port property

  • :node_count (Integer)

    The value to assign to the #node_count property

  • :reco_storage_size_in_gb (Integer)

    The value to assign to the #reco_storage_size_in_gb property

  • :scan_dns_record_id (String)

    The value to assign to the #scan_dns_record_id property

  • :scan_ip_ids (Array<String>)

    The value to assign to the #scan_ip_ids property

  • :shape (String)

    The value to assign to the #shape property

  • :ssh_public_keys (Array<String>)

    The value to assign to the #ssh_public_keys property

  • :subnet_id (String)

    The value to assign to the #subnet_id property

  • :time_created (DateTime)

    The value to assign to the #time_created property

  • :version (String)

    The value to assign to the #version property

  • :vip_ids (Array<String>)

    The value to assign to the #vip_ids property



330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
# File 'lib/oci/database/models/db_system_summary.rb', line 330

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.availability_domain = attributes[:'availabilityDomain'] if attributes[:'availabilityDomain']

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

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

  self.backup_subnet_id = attributes[:'backupSubnetId'] if attributes[:'backupSubnetId']

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

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

  self.cluster_name = attributes[:'clusterName'] if attributes[:'clusterName']

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

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

  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.cpu_core_count = attributes[:'cpuCoreCount'] if attributes[:'cpuCoreCount']

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

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

  self.data_storage_percentage = attributes[:'dataStoragePercentage'] if attributes[:'dataStoragePercentage']

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

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

  self.data_storage_size_in_gbs = attributes[:'dataStorageSizeInGBs'] if attributes[:'dataStorageSizeInGBs']

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

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

  self.database_edition = attributes[:'databaseEdition'] if attributes[:'databaseEdition']

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

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

  self.defined_tags = attributes[:'definedTags'] if attributes[:'definedTags']

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

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

  self.disk_redundancy = attributes[:'diskRedundancy'] if attributes[:'diskRedundancy']

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

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

  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.domain = attributes[:'domain'] if attributes[:'domain']

  self.freeform_tags = attributes[:'freeformTags'] if attributes[:'freeformTags']

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

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

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

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

  self.last_patch_history_entry_id = attributes[:'lastPatchHistoryEntryId'] if attributes[:'lastPatchHistoryEntryId']

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

  self.last_patch_history_entry_id = attributes[:'last_patch_history_entry_id'] if attributes[:'last_patch_history_entry_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.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.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.listener_port = attributes[:'listenerPort'] if attributes[:'listenerPort']

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

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

  self.node_count = attributes[:'nodeCount'] if attributes[:'nodeCount']

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

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

  self.reco_storage_size_in_gb = attributes[:'recoStorageSizeInGB'] if attributes[:'recoStorageSizeInGB']

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

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

  self.scan_dns_record_id = attributes[:'scanDnsRecordId'] if attributes[:'scanDnsRecordId']

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

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

  self.scan_ip_ids = attributes[:'scanIpIds'] if attributes[:'scanIpIds']

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

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

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

  self.ssh_public_keys = attributes[:'sshPublicKeys'] if attributes[:'sshPublicKeys']

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

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

  self.subnet_id = attributes[:'subnetId'] if attributes[:'subnetId']

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

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

  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.version = attributes[:'version'] if attributes[:'version']

  self.vip_ids = attributes[:'vipIds'] if attributes[:'vipIds']

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

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

Instance Attribute Details

#availability_domainString

[Required] The name of the Availability Domain that the DB System is located in.

Returns:

  • (String)


57
58
59
# File 'lib/oci/database/models/db_system_summary.rb', line 57

def availability_domain
  @availability_domain
end

#backup_subnet_idString

The OCID of the backup network subnet the DB System is associated with. Applicable only to Exadata.

**Subnet Restriction:** See above subnetId’s ‘Subnet Restriction’. to malfunction.

Returns:

  • (String)


65
66
67
# File 'lib/oci/database/models/db_system_summary.rb', line 65

def backup_subnet_id
  @backup_subnet_id
end

#cluster_nameString

Cluster name for Exadata and 2-node RAC DB Systems. The cluster name must begin with an an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.

Returns:

  • (String)


70
71
72
# File 'lib/oci/database/models/db_system_summary.rb', line 70

def cluster_name
  @cluster_name
end

#compartment_idString

[Required] The OCID of the compartment.

Returns:

  • (String)


74
75
76
# File 'lib/oci/database/models/db_system_summary.rb', line 74

def compartment_id
  @compartment_id
end

#cpu_core_countInteger

[Required] The number of CPU cores enabled on the DB System.

Returns:

  • (Integer)


78
79
80
# File 'lib/oci/database/models/db_system_summary.rb', line 78

def cpu_core_count
  @cpu_core_count
end

#data_storage_percentageInteger

The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80.

Returns:

  • (Integer)


84
85
86
# File 'lib/oci/database/models/db_system_summary.rb', line 84

def data_storage_percentage
  @data_storage_percentage
end

#data_storage_size_in_gbsInteger

Data storage size, in GBs, that is currently available to the DB system. This is applicable only for VM-based DBs.

Returns:

  • (Integer)


89
90
91
# File 'lib/oci/database/models/db_system_summary.rb', line 89

def data_storage_size_in_gbs
  @data_storage_size_in_gbs
end

#database_editionString

[Required] The Oracle Database Edition that applies to all the databases on the DB System.

Returns:

  • (String)


94
95
96
# File 'lib/oci/database/models/db_system_summary.rb', line 94

def database_edition
  @database_edition
end

#defined_tagsHash<String, Hash<String, Object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/resourcetags.htm).

Example: ‘{"CostCenter": "42"}`

Returns:

  • (Hash<String, Hash<String, Object>>)


102
103
104
# File 'lib/oci/database/models/db_system_summary.rb', line 102

def defined_tags
  @defined_tags
end

#disk_redundancyString

The type of redundancy configured for the DB System. Normal is 2-way redundancy. High is 3-way redundancy.

Returns:

  • (String)


109
110
111
# File 'lib/oci/database/models/db_system_summary.rb', line 109

def disk_redundancy
  @disk_redundancy
end

#display_nameString

[Required] The user-friendly name for the DB System. It does not have to be unique.

Returns:

  • (String)


113
114
115
# File 'lib/oci/database/models/db_system_summary.rb', line 113

def display_name
  @display_name
end

#domainString

[Required] The domain name for the DB System.

Returns:

  • (String)


117
118
119
# File 'lib/oci/database/models/db_system_summary.rb', line 117

def domain
  @domain
end

#freeform_tagsHash<String, String>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/resourcetags.htm).

Example: ‘"Finance"`

Returns:

  • (Hash<String, String>)


125
126
127
# File 'lib/oci/database/models/db_system_summary.rb', line 125

def freeform_tags
  @freeform_tags
end

#hostnameString

[Required] The host name for the DB Node.

Returns:

  • (String)


129
130
131
# File 'lib/oci/database/models/db_system_summary.rb', line 129

def hostname
  @hostname
end

#idString

[Required] The OCID of the DB System.

Returns:

  • (String)


133
134
135
# File 'lib/oci/database/models/db_system_summary.rb', line 133

def id
  @id
end

#last_patch_history_entry_idString

The OCID of the last patch history. This is updated as soon as a patch operation is started.

Returns:

  • (String)


137
138
139
# File 'lib/oci/database/models/db_system_summary.rb', line 137

def last_patch_history_entry_id
  @last_patch_history_entry_id
end

#license_modelString

The Oracle license model that applies to all the databases on the DB System. The default is LICENSE_INCLUDED.

Returns:

  • (String)


142
143
144
# File 'lib/oci/database/models/db_system_summary.rb', line 142

def license_model
  @license_model
end

#lifecycle_detailsString

Additional information about the current lifecycleState.

Returns:

  • (String)


146
147
148
# File 'lib/oci/database/models/db_system_summary.rb', line 146

def lifecycle_details
  @lifecycle_details
end

#lifecycle_stateString

[Required] The current state of the DB System.

Returns:

  • (String)


150
151
152
# File 'lib/oci/database/models/db_system_summary.rb', line 150

def lifecycle_state
  @lifecycle_state
end

#listener_portInteger

The port number configured for the listener on the DB System.

Returns:

  • (Integer)


154
155
156
# File 'lib/oci/database/models/db_system_summary.rb', line 154

def listener_port
  @listener_port
end

#node_countInteger

Number of nodes in this DB system. For RAC DBs, this will be greater than 1.

Returns:

  • (Integer)


159
160
161
# File 'lib/oci/database/models/db_system_summary.rb', line 159

def node_count
  @node_count
end

#reco_storage_size_in_gbInteger

RECO/REDO storage size, in GBs, that is currently allocated to the DB system. This is applicable only for VM-based DBs.

Returns:

  • (Integer)


164
165
166
# File 'lib/oci/database/models/db_system_summary.rb', line 164

def reco_storage_size_in_gb
  @reco_storage_size_in_gb
end

#scan_dns_record_idString

The OCID of the DNS record for the SCAN IP addresses that are associated with the DB System.

Returns:

  • (String)


169
170
171
# File 'lib/oci/database/models/db_system_summary.rb', line 169

def scan_dns_record_id
  @scan_dns_record_id
end

#scan_ip_idsArray<String>

The OCID of the Single Client Access Name (SCAN) IP addresses associated with the DB System. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Clusterware directs the requests to the appropriate nodes in the cluster.

  • For a single-node DB System, this list is empty.

Returns:

  • (Array<String>)


178
179
180
# File 'lib/oci/database/models/db_system_summary.rb', line 178

def scan_ip_ids
  @scan_ip_ids
end

#shapeString

[Required] The shape of the DB System. The shape determines resources to allocate to the DB system - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes.

Returns:

  • (String)


182
183
184
# File 'lib/oci/database/models/db_system_summary.rb', line 182

def shape
  @shape
end

#ssh_public_keysArray<String>

[Required] The public key portion of one or more key pairs used for SSH access to the DB System.

Returns:

  • (Array<String>)


186
187
188
# File 'lib/oci/database/models/db_system_summary.rb', line 186

def ssh_public_keys
  @ssh_public_keys
end

#subnet_idString

[Required] The OCID of the subnet the DB System is associated with.

**Subnet Restrictions:**

  • For single node and 2-node (RAC) DB Systems, do not use a subnet that overlaps with 192.168.16.16/28

  • For Exadata and VM-based RAC DB Systems, do not use a subnet that overlaps with 192.168.128.0/20

These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.

Returns:

  • (String)


199
200
201
# File 'lib/oci/database/models/db_system_summary.rb', line 199

def subnet_id
  @subnet_id
end

#time_createdDateTime

The date and time the DB System was created.

Returns:

  • (DateTime)


203
204
205
# File 'lib/oci/database/models/db_system_summary.rb', line 203

def time_created
  @time_created
end

#versionString

The version of the DB System.

Returns:

  • (String)


207
208
209
# File 'lib/oci/database/models/db_system_summary.rb', line 207

def version
  @version
end

#vip_idsArray<String>

The OCID of the virtual IP (VIP) addresses associated with the DB System. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the DB System to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.

  • For a single-node DB System, this list is empty.

Returns:

  • (Array<String>)


216
217
218
# File 'lib/oci/database/models/db_system_summary.rb', line 216

def vip_ids
  @vip_ids
end

Class Method Details

.attribute_mapObject

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



219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
# File 'lib/oci/database/models/db_system_summary.rb', line 219

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'availability_domain': :'availabilityDomain',
    'backup_subnet_id': :'backupSubnetId',
    'cluster_name': :'clusterName',
    'compartment_id': :'compartmentId',
    'cpu_core_count': :'cpuCoreCount',
    'data_storage_percentage': :'dataStoragePercentage',
    'data_storage_size_in_gbs': :'dataStorageSizeInGBs',
    'database_edition': :'databaseEdition',
    'defined_tags': :'definedTags',
    'disk_redundancy': :'diskRedundancy',
    'display_name': :'displayName',
    'domain': :'domain',
    'freeform_tags': :'freeformTags',
    'hostname': :'hostname',
    'id': :'id',
    'last_patch_history_entry_id': :'lastPatchHistoryEntryId',
    'license_model': :'licenseModel',
    'lifecycle_details': :'lifecycleDetails',
    'lifecycle_state': :'lifecycleState',
    'listener_port': :'listenerPort',
    'node_count': :'nodeCount',
    'reco_storage_size_in_gb': :'recoStorageSizeInGB',
    'scan_dns_record_id': :'scanDnsRecordId',
    'scan_ip_ids': :'scanIpIds',
    'shape': :'shape',
    'ssh_public_keys': :'sshPublicKeys',
    'subnet_id': :'subnetId',
    'time_created': :'timeCreated',
    'version': :'version',
    'vip_ids': :'vipIds'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
# File 'lib/oci/database/models/db_system_summary.rb', line 257

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'availability_domain': :'String',
    'backup_subnet_id': :'String',
    'cluster_name': :'String',
    'compartment_id': :'String',
    'cpu_core_count': :'Integer',
    'data_storage_percentage': :'Integer',
    'data_storage_size_in_gbs': :'Integer',
    'database_edition': :'String',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'disk_redundancy': :'String',
    'display_name': :'String',
    'domain': :'String',
    'freeform_tags': :'Hash<String, String>',
    'hostname': :'String',
    'id': :'String',
    'last_patch_history_entry_id': :'String',
    'license_model': :'String',
    'lifecycle_details': :'String',
    'lifecycle_state': :'String',
    'listener_port': :'Integer',
    'node_count': :'Integer',
    'reco_storage_size_in_gb': :'Integer',
    'scan_dns_record_id': :'String',
    'scan_ip_ids': :'Array<String>',
    'shape': :'String',
    'ssh_public_keys': :'Array<String>',
    'subnet_id': :'String',
    'time_created': :'DateTime',
    'version': :'String',
    'vip_ids': :'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



564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
# File 'lib/oci/database/models/db_system_summary.rb', line 564

def ==(other)
  return true if equal?(other)
  self.class == other.class &&
    availability_domain == other.availability_domain &&
    backup_subnet_id == other.backup_subnet_id &&
    cluster_name == other.cluster_name &&
    compartment_id == other.compartment_id &&
    cpu_core_count == other.cpu_core_count &&
    data_storage_percentage == other.data_storage_percentage &&
    data_storage_size_in_gbs == other.data_storage_size_in_gbs &&
    database_edition == other.database_edition &&
    defined_tags == other.defined_tags &&
    disk_redundancy == other.disk_redundancy &&
    display_name == other.display_name &&
    domain == other.domain &&
    freeform_tags == other.freeform_tags &&
    hostname == other.hostname &&
    id == other.id &&
    last_patch_history_entry_id == other.last_patch_history_entry_id &&
    license_model == other.license_model &&
    lifecycle_details == other.lifecycle_details &&
    lifecycle_state == other.lifecycle_state &&
    listener_port == other.listener_port &&
    node_count == other.node_count &&
    reco_storage_size_in_gb == other.reco_storage_size_in_gb &&
    scan_dns_record_id == other.scan_dns_record_id &&
    scan_ip_ids == other.scan_ip_ids &&
    shape == other.shape &&
    ssh_public_keys == other.ssh_public_keys &&
    subnet_id == other.subnet_id &&
    time_created == other.time_created &&
    version == other.version &&
    vip_ids == other.vip_ids
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



622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
# File 'lib/oci/database/models/db_system_summary.rb', line 622

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


602
603
604
# File 'lib/oci/database/models/db_system_summary.rb', line 602

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



611
612
613
# File 'lib/oci/database/models/db_system_summary.rb', line 611

def hash
  [availability_domain, backup_subnet_id, cluster_name, compartment_id, cpu_core_count, data_storage_percentage, data_storage_size_in_gbs, database_edition, defined_tags, disk_redundancy, display_name, domain, freeform_tags, hostname, id, last_patch_history_entry_id, license_model, lifecycle_details, lifecycle_state, listener_port, node_count, reco_storage_size_in_gb, scan_dns_record_id, scan_ip_ids, shape, ssh_public_keys, subnet_id, time_created, version, vip_ids].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



654
655
656
657
658
659
660
661
662
# File 'lib/oci/database/models/db_system_summary.rb', line 654

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



648
649
650
# File 'lib/oci/database/models/db_system_summary.rb', line 648

def to_s
  to_hash.to_s
end