Class: Google::Apis::DatamigrationV1::ApplyJobDetails

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_profileString

Output only. The connection profile which was used for the apply job. Corresponds to the JSON property connectionProfile

Returns:

  • (String)


173
174
175
# File 'lib/google/apis/datamigration_v1/classes.rb', line 173

def connection_profile
  @connection_profile
end

#filterString

Output only. AIP-160 based filter used to specify the entities to apply Corresponds to the JSON property filter

Returns:

  • (String)


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