Class: Google::Apis::DatamigrationV1::VerifyMigrationJobRequest
- Inherits:
-
Object
- Object
- Google::Apis::DatamigrationV1::VerifyMigrationJobRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamigration_v1/classes.rb,
lib/google/apis/datamigration_v1/representations.rb,
lib/google/apis/datamigration_v1/representations.rb
Overview
Request message for 'VerifyMigrationJob' request.
Instance Attribute Summary collapse
-
#migration_job ⇒ Google::Apis::DatamigrationV1::MigrationJob
Represents a Database Migration Service migration job object.
-
#update_mask ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VerifyMigrationJobRequest
constructor
A new instance of VerifyMigrationJobRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VerifyMigrationJobRequest
Returns a new instance of VerifyMigrationJobRequest.
5416 5417 5418 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 5416 def initialize(**args) update!(**args) end |
Instance Attribute Details
#migration_job ⇒ Google::Apis::DatamigrationV1::MigrationJob
Represents a Database Migration Service migration job object.
Corresponds to the JSON property migrationJob
5408 5409 5410 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 5408 def migration_job @migration_job end |
#update_mask ⇒ String
Optional. Field mask is used to specify the changed fields to be verified. It
will not update the migration job.
Corresponds to the JSON property updateMask
5414 5415 5416 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 5414 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5421 5422 5423 5424 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 5421 def update!(**args) @migration_job = args[:migration_job] if args.key?(:migration_job) @update_mask = args[:update_mask] if args.key?(:update_mask) end |