Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
27  {
35  public IList<string> file_names { get; set; } = new List<string>();
36 
39  public IList<string> urls { get; set; } = new List<string>();
40 
44  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
45 
49 
63  public UploadFilesFromurlRequest( IList<string> file_names,
64  IList<string> urls,
65  IDictionary<string, string> options = null)
66  {
67  this.file_names = file_names ?? new List<string>();
68  this.urls = urls ?? new List<string>();
69  this.options = options ?? new Dictionary<string, string>();
70  } // end constructor
71  } // end class UploadFilesFromurlRequest
72 
77  {
81  public IList<string> successful_file_names { get; set; } = new List<string>();
82 
86  public IList<string> successful_urls { get; set; } = new List<string>();
87 
89  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
90  } // end class UploadFilesFromurlResponse
91 } // end namespace kinetica
UploadFilesFromurlRequest()
Constructs an UploadFilesFromurlRequest object with default parameters.
A set of parameters for Kinetica.uploadFilesFromurl.
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 urls that were successfully uploaded.
IList< string > successful_file_names
List of file_names 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 file_names.
A set of results returned by Kinetica.uploadFilesFromurl.