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
The connection profile which was used for the apply job.
-
#filter ⇒ String
AIP-160 based filter used to specify the entities to apply Corresponds to the JSON property
filter
.
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.
142 143 144 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 142 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connection_profile ⇒ String
The connection profile which was used for the apply job.
Corresponds to the JSON property connectionProfile
135 136 137 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 135 def connection_profile @connection_profile end |
#filter ⇒ String
AIP-160 based filter used to specify the entities to apply
Corresponds to the JSON property filter
140 141 142 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 140 def filter @filter end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
147 148 149 150 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 147 def update!(**args) @connection_profile = args[:connection_profile] if args.key?(:connection_profile) @filter = args[:filter] if args.key?(:filter) end |