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.
188 189 190 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 188 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
181 182 183 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 181 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
186 187 188 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 186 def filter @filter end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
193 194 195 196 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 193 def update!(**args) @connection_profile = args[:connection_profile] if args.key?(:connection_profile) @filter = args[:filter] if args.key?(:filter) end |