Skip to main content

◆ showTablesByType() [1/2]

ShowTablesByTypeResponse kinetica.Kinetica.showTablesByType (ShowTablesByTypeRequestrequest_)
inline

Gets names of the tables whose type matches the given criteria.

Each table has a particular type. This type comprises the schema and properties of the table and sometimes a type label. This function allows a look up of the existing tables based on full or partial type information. The operation is synchronous.

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

Definition at line 62915 of file KineticaFunctions.cs.

◆ showTablesByType() [2/2]

ShowTablesByTypeResponse kinetica.Kinetica.showTablesByType (stringtype_id,
stringlabel,
IDictionary< string, string >options = null )
inline

Gets names of the tables whose type matches the given criteria.

Each table has a particular type. This type comprises the schema and properties of the table and sometimes a type label. This function allows a look up of the existing tables based on full or partial type information. The operation is synchronous.

Parameters
type_idType id returned by a call to createType.
labelOptional user supplied label which can be used instead of the type_id to retrieve all tables with the given label.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 62961 of file KineticaFunctions.cs.

◆ ShowTablesByTypeAsync() [1/2]

async System.Threading.Tasks.Task< ShowTablesByTypeResponse > kinetica.Kinetica.ShowTablesByTypeAsync (ShowTablesByTypeRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Gets names of the tables whose type matches the given criteria.

(async)

Each table has a particular type. This type comprises the schema and properties of the table and sometimes a type label. This function allows a look up of the existing tables based on full or partial type information. The operation is synchronous.

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

◆ ShowTablesByTypeAsync() [2/2]

async System.Threading.Tasks.Task< ShowTablesByTypeResponse > kinetica.Kinetica.ShowTablesByTypeAsync (stringtype_id,
stringlabel,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Gets names of the tables whose type matches the given criteria.

(async)

Each table has a particular type. This type comprises the schema and properties of the table and sometimes a type label. This function allows a look up of the existing tables based on full or partial type information. The operation is synchronous.

Parameters
type_idType id returned by a call to createType.
labelOptional user supplied label which can be used instead of the type_id to retrieve all tables with the given label.
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 62987 of file KineticaFunctions.cs.