Kinetica   C#   API  Version 7.2.3.1
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 
85  public IList<string> successful_urls { get; set; } = new List<string>();
86 
88  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
89 } // end class UploadFilesFromurlResponse
IList< string > successful_urls
List of urls that were successfully uploaded.
A set of parameters for Kinetica.uploadFilesFromurl.
IList< string > successful_file_names
List of file_names that were successfully uploaded.
UploadFilesFromurlRequest(IList< string > file_names, IList< string > urls, IDictionary< string, string > options=null)
Constructs an UploadFilesFromurlRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.uploadFilesFromurl.
UploadFilesFromurlRequest()
Constructs an UploadFilesFromurlRequest object with default parameters.
IList< string > urls
List of URLs to upload, for each respective file in file_names.
IList< string > file_names
An array of full file name paths to be used for the files uploaded to KiFS.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.