Kinetica   C#   API  Version 7.2.3.0
ShowVideo.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 {
17  {
21  public IList<string> paths { get; set; } = new List<string>();
22 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
30  public ShowVideoRequest() { }
31 
40  public ShowVideoRequest( IList<string> paths,
41  IDictionary<string, string> options = null)
42  {
43  this.paths = paths ?? new List<string>();
44  this.options = options ?? new Dictionary<string, string>();
45  } // end constructor
46  } // end class ShowVideoRequest
47 
52  {
55  public IList<string> creation_times { get; set; } = new List<string>();
56 
59  public IList<long> elapsed_render_time_seconds { get; set; } = new List<long>();
60 
63  public IList<long> job_ids { get; set; } = new List<long>();
64 
66  public IList<string> paths { get; set; } = new List<string>();
67 
70  public IList<long> rendered_bytes { get; set; } = new List<long>();
71 
73  public IList<long> rendered_frames { get; set; } = new List<long>();
74 
77  public IList<long> rendered_percents { get; set; } = new List<long>();
78 
81  public IList<string> requests { get; set; } = new List<string>();
82 
87  public IList<string> status { get; set; } = new List<string>();
88 
92  public IList<long> ttls { get; set; } = new List<long>();
93 
95  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
96  } // end class ShowVideoResponse
97 } // end namespace kinetica
IList< long > ttls
The remaining TTL, in minutes, before the respective video expires (-1 if it will never expire).
Definition: ShowVideo.cs:92
IList< string > paths
The fully-qualified KiFS paths for the videos to show.
Definition: ShowVideo.cs:21
IList< long > rendered_bytes
The number of bytes emitted by the encoder for each video.
Definition: ShowVideo.cs:70
IDictionary< string, string > options
Optional parameters.
Definition: ShowVideo.cs:26
IList< string > status
The status of the last rendered frame for each video.
Definition: ShowVideo.cs:87
ShowVideoRequest(IList< string > paths, IDictionary< string, string > options=null)
Constructs a ShowVideoRequest object with the specified parameters.
Definition: ShowVideo.cs:40
IList< string > paths
KIFS path to each video.
Definition: ShowVideo.cs:66
IList< long > elapsed_render_time_seconds
The elapsed time spent rendering each video in seconds.
Definition: ShowVideo.cs:59
IDictionary< string, string > info
Additional information.
Definition: ShowVideo.cs:95
IList< string > requests
JSON-string reflecting each video's creation parameters.
Definition: ShowVideo.cs:81
A set of results returned by Kinetica.showVideo.
Definition: ShowVideo.cs:51
IList< long > rendered_frames
The number of frames rendered for each video.
Definition: ShowVideo.cs:73
IList< long > rendered_percents
Percent completion of each video's rendering process (0-100)
Definition: ShowVideo.cs:77
IList< string > creation_times
Creation time for each video as an ISO-8601 datetime.
Definition: ShowVideo.cs:55
A set of parameters for Kinetica.showVideo.
Definition: ShowVideo.cs:16
IList< long > job_ids
The job id of the rendering process, for each video that is still being rendered.
Definition: ShowVideo.cs:63
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
ShowVideoRequest()
Constructs a ShowVideoRequest object with default parameters.
Definition: ShowVideo.cs:30