Class: OCI::DatabaseMigration::Models::ResumeJobDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database_migration/models/resume_job_details.rb

Overview

Parameters to specify to resume a Migration Job.

Constant Summary collapse

WAIT_AFTER_ENUM =
[
  WAIT_AFTER_ODMS_VALIDATE_TGT = 'ODMS_VALIDATE_TGT'.freeze,
  WAIT_AFTER_ODMS_VALIDATE_SRC = 'ODMS_VALIDATE_SRC'.freeze,
  WAIT_AFTER_ODMS_VALIDATE_PREMIGRATION_ADVISOR = 'ODMS_VALIDATE_PREMIGRATION_ADVISOR'.freeze,
  WAIT_AFTER_ODMS_VALIDATE_GG_HUB = 'ODMS_VALIDATE_GG_HUB'.freeze,
  WAIT_AFTER_ODMS_VALIDATE_GG_SERVICE = 'ODMS_VALIDATE_GG_SERVICE'.freeze,
  WAIT_AFTER_ODMS_VALIDATE_DATAPUMP_SETTINGS = 'ODMS_VALIDATE_DATAPUMP_SETTINGS'.freeze,
  WAIT_AFTER_ODMS_VALIDATE_DATAPUMP_SETTINGS_SRC = 'ODMS_VALIDATE_DATAPUMP_SETTINGS_SRC'.freeze,
  WAIT_AFTER_ODMS_VALIDATE_DATAPUMP_SETTINGS_TGT = 'ODMS_VALIDATE_DATAPUMP_SETTINGS_TGT'.freeze,
  WAIT_AFTER_ODMS_VALIDATE_DATAPUMP_SRC = 'ODMS_VALIDATE_DATAPUMP_SRC'.freeze,
  WAIT_AFTER_ODMS_VALIDATE_DATAPUMP_ESTIMATE_SRC = 'ODMS_VALIDATE_DATAPUMP_ESTIMATE_SRC'.freeze,
  WAIT_AFTER_ODMS_INITIALIZE_GGS = 'ODMS_INITIALIZE_GGS'.freeze,
  WAIT_AFTER_ODMS_VALIDATE = 'ODMS_VALIDATE'.freeze,
  WAIT_AFTER_ODMS_PREPARE = 'ODMS_PREPARE'.freeze,
  WAIT_AFTER_ODMS_INITIAL_LOAD_EXPORT = 'ODMS_INITIAL_LOAD_EXPORT'.freeze,
  WAIT_AFTER_ODMS_DATA_UPLOAD = 'ODMS_DATA_UPLOAD'.freeze,
  WAIT_AFTER_ODMS_INITIAL_LOAD_IMPORT = 'ODMS_INITIAL_LOAD_IMPORT'.freeze,
  WAIT_AFTER_ODMS_POST_INITIAL_LOAD = 'ODMS_POST_INITIAL_LOAD'.freeze,
  WAIT_AFTER_ODMS_PREPARE_REPLICATION_TARGET = 'ODMS_PREPARE_REPLICATION_TARGET'.freeze,
  WAIT_AFTER_ODMS_MONITOR_REPLICATION_LAG = 'ODMS_MONITOR_REPLICATION_LAG'.freeze,
  WAIT_AFTER_ODMS_SWITCHOVER = 'ODMS_SWITCHOVER'.freeze,
  WAIT_AFTER_ODMS_CLEANUP = 'ODMS_CLEANUP'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ResumeJobDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :wait_after (String)

    The value to assign to the #wait_after property



67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/oci/database_migration/models/resume_job_details.rb', line 67

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

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

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

Instance Attribute Details

#wait_afterString

Name of a migration phase. The Job will wait after executing this phase until Resume Job endpoint is called again.

Returns:

  • (String)


40
41
42
# File 'lib/oci/database_migration/models/resume_job_details.rb', line 40

def wait_after
  @wait_after
end

Class Method Details

.attribute_mapObject

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



43
44
45
46
47
48
49
# File 'lib/oci/database_migration/models/resume_job_details.rb', line 43

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'wait_after': :'waitAfter'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



52
53
54
55
56
57
58
# File 'lib/oci/database_migration/models/resume_job_details.rb', line 52

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



95
96
97
98
99
100
# File 'lib/oci/database_migration/models/resume_job_details.rb', line 95

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

  self.class == other.class &&
    wait_after == other.wait_after
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



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

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


105
106
107
# File 'lib/oci/database_migration/models/resume_job_details.rb', line 105

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



114
115
116
# File 'lib/oci/database_migration/models/resume_job_details.rb', line 114

def hash
  [wait_after].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



158
159
160
161
162
163
164
165
166
167
# File 'lib/oci/database_migration/models/resume_job_details.rb', line 158

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



152
153
154
# File 'lib/oci/database_migration/models/resume_job_details.rb', line 152

def to_s
  to_hash.to_s
end