Class: Google::Apis::DatamigrationV1::SourceObjectsConfig
- Inherits:
-
Object
- Object
- Google::Apis::DatamigrationV1::SourceObjectsConfig
- 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
List of configurations for the source objects to be migrated.
Instance Attribute Summary collapse
-
#object_configs ⇒ Array<Google::Apis::DatamigrationV1::SourceObjectConfig>
Optional.
-
#objects_selection_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SourceObjectsConfig
constructor
A new instance of SourceObjectsConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SourceObjectsConfig
Returns a new instance of SourceObjectsConfig.
4997 4998 4999 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4997 def initialize(**args) update!(**args) end |
Instance Attribute Details
#object_configs ⇒ Array<Google::Apis::DatamigrationV1::SourceObjectConfig>
Optional. The list of the objects to be migrated.
Corresponds to the JSON property objectConfigs
4990 4991 4992 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4990 def object_configs @object_configs end |
#objects_selection_type ⇒ String
Optional. The objects selection type of the migration job.
Corresponds to the JSON property objectsSelectionType
4995 4996 4997 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4995 def objects_selection_type @objects_selection_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5002 5003 5004 5005 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 5002 def update!(**args) @object_configs = args[:object_configs] if args.key?(:object_configs) @objects_selection_type = args[:objects_selection_type] if args.key?(:objects_selection_type) end |