Class: OCI::Mysql::Models::CreateDbSystemSourceFromDbSystemDetails

Inherits:
CreateDbSystemSourceDetails show all
Defined in:
lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb

Overview

The source DB System identifier (OCID) and region from which the new DB system will be cloned by copying its data. Optionally, channel properties can be provided to create a replication channel between the newly created DB system and the source DB system.

Constant Summary

Constants inherited from CreateDbSystemSourceDetails

OCI::Mysql::Models::CreateDbSystemSourceDetails::SOURCE_TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from CreateDbSystemSourceDetails

#source_type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CreateDbSystemSourceDetails

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ CreateDbSystemSourceFromDbSystemDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 63

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['sourceType'] = 'DBSYSTEM'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.db_system_id = attributes[:'dbSystemId'] if attributes[:'dbSystemId']

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

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

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

  self.channel = attributes[:'channel'] if attributes[:'channel']
end

Instance Attribute Details

#channelOCI::Mysql::Models::CreateDbSystemSourceFromDbSystemChannelDetails



28
29
30
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 28

def channel
  @channel
end

#db_system_idString

[Required] The OCID of the DB system to be used as the source for the new DB System.

Returns:

  • (String)


18
19
20
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 18

def db_system_id
  @db_system_id
end

#regionString

The region identifier of the source region where the DB system exists, only if it is in a different region. If the source DB system is in the same region, then no region must be specified. For more information, please see Regions and Availability Domains.

Returns:

  • (String)


25
26
27
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 25

def region
  @region
end

Class Method Details

.attribute_mapObject

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



31
32
33
34
35
36
37
38
39
40
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 31

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'source_type': :'sourceType',
    'db_system_id': :'dbSystemId',
    'region': :'region',
    'channel': :'channel'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'source_type': :'String',
    'db_system_id': :'String',
    'region': :'String',
    'channel': :'OCI::Mysql::Models::CreateDbSystemSourceFromDbSystemChannelDetails'
    # 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



91
92
93
94
95
96
97
98
99
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 91

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

  self.class == other.class &&
    source_type == other.source_type &&
    db_system_id == other.db_system_id &&
    region == other.region &&
    channel == other.channel
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



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 124

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


104
105
106
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 104

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



113
114
115
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 113

def hash
  [source_type, db_system_id, region, channel].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



157
158
159
160
161
162
163
164
165
166
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 157

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



151
152
153
# File 'lib/oci/mysql/models/create_db_system_source_from_db_system_details.rb', line 151

def to_s
  to_hash.to_s
end