7 using System.Collections.Generic;
12 public class ShowContainerRegistryRequest : KineticaData
14 public string registry_name {
get;
set; }
15 public IDictionary<string, string> options {
get;
set; } =
new Dictionary<string, string>();
17 public ShowContainerRegistryRequest() { }
19 public ShowContainerRegistryRequest(
string registry_name,
20 IDictionary<string, string> options =
null)
22 this.registry_name = registry_name ??
"";
23 this.options = options ??
new Dictionary<string, string>();
29 public class ShowContainerRegistryResponse : KineticaData
33 public const string KML_RESPONSE =
"kml_response";
36 public string registry_name {
get;
set; }
37 public IList<string> registry_names {
get;
set; } =
new List<string>();
38 public IList<int> entity_ids {
get;
set; } =
new List<int>();
39 public IList<string> uri_list {
get;
set; } =
new List<string>();
40 public IList<string> credential_list {
get;
set; } =
new List<string>();
41 public IDictionary<string, string> info {
get;
set; } =
new Dictionary<string, string>();