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.



188
189
190
# File 'lib/google/apis/datamigration_v1/classes.rb', line 188

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)


181
182
183
# File 'lib/google/apis/datamigration_v1/classes.rb', line 181

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)


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