Class: Google::Apis::SqladminV1beta4::ExportContext::CsvExportOptions
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SqladminV1beta4::ExportContext::CsvExportOptions
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sqladmin_v1beta4/classes.rb,
 generated/google/apis/sqladmin_v1beta4/representations.rb,
 generated/google/apis/sqladmin_v1beta4/representations.rb
Overview
Options for exporting data as CSV.
Instance Attribute Summary collapse
- 
  
    
      #select_query  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The select query used to extract the data. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CsvExportOptions 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CsvExportOptions. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CsvExportOptions
Returns a new instance of CsvExportOptions
| 829 830 831 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 829 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#select_query ⇒ String
The select query used to extract the data.
Corresponds to the JSON property selectQuery
| 827 828 829 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 827 def select_query @select_query end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 834 835 836 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 834 def update!(**args) @select_query = args[:select_query] if args.key?(:select_query) end |