CSVInput
Last updated
Last updated
Name | Type | Description | Notes |
---|---|---|---|
func NewCSVInput() *CSVInput
NewCSVInput instantiates a new CSVInput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewCSVInputWithDefaults() *CSVInput
NewCSVInputWithDefaults instantiates a new CSVInput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *CSVInput) GetFileHeaderInfo() string
GetFileHeaderInfo returns the FileHeaderInfo field if non-nil, zero value otherwise.
func (o *CSVInput) GetFileHeaderInfoOk() (*string, bool)
GetFileHeaderInfoOk returns a tuple with the FileHeaderInfo field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVInput) SetFileHeaderInfo(v string)
SetFileHeaderInfo sets FileHeaderInfo field to given value.
func (o *CSVInput) HasFileHeaderInfo() bool
HasFileHeaderInfo returns a boolean if a field has been set.
func (o *CSVInput) GetComments() string
GetComments returns the Comments field if non-nil, zero value otherwise.
func (o *CSVInput) GetCommentsOk() (*string, bool)
GetCommentsOk returns a tuple with the Comments field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVInput) SetComments(v string)
SetComments sets Comments field to given value.
func (o *CSVInput) HasComments() bool
HasComments returns a boolean if a field has been set.
func (o *CSVInput) GetQuoteEscapeCharacter() string
GetQuoteEscapeCharacter returns the QuoteEscapeCharacter field if non-nil, zero value otherwise.
func (o *CSVInput) GetQuoteEscapeCharacterOk() (*string, bool)
GetQuoteEscapeCharacterOk returns a tuple with the QuoteEscapeCharacter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVInput) SetQuoteEscapeCharacter(v string)
SetQuoteEscapeCharacter sets QuoteEscapeCharacter field to given value.
func (o *CSVInput) HasQuoteEscapeCharacter() bool
HasQuoteEscapeCharacter returns a boolean if a field has been set.
func (o *CSVInput) GetRecordDelimiter() string
GetRecordDelimiter returns the RecordDelimiter field if non-nil, zero value otherwise.
func (o *CSVInput) GetRecordDelimiterOk() (*string, bool)
GetRecordDelimiterOk returns a tuple with the RecordDelimiter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVInput) SetRecordDelimiter(v string)
SetRecordDelimiter sets RecordDelimiter field to given value.
func (o *CSVInput) HasRecordDelimiter() bool
HasRecordDelimiter returns a boolean if a field has been set.
func (o *CSVInput) GetFieldDelimiter() string
GetFieldDelimiter returns the FieldDelimiter field if non-nil, zero value otherwise.
func (o *CSVInput) GetFieldDelimiterOk() (*string, bool)
GetFieldDelimiterOk returns a tuple with the FieldDelimiter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVInput) SetFieldDelimiter(v string)
SetFieldDelimiter sets FieldDelimiter field to given value.
func (o *CSVInput) HasFieldDelimiter() bool
HasFieldDelimiter returns a boolean if a field has been set.
func (o *CSVInput) GetQuoteCharacter() string
GetQuoteCharacter returns the QuoteCharacter field if non-nil, zero value otherwise.
func (o *CSVInput) GetQuoteCharacterOk() (*string, bool)
GetQuoteCharacterOk returns a tuple with the QuoteCharacter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVInput) SetQuoteCharacter(v string)
SetQuoteCharacter sets QuoteCharacter field to given value.
func (o *CSVInput) HasQuoteCharacter() bool
HasQuoteCharacter returns a boolean if a field has been set.
func (o *CSVInput) GetAllowQuotedRecordDelimiter() bool
GetAllowQuotedRecordDelimiter returns the AllowQuotedRecordDelimiter field if non-nil, zero value otherwise.
func (o *CSVInput) GetAllowQuotedRecordDelimiterOk() (*bool, bool)
GetAllowQuotedRecordDelimiterOk returns a tuple with the AllowQuotedRecordDelimiter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVInput) SetAllowQuotedRecordDelimiter(v bool)
SetAllowQuotedRecordDelimiter sets AllowQuotedRecordDelimiter field to given value.
func (o *CSVInput) HasAllowQuotedRecordDelimiter() bool
HasAllowQuotedRecordDelimiter returns a boolean if a field has been set.
FileHeaderInfo
Pointer to string
<p>Describes the first line of input. Valid values are:</p> <ul> <li> <p> `NONE`: First line is not a header.</p> </li> <li> <p> `IGNORE`: First line is a header, but you can't use the header values to indicate the column in an expression. You can use column position (such as _1, _2, …) to indicate the column (`SELECT s._1 FROM OBJECT s`).</p> </li> <li> <p> `Use`: First line is a header, and you can use the header value to identify a column in an expression (`SELECT "name" FROM OBJECT`). </p> </li> </ul>
[optional]
Comments
Pointer to string
A single character used to indicate that a row should be ignored when the character is present at the start of that row. You can specify any character to indicate a comment line.
[optional]
QuoteEscapeCharacter
Pointer to string
A single character used for escaping the quotation mark character inside an already escaped value. For example, the value """ a , b """ is parsed as " a , b ".
[optional]
RecordDelimiter
Pointer to string
A single character used to separate individual records in the input. Instead of the default value, you can specify an arbitrary delimiter.
[optional]
FieldDelimiter
Pointer to string
A single character used to separate individual fields in a record. You can specify an arbitrary delimiter.
[optional]
QuoteCharacter
Pointer to string
<p>A single character used for escaping when the field delimiter is part of the value. For example, if the value is `a, b`, IONOS S3 Object Storage wraps this field value in quotation marks, as follows: `" a , b "`.</p> <p>Type: String</p> <p>Default: `"` </p> <p>Ancestors: `CSV` </p>
[optional]
AllowQuotedRecordDelimiter
Pointer to bool
Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.
[optional]