Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
21  {
22 
25  public string credential_name { get; set; }
26 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
31 
34  public DropCredentialRequest() { }
35 
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 
51  } // end class DropCredentialRequest
52 
53 
54 
59  {
60 
63  public string credential_name { get; set; }
64 
66  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
67 
68  } // end class DropCredentialResponse
69 
70 
71 
72 
73 } // end namespace kinetica
DropCredentialRequest()
Constructs a DropCredentialRequest object with default parameters.
A set of results returned by Kinetica.dropCredential(string,IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
string credential_name
Value of .
IDictionary< string, string > info
Additional information.
string credential_name
Name of the credential to be dropped.
A set of parameters for Kinetica.dropCredential(string,IDictionary{string, string}).
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