Class: OCI::DatabaseManagement::Models::ManagedMySqlDatabaseSummary
- Inherits:
-
Object
- Object
- OCI::DatabaseManagement::Models::ManagedMySqlDatabaseSummary
- Defined in:
- lib/oci/database_management/models/managed_my_sql_database_summary.rb
Overview
The details of the Managed MySQL Database.
Constant Summary collapse
- DATABASE_TYPE_ENUM =
[ DATABASE_TYPE_EXTERNAL = 'EXTERNAL'.freeze, DATABASE_TYPE_MDS = 'MDS'.freeze, DATABASE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- MANAGEMENT_STATE_ENUM =
[ MANAGEMENT_STATE_ENABLED = 'ENABLED'.freeze, MANAGEMENT_STATE_DISABLED = 'DISABLED'.freeze, MANAGEMENT_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_CREATING = 'CREATING'.freeze, LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze, LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze, LIFECYCLE_STATE_DELETING = 'DELETING'.freeze, LIFECYCLE_STATE_DELETED = 'DELETED'.freeze, LIFECYCLE_STATE_FAILED = 'FAILED'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#compartment_id ⇒ String
[Required] The OCID of the compartment.
-
#database_type ⇒ String
The type of the MySQL Database.
-
#db_name ⇒ String
[Required] The name of the MySQL Database.
-
#db_version ⇒ String
[Required] The version of the MySQL Database.
-
#id ⇒ String
[Required] The OCID of the Managed MySQL Database.
-
#lifecycle_state ⇒ String
Indicates lifecycle state of the resource.
-
#management_state ⇒ String
Indicates database management status.
-
#name ⇒ String
[Required] The name of the Managed MySQL Database.
-
#time_created ⇒ DateTime
[Required] The date and time the Managed MySQL Database was created.
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 = {}) ⇒ ManagedMySqlDatabaseSummary
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 = {}) ⇒ ManagedMySqlDatabaseSummary
Initializes the object
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 121 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.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.db_name = attributes[:'dbName'] if attributes[:'dbName'] raise 'You cannot provide both :dbName and :db_name' if attributes.key?(:'dbName') && attributes.key?(:'db_name') self.db_name = attributes[:'db_name'] if attributes[:'db_name'] self.db_version = attributes[:'dbVersion'] if attributes[:'dbVersion'] raise 'You cannot provide both :dbVersion and :db_version' if attributes.key?(:'dbVersion') && attributes.key?(:'db_version') self.db_version = attributes[:'db_version'] if attributes[:'db_version'] 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.name = attributes[:'name'] if attributes[:'name'] self.database_type = attributes[:'databaseType'] if attributes[:'databaseType'] raise 'You cannot provide both :databaseType and :database_type' if attributes.key?(:'databaseType') && attributes.key?(:'database_type') self.database_type = attributes[:'database_type'] if attributes[:'database_type'] self.management_state = attributes[:'managementState'] if attributes[:'managementState'] raise 'You cannot provide both :managementState and :management_state' if attributes.key?(:'managementState') && attributes.key?(:'management_state') self.management_state = attributes[:'management_state'] if attributes[:'management_state'] 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'] end |
Instance Attribute Details
#compartment_id ⇒ String
[Required] The OCID of the compartment.
40 41 42 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 40 def compartment_id @compartment_id end |
#database_type ⇒ String
The type of the MySQL Database. Indicates whether the database is external or MDS.
62 63 64 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 62 def database_type @database_type end |
#db_name ⇒ String
[Required] The name of the MySQL Database.
44 45 46 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 44 def db_name @db_name end |
#db_version ⇒ String
[Required] The version of the MySQL Database.
48 49 50 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 48 def db_version @db_version end |
#id ⇒ String
[Required] The OCID of the Managed MySQL Database.
36 37 38 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 36 def id @id end |
#lifecycle_state ⇒ String
Indicates lifecycle state of the resource.
70 71 72 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 70 def lifecycle_state @lifecycle_state end |
#management_state ⇒ String
Indicates database management status.
66 67 68 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 66 def management_state @management_state end |
#name ⇒ String
[Required] The name of the Managed MySQL Database.
56 57 58 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 56 def name @name end |
#time_created ⇒ DateTime
[Required] The date and time the Managed MySQL Database was created.
52 53 54 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 52 def time_created @time_created end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 73 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'compartment_id': :'compartmentId', 'db_name': :'dbName', 'db_version': :'dbVersion', 'time_created': :'timeCreated', 'name': :'name', 'database_type': :'databaseType', 'management_state': :'managementState', 'lifecycle_state': :'lifecycleState' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 90 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'compartment_id': :'String', 'db_name': :'String', 'db_version': :'String', 'time_created': :'DateTime', 'name': :'String', 'database_type': :'String', 'management_state': :'String', 'lifecycle_state': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 220 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && compartment_id == other.compartment_id && db_name == other.db_name && db_version == other.db_version && time_created == other.time_created && name == other.name && database_type == other.database_type && management_state == other.management_state && lifecycle_state == other.lifecycle_state end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
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/database_management/models/managed_my_sql_database_summary.rb', line 258 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
238 239 240 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 238 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
247 248 249 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 247 def hash [id, compartment_id, db_name, db_version, time_created, name, database_type, management_state, lifecycle_state].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
291 292 293 294 295 296 297 298 299 300 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 291 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
285 286 287 |
# File 'lib/oci/database_management/models/managed_my_sql_database_summary.rb', line 285 def to_s to_hash.to_s end |