Class: Google::Apis::DatamigrationV1::PostgresSourceConfig

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

Configuration for Postgres as a source in a migration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PostgresSourceConfig

Returns a new instance of PostgresSourceConfig.



4499
4500
4501
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4499

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#skip_full_dumpBoolean Also known as: skip_full_dump?

Optional. Whether to skip full dump or not. Corresponds to the JSON property skipFullDump

Returns:

  • (Boolean)


4496
4497
4498
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4496

def skip_full_dump
  @skip_full_dump
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4504
4505
4506
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4504

def update!(**args)
  @skip_full_dump = args[:skip_full_dump] if args.key?(:skip_full_dump)
end