Class: Google::Apis::DatamigrationV1::ApplyJobDetails
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatamigrationV1::ApplyJobDetails
 
- 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
Details regarding an Apply background job.
Instance Attribute Summary collapse
- 
  
    
      #connection_profile  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #filter  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ApplyJobDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ApplyJobDetails. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ ApplyJobDetails
Returns a new instance of ApplyJobDetails.
| 180 181 182 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 180 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#connection_profile ⇒ String
Output only. The connection profile which was used for the apply job.
Corresponds to the JSON property connectionProfile
| 173 174 175 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 173 def connection_profile @connection_profile end | 
#filter ⇒ String
Output only. AIP-160 based filter used to specify the entities to apply
Corresponds to the JSON property filter
| 178 179 180 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 178 def filter @filter end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 185 186 187 188 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 185 def update!(**args) @connection_profile = args[:connection_profile] if args.key?(:connection_profile) @filter = args[:filter] if args.key?(:filter) end |