Kinetica   C#   API  Version 7.2.3.0
AlterCredential.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  {
23  public struct CredentialUpdatesMap
24  {
81  public const string TYPE = "type";
82 
83  public const string AWS_ACCESS_KEY = "aws_access_key";
84  public const string AWS_IAM_ROLE = "aws_iam_role";
85  public const string AZURE_AD = "azure_ad";
86  public const string AZURE_OAUTH = "azure_oauth";
87  public const string AZURE_SAS = "azure_sas";
88  public const string AZURE_STORAGE_KEY = "azure_storage_key";
89  public const string DOCKER = "docker";
90  public const string GCS_SERVICE_ACCOUNT_ID = "gcs_service_account_id";
91  public const string GCS_SERVICE_ACCOUNT_KEYS = "gcs_service_account_keys";
92  public const string HDFS = "hdfs";
93  public const string KAFKA = "kafka";
94 
96  public const string IDENTITY = "identity";
97 
99  public const string SECRET = "secret";
100 
108  public const string SCHEMA_NAME = "schema_name";
109  } // end struct CredentialUpdatesMap
110 
113  public string credential_name { get; set; }
114 
202  public IDictionary<string, string> credential_updates_map { get; set; } = new Dictionary<string, string>();
203 
205  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
206 
210 
305  IDictionary<string, string> credential_updates_map,
306  IDictionary<string, string> options)
307  {
308  this.credential_name = credential_name ?? "";
309  this.credential_updates_map = credential_updates_map ?? new Dictionary<string, string>();
310  this.options = options ?? new Dictionary<string, string>();
311  } // end constructor
312  } // end class AlterCredentialRequest
313 
318  {
322  public string credential_name { get; set; }
323 
325  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
326  } // end class AlterCredentialResponse
327 } // end namespace kinetica
const string SCHEMA_NAME
Updates the schema name.
const string TYPE
New type for the credential.
AlterCredentialRequest()
Constructs an AlterCredentialRequest object with default parameters.
string credential_name
Value of credential_name.
const string IDENTITY
New user for the credential
string credential_name
Name of the credential to be altered.
A set of parameters for Kinetica.alterCredential.
IDictionary< string, string > credential_updates_map
Map containing the properties of the credential to be updated.
A set of string constants for the parameter credential_updates_map.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
AlterCredentialRequest(string credential_name, IDictionary< string, string > credential_updates_map, IDictionary< string, string > options)
Constructs an AlterCredentialRequest object with the specified parameters.
const string SECRET
New password for the credential
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.alterCredential.