Class: Google::Apis::DatamigrationV1::PostgresSourceConfig
- Inherits:
-
Object
- Object
- Google::Apis::DatamigrationV1::PostgresSourceConfig
- 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
Configuration for Postgres as a source in a migration.
Instance Attribute Summary collapse
-
#skip_full_dump ⇒ Boolean
(also: #skip_full_dump?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PostgresSourceConfig
constructor
A new instance of PostgresSourceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PostgresSourceConfig
Returns a new instance of PostgresSourceConfig.
4273 4274 4275 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4273 def initialize(**args) update!(**args) end |
Instance Attribute Details
#skip_full_dump ⇒ Boolean Also known as: skip_full_dump?
Optional. Whether to skip full dump or not.
Corresponds to the JSON property skipFullDump
4270 4271 4272 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4270 def skip_full_dump @skip_full_dump end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4278 4279 4280 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4278 def update!(**args) @skip_full_dump = args[:skip_full_dump] if args.key?(:skip_full_dump) end |