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.
4963 4964 4965 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4963 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
4955 4956 4957 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4955 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
4961 4962 4963 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4961 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4968 4969 4970 4971 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4968 def update!(**args) @migration_job = args[:migration_job] if args.key?(:migration_job) @update_mask = args[:update_mask] if args.key?(:update_mask) end |