Kinetica   C#   API  Version 7.2.3.1
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  {
80  public const string TYPE = "type";
81 
82  public const string AWS_ACCESS_KEY = "aws_access_key";
83  public const string AWS_IAM_ROLE = "aws_iam_role";
84  public const string AZURE_AD = "azure_ad";
85  public const string AZURE_OAUTH = "azure_oauth";
86  public const string AZURE_SAS = "azure_sas";
87  public const string AZURE_STORAGE_KEY = "azure_storage_key";
88  public const string DOCKER = "docker";
89  public const string GCS_SERVICE_ACCOUNT_ID = "gcs_service_account_id";
90  public const string GCS_SERVICE_ACCOUNT_KEYS = "gcs_service_account_keys";
91  public const string HDFS = "hdfs";
92  public const string KAFKA = "kafka";
93 
95  public const string IDENTITY = "identity";
96 
98  public const string SECRET = "secret";
99 
106  public const string SCHEMA_NAME = "schema_name";
107  } // end struct CredentialUpdatesMap
108 
111  public string credential_name { get; set; }
112 
197  public IDictionary<string, string> credential_updates_map { get; set; } = new Dictionary<string, string>();
198 
200  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
201 
205 
297  IDictionary<string, string> credential_updates_map,
298  IDictionary<string, string> options)
299  {
300  this.credential_name = credential_name ?? "";
301  this.credential_updates_map = credential_updates_map ?? new Dictionary<string, string>();
302  this.options = options ?? new Dictionary<string, string>();
303  } // end constructor
304 } // end class AlterCredentialRequest
305 
310 {
314  public string credential_name { get; set; }
315 
317  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
318 } // end class AlterCredentialResponse
const string SECRET
New password for the credential.
const string SCHEMA_NAME
Updates the schema name.
A set of parameters for Kinetica.alterCredential.
A set of string constants for the parameter credential_updates_map.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
AlterCredentialRequest()
Constructs an AlterCredentialRequest object with default parameters.
A set of results returned by Kinetica.alterCredential.
AlterCredentialRequest(string credential_name, IDictionary< string, string > credential_updates_map, IDictionary< string, string > options)
Constructs an AlterCredentialRequest object with the specified parameters.
IDictionary< string, string > credential_updates_map
Map containing the properties of the credential to be updated.
IDictionary< string, string > options
Optional parameters.
string credential_name
Name of the credential to be altered.
string credential_name
Value of credential_name.
IDictionary< string, string > info
Additional information.
const string IDENTITY
New user for the credential.
const string TYPE
New type for the credential.