7 using System.Collections.Generic;
18 public class ShowFilesRequest : KineticaData
27 public IList<string>
paths {
get;
set; } =
new List<string>();
32 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
50 IDictionary<string, string>
options =
null)
52 this.paths =
paths ??
new List<string>();
60 public class ShowFilesResponse : KineticaData
73 public IList<string>
file_names {
get;
set; } =
new List<string>();
76 public IList<long>
sizes {
get;
set; } =
new List<long>();
79 public IList<string>
users {
get;
set; } =
new List<string>();
83 public IList<long>
creation_times {
get;
set; } =
new List<long>();
95 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IList< string > users
User that created the file
IList< string > file_names
A listing of files in the paths specified
IDictionary< string, string > info
Additional information.
ShowFilesRequest()
Constructs a ShowFilesRequest object with default parameters.
IList< string > paths
File paths to show.
IList< long > creation_times
Creation time for each file, in milliseconds since epoch
const string MULTIPART_UPLOADS
JSON-encoded information about multipart uploads in progress
IList< long > sizes
Size of each file, in bytes
IDictionary< string, string > options
Optional parameters.
ShowFilesRequest(IList< string > paths, IDictionary< string, string > options=null)
Constructs a ShowFilesRequest object with the specified parameters.