Skip to main content

◆ createCredential() [1/2]

CreateCredentialResponse kinetica.Kinetica.createCredential (CreateCredentialRequestrequest_)
inline

Create a new credential.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 17881 of file KineticaFunctions.cs.

◆ createCredential() [2/2]

CreateCredentialResponse kinetica.Kinetica.createCredential (stringcredential_name,
stringtype,
stringidentity,
stringsecret,
IDictionary< string, string >options = null )
inline

Create a new credential.

Parameters
credential_nameName of the credential to be created. Must contain only letters, digits, and underscores, and cannot begin with a digit. Must not match an existing credential name.
typeType of the credential to be created. Supported values:
identityUser of the credential to be created.
secretPassword of the credential to be created.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 17996 of file KineticaFunctions.cs.

◆ CreateCredentialAsync() [1/2]

async System.Threading.Tasks.Task< CreateCredentialResponse > kinetica.Kinetica.CreateCredentialAsync (CreateCredentialRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Create a new credential.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 17897 of file KineticaFunctions.cs.

◆ CreateCredentialAsync() [2/2]

async System.Threading.Tasks.Task< CreateCredentialResponse > kinetica.Kinetica.CreateCredentialAsync (stringcredential_name,
stringtype,
stringidentity,
stringsecret,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Create a new credential.

(async)

Parameters
credential_nameName of the credential to be created. Must contain only letters, digits, and underscores, and cannot begin with a digit. Must not match an existing credential name.
typeType of the credential to be created. Supported values:
identityUser of the credential to be created.
secretPassword of the credential to be created.
optionsOptional parameters. The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 18099 of file KineticaFunctions.cs.