Class: OCI::Database::Models::UpdateAutonomousContainerDatabaseDetails
- Inherits:
-
Object
- Object
- OCI::Database::Models::UpdateAutonomousContainerDatabaseDetails
- Defined in:
- lib/oci/database/models/update_autonomous_container_database_details.rb
Overview
Describes the modification parameters for the Autonomous Container Database.
Constant Summary collapse
- PATCH_MODEL_ENUM =
[ PATCH_MODEL_RELEASE_UPDATES = 'RELEASE_UPDATES'.freeze, PATCH_MODEL_RELEASE_UPDATE_REVISIONS = 'RELEASE_UPDATE_REVISIONS'.freeze ].freeze
- VERSION_PREFERENCE_ENUM =
[ VERSION_PREFERENCE_NEXT_RELEASE_UPDATE = 'NEXT_RELEASE_UPDATE'.freeze, VERSION_PREFERENCE_LATEST_RELEASE_UPDATE = 'LATEST_RELEASE_UPDATE'.freeze ].freeze
- DISTRIBUTION_AFFINITY_ENUM =
[ DISTRIBUTION_AFFINITY_MINIMUM_DISTRIBUTION = 'MINIMUM_DISTRIBUTION'.freeze, DISTRIBUTION_AFFINITY_MAXIMUM_DISTRIBUTION = 'MAXIMUM_DISTRIBUTION'.freeze ].freeze
- NET_SERVICES_ARCHITECTURE_ENUM =
[ NET_SERVICES_ARCHITECTURE_DEDICATED = 'DEDICATED'.freeze, NET_SERVICES_ARCHITECTURE_SHARED = 'SHARED'.freeze, NET_SERVICES_ARCHITECTURE_DRCP = 'DRCP'.freeze ].freeze
Instance Attribute Summary collapse
- #backup_config ⇒ OCI::Database::Models::AutonomousContainerDatabaseBackupConfig
-
#customer_contacts ⇒ Array<OCI::Database::Models::CustomerContact>
Customer Contacts.
-
#db_split_threshold ⇒ Integer
The CPU value beyond which an Autonomous AI Database will be opened across multiple nodes.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#display_name ⇒ String
The display name for the Autonomous Container Database.
-
#distribution_affinity ⇒ String
Determines whether an Autonomous AI Database must be opened across a minimum or maximum of nodes.
-
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource.
-
#is_dst_file_update_enabled ⇒ BOOLEAN
Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database.
- #maintenance_window_details ⇒ OCI::Database::Models::MaintenanceWindow
-
#net_services_architecture ⇒ String
Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
-
#okv_end_point_group_name ⇒ String
The OKV End Point Group name for the Autonomous Container Database.
-
#patch_model ⇒ String
Database Patch model preference.
-
#standby_maintenance_buffer_in_days ⇒ Integer
The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database.
-
#version_preference ⇒ String
The next maintenance version preference.
-
#vm_failover_reservation ⇒ Integer
The percentage of CPUs reserved across nodes to support node failover.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ UpdateAutonomousContainerDatabaseDetails
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ UpdateAutonomousContainerDatabaseDetails
Initializes the object
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 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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 169 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.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.customer_contacts = attributes[:'customerContacts'] if attributes[:'customerContacts'] raise 'You cannot provide both :customerContacts and :customer_contacts' if attributes.key?(:'customerContacts') && attributes.key?(:'customer_contacts') self.customer_contacts = attributes[:'customer_contacts'] if attributes[:'customer_contacts'] self.okv_end_point_group_name = attributes[:'okvEndPointGroupName'] if attributes[:'okvEndPointGroupName'] raise 'You cannot provide both :okvEndPointGroupName and :okv_end_point_group_name' if attributes.key?(:'okvEndPointGroupName') && attributes.key?(:'okv_end_point_group_name') self.okv_end_point_group_name = attributes[:'okv_end_point_group_name'] if attributes[:'okv_end_point_group_name'] self.patch_model = attributes[:'patchModel'] if attributes[:'patchModel'] raise 'You cannot provide both :patchModel and :patch_model' if attributes.key?(:'patchModel') && attributes.key?(:'patch_model') self.patch_model = attributes[:'patch_model'] if attributes[:'patch_model'] self.maintenance_window_details = attributes[:'maintenanceWindowDetails'] if attributes[:'maintenanceWindowDetails'] raise 'You cannot provide both :maintenanceWindowDetails and :maintenance_window_details' if attributes.key?(:'maintenanceWindowDetails') && attributes.key?(:'maintenance_window_details') self.maintenance_window_details = attributes[:'maintenance_window_details'] if attributes[:'maintenance_window_details'] self.standby_maintenance_buffer_in_days = attributes[:'standbyMaintenanceBufferInDays'] if attributes[:'standbyMaintenanceBufferInDays'] raise 'You cannot provide both :standbyMaintenanceBufferInDays and :standby_maintenance_buffer_in_days' if attributes.key?(:'standbyMaintenanceBufferInDays') && attributes.key?(:'standby_maintenance_buffer_in_days') self.standby_maintenance_buffer_in_days = attributes[:'standby_maintenance_buffer_in_days'] if attributes[:'standby_maintenance_buffer_in_days'] self.version_preference = attributes[:'versionPreference'] if attributes[:'versionPreference'] self.version_preference = "NEXT_RELEASE_UPDATE" if version_preference.nil? && !attributes.key?(:'versionPreference') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :versionPreference and :version_preference' if attributes.key?(:'versionPreference') && attributes.key?(:'version_preference') self.version_preference = attributes[:'version_preference'] if attributes[:'version_preference'] self.version_preference = "NEXT_RELEASE_UPDATE" if version_preference.nil? && !attributes.key?(:'versionPreference') && !attributes.key?(:'version_preference') # rubocop:disable Style/StringLiterals self.is_dst_file_update_enabled = attributes[:'isDstFileUpdateEnabled'] unless attributes[:'isDstFileUpdateEnabled'].nil? raise 'You cannot provide both :isDstFileUpdateEnabled and :is_dst_file_update_enabled' if attributes.key?(:'isDstFileUpdateEnabled') && attributes.key?(:'is_dst_file_update_enabled') self.is_dst_file_update_enabled = attributes[:'is_dst_file_update_enabled'] unless attributes[:'is_dst_file_update_enabled'].nil? self. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = attributes[:'freeform_tags'] if attributes[:'freeform_tags'] self. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = attributes[:'defined_tags'] if attributes[:'defined_tags'] self.backup_config = attributes[:'backupConfig'] if attributes[:'backupConfig'] raise 'You cannot provide both :backupConfig and :backup_config' if attributes.key?(:'backupConfig') && attributes.key?(:'backup_config') self.backup_config = attributes[:'backup_config'] if attributes[:'backup_config'] self.db_split_threshold = attributes[:'dbSplitThreshold'] if attributes[:'dbSplitThreshold'] raise 'You cannot provide both :dbSplitThreshold and :db_split_threshold' if attributes.key?(:'dbSplitThreshold') && attributes.key?(:'db_split_threshold') self.db_split_threshold = attributes[:'db_split_threshold'] if attributes[:'db_split_threshold'] self.vm_failover_reservation = attributes[:'vmFailoverReservation'] if attributes[:'vmFailoverReservation'] raise 'You cannot provide both :vmFailoverReservation and :vm_failover_reservation' if attributes.key?(:'vmFailoverReservation') && attributes.key?(:'vm_failover_reservation') self.vm_failover_reservation = attributes[:'vm_failover_reservation'] if attributes[:'vm_failover_reservation'] self.distribution_affinity = attributes[:'distributionAffinity'] if attributes[:'distributionAffinity'] raise 'You cannot provide both :distributionAffinity and :distribution_affinity' if attributes.key?(:'distributionAffinity') && attributes.key?(:'distribution_affinity') self.distribution_affinity = attributes[:'distribution_affinity'] if attributes[:'distribution_affinity'] self.net_services_architecture = attributes[:'netServicesArchitecture'] if attributes[:'netServicesArchitecture'] self.net_services_architecture = "DEDICATED" if net_services_architecture.nil? && !attributes.key?(:'netServicesArchitecture') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :netServicesArchitecture and :net_services_architecture' if attributes.key?(:'netServicesArchitecture') && attributes.key?(:'net_services_architecture') self.net_services_architecture = attributes[:'net_services_architecture'] if attributes[:'net_services_architecture'] self.net_services_architecture = "DEDICATED" if net_services_architecture.nil? && !attributes.key?(:'netServicesArchitecture') && !attributes.key?(:'net_services_architecture') # rubocop:disable Style/StringLiterals end |
Instance Attribute Details
#backup_config ⇒ OCI::Database::Models::AutonomousContainerDatabaseBackupConfig
84 85 86 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 84 def backup_config @backup_config end |
#customer_contacts ⇒ Array<OCI::Database::Models::CustomerContact>
Customer Contacts. Setting this to an empty list removes all customer contacts.
40 41 42 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 40 def customer_contacts @customer_contacts end |
#db_split_threshold ⇒ Integer
The CPU value beyond which an Autonomous AI Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
88 89 90 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 88 def db_split_threshold @db_split_threshold end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
81 82 83 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 81 def @defined_tags end |
#display_name ⇒ String
The display name for the Autonomous Container Database.
35 36 37 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 35 def display_name @display_name end |
#distribution_affinity ⇒ String
Determines whether an Autonomous AI Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
96 97 98 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 96 def distribution_affinity @distribution_affinity end |
#freeform_tags ⇒ Hash<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.
Example: {\"Department\": \"Finance\"}
75 76 77 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 75 def @freeform_tags end |
#is_dst_file_update_enabled ⇒ BOOLEAN
Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
67 68 69 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 67 def is_dst_file_update_enabled @is_dst_file_update_enabled end |
#maintenance_window_details ⇒ OCI::Database::Models::MaintenanceWindow
52 53 54 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 52 def maintenance_window_details @maintenance_window_details end |
#net_services_architecture ⇒ String
Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
100 101 102 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 100 def net_services_architecture @net_services_architecture end |
#okv_end_point_group_name ⇒ String
The OKV End Point Group name for the Autonomous Container Database.
45 46 47 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 45 def okv_end_point_group_name @okv_end_point_group_name end |
#patch_model ⇒ String
Database Patch model preference.
49 50 51 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 49 def patch_model @patch_model end |
#standby_maintenance_buffer_in_days ⇒ Integer
The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before schedlued maintenance of the primary database.
58 59 60 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 58 def standby_maintenance_buffer_in_days @standby_maintenance_buffer_in_days end |
#version_preference ⇒ String
The next maintenance version preference.
63 64 65 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 63 def version_preference @version_preference end |
#vm_failover_reservation ⇒ Integer
The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, 50%, 75%, and 100%, with 50% being the default option.
92 93 94 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 92 def vm_failover_reservation @vm_failover_reservation end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 103 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'display_name': :'displayName', 'customer_contacts': :'customerContacts', 'okv_end_point_group_name': :'okvEndPointGroupName', 'patch_model': :'patchModel', 'maintenance_window_details': :'maintenanceWindowDetails', 'standby_maintenance_buffer_in_days': :'standbyMaintenanceBufferInDays', 'version_preference': :'versionPreference', 'is_dst_file_update_enabled': :'isDstFileUpdateEnabled', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'backup_config': :'backupConfig', 'db_split_threshold': :'dbSplitThreshold', 'vm_failover_reservation': :'vmFailoverReservation', 'distribution_affinity': :'distributionAffinity', 'net_services_architecture': :'netServicesArchitecture' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 126 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'display_name': :'String', 'customer_contacts': :'Array<OCI::Database::Models::CustomerContact>', 'okv_end_point_group_name': :'String', 'patch_model': :'String', 'maintenance_window_details': :'OCI::Database::Models::MaintenanceWindow', 'standby_maintenance_buffer_in_days': :'Integer', 'version_preference': :'String', 'is_dst_file_update_enabled': :'BOOLEAN', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>', 'backup_config': :'OCI::Database::Models::AutonomousContainerDatabaseBackupConfig', 'db_split_threshold': :'Integer', 'vm_failover_reservation': :'Integer', 'distribution_affinity': :'String', 'net_services_architecture': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 309 def ==(other) return true if equal?(other) self.class == other.class && display_name == other.display_name && customer_contacts == other.customer_contacts && okv_end_point_group_name == other.okv_end_point_group_name && patch_model == other.patch_model && maintenance_window_details == other.maintenance_window_details && standby_maintenance_buffer_in_days == other.standby_maintenance_buffer_in_days && version_preference == other.version_preference && is_dst_file_update_enabled == other.is_dst_file_update_enabled && == other. && == other. && backup_config == other.backup_config && db_split_threshold == other.db_split_threshold && vm_failover_reservation == other.vm_failover_reservation && distribution_affinity == other.distribution_affinity && net_services_architecture == other.net_services_architecture end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 353 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
333 334 335 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 333 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
342 343 344 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 342 def hash [display_name, customer_contacts, okv_end_point_group_name, patch_model, maintenance_window_details, standby_maintenance_buffer_in_days, version_preference, is_dst_file_update_enabled, , , backup_config, db_split_threshold, vm_failover_reservation, distribution_affinity, net_services_architecture].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
386 387 388 389 390 391 392 393 394 395 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 386 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_s ⇒ String
Returns the string representation of the object
380 381 382 |
# File 'lib/oci/database/models/update_autonomous_container_database_details.rb', line 380 def to_s to_hash.to_s end |