Class: OCI::Mysql::Models::UpdateDbSystemDetails
- Inherits:
-
Object
- Object
- OCI::Mysql::Models::UpdateDbSystemDetails
- Defined in:
- lib/oci/mysql/models/update_db_system_details.rb
Overview
Details required to update a DB System.
Instance Attribute Summary collapse
-
#admin_password ⇒ String
The password for the administrative user.
-
#admin_username ⇒ String
The username for the administrative user for the MySQL Instance.
-
#availability_domain ⇒ String
The Availability Domain where the primary instance should be located.
- #backup_policy ⇒ OCI::Mysql::Models::UpdateBackupPolicyDetails
-
#configuration_id ⇒ String
The OCID of the Configuration to be used for Instances in this DB System.
-
#data_storage_size_in_gbs ⇒ Integer
New size of the data volume in GBs that will be created and attached.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Usage of predefined tag keys.
-
#description ⇒ String
User-provided data about the DB System.
-
#display_name ⇒ String
The user-friendly name for the DB System.
-
#fault_domain ⇒ String
The name of the Fault Domain the DB System is located in.
-
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair applied without any predefined name, type or scope.
-
#hostname_label ⇒ String
The hostname for the primary endpoint of the DB System.
-
#ip_address ⇒ String
The IP address the DB System should be configured to listen on the provided subnet.
- #maintenance ⇒ OCI::Mysql::Models::UpdateMaintenanceDetails
-
#mysql_version ⇒ String
The specific MySQL version identifier.
-
#port ⇒ Integer
The port for primary endpoint of the DB System to listen on.
-
#port_x ⇒ Integer
The TCP network port on which X Plugin listens for connections.
-
#shape_name ⇒ String
The shape of the DB System.
-
#subnet_id ⇒ String
The OCID of the subnet the DB System is associated with.
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 = {}) ⇒ UpdateDbSystemDetails
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 = {}) ⇒ UpdateDbSystemDetails
Initializes the object
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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 198 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.description = attributes[:'description'] if attributes[:'description'] 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.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.fault_domain = attributes[:'faultDomain'] if attributes[:'faultDomain'] raise 'You cannot provide both :faultDomain and :fault_domain' if attributes.key?(:'faultDomain') && attributes.key?(:'fault_domain') self.fault_domain = attributes[:'fault_domain'] if attributes[:'fault_domain'] self.shape_name = attributes[:'shapeName'] if attributes[:'shapeName'] raise 'You cannot provide both :shapeName and :shape_name' if attributes.key?(:'shapeName') && attributes.key?(:'shape_name') self.shape_name = attributes[:'shape_name'] if attributes[:'shape_name'] self.mysql_version = attributes[:'mysqlVersion'] if attributes[:'mysqlVersion'] raise 'You cannot provide both :mysqlVersion and :mysql_version' if attributes.key?(:'mysqlVersion') && attributes.key?(:'mysql_version') self.mysql_version = attributes[:'mysql_version'] if attributes[:'mysql_version'] self.configuration_id = attributes[:'configurationId'] if attributes[:'configurationId'] raise 'You cannot provide both :configurationId and :configuration_id' if attributes.key?(:'configurationId') && attributes.key?(:'configuration_id') self.configuration_id = attributes[:'configuration_id'] if attributes[:'configuration_id'] self.admin_username = attributes[:'adminUsername'] if attributes[:'adminUsername'] raise 'You cannot provide both :adminUsername and :admin_username' if attributes.key?(:'adminUsername') && attributes.key?(:'admin_username') self.admin_username = attributes[:'admin_username'] if attributes[:'admin_username'] self.admin_password = attributes[:'adminPassword'] if attributes[:'adminPassword'] raise 'You cannot provide both :adminPassword and :admin_password' if attributes.key?(:'adminPassword') && attributes.key?(:'admin_password') self.admin_password = attributes[:'admin_password'] if attributes[:'admin_password'] 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.hostname_label = attributes[:'hostnameLabel'] if attributes[:'hostnameLabel'] raise 'You cannot provide both :hostnameLabel and :hostname_label' if attributes.key?(:'hostnameLabel') && attributes.key?(:'hostname_label') self.hostname_label = attributes[:'hostname_label'] if attributes[:'hostname_label'] self.ip_address = attributes[:'ipAddress'] if attributes[:'ipAddress'] raise 'You cannot provide both :ipAddress and :ip_address' if attributes.key?(:'ipAddress') && attributes.key?(:'ip_address') self.ip_address = attributes[:'ip_address'] if attributes[:'ip_address'] self.port = attributes[:'port'] if attributes[:'port'] self.port_x = attributes[:'portX'] if attributes[:'portX'] raise 'You cannot provide both :portX and :port_x' if attributes.key?(:'portX') && attributes.key?(:'port_x') self.port_x = attributes[:'port_x'] if attributes[:'port_x'] self.backup_policy = attributes[:'backupPolicy'] if attributes[:'backupPolicy'] raise 'You cannot provide both :backupPolicy and :backup_policy' if attributes.key?(:'backupPolicy') && attributes.key?(:'backup_policy') self.backup_policy = attributes[:'backup_policy'] if attributes[:'backup_policy'] self.maintenance = attributes[:'maintenance'] if attributes[:'maintenance'] 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'] end |
Instance Attribute Details
#admin_password ⇒ String
The password for the administrative user. The password must be between 8 and 32 characters long, and must contain at least 1 numeric character, 1 lowercase character, 1 uppercase character, and 1 special (nonalphanumeric) character.
65 66 67 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 65 def admin_password @admin_password end |
#admin_username ⇒ String
The username for the administrative user for the MySQL Instance.
57 58 59 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 57 def admin_username @admin_username end |
#availability_domain ⇒ String
The Availability Domain where the primary instance should be located.
27 28 29 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 27 def availability_domain @availability_domain end |
#backup_policy ⇒ OCI::Mysql::Models::UpdateBackupPolicyDetails
102 103 104 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 102 def backup_policy @backup_policy end |
#configuration_id ⇒ String
The OCID of the Configuration to be used for Instances in this DB System.
53 54 55 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 53 def configuration_id @configuration_id end |
#data_storage_size_in_gbs ⇒ Integer
New size of the data volume in GBs that will be created and attached.
Increases in data storage size will happen asynchronously and will require DB System downtime.
Decreases in data storage size are not supported.
74 75 76 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 74 def data_storage_size_in_gbs @data_storage_size_in_gbs end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: ‘{"bar-key": "value"}`
117 118 119 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 117 def end |
#description ⇒ String
User-provided data about the DB System.
17 18 19 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 17 def description @description end |
#display_name ⇒ String
The user-friendly name for the DB System. It does not have to be unique.
13 14 15 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 13 def display_name @display_name end |
#fault_domain ⇒ String
The name of the Fault Domain the DB System is located in.
32 33 34 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 32 def fault_domain @fault_domain end |
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: ‘"value"`
111 112 113 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 111 def end |
#hostname_label ⇒ String
The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP’s fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
82 83 84 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 82 def hostname_label @hostname_label end |
#ip_address ⇒ String
The IP address the DB System should be configured to listen on the provided subnet. It must be a free private IP address within the subnet’s CIDR. If you don’t specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
90 91 92 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 90 def ip_address @ip_address end |
#maintenance ⇒ OCI::Mysql::Models::UpdateMaintenanceDetails
105 106 107 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 105 def maintenance @maintenance end |
#mysql_version ⇒ String
The specific MySQL version identifier.
49 50 51 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 49 def mysql_version @mysql_version end |
#port ⇒ Integer
The port for primary endpoint of the DB System to listen on.
94 95 96 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 94 def port @port end |
#port_x ⇒ Integer
The TCP network port on which X Plugin listens for connections. This is the X Plugin equivalent of port.
99 100 101 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 99 def port_x @port_x end |
#shape_name ⇒ String
The shape of the DB System. The shape determines resources allocated to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use the list_shapes operation.
Changes in Shape will result in a downtime as the MySQL DB System is migrated to the new Compute instance.
45 46 47 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 45 def shape_name @shape_name end |
#subnet_id ⇒ String
The OCID of the subnet the DB System is associated with.
22 23 24 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 22 def subnet_id @subnet_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 120 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'display_name': :'displayName', 'description': :'description', 'subnet_id': :'subnetId', 'availability_domain': :'availabilityDomain', 'fault_domain': :'faultDomain', 'shape_name': :'shapeName', 'mysql_version': :'mysqlVersion', 'configuration_id': :'configurationId', 'admin_username': :'adminUsername', 'admin_password': :'adminPassword', 'data_storage_size_in_gbs': :'dataStorageSizeInGBs', 'hostname_label': :'hostnameLabel', 'ip_address': :'ipAddress', 'port': :'port', 'port_x': :'portX', 'backup_policy': :'backupPolicy', 'maintenance': :'maintenance', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 147 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'display_name': :'String', 'description': :'String', 'subnet_id': :'String', 'availability_domain': :'String', 'fault_domain': :'String', 'shape_name': :'String', 'mysql_version': :'String', 'configuration_id': :'String', 'admin_username': :'String', 'admin_password': :'String', 'data_storage_size_in_gbs': :'Integer', 'hostname_label': :'String', 'ip_address': :'String', 'port': :'Integer', 'port_x': :'Integer', 'backup_policy': :'OCI::Mysql::Models::UpdateBackupPolicyDetails', 'maintenance': :'OCI::Mysql::Models::UpdateMaintenanceDetails', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
314 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/mysql/models/update_db_system_details.rb', line 314 def ==(other) return true if equal?(other) self.class == other.class && display_name == other.display_name && description == other.description && subnet_id == other.subnet_id && availability_domain == other.availability_domain && fault_domain == other.fault_domain && shape_name == other.shape_name && mysql_version == other.mysql_version && configuration_id == other.configuration_id && admin_username == other.admin_username && admin_password == other.admin_password && data_storage_size_in_gbs == other.data_storage_size_in_gbs && hostname_label == other.hostname_label && ip_address == other.ip_address && port == other.port && port_x == other.port_x && backup_policy == other.backup_policy && maintenance == other.maintenance && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 362 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
342 343 344 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 342 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
351 352 353 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 351 def hash [display_name, description, subnet_id, availability_domain, fault_domain, shape_name, mysql_version, configuration_id, admin_username, admin_password, data_storage_size_in_gbs, hostname_label, ip_address, port, port_x, backup_policy, maintenance, , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
395 396 397 398 399 400 401 402 403 404 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 395 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
389 390 391 |
# File 'lib/oci/mysql/models/update_db_system_details.rb', line 389 def to_s to_hash.to_s end |