Class: Google::Apis::DatamigrationV1::ConvertConversionWorkspaceRequest
- Inherits:
-
Object
- Object
- Google::Apis::DatamigrationV1::ConvertConversionWorkspaceRequest
- 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
Request message for 'ConvertConversionWorkspace' request.
Instance Attribute Summary collapse
-
#auto_commit ⇒ Boolean
(also: #auto_commit?)
Should the conversion workspace be committed automatically after the conversion.
-
#filter ⇒ String
Filter the entities to convert.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConvertConversionWorkspaceRequest
constructor
A new instance of ConvertConversionWorkspaceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConvertConversionWorkspaceRequest
Returns a new instance of ConvertConversionWorkspaceRequest.
986 987 988 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 986 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auto_commit ⇒ Boolean Also known as: auto_commit?
Should the conversion workspace be committed automatically after the
conversion.
Corresponds to the JSON property autoCommit
977 978 979 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 977 def auto_commit @auto_commit end |
#filter ⇒ String
Filter the entities to convert. Leaving this field empty will convert all of
the entities. Supports Google AIP-160 style filtering.
Corresponds to the JSON property filter
984 985 986 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 984 def filter @filter end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
991 992 993 994 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 991 def update!(**args) @auto_commit = args[:auto_commit] if args.key?(:auto_commit) @filter = args[:filter] if args.key?(:filter) end |