Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
12  public class DropContainerRegistryRequest : KineticaData
13  {
14  public string registry_name { get; set; }
15  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
16 
17  public DropContainerRegistryRequest() { }
18 
19  public DropContainerRegistryRequest( 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 DropContainerRegistryRequest
27 
29  public class DropContainerRegistryResponse : 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 IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
38  } // end class DropContainerRegistryResponse
40 } // end namespace kinetica