Skip to main content

◆ showSchema() [1/2]

ShowSchemaResponse kinetica.Kinetica.showSchema (ShowSchemaRequestrequest_)
inline

Retrieves information about a schema (or all schemas), as 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 61284 of file KineticaFunctions.cs.

◆ showSchema() [2/2]

ShowSchemaResponse kinetica.Kinetica.showSchema (stringschema_name,
IDictionary< string, string >options = null )
inline

Retrieves information about a schema (or all schemas), as specified in schema_name .

Parameters
schema_nameName of the schema for which to retrieve the information. If blank, then info for all schemas is returned.
optionsOptional parameters.
  • NO_ERROR_IF_NOT_EXISTS: If FALSE will return an error if the provided schema_name does not exist. If TRUE then it will return an empty result if the provided schema_name does not exist. Supported values:The default value is FALSE.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 61350 of file KineticaFunctions.cs.

◆ ShowSchemaAsync() [1/2]

async System.Threading.Tasks.Task< ShowSchemaResponse > kinetica.Kinetica.ShowSchemaAsync (ShowSchemaRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Retrieves information about a schema (or all schemas), as 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 61303 of file KineticaFunctions.cs.

◆ ShowSchemaAsync() [2/2]

async System.Threading.Tasks.Task< ShowSchemaResponse > kinetica.Kinetica.ShowSchemaAsync (stringschema_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Retrieves information about a schema (or all schemas), as specified in schema_name .

(async)

Parameters
schema_nameName of the schema for which to retrieve the information. If blank, then info for all schemas is returned.
optionsOptional parameters.
  • NO_ERROR_IF_NOT_EXISTS: If FALSE will return an error if the provided schema_name does not exist. If TRUE then it will return an empty result if the provided schema_name does not exist. Supported values:The default value is FALSE.
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 61398 of file KineticaFunctions.cs.