Class: OCI::Mysql::Models::DbSystemSnapshot
- Inherits:
-
Object
- Object
- OCI::Mysql::Models::DbSystemSnapshot
- Defined in:
- lib/oci/mysql/models/db_system_snapshot.rb
Overview
Snapshot of the DbSystem details at the time of the backup
Constant Summary collapse
- CRASH_RECOVERY_ENUM =
[ CRASH_RECOVERY_ENABLED = 'ENABLED'.freeze, CRASH_RECOVERY_DISABLED = 'DISABLED'.freeze, CRASH_RECOVERY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- DATABASE_MANAGEMENT_ENUM =
[ DATABASE_MANAGEMENT_ENABLED = 'ENABLED'.freeze, DATABASE_MANAGEMENT_DISABLED = 'DISABLED'.freeze, DATABASE_MANAGEMENT_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#admin_username ⇒ String
The username for the administrative user.
-
#availability_domain ⇒ String
The Availability Domain where the primary DB System should be located.
- #backup_policy ⇒ OCI::Mysql::Models::BackupPolicy
-
#compartment_id ⇒ String
[Required] The OCID of the compartment the DB System belongs in.
-
#configuration_id ⇒ String
The OCID of the Configuration to be used for Instances in this DB System.
-
#crash_recovery ⇒ String
Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- #data_storage ⇒ OCI::Mysql::Models::DataStorage
-
#data_storage_size_in_gbs ⇒ Integer
[Required] DEPRECATED: User specified size of the data volume.
- #database_console ⇒ OCI::Mysql::Models::DatabaseConsoleDetails
-
#database_management ⇒ String
Whether to enable monitoring via the Database Management service.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#deletion_policy ⇒ OCI::Mysql::Models::DeletionPolicyDetails
This attribute is required.
-
#description ⇒ String
User-provided data about the DB System.
-
#display_name ⇒ String
[Required] The user-friendly name for the DB System.
- #encrypt_data ⇒ OCI::Mysql::Models::EncryptDataDetails
-
#endpoints ⇒ Array<OCI::Mysql::Models::DbSystemEndpoint>
The network endpoints available for this 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 that is applied without any predefined name, type or scope.
-
#hostname_label ⇒ String
The hostname for the primary endpoint of the DB System.
-
#id ⇒ String
[Required] The OCID of the DB System.
-
#ip_address ⇒ String
The IP address the DB System is configured to listen on.
-
#ipv6_address ⇒ String
The IPv6 address the DB System is configured to listen on.
-
#is_highly_available ⇒ BOOLEAN
Specifies if the DB System is highly available.
-
#maintenance ⇒ OCI::Mysql::Models::MaintenanceDetails
This attribute is required.
-
#mysql_version ⇒ String
[Required] Name of the MySQL Version in use for the DB System.
-
#nsg_ids ⇒ Array<String>
Network Security Group OCIDs used for the VNIC attachment.
-
#port ⇒ Integer
The port for primary endpoint of the DB System to listen on.
-
#port_x ⇒ Integer
The network port on which X Plugin listens for TCP/IP connections.
- #read_endpoint ⇒ OCI::Mysql::Models::ReadEndpointDetails
-
#region ⇒ String
The region identifier of the region where the DB system exists.
- #rest ⇒ OCI::Mysql::Models::RestDetails
- #secure_connections ⇒ OCI::Mysql::Models::SecureConnectionDetails
-
#security_attributes ⇒ Hash<String, Hash<String, Object>>
Security Attributes for this resource.
-
#shape_name ⇒ String
The shape of the primary instances of the DB System.
-
#subnet_id ⇒ String
[Required] The OCID of the subnet the DB System is associated with.
- #telemetry_configuration ⇒ OCI::Mysql::Models::TelemetryConfigurationDetails
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 = {}) ⇒ DbSystemSnapshot
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 = {}) ⇒ DbSystemSnapshot
Initializes the object
324 325 326 327 328 329 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 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 324 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.description = attributes[:'description'] if attributes[:'description'] 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.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.nsg_ids = attributes[:'nsgIds'] if attributes[:'nsgIds'] raise 'You cannot provide both :nsgIds and :nsg_ids' if attributes.key?(:'nsgIds') && attributes.key?(:'nsg_ids') self.nsg_ids = attributes[:'nsg_ids'] if attributes[:'nsg_ids'] self.security_attributes = attributes[:'securityAttributes'] if attributes[:'securityAttributes'] raise 'You cannot provide both :securityAttributes and :security_attributes' if attributes.key?(:'securityAttributes') && attributes.key?(:'security_attributes') self.security_attributes = attributes[:'security_attributes'] if attributes[:'security_attributes'] 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.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.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.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.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.data_storage = attributes[:'dataStorage'] if attributes[:'dataStorage'] raise 'You cannot provide both :dataStorage and :data_storage' if attributes.key?(:'dataStorage') && attributes.key?(:'data_storage') self.data_storage = attributes[:'data_storage'] if attributes[:'data_storage'] 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.ipv6_address = attributes[:'ipv6Address'] if attributes[:'ipv6Address'] raise 'You cannot provide both :ipv6Address and :ipv6_address' if attributes.key?(:'ipv6Address') && attributes.key?(:'ipv6_address') self.ipv6_address = attributes[:'ipv6_address'] if attributes[:'ipv6_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.rest = attributes[:'rest'] if attributes[:'rest'] self.database_console = attributes[:'databaseConsole'] if attributes[:'databaseConsole'] raise 'You cannot provide both :databaseConsole and :database_console' if attributes.key?(:'databaseConsole') && attributes.key?(:'database_console') self.database_console = attributes[:'database_console'] if attributes[:'database_console'] self.is_highly_available = attributes[:'isHighlyAvailable'] unless attributes[:'isHighlyAvailable'].nil? self.is_highly_available = true if is_highly_available.nil? && !attributes.key?(:'isHighlyAvailable') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :isHighlyAvailable and :is_highly_available' if attributes.key?(:'isHighlyAvailable') && attributes.key?(:'is_highly_available') self.is_highly_available = attributes[:'is_highly_available'] unless attributes[:'is_highly_available'].nil? self.is_highly_available = true if is_highly_available.nil? && !attributes.key?(:'isHighlyAvailable') && !attributes.key?(:'is_highly_available') # rubocop:disable Style/StringLiterals self.endpoints = attributes[:'endpoints'] if attributes[:'endpoints'] self.maintenance = attributes[:'maintenance'] if attributes[:'maintenance'] self.deletion_policy = attributes[:'deletionPolicy'] if attributes[:'deletionPolicy'] raise 'You cannot provide both :deletionPolicy and :deletion_policy' if attributes.key?(:'deletionPolicy') && attributes.key?(:'deletion_policy') self.deletion_policy = attributes[:'deletion_policy'] if attributes[:'deletion_policy'] 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.crash_recovery = attributes[:'crashRecovery'] if attributes[:'crashRecovery'] self.crash_recovery = "ENABLED" if crash_recovery.nil? && !attributes.key?(:'crashRecovery') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :crashRecovery and :crash_recovery' if attributes.key?(:'crashRecovery') && attributes.key?(:'crash_recovery') self.crash_recovery = attributes[:'crash_recovery'] if attributes[:'crash_recovery'] self.crash_recovery = "ENABLED" if crash_recovery.nil? && !attributes.key?(:'crashRecovery') && !attributes.key?(:'crash_recovery') # rubocop:disable Style/StringLiterals self.database_management = attributes[:'databaseManagement'] if attributes[:'databaseManagement'] self.database_management = "ENABLED" if database_management.nil? && !attributes.key?(:'databaseManagement') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :databaseManagement and :database_management' if attributes.key?(:'databaseManagement') && attributes.key?(:'database_management') self.database_management = attributes[:'database_management'] if attributes[:'database_management'] self.database_management = "ENABLED" if database_management.nil? && !attributes.key?(:'databaseManagement') && !attributes.key?(:'database_management') # rubocop:disable Style/StringLiterals self.secure_connections = attributes[:'secureConnections'] if attributes[:'secureConnections'] raise 'You cannot provide both :secureConnections and :secure_connections' if attributes.key?(:'secureConnections') && attributes.key?(:'secure_connections') self.secure_connections = attributes[:'secure_connections'] if attributes[:'secure_connections'] self.encrypt_data = attributes[:'encryptData'] if attributes[:'encryptData'] raise 'You cannot provide both :encryptData and :encrypt_data' if attributes.key?(:'encryptData') && attributes.key?(:'encrypt_data') self.encrypt_data = attributes[:'encrypt_data'] if attributes[:'encrypt_data'] self.region = attributes[:'region'] if attributes[:'region'] self.read_endpoint = attributes[:'readEndpoint'] if attributes[:'readEndpoint'] raise 'You cannot provide both :readEndpoint and :read_endpoint' if attributes.key?(:'readEndpoint') && attributes.key?(:'read_endpoint') self.read_endpoint = attributes[:'read_endpoint'] if attributes[:'read_endpoint'] self.telemetry_configuration = attributes[:'telemetryConfiguration'] if attributes[:'telemetryConfiguration'] raise 'You cannot provide both :telemetryConfiguration and :telemetry_configuration' if attributes.key?(:'telemetryConfiguration') && attributes.key?(:'telemetry_configuration') self.telemetry_configuration = attributes[:'telemetry_configuration'] if attributes[:'telemetry_configuration'] end |
Instance Attribute Details
#admin_username ⇒ String
The username for the administrative user.
82 83 84 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 82 def admin_username @admin_username end |
#availability_domain ⇒ String
The Availability Domain where the primary DB System should be located.
60 61 62 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 60 def availability_domain @availability_domain end |
#backup_policy ⇒ OCI::Mysql::Models::BackupPolicy
85 86 87 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 85 def backup_policy @backup_policy end |
#compartment_id ⇒ String
[Required] The OCID of the compartment the DB System belongs in.
39 40 41 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 39 def compartment_id @compartment_id end |
#configuration_id ⇒ String
The OCID of the Configuration to be used for Instances in this DB System.
89 90 91 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 89 def configuration_id @configuration_id end |
#crash_recovery ⇒ String
Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
169 170 171 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 169 def crash_recovery @crash_recovery end |
#data_storage ⇒ OCI::Mysql::Models::DataStorage
98 99 100 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 98 def data_storage @data_storage end |
#data_storage_size_in_gbs ⇒ Integer
[Required] DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
95 96 97 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 95 def data_storage_size_in_gbs @data_storage_size_in_gbs end |
#database_console ⇒ OCI::Mysql::Models::DatabaseConsoleDetails
133 134 135 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 133 def database_console @database_console end |
#database_management ⇒ String
Whether to enable monitoring via the Database Management service.
174 175 176 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 174 def database_management @database_management end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"foo-namespace\": {\"bar-key\": \"value\"}}
163 164 165 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 163 def @defined_tags end |
#deletion_policy ⇒ OCI::Mysql::Models::DeletionPolicyDetails
This attribute is required.
151 152 153 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 151 def deletion_policy @deletion_policy end |
#description ⇒ String
User-provided data about the DB System.
35 36 37 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 35 def description @description end |
#display_name ⇒ String
[Required] The user-friendly name for the DB System. It does not have to be unique.
31 32 33 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 31 def display_name @display_name end |
#encrypt_data ⇒ OCI::Mysql::Models::EncryptDataDetails
180 181 182 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 180 def encrypt_data @encrypt_data end |
#endpoints ⇒ Array<OCI::Mysql::Models::DbSystemEndpoint>
The network endpoints available for this DB System.
143 144 145 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 143 def endpoints @endpoints end |
#fault_domain ⇒ String
The name of the Fault Domain the DB System is located in.
65 66 67 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 65 def fault_domain @fault_domain end |
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {\"bar-key\": \"value\"}
157 158 159 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 157 def @freeform_tags 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.
106 107 108 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 106 def hostname_label @hostname_label end |
#id ⇒ String
[Required] The OCID of the DB System.
27 28 29 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 27 def id @id end |
#ip_address ⇒ String
The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
114 115 116 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 114 def ip_address @ip_address end |
#ipv6_address ⇒ String
The IPv6 address the DB System is configured to listen on.
118 119 120 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 118 def ipv6_address @ipv6_address end |
#is_highly_available ⇒ BOOLEAN
Specifies if the DB System is highly available.
138 139 140 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 138 def is_highly_available @is_highly_available end |
#maintenance ⇒ OCI::Mysql::Models::MaintenanceDetails
This attribute is required.
147 148 149 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 147 def maintenance @maintenance end |
#mysql_version ⇒ String
[Required] Name of the MySQL Version in use for the DB System.
78 79 80 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 78 def mysql_version @mysql_version end |
#nsg_ids ⇒ Array<String>
Network Security Group OCIDs used for the VNIC attachment.
48 49 50 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 48 def nsg_ids @nsg_ids end |
#port ⇒ Integer
The port for primary endpoint of the DB System to listen on.
122 123 124 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 122 def port @port end |
#port_x ⇒ Integer
The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
127 128 129 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 127 def port_x @port_x end |
#read_endpoint ⇒ OCI::Mysql::Models::ReadEndpointDetails
189 190 191 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 189 def read_endpoint @read_endpoint end |
#region ⇒ String
The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
186 187 188 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 186 def region @region end |
#rest ⇒ OCI::Mysql::Models::RestDetails
130 131 132 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 130 def rest @rest end |
#secure_connections ⇒ OCI::Mysql::Models::SecureConnectionDetails
177 178 179 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 177 def secure_connections @secure_connections end |
#security_attributes ⇒ Hash<String, Hash<String, Object>>
Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see ZPR Artifacts. Example: {\"Oracle-ZPR\": {\"MaxEgressCount\": {\"value\": \"42\", \"mode\": \"audit\"}}}
55 56 57 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 55 def security_attributes @security_attributes end |
#shape_name ⇒ String
The shape of the primary instances of the DB System. The shape determines resources allocated to a 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.
74 75 76 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 74 def shape_name @shape_name end |
#subnet_id ⇒ String
[Required] The OCID of the subnet the DB System is associated with.
44 45 46 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 44 def subnet_id @subnet_id end |
#telemetry_configuration ⇒ OCI::Mysql::Models::TelemetryConfigurationDetails
192 193 194 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 192 def telemetry_configuration @telemetry_configuration end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
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 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 195 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'display_name': :'displayName', 'description': :'description', 'compartment_id': :'compartmentId', 'subnet_id': :'subnetId', 'nsg_ids': :'nsgIds', 'security_attributes': :'securityAttributes', 'availability_domain': :'availabilityDomain', 'fault_domain': :'faultDomain', 'shape_name': :'shapeName', 'mysql_version': :'mysqlVersion', 'admin_username': :'adminUsername', 'backup_policy': :'backupPolicy', 'configuration_id': :'configurationId', 'data_storage_size_in_gbs': :'dataStorageSizeInGBs', 'data_storage': :'dataStorage', 'hostname_label': :'hostnameLabel', 'ip_address': :'ipAddress', 'ipv6_address': :'ipv6Address', 'port': :'port', 'port_x': :'portX', 'rest': :'rest', 'database_console': :'databaseConsole', 'is_highly_available': :'isHighlyAvailable', 'endpoints': :'endpoints', 'maintenance': :'maintenance', 'deletion_policy': :'deletionPolicy', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'crash_recovery': :'crashRecovery', 'database_management': :'databaseManagement', 'secure_connections': :'secureConnections', 'encrypt_data': :'encryptData', 'region': :'region', 'read_endpoint': :'readEndpoint', 'telemetry_configuration': :'telemetryConfiguration' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 239 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'display_name': :'String', 'description': :'String', 'compartment_id': :'String', 'subnet_id': :'String', 'nsg_ids': :'Array<String>', 'security_attributes': :'Hash<String, Hash<String, Object>>', 'availability_domain': :'String', 'fault_domain': :'String', 'shape_name': :'String', 'mysql_version': :'String', 'admin_username': :'String', 'backup_policy': :'OCI::Mysql::Models::BackupPolicy', 'configuration_id': :'String', 'data_storage_size_in_gbs': :'Integer', 'data_storage': :'OCI::Mysql::Models::DataStorage', 'hostname_label': :'String', 'ip_address': :'String', 'ipv6_address': :'String', 'port': :'Integer', 'port_x': :'Integer', 'rest': :'OCI::Mysql::Models::RestDetails', 'database_console': :'OCI::Mysql::Models::DatabaseConsoleDetails', 'is_highly_available': :'BOOLEAN', 'endpoints': :'Array<OCI::Mysql::Models::DbSystemEndpoint>', 'maintenance': :'OCI::Mysql::Models::MaintenanceDetails', 'deletion_policy': :'OCI::Mysql::Models::DeletionPolicyDetails', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>', 'crash_recovery': :'String', 'database_management': :'String', 'secure_connections': :'OCI::Mysql::Models::SecureConnectionDetails', 'encrypt_data': :'OCI::Mysql::Models::EncryptDataDetails', 'region': :'String', 'read_endpoint': :'OCI::Mysql::Models::ReadEndpointDetails', 'telemetry_configuration': :'OCI::Mysql::Models::TelemetryConfigurationDetails' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
558 559 560 561 562 563 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 598 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 558 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && display_name == other.display_name && description == other.description && compartment_id == other.compartment_id && subnet_id == other.subnet_id && nsg_ids == other.nsg_ids && security_attributes == other.security_attributes && availability_domain == other.availability_domain && fault_domain == other.fault_domain && shape_name == other.shape_name && mysql_version == other.mysql_version && admin_username == other.admin_username && backup_policy == other.backup_policy && configuration_id == other.configuration_id && data_storage_size_in_gbs == other.data_storage_size_in_gbs && data_storage == other.data_storage && hostname_label == other.hostname_label && ip_address == other.ip_address && ipv6_address == other.ipv6_address && port == other.port && port_x == other.port_x && rest == other.rest && database_console == other.database_console && is_highly_available == other.is_highly_available && endpoints == other.endpoints && maintenance == other.maintenance && deletion_policy == other.deletion_policy && == other. && == other. && crash_recovery == other.crash_recovery && database_management == other.database_management && secure_connections == other.secure_connections && encrypt_data == other.encrypt_data && region == other.region && read_endpoint == other.read_endpoint && telemetry_configuration == other.telemetry_configuration end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 623 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
603 604 605 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 603 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
612 613 614 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 612 def hash [id, display_name, description, compartment_id, subnet_id, nsg_ids, security_attributes, availability_domain, fault_domain, shape_name, mysql_version, admin_username, backup_policy, configuration_id, data_storage_size_in_gbs, data_storage, hostname_label, ip_address, ipv6_address, port, port_x, rest, database_console, is_highly_available, endpoints, maintenance, deletion_policy, , , crash_recovery, database_management, secure_connections, encrypt_data, region, read_endpoint, telemetry_configuration].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
656 657 658 659 660 661 662 663 664 665 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 656 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
650 651 652 |
# File 'lib/oci/mysql/models/db_system_snapshot.rb', line 650 def to_s to_hash.to_s end |