Skip to main content

◆ alterSchema() [1/2]

AlterSchemaResponse kinetica.Kinetica.alterSchema (AlterSchemaRequestrequest_)
inline

Used to change the name of a SQL-style schema, specified in schema_name.

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

Definition at line 11320 of file KineticaFunctions.cs.

◆ alterSchema() [2/2]

AlterSchemaResponse kinetica.Kinetica.alterSchema (stringschema_name,
stringaction,
string_value,
IDictionary< string, string >options = null )
inline

Used to change the name of a SQL-style schema, specified in schema_name .

Parameters
schema_nameName of the schema to be altered.
actionModification operation to be applied. Supported values:
_valueThe value of the modification, depending on action . For now the only value of action is RENAME_SCHEMA. In this case the value is the new name of the schema.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 11380 of file KineticaFunctions.cs.

◆ AlterSchemaAsync() [1/2]

async System.Threading.Tasks.Task< AlterSchemaResponse > kinetica.Kinetica.AlterSchemaAsync (AlterSchemaRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Used to change the name of a SQL-style schema, specified in schema_name.

(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 11338 of file KineticaFunctions.cs.

◆ AlterSchemaAsync() [2/2]

async System.Threading.Tasks.Task< AlterSchemaResponse > kinetica.Kinetica.AlterSchemaAsync (stringschema_name,
stringaction,
string_value,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Used to change the name of a SQL-style schema, specified in schema_name .

(async)

Parameters
schema_nameName of the schema to be altered.
actionModification operation to be applied. Supported values:
_valueThe value of the modification, depending on action . For now the only value of action is RENAME_SCHEMA. In this case the value is the new name of the schema.
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 11424 of file KineticaFunctions.cs.