7 using System.Collections.Generic;
19 public class ShowContainerRegistryRequest : KineticaData
21 public string registry_name {
get; set; }
22 public IDictionary<string, string> options {
get; set; } =
new Dictionary<string, string>();
27 public ShowContainerRegistryRequest() { }
35 public ShowContainerRegistryRequest(
string registry_name,
36 IDictionary<string, string> options = null)
38 this.registry_name = registry_name ??
"";
39 this.options = options ??
new Dictionary<string, string>();
51 public class ShowContainerRegistryResponse : KineticaData
67 public const string KML_RESPONSE =
"kml_response";
70 public string registry_name {
get; set; }
71 public IList<string> registry_names {
get; set; } =
new List<string>();
72 public IList<int> entity_ids {
get; set; } =
new List<int>();
73 public IList<string> uri_list {
get; set; } =
new List<string>();
74 public IList<string> credential_list {
get; set; } =
new List<string>();
85 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();