Class: OCI::DatabaseManagement::Models::DatabaseManagementConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database_management/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):



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

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

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

  self.connector_id = attributes[:'connector_id'] if attributes[:'connector_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

#connector_idString

The OCID of the external database connector.

Returns:

  • (String)


34
35
36
# File 'lib/oci/database_management/models/database_management_config.rb', line 34

def connector_id
  @connector_id
end

#database_management_statusString

[Required] The status of the Database Management service.

Returns:

  • (String)


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

def database_management_status
  @database_management_status
end

#license_modelString

[Required] The Oracle license model that applies to the external database.

Returns:

  • (String)


39
40
41
# File 'lib/oci/database_management/models/database_management_config.rb', line 39

def license_model
  @license_model
end

Class Method Details

.attribute_mapObject

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



42
43
44
45
46
47
48
49
50
# File 'lib/oci/database_management/models/database_management_config.rb', line 42

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

.swagger_typesObject

Attribute type mapping.



53
54
55
56
57
58
59
60
61
# File 'lib/oci/database_management/models/database_management_config.rb', line 53

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



130
131
132
133
134
135
136
137
# File 'lib/oci/database_management/models/database_management_config.rb', line 130

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

  self.class == other.class &&
    database_management_status == other.database_management_status &&
    connector_id == other.connector_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



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

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


142
143
144
# File 'lib/oci/database_management/models/database_management_config.rb', line 142

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



151
152
153
# File 'lib/oci/database_management/models/database_management_config.rb', line 151

def hash
  [database_management_status, connector_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



195
196
197
198
199
200
201
202
203
204
# File 'lib/oci/database_management/models/database_management_config.rb', line 195

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



189
190
191
# File 'lib/oci/database_management/models/database_management_config.rb', line 189

def to_s
  to_hash.to_s
end