7 using System.Collections.Generic;
17 public class ShowCredentialRequest : KineticaData
29 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
45 IDictionary<string, string>
options =
null)
55 public class ShowCredentialResponse : KineticaData
68 public IList<string>
credentials {
get;
set; } =
new List<string>();
72 public IList<IDictionary<string, string>>
additional_info {
get;
set; } =
new List<IDictionary<string, string>>();
75 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IList< string > credential_identities
A list of each credential's identity.
ShowCredentialRequest()
Constructs a ShowCredentialRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
IList< string > credential_types
A list of each credential's type.
IList< IDictionary< string, string > > additional_info
Additional information about the respective credential in credential_names.
IList< string > credential_names
A list of all credential names.
string credential_name
Name of the credential on which to retrieve information.
IDictionary< string, string > info
Additional information.
IList< string > credentials
A list of each credential's create_credential_request JSON encoded structure.
ShowCredentialRequest(string credential_name, IDictionary< string, string > options=null)
Constructs a ShowCredentialRequest object with the specified parameters.