Class: OCI::DatabaseMigration::Models::StartMigrationDetails
- Inherits:
-
Object
- Object
- OCI::DatabaseMigration::Models::StartMigrationDetails
- Defined in:
- lib/oci/database_migration/models/start_migration_details.rb
Overview
Parameters to specify to a Migration job operation.
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_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_FETCH_METADATA_SRC = 'ODMS_FETCH_METADATA_SRC'.freeze, WAIT_AFTER_ODMS_FETCH_METADATA_TGT = 'ODMS_FETCH_METADATA_TGT'.freeze, WAIT_AFTER_ODMS_VALIDATE = 'ODMS_VALIDATE'.freeze, WAIT_AFTER_ODMS_PREPARE = 'ODMS_PREPARE'.freeze, WAIT_AFTER_ODMS_INITIALIZE_REPLICATION_INFRASTRUCTURE = 'ODMS_INITIALIZE_REPLICATION_INFRASTRUCTURE'.freeze, WAIT_AFTER_ODMS_INITIAL_LOAD_EXPORT = 'ODMS_INITIAL_LOAD_EXPORT'.freeze, WAIT_AFTER_ODMS_DATA_UPLOAD = 'ODMS_DATA_UPLOAD'.freeze, WAIT_AFTER_ODMS_METADATA_TRANSFER = 'ODMS_METADATA_TRANSFER'.freeze, WAIT_AFTER_ODMS_INITIAL_LOAD_EXPORT_DATA_UPLOAD = 'ODMS_INITIAL_LOAD_EXPORT_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
-
#wait_after ⇒ String
Name of a migration phase.
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 = {}) ⇒ StartMigrationDetails
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 = {}) ⇒ StartMigrationDetails
Initializes the object
69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 69 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_after ⇒ String
Name of a migration phase. The Job will wait after executing this phase until the Resume Job endpoint is called.
42 43 44 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 42 def wait_after @wait_after end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
45 46 47 48 49 50 51 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 45 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'wait_after': :'waitAfter' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
54 55 56 57 58 59 60 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 54 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.
97 98 99 100 101 102 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 97 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
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 127 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
107 108 109 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 107 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
116 117 118 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 116 def hash [wait_after].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
160 161 162 163 164 165 166 167 168 169 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 160 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
154 155 156 |
# File 'lib/oci/database_migration/models/start_migration_details.rb', line 154 def to_s to_hash.to_s end |