Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateContainerRegistry.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 CreateContainerRegistryRequest : KineticaData
20  {
21 
43  public struct Options
44  {
45 
47  public const string USER_NAME = "user_name";
48 
50  public const string PASSWORD = "password";
51 
53  public const string EMAIL = "email";
54  } // end struct Options
55 
56  public string registry_name { get; set; }
57  public string uri { get; set; }
58  public string credential { get; set; }
59 
79  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
80 
81 
84  public CreateContainerRegistryRequest() { }
85 
112  public CreateContainerRegistryRequest( string registry_name,
113  string uri,
114  string credential,
115  IDictionary<string, string> options = null)
116  {
117  this.registry_name = registry_name ?? "";
118  this.uri = uri ?? "";
119  this.credential = credential ?? "";
120  this.options = options ?? new Dictionary<string, string>();
121  } // end constructor
122 
123  } // end class CreateContainerRegistryRequest
125 
126 
127 
132  public class CreateContainerRegistryResponse : KineticaData
133  {
134 
146  public struct Info
147  {
148  public const string KML_RESPONSE = "kml_response";
149  } // end struct Info
150 
151  public string registry_name { get; set; }
152  public int entity_id { get; set; }
153 
163  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
164 
165  } // end class CreateContainerRegistryResponse
167 
168 
169 
170 
171 
172 } // end namespace kinetica