Files
ai_wht_B/venv/Lib/site-packages/oss2/select_params.py
“shengyudong” 5a384b694e 2026-1-6
2026-01-06 14:18:39 +08:00

28 lines
1.2 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
class SelectParameters(object): # Select API中参数名常量参数名是大小写敏感的。具体含义参加api.py中的介绍
CsvHeaderInfo = 'CsvHeaderInfo'
CommentCharacter = 'CommentCharacter'
RecordDelimiter = 'RecordDelimiter'
OutputRecordDelimiter = 'OutputRecordDelimiter'
FieldDelimiter = 'FieldDelimiter'
OutputFieldDelimiter = 'OutputFieldDelimiter'
QuoteCharacter = 'QuoteCharacter'
SplitRange = 'SplitRange'
LineRange = 'LineRange'
CompressionType = 'CompressionType'
KeepAllColumns = 'KeepAllColumns'
OutputRawData = 'OutputRawData'
EnablePayloadCrc = 'EnablePayloadCrc'
OutputHeader = 'OutputHeader'
SkipPartialDataRecord = 'SkipPartialDataRecord'
MaxSkippedRecordsAllowed = 'MaxSkippedRecordsAllowed'
AllowQuotedRecordDelimiter = 'AllowQuotedRecordDelimiter'
Json_Type = 'Json_Type'
ParseJsonNumberAsString = 'ParseJsonNumberAsString'
OverwriteIfExists = 'OverwriteIfExists'
AllowQuotedRecordDelimiter = 'AllowQuotedRecordDelimiter'
class SelectJsonTypes(object): # Select JSOn API中 Json_Type的合法值大小写敏感。
DOCUMENT = 'DOCUMENT'
LINES = 'LINES'