Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
12  public class ShowContainerRegistryRequest : KineticaData
13  {
14  public string registry_name { get; set; }
15  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
16 
17  public ShowContainerRegistryRequest() { }
18 
19  public ShowContainerRegistryRequest( string registry_name,
20  IDictionary<string, string> options = null)
21  {
22  this.registry_name = registry_name ?? "";
23  this.options = options ?? new Dictionary<string, string>();
24  } // end constructor
25  } // end class ShowContainerRegistryRequest
27 
29  public class ShowContainerRegistryResponse : KineticaData
30  {
31  public struct Info
32  {
33  public const string KML_RESPONSE = "kml_response";
34  } // end struct Info
35 
36  public string registry_name { get; set; }
37  public IList<string> registry_names { get; set; } = new List<string>();
38  public IList<int> entity_ids { get; set; } = new List<int>();
39  public IList<string> uri_list { get; set; } = new List<string>();
40  public IList<string> credential_list { get; set; } = new List<string>();
41  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
42  } // end class ShowContainerRegistryResponse
44 } // end namespace kinetica