Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowContainerRegistry.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 {
19  public class ShowContainerRegistryRequest : KineticaData
20  {
21  public string registry_name { get; set; }
22  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
23 
24 
27  public ShowContainerRegistryRequest() { }
28 
35  public ShowContainerRegistryRequest( string registry_name,
36  IDictionary<string, string> options = null)
37  {
38  this.registry_name = registry_name ?? "";
39  this.options = options ?? new Dictionary<string, string>();
40  } // end constructor
41 
42  } // end class ShowContainerRegistryRequest
44 
45 
46 
51  public class ShowContainerRegistryResponse : KineticaData
52  {
53 
65  public struct Info
66  {
67  public const string KML_RESPONSE = "kml_response";
68  } // end struct Info
69 
70  public string registry_name { get; set; }
71  public IList<string> registry_names { get; set; } = new List<string>();
72  public IList<int> entity_ids { get; set; } = new List<int>();
73  public IList<string> uri_list { get; set; } = new List<string>();
74  public IList<string> credential_list { get; set; } = new List<string>();
75 
85  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
86 
87  } // end class ShowContainerRegistryResponse
89 
90 
91 
92 
93 
94 } // end namespace kinetica