Kinetica   C#   API  Version 7.2.3.0
ShowCredential.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 {
18  {
24  public string credential_name { get; set; }
25 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
33  public ShowCredentialRequest() { }
34 
45  IDictionary<string, string> options = null)
46  {
47  this.credential_name = credential_name ?? "";
48  this.options = options ?? new Dictionary<string, string>();
49  } // end constructor
50  } // end class ShowCredentialRequest
51 
56  {
58  public IList<string> credential_names { get; set; } = new List<string>();
59 
61  public IList<string> credential_types { get; set; } = new List<string>();
62 
64  public IList<string> credential_identities { get; set; } = new List<string>();
65 
68  public IList<string> credentials { get; set; } = new List<string>();
69 
72  public IList<IDictionary<string, string>> additional_info { get; set; } = new List<IDictionary<string, string>>();
73 
75  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
76  } // end class ShowCredentialResponse
77 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
A set of parameters for Kinetica.showCredential.
IList< string > credential_names
A list of all credential names.
ShowCredentialRequest()
Constructs a ShowCredentialRequest object with default parameters.
IList< string > credential_types
A list of each credential's type.
IDictionary< string, string > info
Additional information.
IList< string > credentials
A list of each credential's create_credential_request JSON encoded structure.
string credential_name
Name of the credential on which to retrieve information.
A set of results returned by Kinetica.showCredential.
IList< string > credential_identities
A list of each credential's identity.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
ShowCredentialRequest(string credential_name, IDictionary< string, string > options=null)
Constructs a ShowCredentialRequest object with the specified parameters.
IList< IDictionary< string, string > > additional_info
Additional information about the respective credential in credential_names.