Class: Google::Cloud::AlloyDB::V1beta::ExportClusterRequest::CsvExportOptions
- Inherits:
-
Object
- Object
- Google::Cloud::AlloyDB::V1beta::ExportClusterRequest::CsvExportOptions
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/alloydb/v1beta/service.rb
Overview
Options for exporting data in CSV format.
Instance Attribute Summary collapse
-
#escape_character ⇒ ::String
Optional.
-
#field_delimiter ⇒ ::String
Optional.
-
#quote_character ⇒ ::String
Optional.
-
#select_query ⇒ ::String
Required.
Instance Attribute Details
#escape_character ⇒ ::String
Returns Optional. Specifies the character that should appear before a data character that needs to be escaped. The default is the same as quote character. The value of this argument has to be a character in Hex ASCII Code.
247 248 249 250 |
# File 'proto_docs/google/cloud/alloydb/v1beta/service.rb', line 247 class CsvExportOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#field_delimiter ⇒ ::String
Returns Optional. Specifies the character that separates columns within each row (line) of the file. The default is comma. The value of this argument has to be a character in Hex ASCII Code.
247 248 249 250 |
# File 'proto_docs/google/cloud/alloydb/v1beta/service.rb', line 247 class CsvExportOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#quote_character ⇒ ::String
Returns Optional. Specifies the quoting character to be used when a data value is quoted. The default is double-quote. The value of this argument has to be a character in Hex ASCII Code.
247 248 249 250 |
# File 'proto_docs/google/cloud/alloydb/v1beta/service.rb', line 247 class CsvExportOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#select_query ⇒ ::String
Returns Required. The SELECT query used to extract the data.
247 248 249 250 |
# File 'proto_docs/google/cloud/alloydb/v1beta/service.rb', line 247 class CsvExportOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |