Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
12  public class CreateContainerRegistryRequest : KineticaData
13  {
14  public struct Options
15  {
16  public const string USER_NAME = "user_name";
17  public const string PASSWORD = "password";
18  public const string EMAIL = "email";
19  } // end struct Options
20 
21  public string registry_name { get; set; }
22  public string uri { get; set; }
23  public string credential { get; set; }
24  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
25 
26  public CreateContainerRegistryRequest() { }
27 
28  public CreateContainerRegistryRequest( string registry_name,
29  string uri,
30  string credential,
31  IDictionary<string, string> options = null)
32  {
33  this.registry_name = registry_name ?? "";
34  this.uri = uri ?? "";
35  this.credential = credential ?? "";
36  this.options = options ?? new Dictionary<string, string>();
37  } // end constructor
38  } // end class CreateContainerRegistryRequest
40 
42  public class CreateContainerRegistryResponse : KineticaData
43  {
44  public struct Info
45  {
46  public const string KML_RESPONSE = "kml_response";
47  } // end struct Info
48 
49  public string registry_name { get; set; }
50  public int entity_id { get; set; }
51  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
52  } // end class CreateContainerRegistryResponse
54 } // end namespace kinetica