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.
| 5043 5044 5045 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 5043 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
| 5035 5036 5037 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 5035 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
| 5041 5042 5043 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 5041 def update_mask @update_mask end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5048 5049 5050 5051 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 5048 def update!(**args) @migration_job = args[:migration_job] if args.key?(:migration_job) @update_mask = args[:update_mask] if args.key?(:update_mask) end |