Class: OCI::Database::Models::DatabaseManagementConfig

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

Overview

The configuration of the Database Management service.

Constant Summary collapse

DATABASE_MANAGEMENT_STATUS_ENUM =
[
  DATABASE_MANAGEMENT_STATUS_ENABLING = 'ENABLING'.freeze,
  DATABASE_MANAGEMENT_STATUS_ENABLED = 'ENABLED'.freeze,
  DATABASE_MANAGEMENT_STATUS_DISABLING = 'DISABLING'.freeze,
  DATABASE_MANAGEMENT_STATUS_NOT_ENABLED = 'NOT_ENABLED'.freeze,
  DATABASE_MANAGEMENT_STATUS_FAILED_ENABLING = 'FAILED_ENABLING'.freeze,
  DATABASE_MANAGEMENT_STATUS_FAILED_DISABLING = 'FAILED_DISABLING'.freeze,
  DATABASE_MANAGEMENT_STATUS_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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ DatabaseManagementConfig

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/oci/database/models/database_management_config.rb', line 74

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

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

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

  self.database_management_connection_id = attributes[:'databaseManagementConnectionId'] if attributes[:'databaseManagementConnectionId']

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

  self.database_management_connection_id = attributes[:'database_management_connection_id'] if attributes[:'database_management_connection_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']
end

Instance Attribute Details

#database_management_connection_idString

The OCID of the create_external_database_connector_details.

Returns:

  • (String)


36
37
38
# File 'lib/oci/database/models/database_management_config.rb', line 36

def database_management_connection_id
  @database_management_connection_id
end

#database_management_statusString

[Required] The status of the Database Management service.

Returns:

  • (String)


30
31
32
# File 'lib/oci/database/models/database_management_config.rb', line 30

def database_management_status
  @database_management_status
end

#license_modelString

The Oracle license model that applies to the external database.

Returns:

  • (String)


41
42
43
# File 'lib/oci/database/models/database_management_config.rb', line 41

def license_model
  @license_model
end

Class Method Details

.attribute_mapObject

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



44
45
46
47
48
49
50
51
52
# File 'lib/oci/database/models/database_management_config.rb', line 44

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'database_management_status': :'databaseManagementStatus',
    'database_management_connection_id': :'databaseManagementConnectionId',
    'license_model': :'licenseModel'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



55
56
57
58
59
60
61
62
63
# File 'lib/oci/database/models/database_management_config.rb', line 55

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'database_management_status': :'String',
    'database_management_connection_id': :'String',
    'license_model': :'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



132
133
134
135
136
137
138
139
# File 'lib/oci/database/models/database_management_config.rb', line 132

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    database_management_status == other.database_management_status &&
    database_management_connection_id == other.database_management_connection_id &&
    license_model == other.license_model
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



164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/oci/database/models/database_management_config.rb', line 164

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


144
145
146
# File 'lib/oci/database/models/database_management_config.rb', line 144

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



153
154
155
# File 'lib/oci/database/models/database_management_config.rb', line 153

def hash
  [database_management_status, database_management_connection_id, license_model].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



197
198
199
200
201
202
203
204
205
206
# File 'lib/oci/database/models/database_management_config.rb', line 197

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



191
192
193
# File 'lib/oci/database/models/database_management_config.rb', line 191

def to_s
  to_hash.to_s
end