Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DropContainerRegistry.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 DropContainerRegistryRequest : 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 DropContainerRegistryRequest() { }
28 
35  public DropContainerRegistryRequest( 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 DropContainerRegistryRequest
44 
45 
46 
51  public class DropContainerRegistryResponse : 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 
81  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
82 
83  } // end class DropContainerRegistryResponse
85 
86 
87 
88 
89 
90 } // end namespace kinetica