Class: Google::Apis::AlloydbV1::SqlExportOptions
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1::SqlExportOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alloydb_v1/classes.rb,
lib/google/apis/alloydb_v1/representations.rb,
lib/google/apis/alloydb_v1/representations.rb
Overview
Options for exporting data in SQL format.
Instance Attribute Summary collapse
-
#clean_target_objects ⇒ Boolean
(also: #clean_target_objects?)
Optional.
-
#if_exist_target_objects ⇒ Boolean
(also: #if_exist_target_objects?)
Optional.
-
#schema_only ⇒ Boolean
(also: #schema_only?)
Optional.
-
#tables ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlExportOptions
constructor
A new instance of SqlExportOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlExportOptions
Returns a new instance of SqlExportOptions.
3293 3294 3295 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 3293 def initialize(**args) update!(**args) end |
Instance Attribute Details
#clean_target_objects ⇒ Boolean Also known as: clean_target_objects?
Optional. If true, output commands to DROP all the dumped database objects
prior to outputting the commands for creating them.
Corresponds to the JSON property cleanTargetObjects
3272 3273 3274 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 3272 def clean_target_objects @clean_target_objects end |
#if_exist_target_objects ⇒ Boolean Also known as: if_exist_target_objects?
Optional. If true, use DROP ... IF EXISTS commands to check for the object's
existence before dropping it in clean_target_objects mode.
Corresponds to the JSON property ifExistTargetObjects
3279 3280 3281 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 3279 def if_exist_target_objects @if_exist_target_objects end |
#schema_only ⇒ Boolean Also known as: schema_only?
Optional. If true, only export the schema.
Corresponds to the JSON property schemaOnly
3285 3286 3287 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 3285 def schema_only @schema_only end |
#tables ⇒ Array<String>
Optional. Tables to export from.
Corresponds to the JSON property tables
3291 3292 3293 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 3291 def tables @tables end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3298 3299 3300 3301 3302 3303 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 3298 def update!(**args) @clean_target_objects = args[:clean_target_objects] if args.key?(:clean_target_objects) @if_exist_target_objects = args[:if_exist_target_objects] if args.key?(:if_exist_target_objects) @schema_only = args[:schema_only] if args.key?(:schema_only) @tables = args[:tables] if args.key?(:tables) end |