|
Kinetica C# API
Version 7.2.3.1
|
A set of string constants for the parameter options. More...
Public Attributes | |
| const string | FILE_ENCODING = "file_encoding" |
| Encoding that has been applied to the uploaded file data. More... | |
| const string | BASE64 = "base64" |
| Specifies that the file data being uploaded has been base64 encoded. More... | |
| const string | NONE = "none" |
| Default, indicates this is not a multipart upload. More... | |
| const string | MULTIPART_OPERATION = "multipart_operation" |
| Multipart upload operation to perform. More... | |
| const string | INIT = "init" |
| Initialize a multipart file upload. More... | |
| const string | UPLOAD_PART = "upload_part" |
| Uploads a part of the specified multipart file upload. More... | |
| const string | COMPLETE = "complete" |
| Complete the specified multipart file upload. More... | |
| const string | CANCEL = "cancel" |
| Cancel the specified multipart file upload. More... | |
| const string | MULTIPART_UPLOAD_UUID = "multipart_upload_uuid" |
| UUID to uniquely identify a multipart upload. More... | |
| const string | MULTIPART_UPLOAD_PART_NUMBER = "multipart_upload_part_number" |
| Incremental part number for each part in a multipart upload. More... | |
| const string | DELETE_IF_EXISTS = "delete_if_exists" |
| If TRUE, any existing files specified in file_names will be deleted prior to start of upload. More... | |
| const string | TRUE = "true" |
| const string | FALSE = "false" |
A set of string constants for the parameter options.
Optional parameters.
Definition at line 68 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.BASE64 = "base64" |
Specifies that the file data being uploaded has been base64 encoded.
Definition at line 91 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.CANCEL = "cancel" |
Cancel the specified multipart file upload.
Definition at line 142 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.COMPLETE = "complete" |
Complete the specified multipart file upload.
Definition at line 139 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.DELETE_IF_EXISTS = "delete_if_exists" |
If TRUE, any existing files specified in file_names will be deleted prior to start of upload.
Supported values:
The default value is FALSE.
Definition at line 167 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.FALSE = "false" |
Definition at line 170 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.FILE_ENCODING = "file_encoding" |
Encoding that has been applied to the uploaded file data.
Supported values:
The default value is NONE.
Definition at line 87 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.INIT = "init" |
Initialize a multipart file upload.
Definition at line 132 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.MULTIPART_OPERATION = "multipart_operation" |
Multipart upload operation to perform.
Supported values:
The default value is NONE.
Definition at line 129 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.MULTIPART_UPLOAD_PART_NUMBER = "multipart_upload_part_number" |
Incremental part number for each part in a multipart upload.
Part numbers start at 1, increment by 1, and must be uploaded sequentially
Definition at line 151 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.MULTIPART_UPLOAD_UUID = "multipart_upload_uuid" |
UUID to uniquely identify a multipart upload.
Definition at line 145 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.NONE = "none" |
Default, indicates this is not a multipart upload.
Definition at line 95 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.TRUE = "true" |
Definition at line 169 of file UploadFiles.cs.
| const string UploadFilesRequest.Options.UPLOAD_PART = "upload_part" |
Uploads a part of the specified multipart file upload.
Definition at line 136 of file UploadFiles.cs.