Kinetica   C#   API  Version 7.2.3.0
DropCredential.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  {
21  public string credential_name { get; set; }
22 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
30  public DropCredentialRequest() { }
31 
40  IDictionary<string, string> options = null)
41  {
42  this.credential_name = credential_name ?? "";
43  this.options = options ?? new Dictionary<string, string>();
44  } // end constructor
45  } // end class DropCredentialRequest
46 
51  {
55  public string credential_name { get; set; }
56 
58  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
59  } // end class DropCredentialResponse
60 } // end namespace kinetica
DropCredentialRequest()
Constructs a DropCredentialRequest object with default parameters.
A set of results returned by Kinetica.dropCredential.
IDictionary< string, string > options
Optional parameters.
string credential_name
Value of credential_name.
IDictionary< string, string > info
Additional information.
string credential_name
Name of the credential to be dropped.
A set of parameters for Kinetica.dropCredential.
DropCredentialRequest(string credential_name, IDictionary< string, string > options=null)
Constructs a DropCredentialRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14