Kinetica C# API
Version 7.2.3.0
|
A set of parameters for Kinetica.uploadFilesFromurl. More...
Public Member Functions | |
UploadFilesFromurlRequest () | |
Constructs an UploadFilesFromurlRequest object with default parameters. More... | |
UploadFilesFromurlRequest (IList< string > file_names, IList< string > urls, IDictionary< string, string > options=null) | |
Constructs an UploadFilesFromurlRequest object with the specified parameters. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
IList< string > | file_names = new List<string>() [get, set] |
An array of full file name paths to be used for the files uploaded to KiFS. More... | |
IList< string > | urls = new List<string>() [get, set] |
List of URLs to upload, for each respective file in file_names. More... | |
IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.uploadFilesFromurl.
Uploads one or more files to KiFS.
Each file path must reside in a top-level KiFS directory, i.e. one of the directories listed in Kinetica.showDirectories. The user must have write permission on the directory. Nested directories are permitted in file name paths. Directories are deliniated with the directory separator of '/'. For example, given the file path '/a/b/c/d.txt', 'a' must be a KiFS directory.
These characters are allowed in file name paths: letters, numbers, spaces, the path delimiter of '/', and the characters: '.' '-' ':' '[' ']' '(' ')' '#' '='.
Definition at line 26 of file UploadFilesFromurl.cs.
|
inline |
Constructs an UploadFilesFromurlRequest object with default parameters.
Definition at line 48 of file UploadFilesFromurl.cs.
|
inline |
Constructs an UploadFilesFromurlRequest object with the specified parameters.
file_names | An array of full file name paths to be used for the files uploaded to KiFS. File names may have any number of nested directories in their paths, but the top-level directory must be an existing KiFS directory. Each file must reside in or under a top-level directory. A full file name path cannot be larger than 1024 characters. |
urls | List of URLs to upload, for each respective file in file_names . |
options | Optional parameters. The default value is an empty Dictionary. |
Definition at line 63 of file UploadFilesFromurl.cs.
|
getset |
An array of full file name paths to be used for the files uploaded to KiFS.
File names may have any number of nested directories in their paths, but the top-level directory must be an existing KiFS directory. Each file must reside in or under a top-level directory. A full file name path cannot be larger than 1024 characters.
Definition at line 35 of file UploadFilesFromurl.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 44 of file UploadFilesFromurl.cs.
|
getset |
List of URLs to upload, for each respective file in file_names.
Definition at line 39 of file UploadFilesFromurl.cs.