Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
20  {
21 
25  public IList<string> paths { get; set; } = new List<string>();
26 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
31 
34  public ShowVideoRequest() { }
35 
45  public ShowVideoRequest( IList<string> paths,
46  IDictionary<string, string> options = null)
47  {
48  this.paths = paths ?? new List<string>();
49  this.options = options ?? new Dictionary<string, string>();
50  } // end constructor
51 
52  } // end class ShowVideoRequest
53 
54 
55 
60  {
61 
64  public IList<string> creation_times { get; set; } = new List<string>();
65 
68  public IList<long> elapsed_render_time_seconds { get; set; } = new List<long>();
69 
72  public IList<long> job_ids { get; set; } = new List<long>();
73 
75  public IList<string> paths { get; set; } = new List<string>();
76 
79  public IList<long> rendered_bytes { get; set; } = new List<long>();
80 
82  public IList<long> rendered_frames { get; set; } = new List<long>();
83 
86  public IList<long> rendered_percents { get; set; } = new List<long>();
87 
90  public IList<string> requests { get; set; } = new List<string>();
91 
95  public IList<string> status { get; set; } = new List<string>();
96 
100  public IList<long> ttls { get; set; } = new List<long>();
101 
103  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
104 
105  } // end class ShowVideoResponse
106 
107 
108 
109 
110 } // 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:100
IList< string > paths
The fully-qualified KiFS paths for the videos to show.
Definition: ShowVideo.cs:25
IList< long > rendered_bytes
The number of bytes emitted by the encoder for each video.
Definition: ShowVideo.cs:79
IDictionary< string, string > options
Optional parameters.
Definition: ShowVideo.cs:29
IList< string > status
The status of the last rendered frame for each video.
Definition: ShowVideo.cs:95
ShowVideoRequest(IList< string > paths, IDictionary< string, string > options=null)
Constructs a ShowVideoRequest object with the specified parameters.
Definition: ShowVideo.cs:45
IList< string > paths
KIFS path to each video.
Definition: ShowVideo.cs:75
IList< long > elapsed_render_time_seconds
The elapsed time spent rendering each video in seconds.
Definition: ShowVideo.cs:68
IDictionary< string, string > info
Additional information.
Definition: ShowVideo.cs:103
IList< string > requests
JSON-string reflecting each video&#39;s creation parameters.
Definition: ShowVideo.cs:90
A set of results returned by Kinetica.showVideo(IList{string},IDictionary{string, string})...
Definition: ShowVideo.cs:59
IList< long > rendered_frames
The number of frames rendered for each video.
Definition: ShowVideo.cs:82
IList< long > rendered_percents
Percent completion of each video&#39;s rendering process (0-100)
Definition: ShowVideo.cs:86
IList< string > creation_times
Creation time for each video as an ISO-8601 datetime.
Definition: ShowVideo.cs:64
A set of parameters for Kinetica.showVideo(IList{string},IDictionary{string, string}).
Definition: ShowVideo.cs:19
IList< long > job_ids
The job id of the rendering process, for each video that is still being rendered. ...
Definition: ShowVideo.cs:72
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
ShowVideoRequest()
Constructs a ShowVideoRequest object with default parameters.
Definition: ShowVideo.cs:34