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.



4273
4274
4275
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4273

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)


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