7 using System.Collections.Generic;
48 public IList<string>
file_names {
get; set; } =
new List<string>();
53 public IList<string>
urls {
get; set; } =
new List<string>();
57 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
84 IDictionary<string, string>
options = null)
86 this.file_names = file_names ??
new List<string>();
87 this.urls = urls ??
new List<string>();
88 this.options =
options ??
new Dictionary<string, string>();
111 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
UploadFilesFromurlRequest()
Constructs an UploadFilesFromurlRequest object with default parameters.
A set of parameters for Kinetica.uploadFilesFromurl(IList{string},IList{string},IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
UploadFilesFromurlRequest(IList< string > file_names, IList< string > urls, IDictionary< string, string > options=null)
Constructs an UploadFilesFromurlRequest object with the specified parameters.
IList< string > successful_urls
List of that were successfully uploaded.
IList< string > successful_file_names
List of that were successfully uploaded.
IList< string > file_names
An array of full file name paths to be used for the files uploaded to KiFS.
KineticaData - class to help with Avro Encoding for Kinetica
IList< string > urls
List of URLs to upload, for each respective file in .
A set of results returned by Kinetica.uploadFilesFromurl(IList{string},IList{string},IDictionary{string, string}).