Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
UploadFilesFromurl.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
38  {
39 
48  public IList<string> file_names { get; set; } = new List<string>();
49 
53  public IList<string> urls { get; set; } = new List<string>();
54 
57  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
58 
59 
63 
82  public UploadFilesFromurlRequest( IList<string> file_names,
83  IList<string> urls,
84  IDictionary<string, string> options = null)
85  {
86  this.file_names = file_names ?? new List<string>();
87  this.urls = urls ?? new List<string>();
88  this.options = options ?? new Dictionary<string, string>();
89  } // end constructor
90 
91  } // end class UploadFilesFromurlRequest
92 
93 
94 
99  {
100 
104  public IList<string> successful_file_names { get; set; } = new List<string>();
105 
108  public IList<string> successful_urls { get; set; } = new List<string>();
109 
111  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
112 
113  } // end class UploadFilesFromurlResponse
114 
115 
116 
117 
118 } // end namespace kinetica
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
Definition: KineticaData.cs:14
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}).