Skip to main content

API to talk to Kinetica Database. More…

Inherits IDisposable.

Classes

class  Options
 Connection Options. More…
 

Public Member Functions

IList< ClusterAddressInfoGetHARingInfo ()
 Gets the list of all cluster addresses in the HA ring.
 
ClusterAddressInfoGetCurrentClusterInfo ()
 Gets the current active cluster information.
 
 Kinetica (string url_str, Options? options=null)
 API Constructor.
 
 Kinetica (IList< string > urls, Options? options=null)
 API Constructor with multiple URLs for HA failover support.
 
IList< Uri >? GetCurrentWorkerUrls ()
 Gets the current worker URLs for multi-head operations.
 
IList< int >? GetCurrentRoutingTable ()
 Gets the current routing table for multi-head operations.
 
bool RefreshClusterInfo ()
 Refreshes cluster information after a failover.
 
void Dispose ()
 Disposes the Kinetica client and releases HTTP resources.
 
void AddTableType (string table_name, Type obj_type)
 Given a table name, add its record type to enable proper encoding of records for insertion or updates.
 
void SetKineticaSourceClassToTypeMapping (Type? objectType, KineticaType kineticaType)
 Saves an object class type to a KineticaType association.
 
void DecodeRawBinaryDataUsingRecordType< T > (KineticaType record_type, IList< byte[]> records_binary, IList< T > records)
 Given a KineticaType object for a certain record type, decode binary data into distinct records (objects).
 
void DecodeRawBinaryDataUsingSchemaString< T > (string schema_string, IList< byte[]> records_binary, IList< T > records)
 Given a schema string for a certain record type, decode binary data into distinct records (objects).
 
void DecodeRawBinaryDataUsingSchemaString< T > (IList< string > schema_strings, IList< IList< byte[]> > lists_records_binary, IList< IList< T > > record_lists)
 Given a list of schema strings, decode binary data into distinct records (objects).
 
void DecodeRawBinaryDataUsingTypeIDs< T > (IList< string > type_ids, IList< byte[]> records_binary, IList< T > records)
 Given IDs of records types registered with Kinetica, decode binary data into distinct records (objects).
 
void DecodeRawBinaryDataUsingTypeIDs< T > (IList< string > type_ids, IList< IList< byte[]> > lists_records_binary, IList< IList< T > > record_lists)
 Given IDs of records types registered with Kinetica, decode binary data into distinct records (objects).
 
TResponse SubmitRequestRaw< TResponse > (Uri url, object request, bool enableCompression=false, bool avroEncoding=true)
 Submit a request directly to a specific URL without HA failover.
 
RawKineticaResponse SubmitRequestRawBytes (Uri url, byte[] requestBytes)
 Submit pre-encoded request bytes directly to a specific URL without HA failover.
 
bool IsKineticaRunning (Uri url)
 Unauthenticated liveness ping: checks whether a Kinetica process is up at the given URL.
 
AdminAddHostResponse adminAddHost (AdminAddHostRequest request_)
 Adds a host to an existing cluster.
 
async System.Threading.Tasks.Task< AdminAddHostResponseAdminAddHostAsync (AdminAddHostRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Adds a host to an existing cluster.
 
AdminAddHostResponse adminAddHost (string host_address, IDictionary< string, string > options=null)
 Adds a host to an existing cluster.
 
async System.Threading.Tasks.Task< AdminAddHostResponseAdminAddHostAsync (string host_address, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Adds a host to an existing cluster.
 
AdminAddRanksResponse adminAddRanks (AdminAddRanksRequest request_)
 Add one or more ranks to an existing Kinetica cluster.
 
async System.Threading.Tasks.Task< AdminAddRanksResponseAdminAddRanksAsync (AdminAddRanksRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Add one or more ranks to an existing Kinetica cluster.
 
AdminAddRanksResponse adminAddRanks (IList< string > hosts, IList< IDictionary< string, string > > config_params, IDictionary< string, string > options=null)
 Add one or more ranks to an existing Kinetica cluster.
 
async System.Threading.Tasks.Task< AdminAddRanksResponseAdminAddRanksAsync (IList< string > hosts, IList< IDictionary< string, string > > config_params, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Add one or more ranks to an existing Kinetica cluster.
 
AdminAlterHostResponse adminAlterHost (AdminAlterHostRequest request_)
 Alter properties on an existing host in the cluster.
 
async System.Threading.Tasks.Task< AdminAlterHostResponseAdminAlterHostAsync (AdminAlterHostRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alter properties on an existing host in the cluster.
 
AdminAlterHostResponse adminAlterHost (string host, IDictionary< string, string > options=null)
 Alter properties on an existing host in the cluster.
 
async System.Threading.Tasks.Task< AdminAlterHostResponseAdminAlterHostAsync (string host, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alter properties on an existing host in the cluster.
 
AdminAlterJobsResponse adminAlterJobs (AdminAlterJobsRequest request_)
 Perform the requested action on a list of one or more job(s).
 
async System.Threading.Tasks.Task< AdminAlterJobsResponseAdminAlterJobsAsync (AdminAlterJobsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Perform the requested action on a list of one or more job(s).
 
AdminAlterJobsResponse adminAlterJobs (IList< long > job_ids, string action, IDictionary< string, string > options=null)
 Perform the requested action on a list of one or more job(s).
 
async System.Threading.Tasks.Task< AdminAlterJobsResponseAdminAlterJobsAsync (IList< long > job_ids, string action, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Perform the requested action on a list of one or more job(s).
 
AdminBackupBeginResponse adminBackupBegin (AdminBackupBeginRequest request_)
 Prepares the system for a backup by closing all open file handles after allowing current active jobs to complete.
 
async System.Threading.Tasks.Task< AdminBackupBeginResponseAdminBackupBeginAsync (AdminBackupBeginRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Prepares the system for a backup by closing all open file handles after allowing current active jobs to complete.
 
AdminBackupBeginResponse adminBackupBegin (IDictionary< string, string > options=null)
 Prepares the system for a backup by closing all open file handles after allowing current active jobs to complete.
 
async System.Threading.Tasks.Task< AdminBackupBeginResponseAdminBackupBeginAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Prepares the system for a backup by closing all open file handles after allowing current active jobs to complete.
 
AdminBackupEndResponse adminBackupEnd (AdminBackupEndRequest request_)
 Restores the system to normal operating mode after a backup has completed, allowing any queries that were blocked to complete.
 
async System.Threading.Tasks.Task< AdminBackupEndResponseAdminBackupEndAsync (AdminBackupEndRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Restores the system to normal operating mode after a backup has completed, allowing any queries that were blocked to complete.
 
AdminBackupEndResponse adminBackupEnd (IDictionary< string, string > options=null)
 Restores the system to normal operating mode after a backup has completed, allowing any queries that were blocked to complete.
 
async System.Threading.Tasks.Task< AdminBackupEndResponseAdminBackupEndAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Restores the system to normal operating mode after a backup has completed, allowing any queries that were blocked to complete.
 
AdminHaOfflineResponse adminHaOffline (AdminHaOfflineRequest request_)
 Pauses consumption of messages from other HA clusters to support data repair/recovery scenarios.
 
async System.Threading.Tasks.Task< AdminHaOfflineResponseAdminHaOfflineAsync (AdminHaOfflineRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Pauses consumption of messages from other HA clusters to support data repair/recovery scenarios.
 
AdminHaOfflineResponse adminHaOffline (bool offline, IDictionary< string, string > options=null)
 Pauses consumption of messages from other HA clusters to support data repair/recovery scenarios.
 
async System.Threading.Tasks.Task< AdminHaOfflineResponseAdminHaOfflineAsync (bool offline, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Pauses consumption of messages from other HA clusters to support data repair/recovery scenarios.
 
AdminHaRefreshResponse adminHaRefresh (AdminHaRefreshRequest request_)
 Restarts the HA processing on the given cluster as a mechanism of accepting breaking HA conf changes.
 
async System.Threading.Tasks.Task< AdminHaRefreshResponseAdminHaRefreshAsync (AdminHaRefreshRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Restarts the HA processing on the given cluster as a mechanism of accepting breaking HA conf changes.
 
AdminHaRefreshResponse adminHaRefresh (IDictionary< string, string > options=null)
 Restarts the HA processing on the given cluster as a mechanism of accepting breaking HA conf changes.
 
async System.Threading.Tasks.Task< AdminHaRefreshResponseAdminHaRefreshAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Restarts the HA processing on the given cluster as a mechanism of accepting breaking HA conf changes.
 
AdminOfflineResponse adminOffline (AdminOfflineRequest request_)
 Take the system offline.
 
async System.Threading.Tasks.Task< AdminOfflineResponseAdminOfflineAsync (AdminOfflineRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Take the system offline.
 
AdminOfflineResponse adminOffline (bool offline, IDictionary< string, string > options=null)
 Take the system offline.
 
async System.Threading.Tasks.Task< AdminOfflineResponseAdminOfflineAsync (bool offline, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Take the system offline.
 
AdminRebalanceResponse adminRebalance (AdminRebalanceRequest request_)
 Rebalance the data in the cluster so that all nodes contain an equal number of records approximately and/or rebalance the shards to be equally distributed (as much as possible) across all the ranks.
 
async System.Threading.Tasks.Task< AdminRebalanceResponseAdminRebalanceAsync (AdminRebalanceRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Rebalance the data in the cluster so that all nodes contain an equal number of records approximately and/or rebalance the shards to be equally distributed (as much as possible) across all the ranks.
 
AdminRebalanceResponse adminRebalance (IDictionary< string, string > options=null)
 Rebalance the data in the cluster so that all nodes contain an equal number of records approximately and/or rebalance the shards to be equally distributed (as much as possible) across all the ranks.
 
async System.Threading.Tasks.Task< AdminRebalanceResponseAdminRebalanceAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Rebalance the data in the cluster so that all nodes contain an equal number of records approximately and/or rebalance the shards to be equally distributed (as much as possible) across all the ranks.
 
AdminRemoveHostResponse adminRemoveHost (AdminRemoveHostRequest request_)
 Removes a host from an existing cluster.
 
async System.Threading.Tasks.Task< AdminRemoveHostResponseAdminRemoveHostAsync (AdminRemoveHostRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Removes a host from an existing cluster.
 
AdminRemoveHostResponse adminRemoveHost (string host, IDictionary< string, string > options=null)
 Removes a host from an existing cluster.
 
async System.Threading.Tasks.Task< AdminRemoveHostResponseAdminRemoveHostAsync (string host, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Removes a host from an existing cluster.
 
AdminRemoveRanksResponse adminRemoveRanks (AdminRemoveRanksRequest request_)
 Remove one or more ranks from an existing Kinetica cluster.
 
async System.Threading.Tasks.Task< AdminRemoveRanksResponseAdminRemoveRanksAsync (AdminRemoveRanksRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Remove one or more ranks from an existing Kinetica cluster.
 
AdminRemoveRanksResponse adminRemoveRanks (IList< string > ranks, IDictionary< string, string > options=null)
 Remove one or more ranks from an existing Kinetica cluster.
 
async System.Threading.Tasks.Task< AdminRemoveRanksResponseAdminRemoveRanksAsync (IList< string > ranks, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Remove one or more ranks from an existing Kinetica cluster.
 
AdminRepairTableResponse adminRepairTable (AdminRepairTableRequest request_)
 Manually repair a corrupted table.Returns information about affected tables.
 
async System.Threading.Tasks.Task< AdminRepairTableResponseAdminRepairTableAsync (AdminRepairTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Manually repair a corrupted table.Returns information about affected tables.
 
AdminRepairTableResponse adminRepairTable (IList< string > table_names, IDictionary< string, string > table_types, IDictionary< string, string > options=null)
 Manually repair a corrupted table.Returns information about affected tables.
 
async System.Threading.Tasks.Task< AdminRepairTableResponseAdminRepairTableAsync (IList< string > table_names, IDictionary< string, string > table_types, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Manually repair a corrupted table.Returns information about affected tables.
 
AdminSendAlertResponse adminSendAlert (AdminSendAlertRequest request_)
 Sends a user generated alert to the monitoring system.
 
async System.Threading.Tasks.Task< AdminSendAlertResponseAdminSendAlertAsync (AdminSendAlertRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Sends a user generated alert to the monitoring system.
 
AdminSendAlertResponse adminSendAlert (string message, string label, string log_level, IDictionary< string, string > options=null)
 Sends a user generated alert to the monitoring system.
 
async System.Threading.Tasks.Task< AdminSendAlertResponseAdminSendAlertAsync (string message, string label, string log_level, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Sends a user generated alert to the monitoring system.
 
AdminShowAlertsResponse adminShowAlerts (AdminShowAlertsRequest request_)
 Requests a list of the most recent alerts.Returns lists of alert data, including timestamp and type.
 
async System.Threading.Tasks.Task< AdminShowAlertsResponseAdminShowAlertsAsync (AdminShowAlertsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Requests a list of the most recent alerts.Returns lists of alert data, including timestamp and type.
 
AdminShowAlertsResponse adminShowAlerts (int num_alerts, IDictionary< string, string > options=null)
 Requests a list of the most recent alerts.Returns lists of alert data, including timestamp and type.
 
async System.Threading.Tasks.Task< AdminShowAlertsResponseAdminShowAlertsAsync (int num_alerts, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Requests a list of the most recent alerts.Returns lists of alert data, including timestamp and type.
 
AdminShowClusterOperationsResponse adminShowClusterOperations (AdminShowClusterOperationsRequest request_)
 Requests the detailed status of the current operation (by default) or a prior cluster operation specified by history_index.Returns details on the requested cluster operation.
 
async System.Threading.Tasks.Task< AdminShowClusterOperationsResponseAdminShowClusterOperationsAsync (AdminShowClusterOperationsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Requests the detailed status of the current operation (by default) or a prior cluster operation specified by history_index.Returns details on the requested cluster operation.
 
AdminShowClusterOperationsResponse adminShowClusterOperations (int history_index=0, IDictionary< string, string > options=null)
 Requests the detailed status of the current operation (by default) or a prior cluster operation specified by history_index .Returns details on the requested cluster operation.
 
async System.Threading.Tasks.Task< AdminShowClusterOperationsResponseAdminShowClusterOperationsAsync (int history_index=0, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Requests the detailed status of the current operation (by default) or a prior cluster operation specified by history_index .Returns details on the requested cluster operation.
 
AdminShowJobsResponse adminShowJobs (AdminShowJobsRequest request_)
 Get a list of the current jobs in GPUdb.
 
async System.Threading.Tasks.Task< AdminShowJobsResponseAdminShowJobsAsync (AdminShowJobsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Get a list of the current jobs in GPUdb.
 
AdminShowJobsResponse adminShowJobs (IDictionary< string, string > options=null)
 Get a list of the current jobs in GPUdb.
 
async System.Threading.Tasks.Task< AdminShowJobsResponseAdminShowJobsAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Get a list of the current jobs in GPUdb.
 
AdminShowShardsResponse adminShowShards (AdminShowShardsRequest request_)
 Show the mapping of shards to the corresponding rank and tom.
 
async System.Threading.Tasks.Task< AdminShowShardsResponseAdminShowShardsAsync (AdminShowShardsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Show the mapping of shards to the corresponding rank and tom.
 
AdminShowShardsResponse adminShowShards (IDictionary< string, string > options=null)
 Show the mapping of shards to the corresponding rank and tom.
 
async System.Threading.Tasks.Task< AdminShowShardsResponseAdminShowShardsAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Show the mapping of shards to the corresponding rank and tom.
 
AdminShutdownResponse adminShutdown (AdminShutdownRequest request_)
 Exits the database server application.
 
async System.Threading.Tasks.Task< AdminShutdownResponseAdminShutdownAsync (AdminShutdownRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Exits the database server application.
 
AdminShutdownResponse adminShutdown (string exit_type, string authorization, IDictionary< string, string > options=null)
 Exits the database server application.
 
async System.Threading.Tasks.Task< AdminShutdownResponseAdminShutdownAsync (string exit_type, string authorization, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Exits the database server application.
 
AdminSwitchoverResponse adminSwitchover (AdminSwitchoverRequest request_)
 Manually switch over one or more processes to another host.
 
async System.Threading.Tasks.Task< AdminSwitchoverResponseAdminSwitchoverAsync (AdminSwitchoverRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Manually switch over one or more processes to another host.
 
AdminSwitchoverResponse adminSwitchover (IList< string > processes, IList< string > destinations, IDictionary< string, string > options=null)
 Manually switch over one or more processes to another host.
 
async System.Threading.Tasks.Task< AdminSwitchoverResponseAdminSwitchoverAsync (IList< string > processes, IList< string > destinations, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Manually switch over one or more processes to another host.
 
AdminVerifyDbResponse adminVerifyDb (AdminVerifyDbRequest request_)
 Verify database is in a consistent state.
 
async System.Threading.Tasks.Task< AdminVerifyDbResponseAdminVerifyDbAsync (AdminVerifyDbRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Verify database is in a consistent state.
 
AdminVerifyDbResponse adminVerifyDb (IDictionary< string, string > options=null)
 Verify database is in a consistent state.
 
async System.Threading.Tasks.Task< AdminVerifyDbResponseAdminVerifyDbAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Verify database is in a consistent state.
 
AggregateConvexHullResponse aggregateConvexHull (AggregateConvexHullRequest request_)
 Calculates and returns the convex hull for the values in a table specified by table_name.
 
async System.Threading.Tasks.Task< AggregateConvexHullResponseAggregateConvexHullAsync (AggregateConvexHullRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates and returns the convex hull for the values in a table specified by table_name.
 
AggregateConvexHullResponse aggregateConvexHull (string table_name, string x_column_name, string y_column_name, IDictionary< string, string > options=null)
 Calculates and returns the convex hull for the values in a table specified by table_name .
 
async System.Threading.Tasks.Task< AggregateConvexHullResponseAggregateConvexHullAsync (string table_name, string x_column_name, string y_column_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates and returns the convex hull for the values in a table specified by table_name .
 
AggregateGroupByResponse aggregateGroupBy (AggregateGroupByRequest request_)
 Calculates unique combinations (groups) of values for the given columns in a given table or view and computes aggregates on each unique combination.
 
async System.Threading.Tasks.Task< AggregateGroupByResponseAggregateGroupByAsync (AggregateGroupByRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates unique combinations (groups) of values for the given columns in a given table or view and computes aggregates on each unique combination.
 
AggregateGroupByResponse aggregateGroupBy (string table_name, IList< string > column_names, long offset=0, long limit=-9999, IDictionary< string, string > options=null)
 Calculates unique combinations (groups) of values for the given columns in a given table or view and computes aggregates on each unique combination.
 
async System.Threading.Tasks.Task< AggregateGroupByResponseAggregateGroupByAsync (string table_name, IList< string > column_names, long offset=0, long limit=-9999, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates unique combinations (groups) of values for the given columns in a given table or view and computes aggregates on each unique combination.
 
AggregateHistogramResponse aggregateHistogram (AggregateHistogramRequest request_)
 Performs a histogram calculation given a table, a column, and an interval function.
 
async System.Threading.Tasks.Task< AggregateHistogramResponseAggregateHistogramAsync (AggregateHistogramRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Performs a histogram calculation given a table, a column, and an interval function.
 
AggregateHistogramResponse aggregateHistogram (string table_name, string column_name, double start, double end, double interval, IDictionary< string, string > options=null)
 Performs a histogram calculation given a table, a column, and an interval function.
 
async System.Threading.Tasks.Task< AggregateHistogramResponseAggregateHistogramAsync (string table_name, string column_name, double start, double end, double interval, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Performs a histogram calculation given a table, a column, and an interval function.
 
AggregateKMeansResponse aggregateKMeans (AggregateKMeansRequest request_)
 This endpoint runs the k-means algorithm - a heuristic algorithm that attempts to do k-means clustering.
 
async System.Threading.Tasks.Task< AggregateKMeansResponseAggregateKMeansAsync (AggregateKMeansRequest request_, System.Threading.CancellationToken cancellationToken=default)
 This endpoint runs the k-means algorithm - a heuristic algorithm that attempts to do k-means clustering.
 
AggregateKMeansResponse aggregateKMeans (string table_name, IList< string > column_names, int k, double tolerance, IDictionary< string, string > options=null)
 This endpoint runs the k-means algorithm - a heuristic algorithm that attempts to do k-means clustering.
 
async System.Threading.Tasks.Task< AggregateKMeansResponseAggregateKMeansAsync (string table_name, IList< string > column_names, int k, double tolerance, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 This endpoint runs the k-means algorithm - a heuristic algorithm that attempts to do k-means clustering.
 
AggregateMinMaxResponse aggregateMinMax (AggregateMinMaxRequest request_)
 Calculates and returns the minimum and maximum values of a particular column in a table.
 
async System.Threading.Tasks.Task< AggregateMinMaxResponseAggregateMinMaxAsync (AggregateMinMaxRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates and returns the minimum and maximum values of a particular column in a table.
 
AggregateMinMaxResponse aggregateMinMax (string table_name, string column_name, IDictionary< string, string > options=null)
 Calculates and returns the minimum and maximum values of a particular column in a table.
 
async System.Threading.Tasks.Task< AggregateMinMaxResponseAggregateMinMaxAsync (string table_name, string column_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates and returns the minimum and maximum values of a particular column in a table.
 
AggregateMinMaxGeometryResponse aggregateMinMaxGeometry (AggregateMinMaxGeometryRequest request_)
 Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geometry column in a table.
 
async System.Threading.Tasks.Task< AggregateMinMaxGeometryResponseAggregateMinMaxGeometryAsync (AggregateMinMaxGeometryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geometry column in a table.
 
AggregateMinMaxGeometryResponse aggregateMinMaxGeometry (string table_name, string column_name, IDictionary< string, string > options=null)
 Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geometry column in a table.
 
async System.Threading.Tasks.Task< AggregateMinMaxGeometryResponseAggregateMinMaxGeometryAsync (string table_name, string column_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geometry column in a table.
 
AggregateStatisticsResponse aggregateStatistics (AggregateStatisticsRequest request_)
 Calculates the requested statistics of the given column(s) in a given table.
 
async System.Threading.Tasks.Task< AggregateStatisticsResponseAggregateStatisticsAsync (AggregateStatisticsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates the requested statistics of the given column(s) in a given table.
 
AggregateStatisticsResponse aggregateStatistics (string table_name, string column_name, string stats, IDictionary< string, string > options=null)
 Calculates the requested statistics of the given column(s) in a given table.
 
async System.Threading.Tasks.Task< AggregateStatisticsResponseAggregateStatisticsAsync (string table_name, string column_name, string stats, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates the requested statistics of the given column(s) in a given table.
 
AggregateStatisticsByRangeResponse aggregateStatisticsByRange (AggregateStatisticsByRangeRequest request_)
 Divides the given set into bins and calculates statistics of the values of a value-column in each bin.
 
async System.Threading.Tasks.Task< AggregateStatisticsByRangeResponseAggregateStatisticsByRangeAsync (AggregateStatisticsByRangeRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Divides the given set into bins and calculates statistics of the values of a value-column in each bin.
 
AggregateStatisticsByRangeResponse aggregateStatisticsByRange (string table_name, string select_expression, string column_name, string value_column_name, string stats, double start, double end, double interval, IDictionary< string, string > options=null)
 Divides the given set into bins and calculates statistics of the values of a value-column in each bin.
 
async System.Threading.Tasks.Task< AggregateStatisticsByRangeResponseAggregateStatisticsByRangeAsync (string table_name, string select_expression, string column_name, string value_column_name, string stats, double start, double end, double interval, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Divides the given set into bins and calculates statistics of the values of a value-column in each bin.
 
AggregateUniqueResponse aggregateUnique (AggregateUniqueRequest request_)
 Returns all the unique values from a particular column (specified by column_name) of a particular table or view (specified by table_name).
 
async System.Threading.Tasks.Task< AggregateUniqueResponseAggregateUniqueAsync (AggregateUniqueRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Returns all the unique values from a particular column (specified by column_name) of a particular table or view (specified by table_name).
 
AggregateUniqueResponse aggregateUnique (string table_name, string column_name, long offset=0, long limit=-9999, IDictionary< string, string > options=null)
 Returns all the unique values from a particular column (specified by column_name ) of a particular table or view (specified by table_name ).
 
async System.Threading.Tasks.Task< AggregateUniqueResponseAggregateUniqueAsync (string table_name, string column_name, long offset=0, long limit=-9999, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Returns all the unique values from a particular column (specified by column_name ) of a particular table or view (specified by table_name ).
 
AggregateUnpivotResponse aggregateUnpivot (AggregateUnpivotRequest request_)
 Rotate the column values into rows values.
 
async System.Threading.Tasks.Task< AggregateUnpivotResponseAggregateUnpivotAsync (AggregateUnpivotRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Rotate the column values into rows values.
 
AggregateUnpivotResponse aggregateUnpivot (string table_name, IList< string > column_names, string variable_column_name, string value_column_name, IList< string > pivoted_columns, IDictionary< string, string > options=null)
 Rotate the column values into rows values.
 
async System.Threading.Tasks.Task< AggregateUnpivotResponseAggregateUnpivotAsync (string table_name, IList< string > column_names, string variable_column_name, string value_column_name, IList< string > pivoted_columns, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Rotate the column values into rows values.
 
AlterBackupResponse alterBackup (AlterBackupRequest request_)
 Alters an existing database backup, accessible via the data sink specified by datasink_name.
 
async System.Threading.Tasks.Task< AlterBackupResponseAlterBackupAsync (AlterBackupRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters an existing database backup, accessible via the data sink specified by datasink_name.
 
AlterBackupResponse alterBackup (string backup_name, string action, string _value, string datasink_name, IDictionary< string, string > options=null)
 Alters an existing database backup, accessible via the data sink specified by datasink_name .
 
async System.Threading.Tasks.Task< AlterBackupResponseAlterBackupAsync (string backup_name, string action, string _value, string datasink_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters an existing database backup, accessible via the data sink specified by datasink_name .
 
AlterCredentialResponse alterCredential (AlterCredentialRequest request_)
 Alter the properties of an existing credential.
 
async System.Threading.Tasks.Task< AlterCredentialResponseAlterCredentialAsync (AlterCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alter the properties of an existing credential.
 
AlterCredentialResponse alterCredential (string credential_name, IDictionary< string, string > credential_updates_map, IDictionary< string, string > options)
 Alter the properties of an existing credential.
 
async System.Threading.Tasks.Task< AlterCredentialResponseAlterCredentialAsync (string credential_name, IDictionary< string, string > credential_updates_map, IDictionary< string, string > options, System.Threading.CancellationToken cancellationToken=default)
 Alter the properties of an existing credential.
 
AlterDatasinkResponse alterDatasink (AlterDatasinkRequest request_)
 Alters the properties of an existing data sink.
 
async System.Threading.Tasks.Task< AlterDatasinkResponseAlterDatasinkAsync (AlterDatasinkRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters the properties of an existing data sink.
 
AlterDatasinkResponse alterDatasink (string name, IDictionary< string, string > datasink_updates_map, IDictionary< string, string > options)
 Alters the properties of an existing data sink.
 
async System.Threading.Tasks.Task< AlterDatasinkResponseAlterDatasinkAsync (string name, IDictionary< string, string > datasink_updates_map, IDictionary< string, string > options, System.Threading.CancellationToken cancellationToken=default)
 Alters the properties of an existing data sink.
 
AlterDatasourceResponse alterDatasource (AlterDatasourceRequest request_)
 Alters the properties of an existing data source.
 
async System.Threading.Tasks.Task< AlterDatasourceResponseAlterDatasourceAsync (AlterDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters the properties of an existing data source.
 
AlterDatasourceResponse alterDatasource (string name, IDictionary< string, string > datasource_updates_map, IDictionary< string, string > options)
 Alters the properties of an existing data source.
 
async System.Threading.Tasks.Task< AlterDatasourceResponseAlterDatasourceAsync (string name, IDictionary< string, string > datasource_updates_map, IDictionary< string, string > options, System.Threading.CancellationToken cancellationToken=default)
 Alters the properties of an existing data source.
 
AlterDirectoryResponse alterDirectory (AlterDirectoryRequest request_)
 Alters an existing directory in KiFS.
 
async System.Threading.Tasks.Task< AlterDirectoryResponseAlterDirectoryAsync (AlterDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters an existing directory in KiFS.
 
AlterDirectoryResponse alterDirectory (string directory_name, IDictionary< string, string > directory_updates_map, IDictionary< string, string > options=null)
 Alters an existing directory in KiFS.
 
async System.Threading.Tasks.Task< AlterDirectoryResponseAlterDirectoryAsync (string directory_name, IDictionary< string, string > directory_updates_map, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters an existing directory in KiFS.
 
AlterEnvironmentResponse alterEnvironment (AlterEnvironmentRequest request_)
 Alters an existing environment which can be referenced by a user-defined function (UDF).
 
async System.Threading.Tasks.Task< AlterEnvironmentResponseAlterEnvironmentAsync (AlterEnvironmentRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters an existing environment which can be referenced by a user-defined function (UDF).
 
AlterEnvironmentResponse alterEnvironment (string environment_name, string action, string _value, IDictionary< string, string > options=null)
 Alters an existing environment which can be referenced by a user-defined function (UDF).
 
async System.Threading.Tasks.Task< AlterEnvironmentResponseAlterEnvironmentAsync (string environment_name, string action, string _value, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters an existing environment which can be referenced by a user-defined function (UDF).
 
AlterResourceGroupResponse alterResourceGroup (AlterResourceGroupRequest request_)
 Alters the properties of an existing resource group to facilitate resource management.
 
async System.Threading.Tasks.Task< AlterResourceGroupResponseAlterResourceGroupAsync (AlterResourceGroupRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters the properties of an existing resource group to facilitate resource management.
 
AlterResourceGroupResponse alterResourceGroup (string name, IDictionary< string, IDictionary< string, string > > tier_attributes=null, string ranking=AlterResourceGroupRequest.Ranking.EMPTY_STRING, string adjoining_resource_group="", IDictionary< string, string > options=null)
 Alters the properties of an existing resource group to facilitate resource management.
 
async System.Threading.Tasks.Task< AlterResourceGroupResponseAlterResourceGroupAsync (string name, IDictionary< string, IDictionary< string, string > > tier_attributes=null, string ranking=AlterResourceGroupRequest.Ranking.EMPTY_STRING, string adjoining_resource_group="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters the properties of an existing resource group to facilitate resource management.
 
AlterRoleResponse alterRole (AlterRoleRequest request_)
 Alters a Role.
 
async System.Threading.Tasks.Task< AlterRoleResponseAlterRoleAsync (AlterRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters a Role.
 
AlterRoleResponse alterRole (string name, string action, string _value, IDictionary< string, string > options=null)
 Alters a Role.
 
async System.Threading.Tasks.Task< AlterRoleResponseAlterRoleAsync (string name, string action, string _value, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters a Role.
 
AlterSchemaResponse alterSchema (AlterSchemaRequest request_)
 Used to change the name of a SQL-style schema, specified in schema_name.
 
async System.Threading.Tasks.Task< AlterSchemaResponseAlterSchemaAsync (AlterSchemaRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Used to change the name of a SQL-style schema, specified in schema_name.
 
AlterSchemaResponse alterSchema (string schema_name, string action, string _value, IDictionary< string, string > options=null)
 Used to change the name of a SQL-style schema, specified in schema_name .
 
async System.Threading.Tasks.Task< AlterSchemaResponseAlterSchemaAsync (string schema_name, string action, string _value, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Used to change the name of a SQL-style schema, specified in schema_name .
 
AlterSystemPropertiesResponse alterSystemProperties (AlterSystemPropertiesRequest request_)
 The alterSystemProperties endpoint is primarily used to simplify the testing of the system and is not expected to be used during normal execution.
 
async System.Threading.Tasks.Task< AlterSystemPropertiesResponseAlterSystemPropertiesAsync (AlterSystemPropertiesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 The alterSystemProperties endpoint is primarily used to simplify the testing of the system and is not expected to be used during normal execution.
 
AlterSystemPropertiesResponse alterSystemProperties (IDictionary< string, string > property_updates_map, IDictionary< string, string > options=null)
 The alterSystemProperties endpoint is primarily used to simplify the testing of the system and is not expected to be used during normal execution.
 
async System.Threading.Tasks.Task< AlterSystemPropertiesResponseAlterSystemPropertiesAsync (IDictionary< string, string > property_updates_map, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 The alterSystemProperties endpoint is primarily used to simplify the testing of the system and is not expected to be used during normal execution.
 
AlterTableResponse alterTable (AlterTableRequest request_)
 Apply various modifications to a table or view.
 
async System.Threading.Tasks.Task< AlterTableResponseAlterTableAsync (AlterTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Apply various modifications to a table or view.
 
AlterTableResponse alterTable (string table_name, string action, string _value, IDictionary< string, string > options=null)
 Apply various modifications to a table or view.
 
async System.Threading.Tasks.Task< AlterTableResponseAlterTableAsync (string table_name, string action, string _value, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Apply various modifications to a table or view.
 
AlterTableColumnsResponse alterTableColumns (AlterTableColumnsRequest request_)
 Apply various modifications to columns in a table, view.
 
async System.Threading.Tasks.Task< AlterTableColumnsResponseAlterTableColumnsAsync (AlterTableColumnsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Apply various modifications to columns in a table, view.
 
AlterTableColumnsResponse alterTableColumns (string table_name, IList< IDictionary< string, string > > column_alterations, IDictionary< string, string > options)
 Apply various modifications to columns in a table, view.
 
async System.Threading.Tasks.Task< AlterTableColumnsResponseAlterTableColumnsAsync (string table_name, IList< IDictionary< string, string > > column_alterations, IDictionary< string, string > options, System.Threading.CancellationToken cancellationToken=default)
 Apply various modifications to columns in a table, view.
 
AlterTableMetadataResponse alterTableMetadata (AlterTableMetadataRequest request_)
 Updates (adds or changes) metadata for tables.
 
async System.Threading.Tasks.Task< AlterTableMetadataResponseAlterTableMetadataAsync (AlterTableMetadataRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Updates (adds or changes) metadata for tables.
 
AlterTableMetadataResponse alterTableMetadata (IList< string > table_names, IDictionary< string, string > metadata_map, IDictionary< string, string > options=null)
 Updates (adds or changes) metadata for tables.
 
async System.Threading.Tasks.Task< AlterTableMetadataResponseAlterTableMetadataAsync (IList< string > table_names, IDictionary< string, string > metadata_map, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Updates (adds or changes) metadata for tables.
 
AlterTableMonitorResponse alterTableMonitor (AlterTableMonitorRequest request_)
 Alters a table monitor previously created with createTableMonitor.
 
async System.Threading.Tasks.Task< AlterTableMonitorResponseAlterTableMonitorAsync (AlterTableMonitorRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters a table monitor previously created with createTableMonitor.
 
AlterTableMonitorResponse alterTableMonitor (string topic_id, IDictionary< string, string > monitor_updates_map, IDictionary< string, string > options=null)
 Alters a table monitor previously created with createTableMonitor.
 
async System.Threading.Tasks.Task< AlterTableMonitorResponseAlterTableMonitorAsync (string topic_id, IDictionary< string, string > monitor_updates_map, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters a table monitor previously created with createTableMonitor.
 
AlterTierResponse alterTier (AlterTierRequest request_)
 Alters properties of an existing tier to facilitate resource management.
 
async System.Threading.Tasks.Task< AlterTierResponseAlterTierAsync (AlterTierRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters properties of an existing tier to facilitate resource management.
 
AlterTierResponse alterTier (string name, IDictionary< string, string > options=null)
 Alters properties of an existing tier to facilitate resource management.
 
async System.Threading.Tasks.Task< AlterTierResponseAlterTierAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters properties of an existing tier to facilitate resource management.
 
AlterUserResponse alterUser (AlterUserRequest request_)
 Alters a user.
 
async System.Threading.Tasks.Task< AlterUserResponseAlterUserAsync (AlterUserRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters a user.
 
AlterUserResponse alterUser (string name, string action, string _value, IDictionary< string, string > options=null)
 Alters a user.
 
async System.Threading.Tasks.Task< AlterUserResponseAlterUserAsync (string name, string action, string _value, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters a user.
 
AlterVideoResponse alterVideo (AlterVideoRequest request_)
 Alters a video.
 
async System.Threading.Tasks.Task< AlterVideoResponseAlterVideoAsync (AlterVideoRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters a video.
 
AlterVideoResponse alterVideo (string path, IDictionary< string, string > options=null)
 Alters a video.
 
async System.Threading.Tasks.Task< AlterVideoResponseAlterVideoAsync (string path, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters a video.
 
AlterWalResponse alterWal (AlterWalRequest request_)
 Alters table write-ahead log (WAL) settings.Returns information about the requested table WAL modifications.
 
async System.Threading.Tasks.Task< AlterWalResponseAlterWalAsync (AlterWalRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Alters table write-ahead log (WAL) settings.Returns information about the requested table WAL modifications.
 
AlterWalResponse alterWal (IList< string > table_names, IDictionary< string, string > options=null)
 Alters table write-ahead log (WAL) settings.Returns information about the requested table WAL modifications.
 
async System.Threading.Tasks.Task< AlterWalResponseAlterWalAsync (IList< string > table_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Alters table write-ahead log (WAL) settings.Returns information about the requested table WAL modifications.
 
AppendRecordsResponse appendRecords (AppendRecordsRequest request_)
 Append (or insert) all records from a source table (specified by source_table_name) to a particular target table (specified by table_name).
 
async System.Threading.Tasks.Task< AppendRecordsResponseAppendRecordsAsync (AppendRecordsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Append (or insert) all records from a source table (specified by source_table_name) to a particular target table (specified by table_name).
 
AppendRecordsResponse appendRecords (string table_name, string source_table_name, IDictionary< string, string > field_map, IDictionary< string, string > options=null)
 Append (or insert) all records from a source table (specified by source_table_name ) to a particular target table (specified by table_name ).
 
async System.Threading.Tasks.Task< AppendRecordsResponseAppendRecordsAsync (string table_name, string source_table_name, IDictionary< string, string > field_map, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Append (or insert) all records from a source table (specified by source_table_name ) to a particular target table (specified by table_name ).
 
CheckTableResponse checkTable (CheckTableRequest request_)
 Scans the requested tables as specified in table_names for integrity.
 
async System.Threading.Tasks.Task< CheckTableResponseCheckTableAsync (CheckTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Scans the requested tables as specified in table_names for integrity.
 
CheckTableResponse checkTable (IList< string > table_names, IDictionary< string, string > options=null)
 Scans the requested tables as specified in table_names for integrity.
 
async System.Threading.Tasks.Task< CheckTableResponseCheckTableAsync (IList< string > table_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Scans the requested tables as specified in table_names for integrity.
 
ClearStatisticsResponse clearStatistics (ClearStatisticsRequest request_)
 Clears statistics (cardinality, mean value, etc.) for a column in a specified table.
 
async System.Threading.Tasks.Task< ClearStatisticsResponseClearStatisticsAsync (ClearStatisticsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Clears statistics (cardinality, mean value, etc.) for a column in a specified table.
 
ClearStatisticsResponse clearStatistics (string table_name="", string column_name="", IDictionary< string, string > options=null)
 Clears statistics (cardinality, mean value, etc.) for a column in a specified table.
 
async System.Threading.Tasks.Task< ClearStatisticsResponseClearStatisticsAsync (string table_name="", string column_name="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Clears statistics (cardinality, mean value, etc.) for a column in a specified table.
 
ClearTableResponse clearTable (ClearTableRequest request_)
 Clears (drops) one or all tables in the database cluster.
 
async System.Threading.Tasks.Task< ClearTableResponseClearTableAsync (ClearTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Clears (drops) one or all tables in the database cluster.
 
ClearTableResponse clearTable (string table_name="", string authorization="", IDictionary< string, string > options=null)
 Clears (drops) one or all tables in the database cluster.
 
async System.Threading.Tasks.Task< ClearTableResponseClearTableAsync (string table_name="", string authorization="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Clears (drops) one or all tables in the database cluster.
 
ClearTableMonitorResponse clearTableMonitor (ClearTableMonitorRequest request_)
 Deactivates a table monitor previously created with createTableMonitor.
 
async System.Threading.Tasks.Task< ClearTableMonitorResponseClearTableMonitorAsync (ClearTableMonitorRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deactivates a table monitor previously created with createTableMonitor.
 
ClearTableMonitorResponse clearTableMonitor (string topic_id, IDictionary< string, string > options=null)
 Deactivates a table monitor previously created with createTableMonitor.
 
async System.Threading.Tasks.Task< ClearTableMonitorResponseClearTableMonitorAsync (string topic_id, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deactivates a table monitor previously created with createTableMonitor.
 
ClearTablesResponse clearTables (ClearTablesRequest request_)
 Clears (drops) tables in the database cluster.
 
async System.Threading.Tasks.Task< ClearTablesResponseClearTablesAsync (ClearTablesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Clears (drops) tables in the database cluster.
 
ClearTablesResponse clearTables (IList< string > table_names=null, IDictionary< string, string > options=null)
 Clears (drops) tables in the database cluster.
 
async System.Threading.Tasks.Task< ClearTablesResponseClearTablesAsync (IList< string > table_names=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Clears (drops) tables in the database cluster.
 
ClearTriggerResponse clearTrigger (ClearTriggerRequest request_)
 Clears or cancels the trigger identified by the specified handle.
 
async System.Threading.Tasks.Task< ClearTriggerResponseClearTriggerAsync (ClearTriggerRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Clears or cancels the trigger identified by the specified handle.
 
ClearTriggerResponse clearTrigger (string trigger_id, IDictionary< string, string > options=null)
 Clears or cancels the trigger identified by the specified handle.
 
async System.Threading.Tasks.Task< ClearTriggerResponseClearTriggerAsync (string trigger_id, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Clears or cancels the trigger identified by the specified handle.
 
CollectStatisticsResponse collectStatistics (CollectStatisticsRequest request_)
 Collect statistics for a column(s) in a specified table.
 
async System.Threading.Tasks.Task< CollectStatisticsResponseCollectStatisticsAsync (CollectStatisticsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Collect statistics for a column(s) in a specified table.
 
CollectStatisticsResponse collectStatistics (string table_name, IList< string > column_names, IDictionary< string, string > options=null)
 Collect statistics for a column(s) in a specified table.
 
async System.Threading.Tasks.Task< CollectStatisticsResponseCollectStatisticsAsync (string table_name, IList< string > column_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Collect statistics for a column(s) in a specified table.
 
CreateBackupResponse createBackup (CreateBackupRequest request_)
 Creates a database backup, containing a snapshot of existing objects, at the remote file store accessible via the data sink specified by datasink_name.
 
async System.Threading.Tasks.Task< CreateBackupResponseCreateBackupAsync (CreateBackupRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a database backup, containing a snapshot of existing objects, at the remote file store accessible via the data sink specified by datasink_name.
 
CreateBackupResponse createBackup (string backup_name, string backup_type, IDictionary< string, string > backup_objects_map, string datasink_name, IDictionary< string, string > options=null)
 Creates a database backup, containing a snapshot of existing objects, at the remote file store accessible via the data sink specified by datasink_name .
 
async System.Threading.Tasks.Task< CreateBackupResponseCreateBackupAsync (string backup_name, string backup_type, IDictionary< string, string > backup_objects_map, string datasink_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a database backup, containing a snapshot of existing objects, at the remote file store accessible via the data sink specified by datasink_name .
 
CreateCatalogResponse createCatalog (CreateCatalogRequest request_)
 Creates a catalog, which contains the location and connection information for a deltalake catalog that is external to the database.
 
async System.Threading.Tasks.Task< CreateCatalogResponseCreateCatalogAsync (CreateCatalogRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a catalog, which contains the location and connection information for a deltalake catalog that is external to the database.
 
CreateCatalogResponse createCatalog (string name, string table_format, string location, string type, string credential, string datasource, IDictionary< string, string > options=null)
 Creates a catalog, which contains the location and connection information for a deltalake catalog that is external to the database.
 
async System.Threading.Tasks.Task< CreateCatalogResponseCreateCatalogAsync (string name, string table_format, string location, string type, string credential, string datasource, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a catalog, which contains the location and connection information for a deltalake catalog that is external to the database.
 
CreateCredentialResponse createCredential (CreateCredentialRequest request_)
 Create a new credential.
 
async System.Threading.Tasks.Task< CreateCredentialResponseCreateCredentialAsync (CreateCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Create a new credential.
 
CreateCredentialResponse createCredential (string credential_name, string type, string identity, string secret, IDictionary< string, string > options=null)
 Create a new credential.
 
async System.Threading.Tasks.Task< CreateCredentialResponseCreateCredentialAsync (string credential_name, string type, string identity, string secret, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Create a new credential.
 
CreateDatasinkResponse createDatasink (CreateDatasinkRequest request_)
 Creates a data sink, which contains the destination information for a data sink that is external to the database.
 
async System.Threading.Tasks.Task< CreateDatasinkResponseCreateDatasinkAsync (CreateDatasinkRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a data sink, which contains the destination information for a data sink that is external to the database.
 
CreateDatasinkResponse createDatasink (string name, string destination, IDictionary< string, string > options=null)
 Creates a data sink, which contains the destination information for a data sink that is external to the database.
 
async System.Threading.Tasks.Task< CreateDatasinkResponseCreateDatasinkAsync (string name, string destination, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a data sink, which contains the destination information for a data sink that is external to the database.
 
CreateDatasourceResponse createDatasource (CreateDatasourceRequest request_)
 Creates a data source, which contains the location and connection information for a data store that is external to the database.
 
async System.Threading.Tasks.Task< CreateDatasourceResponseCreateDatasourceAsync (CreateDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a data source, which contains the location and connection information for a data store that is external to the database.
 
CreateDatasourceResponse createDatasource (string name, string location, string user_name, string password, IDictionary< string, string > options=null)
 Creates a data source, which contains the location and connection information for a data store that is external to the database.
 
async System.Threading.Tasks.Task< CreateDatasourceResponseCreateDatasourceAsync (string name, string location, string user_name, string password, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a data source, which contains the location and connection information for a data store that is external to the database.
 
CreateDirectoryResponse createDirectory (CreateDirectoryRequest request_)
 Creates a new directory in KiFS.
 
async System.Threading.Tasks.Task< CreateDirectoryResponseCreateDirectoryAsync (CreateDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new directory in KiFS.
 
CreateDirectoryResponse createDirectory (string directory_name, IDictionary< string, string > options=null)
 Creates a new directory in KiFS.
 
async System.Threading.Tasks.Task< CreateDirectoryResponseCreateDirectoryAsync (string directory_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new directory in KiFS.
 
CreateEnvironmentResponse createEnvironment (CreateEnvironmentRequest request_)
 Creates a new environment which can be used by user-defined functions (UDF).
 
async System.Threading.Tasks.Task< CreateEnvironmentResponseCreateEnvironmentAsync (CreateEnvironmentRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new environment which can be used by user-defined functions (UDF).
 
CreateEnvironmentResponse createEnvironment (string environment_name, IDictionary< string, string > options=null)
 Creates a new environment which can be used by user-defined functions (UDF).
 
async System.Threading.Tasks.Task< CreateEnvironmentResponseCreateEnvironmentAsync (string environment_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new environment which can be used by user-defined functions (UDF).
 
CreateGraphResponse createGraph (CreateGraphRequest request_)
 Creates a new graph network using given nodes, edges, weights, and restrictions.
 
async System.Threading.Tasks.Task< CreateGraphResponseCreateGraphAsync (CreateGraphRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new graph network using given nodes, edges, weights, and restrictions.
 
CreateGraphResponse createGraph (string graph_name, bool directed_graph, IList< string > nodes, IList< string > edges, IList< string > weights, IList< string > restrictions, IDictionary< string, string > options=null)
 Creates a new graph network using given nodes, edges, weights, and restrictions.
 
async System.Threading.Tasks.Task< CreateGraphResponseCreateGraphAsync (string graph_name, bool directed_graph, IList< string > nodes, IList< string > edges, IList< string > weights, IList< string > restrictions, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new graph network using given nodes, edges, weights, and restrictions.
 
CreateJobResponse createJob (CreateJobRequest request_)
 Create a job which will run asynchronously.
 
async System.Threading.Tasks.Task< CreateJobResponseCreateJobAsync (CreateJobRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Create a job which will run asynchronously.
 
CreateJobResponse createJob (string endpoint, string request_encoding, byte[] data, string data_str, IDictionary< string, string > options=null)
 Create a job which will run asynchronously.
 
async System.Threading.Tasks.Task< CreateJobResponseCreateJobAsync (string endpoint, string request_encoding, byte[] data, string data_str, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Create a job which will run asynchronously.
 
CreateJoinTableResponse createJoinTable (CreateJoinTableRequest request_)
 Creates a table that is the result of a SQL JOIN.
 
async System.Threading.Tasks.Task< CreateJoinTableResponseCreateJoinTableAsync (CreateJoinTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a table that is the result of a SQL JOIN.
 
CreateJoinTableResponse createJoinTable (string join_table_name, IList< string > table_names, IList< string > column_names, IList< string > expressions=null, IDictionary< string, string > options=null)
 Creates a table that is the result of a SQL JOIN.
 
async System.Threading.Tasks.Task< CreateJoinTableResponseCreateJoinTableAsync (string join_table_name, IList< string > table_names, IList< string > column_names, IList< string > expressions=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a table that is the result of a SQL JOIN.
 
CreateMaterializedViewResponse createMaterializedView (CreateMaterializedViewRequest request_)
 Initiates the process of creating a materialized view, reserving the view’s name to prevent other views or tables from being created with that name.
 
async System.Threading.Tasks.Task< CreateMaterializedViewResponseCreateMaterializedViewAsync (CreateMaterializedViewRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Initiates the process of creating a materialized view, reserving the view’s name to prevent other views or tables from being created with that name.
 
CreateMaterializedViewResponse createMaterializedView (string table_name, IDictionary< string, string > options=null)
 Initiates the process of creating a materialized view, reserving the view’s name to prevent other views or tables from being created with that name.
 
async System.Threading.Tasks.Task< CreateMaterializedViewResponseCreateMaterializedViewAsync (string table_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Initiates the process of creating a materialized view, reserving the view’s name to prevent other views or tables from being created with that name.
 
CreateProcResponse createProc (CreateProcRequest request_)
 Creates an instance (proc) of the user-defined functions (UDF) specified by the given command, options, and files, and makes it available for execution.
 
async System.Threading.Tasks.Task< CreateProcResponseCreateProcAsync (CreateProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates an instance (proc) of the user-defined functions (UDF) specified by the given command, options, and files, and makes it available for execution.
 
CreateProcResponse createProc (string proc_name, string execution_mode=CreateProcRequest.ExecutionMode.DISTRIBUTED, IDictionary< string, byte[]> files=null, string command="", IList< string > args=null, IDictionary< string, string > options=null)
 Creates an instance (proc) of the user-defined functions (UDF) specified by the given command, options, and files, and makes it available for execution.
 
async System.Threading.Tasks.Task< CreateProcResponseCreateProcAsync (string proc_name, string execution_mode=CreateProcRequest.ExecutionMode.DISTRIBUTED, IDictionary< string, byte[]> files=null, string command="", IList< string > args=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates an instance (proc) of the user-defined functions (UDF) specified by the given command, options, and files, and makes it available for execution.
 
CreateProjectionResponse createProjection (CreateProjectionRequest request_)
 Creates a new projection of an existing table.
 
async System.Threading.Tasks.Task< CreateProjectionResponseCreateProjectionAsync (CreateProjectionRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new projection of an existing table.
 
CreateProjectionResponse createProjection (string table_name, string projection_name, IList< string > column_names, IDictionary< string, string > options=null)
 Creates a new projection of an existing table.
 
async System.Threading.Tasks.Task< CreateProjectionResponseCreateProjectionAsync (string table_name, string projection_name, IList< string > column_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new projection of an existing table.
 
CreateResourceGroupResponse createResourceGroup (CreateResourceGroupRequest request_)
 Creates a new resource group to facilitate resource management.
 
async System.Threading.Tasks.Task< CreateResourceGroupResponseCreateResourceGroupAsync (CreateResourceGroupRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new resource group to facilitate resource management.
 
CreateResourceGroupResponse createResourceGroup (string name, IDictionary< string, IDictionary< string, string > > tier_attributes, string ranking, string adjoining_resource_group="", IDictionary< string, string > options=null)
 Creates a new resource group to facilitate resource management.
 
async System.Threading.Tasks.Task< CreateResourceGroupResponseCreateResourceGroupAsync (string name, IDictionary< string, IDictionary< string, string > > tier_attributes, string ranking, string adjoining_resource_group="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new resource group to facilitate resource management.
 
CreateRoleResponse createRole (CreateRoleRequest request_)
 Creates a new role.
 
async System.Threading.Tasks.Task< CreateRoleResponseCreateRoleAsync (CreateRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new role.
 
CreateRoleResponse createRole (string name, IDictionary< string, string > options=null)
 Creates a new role.
 
async System.Threading.Tasks.Task< CreateRoleResponseCreateRoleAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new role.
 
CreateSchemaResponse createSchema (CreateSchemaRequest request_)
 Creates a SQL-style schema.
 
async System.Threading.Tasks.Task< CreateSchemaResponseCreateSchemaAsync (CreateSchemaRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a SQL-style schema.
 
CreateSchemaResponse createSchema (string schema_name, IDictionary< string, string > options=null)
 Creates a SQL-style schema.
 
async System.Threading.Tasks.Task< CreateSchemaResponseCreateSchemaAsync (string schema_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a SQL-style schema.
 
CreateTableResponse createTable (CreateTableRequest request_)
 Creates a new table with the given type (definition of columns).
 
async System.Threading.Tasks.Task< CreateTableResponseCreateTableAsync (CreateTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new table with the given type (definition of columns).
 
CreateTableResponse createTable (string table_name, string type_id, IDictionary< string, string > options=null)
 Creates a new table with the given type (definition of columns).
 
async System.Threading.Tasks.Task< CreateTableResponseCreateTableAsync (string table_name, string type_id, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new table with the given type (definition of columns).
 
CreateTableExternalResponse createTableExternal (CreateTableExternalRequest request_)
 Creates a new external table, which is a local database object whose source data is located externally to the database.
 
async System.Threading.Tasks.Task< CreateTableExternalResponseCreateTableExternalAsync (CreateTableExternalRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new external table, which is a local database object whose source data is located externally to the database.
 
CreateTableExternalResponse createTableExternal (string table_name, IList< string > filepaths, IDictionary< string, IDictionary< string, string > > modify_columns=null, IDictionary< string, string > create_table_options=null, IDictionary< string, string > options=null)
 Creates a new external table, which is a local database object whose source data is located externally to the database.
 
async System.Threading.Tasks.Task< CreateTableExternalResponseCreateTableExternalAsync (string table_name, IList< string > filepaths, IDictionary< string, IDictionary< string, string > > modify_columns=null, IDictionary< string, string > create_table_options=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new external table, which is a local database object whose source data is located externally to the database.
 
CreateTableMonitorResponse createTableMonitor (CreateTableMonitorRequest request_)
 Creates a monitor that watches for a single table modification event type (insert, update, or delete) on a particular table (identified by table_name) and forwards event notifications to subscribers via ZMQ.
 
async System.Threading.Tasks.Task< CreateTableMonitorResponseCreateTableMonitorAsync (CreateTableMonitorRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a monitor that watches for a single table modification event type (insert, update, or delete) on a particular table (identified by table_name) and forwards event notifications to subscribers via ZMQ.
 
CreateTableMonitorResponse createTableMonitor (string table_name, IDictionary< string, string > options=null)
 Creates a monitor that watches for a single table modification event type (insert, update, or delete) on a particular table (identified by table_name ) and forwards event notifications to subscribers via ZMQ.
 
async System.Threading.Tasks.Task< CreateTableMonitorResponseCreateTableMonitorAsync (string table_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a monitor that watches for a single table modification event type (insert, update, or delete) on a particular table (identified by table_name ) and forwards event notifications to subscribers via ZMQ.
 
CreateTriggerByAreaResponse createTriggerByArea (CreateTriggerByAreaRequest request_)
 Sets up an area trigger mechanism for two column_names for one or more tables.
 
async System.Threading.Tasks.Task< CreateTriggerByAreaResponseCreateTriggerByAreaAsync (CreateTriggerByAreaRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Sets up an area trigger mechanism for two column_names for one or more tables.
 
CreateTriggerByAreaResponse createTriggerByArea (string request_id, IList< string > table_names, string x_column_name, IList< double > x_vector, string y_column_name, IList< double > y_vector, IDictionary< string, string > options=null)
 Sets up an area trigger mechanism for two column_names for one or more tables.
 
async System.Threading.Tasks.Task< CreateTriggerByAreaResponseCreateTriggerByAreaAsync (string request_id, IList< string > table_names, string x_column_name, IList< double > x_vector, string y_column_name, IList< double > y_vector, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Sets up an area trigger mechanism for two column_names for one or more tables.
 
CreateTriggerByRangeResponse createTriggerByRange (CreateTriggerByRangeRequest request_)
 Sets up a simple range trigger for a column_name for one or more tables.
 
async System.Threading.Tasks.Task< CreateTriggerByRangeResponseCreateTriggerByRangeAsync (CreateTriggerByRangeRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Sets up a simple range trigger for a column_name for one or more tables.
 
CreateTriggerByRangeResponse createTriggerByRange (string request_id, IList< string > table_names, string column_name, double min, double max, IDictionary< string, string > options=null)
 Sets up a simple range trigger for a column_name for one or more tables.
 
async System.Threading.Tasks.Task< CreateTriggerByRangeResponseCreateTriggerByRangeAsync (string request_id, IList< string > table_names, string column_name, double min, double max, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Sets up a simple range trigger for a column_name for one or more tables.
 
CreateTypeResponse createType (CreateTypeRequest request_)
 Creates a new type describing the columns of a table.
 
async System.Threading.Tasks.Task< CreateTypeResponseCreateTypeAsync (CreateTypeRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new type describing the columns of a table.
 
CreateTypeResponse createType (string type_definition, string label, IDictionary< string, IList< string > > properties=null, IDictionary< string, string > options=null)
 Creates a new type describing the columns of a table.
 
async System.Threading.Tasks.Task< CreateTypeResponseCreateTypeAsync (string type_definition, string label, IDictionary< string, IList< string > > properties=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new type describing the columns of a table.
 
CreateUnionResponse createUnion (CreateUnionRequest request_)
 Merges data from one or more tables with comparable data types into a new table.
 
async System.Threading.Tasks.Task< CreateUnionResponseCreateUnionAsync (CreateUnionRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Merges data from one or more tables with comparable data types into a new table.
 
CreateUnionResponse createUnion (string table_name, IList< string > table_names, IList< IList< string > > input_column_names, IList< string > output_column_names, IDictionary< string, string > options=null)
 Merges data from one or more tables with comparable data types into a new table.
 
async System.Threading.Tasks.Task< CreateUnionResponseCreateUnionAsync (string table_name, IList< string > table_names, IList< IList< string > > input_column_names, IList< string > output_column_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Merges data from one or more tables with comparable data types into a new table.
 
CreateUserExternalResponse createUserExternal (CreateUserExternalRequest request_)
 Creates a new external user (a user whose credentials are managed by an external LDAP).
 
async System.Threading.Tasks.Task< CreateUserExternalResponseCreateUserExternalAsync (CreateUserExternalRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new external user (a user whose credentials are managed by an external LDAP).
 
CreateUserExternalResponse createUserExternal (string name, IDictionary< string, string > options=null)
 Creates a new external user (a user whose credentials are managed by an external LDAP).
 
async System.Threading.Tasks.Task< CreateUserExternalResponseCreateUserExternalAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new external user (a user whose credentials are managed by an external LDAP).
 
CreateUserInternalResponse createUserInternal (CreateUserInternalRequest request_)
 Creates a new internal user (a user whose credentials are managed by the database system).
 
async System.Threading.Tasks.Task< CreateUserInternalResponseCreateUserInternalAsync (CreateUserInternalRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a new internal user (a user whose credentials are managed by the database system).
 
CreateUserInternalResponse createUserInternal (string name, string password, IDictionary< string, string > options=null)
 Creates a new internal user (a user whose credentials are managed by the database system).
 
async System.Threading.Tasks.Task< CreateUserInternalResponseCreateUserInternalAsync (string name, string password, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a new internal user (a user whose credentials are managed by the database system).
 
CreateVideoResponse createVideo (CreateVideoRequest request_)
 Creates a job to generate a sequence of raster images that visualize data over a specified time.
 
async System.Threading.Tasks.Task< CreateVideoResponseCreateVideoAsync (CreateVideoRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Creates a job to generate a sequence of raster images that visualize data over a specified time.
 
CreateVideoResponse createVideo (string attribute, string begin, double duration_seconds, string end, double frames_per_second, string style, string path, string style_parameters, IDictionary< string, string > options=null)
 Creates a job to generate a sequence of raster images that visualize data over a specified time.
 
async System.Threading.Tasks.Task< CreateVideoResponseCreateVideoAsync (string attribute, string begin, double duration_seconds, string end, double frames_per_second, string style, string path, string style_parameters, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Creates a job to generate a sequence of raster images that visualize data over a specified time.
 
DeleteDirectoryResponse deleteDirectory (DeleteDirectoryRequest request_)
 Deletes a directory from KiFS.
 
async System.Threading.Tasks.Task< DeleteDirectoryResponseDeleteDirectoryAsync (DeleteDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deletes a directory from KiFS.
 
DeleteDirectoryResponse deleteDirectory (string directory_name, IDictionary< string, string > options=null)
 Deletes a directory from KiFS.
 
async System.Threading.Tasks.Task< DeleteDirectoryResponseDeleteDirectoryAsync (string directory_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deletes a directory from KiFS.
 
DeleteFilesResponse deleteFiles (DeleteFilesRequest request_)
 Deletes one or more files from KiFS.
 
async System.Threading.Tasks.Task< DeleteFilesResponseDeleteFilesAsync (DeleteFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deletes one or more files from KiFS.
 
DeleteFilesResponse deleteFiles (IList< string > file_names, IDictionary< string, string > options=null)
 Deletes one or more files from KiFS.
 
async System.Threading.Tasks.Task< DeleteFilesResponseDeleteFilesAsync (IList< string > file_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deletes one or more files from KiFS.
 
DeleteGraphResponse deleteGraph (DeleteGraphRequest request_)
 Deletes an existing graph from the graph server and/or persist.
 
async System.Threading.Tasks.Task< DeleteGraphResponseDeleteGraphAsync (DeleteGraphRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deletes an existing graph from the graph server and/or persist.
 
DeleteGraphResponse deleteGraph (string graph_name, IDictionary< string, string > options=null)
 Deletes an existing graph from the graph server and/or persist.
 
async System.Threading.Tasks.Task< DeleteGraphResponseDeleteGraphAsync (string graph_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deletes an existing graph from the graph server and/or persist.
 
DeleteProcResponse deleteProc (DeleteProcRequest request_)
 Deletes a proc.
 
async System.Threading.Tasks.Task< DeleteProcResponseDeleteProcAsync (DeleteProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deletes a proc.
 
DeleteProcResponse deleteProc (string proc_name, IDictionary< string, string > options=null)
 Deletes a proc.
 
async System.Threading.Tasks.Task< DeleteProcResponseDeleteProcAsync (string proc_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deletes a proc.
 
DeleteRecordsResponse deleteRecords (DeleteRecordsRequest request_)
 Deletes record(s) matching the provided criteria from the given table.
 
async System.Threading.Tasks.Task< DeleteRecordsResponseDeleteRecordsAsync (DeleteRecordsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deletes record(s) matching the provided criteria from the given table.
 
DeleteRecordsResponse deleteRecords (string table_name, IList< string > expressions, IDictionary< string, string > options=null)
 Deletes record(s) matching the provided criteria from the given table.
 
async System.Threading.Tasks.Task< DeleteRecordsResponseDeleteRecordsAsync (string table_name, IList< string > expressions, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deletes record(s) matching the provided criteria from the given table.
 
DeleteResourceGroupResponse deleteResourceGroup (DeleteResourceGroupRequest request_)
 Deletes a resource group.
 
async System.Threading.Tasks.Task< DeleteResourceGroupResponseDeleteResourceGroupAsync (DeleteResourceGroupRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deletes a resource group.
 
DeleteResourceGroupResponse deleteResourceGroup (string name, IDictionary< string, string > options=null)
 Deletes a resource group.
 
async System.Threading.Tasks.Task< DeleteResourceGroupResponseDeleteResourceGroupAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deletes a resource group.
 
DeleteRoleResponse deleteRole (DeleteRoleRequest request_)
 Deletes an existing role.
 
async System.Threading.Tasks.Task< DeleteRoleResponseDeleteRoleAsync (DeleteRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deletes an existing role.
 
DeleteRoleResponse deleteRole (string name, IDictionary< string, string > options=null)
 Deletes an existing role.
 
async System.Threading.Tasks.Task< DeleteRoleResponseDeleteRoleAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deletes an existing role.
 
DeleteUserResponse deleteUser (DeleteUserRequest request_)
 Deletes an existing user.
 
async System.Threading.Tasks.Task< DeleteUserResponseDeleteUserAsync (DeleteUserRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deletes an existing user.
 
DeleteUserResponse deleteUser (string name, IDictionary< string, string > options=null)
 Deletes an existing user.
 
async System.Threading.Tasks.Task< DeleteUserResponseDeleteUserAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deletes an existing user.
 
DownloadFilesResponse downloadFiles (DownloadFilesRequest request_)
 Downloads one or more files from KiFS.
 
async System.Threading.Tasks.Task< DownloadFilesResponseDownloadFilesAsync (DownloadFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Downloads one or more files from KiFS.
 
DownloadFilesResponse downloadFiles (IList< string > file_names, IList< long > read_offsets, IList< long > read_lengths, IDictionary< string, string > options=null)
 Downloads one or more files from KiFS.
 
async System.Threading.Tasks.Task< DownloadFilesResponseDownloadFilesAsync (IList< string > file_names, IList< long > read_offsets, IList< long > read_lengths, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Downloads one or more files from KiFS.
 
DropBackupResponse dropBackup (DropBackupRequest request_)
 Deletes one or more existing database backups and contained snapshots, accessible via the data sink specified by datasink_name.
 
async System.Threading.Tasks.Task< DropBackupResponseDropBackupAsync (DropBackupRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Deletes one or more existing database backups and contained snapshots, accessible via the data sink specified by datasink_name.
 
DropBackupResponse dropBackup (string backup_name, string datasink_name, IDictionary< string, string > options=null)
 Deletes one or more existing database backups and contained snapshots, accessible via the data sink specified by datasink_name .
 
async System.Threading.Tasks.Task< DropBackupResponseDropBackupAsync (string backup_name, string datasink_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Deletes one or more existing database backups and contained snapshots, accessible via the data sink specified by datasink_name .
 
DropCatalogResponse dropCatalog (DropCatalogRequest request_)
 Drops an existing catalog.
 
async System.Threading.Tasks.Task< DropCatalogResponseDropCatalogAsync (DropCatalogRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Drops an existing catalog.
 
DropCatalogResponse dropCatalog (string name, IDictionary< string, string > options=null)
 Drops an existing catalog.
 
async System.Threading.Tasks.Task< DropCatalogResponseDropCatalogAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Drops an existing catalog.
 
DropCredentialResponse dropCredential (DropCredentialRequest request_)
 Drop an existing credential.
 
async System.Threading.Tasks.Task< DropCredentialResponseDropCredentialAsync (DropCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Drop an existing credential.
 
DropCredentialResponse dropCredential (string credential_name, IDictionary< string, string > options=null)
 Drop an existing credential.
 
async System.Threading.Tasks.Task< DropCredentialResponseDropCredentialAsync (string credential_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Drop an existing credential.
 
DropDatasinkResponse dropDatasink (DropDatasinkRequest request_)
 Drops an existing data sink.
 
async System.Threading.Tasks.Task< DropDatasinkResponseDropDatasinkAsync (DropDatasinkRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Drops an existing data sink.
 
DropDatasinkResponse dropDatasink (string name, IDictionary< string, string > options=null)
 Drops an existing data sink.
 
async System.Threading.Tasks.Task< DropDatasinkResponseDropDatasinkAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Drops an existing data sink.
 
DropDatasourceResponse dropDatasource (DropDatasourceRequest request_)
 Drops an existing data source.
 
async System.Threading.Tasks.Task< DropDatasourceResponseDropDatasourceAsync (DropDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Drops an existing data source.
 
DropDatasourceResponse dropDatasource (string name, IDictionary< string, string > options=null)
 Drops an existing data source.
 
async System.Threading.Tasks.Task< DropDatasourceResponseDropDatasourceAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Drops an existing data source.
 
DropEnvironmentResponse dropEnvironment (DropEnvironmentRequest request_)
 Drop an existing user-defined function (UDF) environment.
 
async System.Threading.Tasks.Task< DropEnvironmentResponseDropEnvironmentAsync (DropEnvironmentRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Drop an existing user-defined function (UDF) environment.
 
DropEnvironmentResponse dropEnvironment (string environment_name, IDictionary< string, string > options=null)
 Drop an existing user-defined function (UDF) environment.
 
async System.Threading.Tasks.Task< DropEnvironmentResponseDropEnvironmentAsync (string environment_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Drop an existing user-defined function (UDF) environment.
 
DropSchemaResponse dropSchema (DropSchemaRequest request_)
 Drops an existing SQL-style schema, specified in schema_name.
 
async System.Threading.Tasks.Task< DropSchemaResponseDropSchemaAsync (DropSchemaRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Drops an existing SQL-style schema, specified in schema_name.
 
DropSchemaResponse dropSchema (string schema_name, IDictionary< string, string > options=null)
 Drops an existing SQL-style schema, specified in schema_name .
 
async System.Threading.Tasks.Task< DropSchemaResponseDropSchemaAsync (string schema_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Drops an existing SQL-style schema, specified in schema_name .
 
ExecuteProcResponse executeProc (ExecuteProcRequest request_)
 Executes a proc.
 
async System.Threading.Tasks.Task< ExecuteProcResponseExecuteProcAsync (ExecuteProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Executes a proc.
 
ExecuteProcResponse executeProc (string proc_name, IDictionary< string, string > _params=null, IDictionary< string, byte[]> bin_params=null, IList< string > input_table_names=null, IDictionary< string, IList< string > > input_column_names=null, IList< string > output_table_names=null, IDictionary< string, string > options=null)
 Executes a proc.
 
async System.Threading.Tasks.Task< ExecuteProcResponseExecuteProcAsync (string proc_name, IDictionary< string, string > _params=null, IDictionary< string, byte[]> bin_params=null, IList< string > input_table_names=null, IDictionary< string, IList< string > > input_column_names=null, IList< string > output_table_names=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Executes a proc.
 
ExecuteSqlResponse executeSql (ExecuteSqlRequest request_)
 Execute a SQL statement (query, DML, or DDL).
 
async System.Threading.Tasks.Task< ExecuteSqlResponseExecuteSqlAsync (ExecuteSqlRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Execute a SQL statement (query, DML, or DDL).
 
ExecuteSqlResponse executeSql (string statement, long offset=0, long limit=-9999, string request_schema_str="", IList< byte[]> data=null, IDictionary< string, string > options=null)
 Execute a SQL statement (query, DML, or DDL).
 
async System.Threading.Tasks.Task< ExecuteSqlResponseExecuteSqlAsync (string statement, long offset=0, long limit=-9999, string request_schema_str="", IList< byte[]> data=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Execute a SQL statement (query, DML, or DDL).
 
ExportQueryMetricsResponse exportQueryMetrics (ExportQueryMetricsRequest request_)
 Export query metrics to a given destination.Returns query metrics.
 
async System.Threading.Tasks.Task< ExportQueryMetricsResponseExportQueryMetricsAsync (ExportQueryMetricsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Export query metrics to a given destination.Returns query metrics.
 
ExportQueryMetricsResponse exportQueryMetrics (IDictionary< string, string > options=null)
 Export query metrics to a given destination.Returns query metrics.
 
async System.Threading.Tasks.Task< ExportQueryMetricsResponseExportQueryMetricsAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Export query metrics to a given destination.Returns query metrics.
 
ExportRecordsToFilesResponse exportRecordsToFiles (ExportRecordsToFilesRequest request_)
 Export records from a table to files.
 
async System.Threading.Tasks.Task< ExportRecordsToFilesResponseExportRecordsToFilesAsync (ExportRecordsToFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Export records from a table to files.
 
ExportRecordsToFilesResponse exportRecordsToFiles (string table_name, string filepath, IDictionary< string, string > options=null)
 Export records from a table to files.
 
async System.Threading.Tasks.Task< ExportRecordsToFilesResponseExportRecordsToFilesAsync (string table_name, string filepath, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Export records from a table to files.
 
ExportRecordsToTableResponse exportRecordsToTable (ExportRecordsToTableRequest request_)
 Exports records from source table to the specified target table in an external database.
 
async System.Threading.Tasks.Task< ExportRecordsToTableResponseExportRecordsToTableAsync (ExportRecordsToTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Exports records from source table to the specified target table in an external database.
 
ExportRecordsToTableResponse exportRecordsToTable (string table_name, string remote_query="", IDictionary< string, string > options=null)
 Exports records from source table to the specified target table in an external database.
 
async System.Threading.Tasks.Task< ExportRecordsToTableResponseExportRecordsToTableAsync (string table_name, string remote_query="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Exports records from source table to the specified target table in an external database.
 
FilterResponse filter (FilterRequest request_)
 Filters data based on the specified expression.
 
async System.Threading.Tasks.Task< FilterResponseFilterAsync (FilterRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Filters data based on the specified expression.
 
FilterResponse filter (string table_name, string view_name, string expression, IDictionary< string, string > options=null)
 Filters data based on the specified expression.
 
async System.Threading.Tasks.Task< FilterResponseFilterAsync (string table_name, string view_name, string expression, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Filters data based on the specified expression.
 
FilterByAreaResponse filterByArea (FilterByAreaRequest request_)
 Calculates which objects from a table are within a named area of interest (NAI/polygon).
 
async System.Threading.Tasks.Task< FilterByAreaResponseFilterByAreaAsync (FilterByAreaRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table are within a named area of interest (NAI/polygon).
 
FilterByAreaResponse filterByArea (string table_name, string view_name, string x_column_name, IList< double > x_vector, string y_column_name, IList< double > y_vector, IDictionary< string, string > options=null)
 Calculates which objects from a table are within a named area of interest (NAI/polygon).
 
async System.Threading.Tasks.Task< FilterByAreaResponseFilterByAreaAsync (string table_name, string view_name, string x_column_name, IList< double > x_vector, string y_column_name, IList< double > y_vector, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table are within a named area of interest (NAI/polygon).
 
FilterByAreaGeometryResponse filterByAreaGeometry (FilterByAreaGeometryRequest request_)
 Calculates which geospatial geometry objects from a table intersect a named area of interest (NAI/polygon).
 
async System.Threading.Tasks.Task< FilterByAreaGeometryResponseFilterByAreaGeometryAsync (FilterByAreaGeometryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates which geospatial geometry objects from a table intersect a named area of interest (NAI/polygon).
 
FilterByAreaGeometryResponse filterByAreaGeometry (string table_name, string view_name, string column_name, IList< double > x_vector, IList< double > y_vector, IDictionary< string, string > options=null)
 Calculates which geospatial geometry objects from a table intersect a named area of interest (NAI/polygon).
 
async System.Threading.Tasks.Task< FilterByAreaGeometryResponseFilterByAreaGeometryAsync (string table_name, string view_name, string column_name, IList< double > x_vector, IList< double > y_vector, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates which geospatial geometry objects from a table intersect a named area of interest (NAI/polygon).
 
FilterByBoxResponse filterByBox (FilterByBoxRequest request_)
 Calculates how many objects within the given table lie in a rectangular box.
 
async System.Threading.Tasks.Task< FilterByBoxResponseFilterByBoxAsync (FilterByBoxRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates how many objects within the given table lie in a rectangular box.
 
FilterByBoxResponse filterByBox (string table_name, string view_name, string x_column_name, double min_x, double max_x, string y_column_name, double min_y, double max_y, IDictionary< string, string > options=null)
 Calculates how many objects within the given table lie in a rectangular box.
 
async System.Threading.Tasks.Task< FilterByBoxResponseFilterByBoxAsync (string table_name, string view_name, string x_column_name, double min_x, double max_x, string y_column_name, double min_y, double max_y, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates how many objects within the given table lie in a rectangular box.
 
FilterByBoxGeometryResponse filterByBoxGeometry (FilterByBoxGeometryRequest request_)
 Calculates which geospatial geometry objects from a table intersect a rectangular box.
 
async System.Threading.Tasks.Task< FilterByBoxGeometryResponseFilterByBoxGeometryAsync (FilterByBoxGeometryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates which geospatial geometry objects from a table intersect a rectangular box.
 
FilterByBoxGeometryResponse filterByBoxGeometry (string table_name, string view_name, string column_name, double min_x, double max_x, double min_y, double max_y, IDictionary< string, string > options=null)
 Calculates which geospatial geometry objects from a table intersect a rectangular box.
 
async System.Threading.Tasks.Task< FilterByBoxGeometryResponseFilterByBoxGeometryAsync (string table_name, string view_name, string column_name, double min_x, double max_x, double min_y, double max_y, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates which geospatial geometry objects from a table intersect a rectangular box.
 
FilterByGeometryResponse filterByGeometry (FilterByGeometryRequest request_)
 Applies a geometry filter against a geospatial geometry column in a given table or view.
 
async System.Threading.Tasks.Task< FilterByGeometryResponseFilterByGeometryAsync (FilterByGeometryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Applies a geometry filter against a geospatial geometry column in a given table or view.
 
FilterByGeometryResponse filterByGeometry (string table_name, string view_name, string column_name, string input_wkt, string operation, IDictionary< string, string > options=null)
 Applies a geometry filter against a geospatial geometry column in a given table or view.
 
async System.Threading.Tasks.Task< FilterByGeometryResponseFilterByGeometryAsync (string table_name, string view_name, string column_name, string input_wkt, string operation, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Applies a geometry filter against a geospatial geometry column in a given table or view.
 
FilterByListResponse filterByList (FilterByListRequest request_)
 Calculates which records from a table have values in the given list for the corresponding column.
 
async System.Threading.Tasks.Task< FilterByListResponseFilterByListAsync (FilterByListRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates which records from a table have values in the given list for the corresponding column.
 
FilterByListResponse filterByList (string table_name, string view_name, IDictionary< string, IList< string > > column_values_map, IDictionary< string, string > options=null)
 Calculates which records from a table have values in the given list for the corresponding column.
 
async System.Threading.Tasks.Task< FilterByListResponseFilterByListAsync (string table_name, string view_name, IDictionary< string, IList< string > > column_values_map, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates which records from a table have values in the given list for the corresponding column.
 
FilterByRadiusResponse filterByRadius (FilterByRadiusRequest request_)
 Calculates which objects from a table lie within a circle with the given radius and center point (i.e.
 
async System.Threading.Tasks.Task< FilterByRadiusResponseFilterByRadiusAsync (FilterByRadiusRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table lie within a circle with the given radius and center point (i.e.
 
FilterByRadiusResponse filterByRadius (string table_name, string view_name, string x_column_name, double x_center, string y_column_name, double y_center, double radius, IDictionary< string, string > options=null)
 Calculates which objects from a table lie within a circle with the given radius and center point (i.e.
 
async System.Threading.Tasks.Task< FilterByRadiusResponseFilterByRadiusAsync (string table_name, string view_name, string x_column_name, double x_center, string y_column_name, double y_center, double radius, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table lie within a circle with the given radius and center point (i.e.
 
FilterByRadiusGeometryResponse filterByRadiusGeometry (FilterByRadiusGeometryRequest request_)
 Calculates which geospatial geometry objects from a table intersect a circle with the given radius and center point (i.e.
 
async System.Threading.Tasks.Task< FilterByRadiusGeometryResponseFilterByRadiusGeometryAsync (FilterByRadiusGeometryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates which geospatial geometry objects from a table intersect a circle with the given radius and center point (i.e.
 
FilterByRadiusGeometryResponse filterByRadiusGeometry (string table_name, string view_name, string column_name, double x_center, double y_center, double radius, IDictionary< string, string > options=null)
 Calculates which geospatial geometry objects from a table intersect a circle with the given radius and center point (i.e.
 
async System.Threading.Tasks.Task< FilterByRadiusGeometryResponseFilterByRadiusGeometryAsync (string table_name, string view_name, string column_name, double x_center, double y_center, double radius, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates which geospatial geometry objects from a table intersect a circle with the given radius and center point (i.e.
 
FilterByRangeResponse filterByRange (FilterByRangeRequest request_)
 Calculates which objects from a table have a column that is within the given bounds.
 
async System.Threading.Tasks.Task< FilterByRangeResponseFilterByRangeAsync (FilterByRangeRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table have a column that is within the given bounds.
 
FilterByRangeResponse filterByRange (string table_name, string view_name, string column_name, double lower_bound, double upper_bound, IDictionary< string, string > options=null)
 Calculates which objects from a table have a column that is within the given bounds.
 
async System.Threading.Tasks.Task< FilterByRangeResponseFilterByRangeAsync (string table_name, string view_name, string column_name, double lower_bound, double upper_bound, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table have a column that is within the given bounds.
 
FilterBySeriesResponse filterBySeries (FilterBySeriesRequest request_)
 Filters objects matching all points of the given track (works only on track type data).
 
async System.Threading.Tasks.Task< FilterBySeriesResponseFilterBySeriesAsync (FilterBySeriesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Filters objects matching all points of the given track (works only on track type data).
 
FilterBySeriesResponse filterBySeries (string table_name, string view_name, string track_id, IList< string > target_track_ids, IDictionary< string, string > options=null)
 Filters objects matching all points of the given track (works only on track type data).
 
async System.Threading.Tasks.Task< FilterBySeriesResponseFilterBySeriesAsync (string table_name, string view_name, string track_id, IList< string > target_track_ids, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Filters objects matching all points of the given track (works only on track type data).
 
FilterByStringResponse filterByString (FilterByStringRequest request_)
 Calculates which objects from a table or view match a string expression for the given string columns.
 
async System.Threading.Tasks.Task< FilterByStringResponseFilterByStringAsync (FilterByStringRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table or view match a string expression for the given string columns.
 
FilterByStringResponse filterByString (string table_name, string view_name, string expression, string mode, IList< string > column_names, IDictionary< string, string > options=null)
 Calculates which objects from a table or view match a string expression for the given string columns.
 
async System.Threading.Tasks.Task< FilterByStringResponseFilterByStringAsync (string table_name, string view_name, string expression, string mode, IList< string > column_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table or view match a string expression for the given string columns.
 
FilterByTableResponse filterByTable (FilterByTableRequest request_)
 Filters objects in one table based on objects in another table.
 
async System.Threading.Tasks.Task< FilterByTableResponseFilterByTableAsync (FilterByTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Filters objects in one table based on objects in another table.
 
FilterByTableResponse filterByTable (string table_name, string view_name, string column_name, string source_table_name, string source_table_column_name, IDictionary< string, string > options=null)
 Filters objects in one table based on objects in another table.
 
async System.Threading.Tasks.Task< FilterByTableResponseFilterByTableAsync (string table_name, string view_name, string column_name, string source_table_name, string source_table_column_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Filters objects in one table based on objects in another table.
 
FilterByValueResponse filterByValue (FilterByValueRequest request_)
 Calculates which objects from a table has a particular value for a particular column.
 
async System.Threading.Tasks.Task< FilterByValueResponseFilterByValueAsync (FilterByValueRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table has a particular value for a particular column.
 
FilterByValueResponse filterByValue (string table_name, string view_name, bool is_string, double _value, string value_str, string column_name, IDictionary< string, string > options=null)
 Calculates which objects from a table has a particular value for a particular column.
 
async System.Threading.Tasks.Task< FilterByValueResponseFilterByValueAsync (string table_name, string view_name, bool is_string, double _value, string value_str, string column_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Calculates which objects from a table has a particular value for a particular column.
 
GetGraphEntitiesResponse getGraphEntities (GetGraphEntitiesRequest request_)
 Retrieves node or edge entities from an existing graph, with pagination support via offset and limit.
 
async System.Threading.Tasks.Task< GetGraphEntitiesResponseGetGraphEntitiesAsync (GetGraphEntitiesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves node or edge entities from an existing graph, with pagination support via offset and limit.
 
GetGraphEntitiesResponse getGraphEntities (string graph_name, long offset=0, long limit=10000, IDictionary< string, string > options=null)
 Retrieves node or edge entities from an existing graph, with pagination support via offset and limit.
 
async System.Threading.Tasks.Task< GetGraphEntitiesResponseGetGraphEntitiesAsync (string graph_name, long offset=0, long limit=10000, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves node or edge entities from an existing graph, with pagination support via offset and limit.
 
GetJobResponse getJob (GetJobRequest request_)
 Get the status and result of asynchronously running job.
 
async System.Threading.Tasks.Task< GetJobResponseGetJobAsync (GetJobRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Get the status and result of asynchronously running job.
 
GetJobResponse getJob (long job_id, IDictionary< string, string > options=null)
 Get the status and result of asynchronously running job.
 
async System.Threading.Tasks.Task< GetJobResponseGetJobAsync (long job_id, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Get the status and result of asynchronously running job.
 
GetRecordsResponse< T > getRecords< T > (GetRecordsRequest request_)
 Retrieves records from a given table, optionally filtered by an expression and/or sorted by a column.
 
async System.Threading.Tasks.Task< GetRecordsResponse< T > > GetRecordsAsync< T > (GetRecordsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves records from a given table, optionally filtered by an expression and/or sorted by a column.
 
GetRecordsResponse< T > getRecords< T > (string table_name, long offset=0, long limit=-9999, IDictionary< string, string > options=null)
 Retrieves records from a given table, optionally filtered by an expression and/or sorted by a column.
 
async System.Threading.Tasks.Task< GetRecordsResponse< T > > GetRecordsAsync< T > (string table_name, long offset=0, long limit=-9999, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves records from a given table, optionally filtered by an expression and/or sorted by a column.
 
GetRecordsByColumnResponse getRecordsByColumn (GetRecordsByColumnRequest request_)
 For a given table, retrieves the values from the requested column(s).
 
async System.Threading.Tasks.Task< GetRecordsByColumnResponseGetRecordsByColumnAsync (GetRecordsByColumnRequest request_, System.Threading.CancellationToken cancellationToken=default)
 For a given table, retrieves the values from the requested column(s).
 
GetRecordsByColumnResponse getRecordsByColumn (string table_name, IList< string > column_names, long offset=0, long limit=-9999, IDictionary< string, string > options=null)
 For a given table, retrieves the values from the requested column(s).
 
async System.Threading.Tasks.Task< GetRecordsByColumnResponseGetRecordsByColumnAsync (string table_name, IList< string > column_names, long offset=0, long limit=-9999, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 For a given table, retrieves the values from the requested column(s).
 
GetRecordsBySeriesResponse< T > getRecordsBySeries< T > (GetRecordsBySeriesRequest request_)
 Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name.
 
async System.Threading.Tasks.Task< GetRecordsBySeriesResponse< T > > GetRecordsBySeriesAsync< T > (GetRecordsBySeriesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name.
 
GetRecordsBySeriesResponse< T > getRecordsBySeries< T > (string table_name, string world_table_name, int offset=0, int limit=250, IDictionary< string, string > options=null)
 Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name .
 
async System.Threading.Tasks.Task< GetRecordsBySeriesResponse< T > > GetRecordsBySeriesAsync< T > (string table_name, string world_table_name, int offset=0, int limit=250, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name .
 
GetRecordsFromCollectionResponse< T > getRecordsFromCollection< T > (GetRecordsFromCollectionRequest request_)
 Retrieves records from a collection.
 
async System.Threading.Tasks.Task< GetRecordsFromCollectionResponse< T > > GetRecordsFromCollectionAsync< T > (GetRecordsFromCollectionRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves records from a collection.
 
GetRecordsFromCollectionResponse< T > getRecordsFromCollection< T > (string table_name, long offset=0, long limit=-9999, IDictionary< string, string > options=null)
 Retrieves records from a collection.
 
async System.Threading.Tasks.Task< GetRecordsFromCollectionResponse< T > > GetRecordsFromCollectionAsync< T > (string table_name, long offset=0, long limit=-9999, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves records from a collection.
 
GrantPermissionResponse grantPermission (GrantPermissionRequest request_)
 Grant user or role the specified permission on the specified object.
 
async System.Threading.Tasks.Task< GrantPermissionResponseGrantPermissionAsync (GrantPermissionRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Grant user or role the specified permission on the specified object.
 
GrantPermissionResponse grantPermission (string principal, string _object, string object_type, string permission, IDictionary< string, string > options=null)
 Grant user or role the specified permission on the specified object.
 
async System.Threading.Tasks.Task< GrantPermissionResponseGrantPermissionAsync (string principal, string _object, string object_type, string permission, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Grant user or role the specified permission on the specified object.
 
GrantPermissionCredentialResponse grantPermissionCredential (GrantPermissionCredentialRequest request_)
 [DEPRECATED–please use grantPermission instead] Grants a credential-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionCredentialResponseGrantPermissionCredentialAsync (GrantPermissionCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a credential-level permission to a user or role.
 
GrantPermissionCredentialResponse grantPermissionCredential (string name, string permission, string credential_name, IDictionary< string, string > options=null)
 [DEPRECATED–please use grantPermission instead] Grants a credential-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionCredentialResponseGrantPermissionCredentialAsync (string name, string permission, string credential_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a credential-level permission to a user or role.
 
GrantPermissionDatasourceResponse grantPermissionDatasource (GrantPermissionDatasourceRequest request_)
 [DEPRECATED–please use grantPermission instead] Grants a data source permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionDatasourceResponseGrantPermissionDatasourceAsync (GrantPermissionDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a data source permission to a user or role.
 
GrantPermissionDatasourceResponse grantPermissionDatasource (string name, string permission, string datasource_name, IDictionary< string, string > options=null)
 [DEPRECATED–please use grantPermission instead] Grants a data source permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionDatasourceResponseGrantPermissionDatasourceAsync (string name, string permission, string datasource_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a data source permission to a user or role.
 
GrantPermissionDirectoryResponse grantPermissionDirectory (GrantPermissionDirectoryRequest request_)
 [DEPRECATED–please use grantPermission instead] Grants a KiFS directory-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionDirectoryResponseGrantPermissionDirectoryAsync (GrantPermissionDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a KiFS directory-level permission to a user or role.
 
GrantPermissionDirectoryResponse grantPermissionDirectory (string name, string permission, string directory_name, IDictionary< string, string > options=null)
 [DEPRECATED–please use grantPermission instead] Grants a KiFS directory-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionDirectoryResponseGrantPermissionDirectoryAsync (string name, string permission, string directory_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a KiFS directory-level permission to a user or role.
 
GrantPermissionProcResponse grantPermissionProc (GrantPermissionProcRequest request_)
 [DEPRECATED–please use grantPermission instead] Grants a proc-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionProcResponseGrantPermissionProcAsync (GrantPermissionProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a proc-level permission to a user or role.
 
GrantPermissionProcResponse grantPermissionProc (string name, string permission, string proc_name, IDictionary< string, string > options=null)
 [DEPRECATED–please use grantPermission instead] Grants a proc-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionProcResponseGrantPermissionProcAsync (string name, string permission, string proc_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a proc-level permission to a user or role.
 
GrantPermissionSystemResponse grantPermissionSystem (GrantPermissionSystemRequest request_)
 [DEPRECATED–please use grantPermission instead] Grants a system-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionSystemResponseGrantPermissionSystemAsync (GrantPermissionSystemRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a system-level permission to a user or role.
 
GrantPermissionSystemResponse grantPermissionSystem (string name, string permission, IDictionary< string, string > options=null)
 [DEPRECATED–please use grantPermission instead] Grants a system-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionSystemResponseGrantPermissionSystemAsync (string name, string permission, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a system-level permission to a user or role.
 
GrantPermissionTableResponse grantPermissionTable (GrantPermissionTableRequest request_)
 [DEPRECATED–please use grantPermission instead] Grants a table-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionTableResponseGrantPermissionTableAsync (GrantPermissionTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a table-level permission to a user or role.
 
GrantPermissionTableResponse grantPermissionTable (string name, string permission, string table_name, string filter_expression="", IDictionary< string, string > options=null)
 [DEPRECATED–please use grantPermission instead] Grants a table-level permission to a user or role.
 
async System.Threading.Tasks.Task< GrantPermissionTableResponseGrantPermissionTableAsync (string name, string permission, string table_name, string filter_expression="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use grantPermission instead] Grants a table-level permission to a user or role.
 
GrantRoleResponse grantRole (GrantRoleRequest request_)
 Grants membership in a role to a user or role.
 
async System.Threading.Tasks.Task< GrantRoleResponseGrantRoleAsync (GrantRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Grants membership in a role to a user or role.
 
GrantRoleResponse grantRole (string role, string member, IDictionary< string, string > options=null)
 Grants membership in a role to a user or role.
 
async System.Threading.Tasks.Task< GrantRoleResponseGrantRoleAsync (string role, string member, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Grants membership in a role to a user or role.
 
HasPermissionResponse hasPermission (HasPermissionRequest request_)
 Checks if the specified user has the specified permission on the specified object.
 
async System.Threading.Tasks.Task< HasPermissionResponseHasPermissionAsync (HasPermissionRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Checks if the specified user has the specified permission on the specified object.
 
HasPermissionResponse hasPermission (string principal, string _object, string object_type, string permission, IDictionary< string, string > options=null)
 Checks if the specified user has the specified permission on the specified object.
 
async System.Threading.Tasks.Task< HasPermissionResponseHasPermissionAsync (string principal, string _object, string object_type, string permission, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Checks if the specified user has the specified permission on the specified object.
 
HasProcResponse hasProc (HasProcRequest request_)
 Checks the existence of a proc with the given name.
 
async System.Threading.Tasks.Task< HasProcResponseHasProcAsync (HasProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Checks the existence of a proc with the given name.
 
HasProcResponse hasProc (string proc_name, IDictionary< string, string > options=null)
 Checks the existence of a proc with the given name.
 
async System.Threading.Tasks.Task< HasProcResponseHasProcAsync (string proc_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Checks the existence of a proc with the given name.
 
HasRoleResponse hasRole (HasRoleRequest request_)
 Checks if the specified user has the specified role.
 
async System.Threading.Tasks.Task< HasRoleResponseHasRoleAsync (HasRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Checks if the specified user has the specified role.
 
HasRoleResponse hasRole (string principal, string role, IDictionary< string, string > options=null)
 Checks if the specified user has the specified role.
 
async System.Threading.Tasks.Task< HasRoleResponseHasRoleAsync (string principal, string role, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Checks if the specified user has the specified role.
 
HasSchemaResponse hasSchema (HasSchemaRequest request_)
 Checks for the existence of a schema with the given name.
 
async System.Threading.Tasks.Task< HasSchemaResponseHasSchemaAsync (HasSchemaRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Checks for the existence of a schema with the given name.
 
HasSchemaResponse hasSchema (string schema_name, IDictionary< string, string > options=null)
 Checks for the existence of a schema with the given name.
 
async System.Threading.Tasks.Task< HasSchemaResponseHasSchemaAsync (string schema_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Checks for the existence of a schema with the given name.
 
HasTableResponse hasTable (HasTableRequest request_)
 Checks for the existence of a table with the given name.
 
async System.Threading.Tasks.Task< HasTableResponseHasTableAsync (HasTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Checks for the existence of a table with the given name.
 
HasTableResponse hasTable (string table_name, IDictionary< string, string > options=null)
 Checks for the existence of a table with the given name.
 
async System.Threading.Tasks.Task< HasTableResponseHasTableAsync (string table_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Checks for the existence of a table with the given name.
 
HasTypeResponse hasType (HasTypeRequest request_)
 Check for the existence of a type.
 
async System.Threading.Tasks.Task< HasTypeResponseHasTypeAsync (HasTypeRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Check for the existence of a type.
 
HasTypeResponse hasType (string type_id, IDictionary< string, string > options=null)
 Check for the existence of a type.
 
async System.Threading.Tasks.Task< HasTypeResponseHasTypeAsync (string type_id, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Check for the existence of a type.
 
InsertRecordsResponse insertRecordsRaw (RawInsertRecordsRequest request_)
 Adds multiple records to the specified table.
 
async System.Threading.Tasks.Task< InsertRecordsResponseInsertRecordsRawAsync (RawInsertRecordsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Adds multiple records to the specified table.
 
InsertRecordsResponse insertRecords< T > (InsertRecordsRequest< T > request_)
 Adds multiple records to the specified table.
 
async System.Threading.Tasks.Task< InsertRecordsResponseInsertRecordsAsync< T > (InsertRecordsRequest< T > request_, System.Threading.CancellationToken cancellationToken=default)
 Adds multiple records to the specified table.
 
InsertRecordsResponse insertRecords< T > (string table_name, IList< T > data, IDictionary< string, string > options=null)
 Adds multiple records to the specified table.
 
async System.Threading.Tasks.Task< InsertRecordsResponseInsertRecordsAsync< T > (string table_name, IList< T > data, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Adds multiple records to the specified table.
 
InsertRecordsFromFilesResponse insertRecordsFromFiles (InsertRecordsFromFilesRequest request_)
 Reads from one or more files and inserts the data into a new or existing table.
 
async System.Threading.Tasks.Task< InsertRecordsFromFilesResponseInsertRecordsFromFilesAsync (InsertRecordsFromFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Reads from one or more files and inserts the data into a new or existing table.
 
InsertRecordsFromFilesResponse insertRecordsFromFiles (string table_name, IList< string > filepaths, IDictionary< string, IDictionary< string, string > > modify_columns=null, IDictionary< string, string > create_table_options=null, IDictionary< string, string > options=null)
 Reads from one or more files and inserts the data into a new or existing table.
 
async System.Threading.Tasks.Task< InsertRecordsFromFilesResponseInsertRecordsFromFilesAsync (string table_name, IList< string > filepaths, IDictionary< string, IDictionary< string, string > > modify_columns=null, IDictionary< string, string > create_table_options=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Reads from one or more files and inserts the data into a new or existing table.
 
InsertRecordsFromPayloadResponse insertRecordsFromPayload (InsertRecordsFromPayloadRequest request_)
 Reads from the given text-based or binary payload and inserts the data into a new or existing table.
 
async System.Threading.Tasks.Task< InsertRecordsFromPayloadResponseInsertRecordsFromPayloadAsync (InsertRecordsFromPayloadRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Reads from the given text-based or binary payload and inserts the data into a new or existing table.
 
InsertRecordsFromPayloadResponse insertRecordsFromPayload (string table_name, string data_text, byte[] data_bytes, IDictionary< string, IDictionary< string, string > > modify_columns=null, IDictionary< string, string > create_table_options=null, IDictionary< string, string > options=null)
 Reads from the given text-based or binary payload and inserts the data into a new or existing table.
 
async System.Threading.Tasks.Task< InsertRecordsFromPayloadResponseInsertRecordsFromPayloadAsync (string table_name, string data_text, byte[] data_bytes, IDictionary< string, IDictionary< string, string > > modify_columns=null, IDictionary< string, string > create_table_options=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Reads from the given text-based or binary payload and inserts the data into a new or existing table.
 
InsertRecordsFromQueryResponse insertRecordsFromQuery (InsertRecordsFromQueryRequest request_)
 Computes remote query result and inserts the result data into a new or existing table.
 
async System.Threading.Tasks.Task< InsertRecordsFromQueryResponseInsertRecordsFromQueryAsync (InsertRecordsFromQueryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Computes remote query result and inserts the result data into a new or existing table.
 
InsertRecordsFromQueryResponse insertRecordsFromQuery (string table_name, string remote_query, IDictionary< string, IDictionary< string, string > > modify_columns=null, IDictionary< string, string > create_table_options=null, IDictionary< string, string > options=null)
 Computes remote query result and inserts the result data into a new or existing table.
 
async System.Threading.Tasks.Task< InsertRecordsFromQueryResponseInsertRecordsFromQueryAsync (string table_name, string remote_query, IDictionary< string, IDictionary< string, string > > modify_columns=null, IDictionary< string, string > create_table_options=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Computes remote query result and inserts the result data into a new or existing table.
 
InsertRecordsRandomResponse insertRecordsRandom (InsertRecordsRandomRequest request_)
 Generates a specified number of random records and adds them to the given table.
 
async System.Threading.Tasks.Task< InsertRecordsRandomResponseInsertRecordsRandomAsync (InsertRecordsRandomRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Generates a specified number of random records and adds them to the given table.
 
InsertRecordsRandomResponse insertRecordsRandom (string table_name, long count, IDictionary< string, IDictionary< string, double > > options=null)
 Generates a specified number of random records and adds them to the given table.
 
async System.Threading.Tasks.Task< InsertRecordsRandomResponseInsertRecordsRandomAsync (string table_name, long count, IDictionary< string, IDictionary< string, double > > options=null, System.Threading.CancellationToken cancellationToken=default)
 Generates a specified number of random records and adds them to the given table.
 
InsertSymbolResponse insertSymbol (InsertSymbolRequest request_)
 Adds a symbol or icon (i.e.
 
async System.Threading.Tasks.Task< InsertSymbolResponseInsertSymbolAsync (InsertSymbolRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Adds a symbol or icon (i.e.
 
InsertSymbolResponse insertSymbol (string symbol_id, string symbol_format, byte[] symbol_data, IDictionary< string, string > options=null)
 Adds a symbol or icon (i.e.
 
async System.Threading.Tasks.Task< InsertSymbolResponseInsertSymbolAsync (string symbol_id, string symbol_format, byte[] symbol_data, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Adds a symbol or icon (i.e.
 
KillProcResponse killProc (KillProcRequest request_)
 Kills a running proc instance.
 
async System.Threading.Tasks.Task< KillProcResponseKillProcAsync (KillProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Kills a running proc instance.
 
KillProcResponse killProc (string run_id="", IDictionary< string, string > options=null)
 Kills a running proc instance.
 
async System.Threading.Tasks.Task< KillProcResponseKillProcAsync (string run_id="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Kills a running proc instance.
 
LockTableResponse lockTable (LockTableRequest request_)
 Manages global access to a table’s data.
 
async System.Threading.Tasks.Task< LockTableResponseLockTableAsync (LockTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Manages global access to a table’s data.
 
LockTableResponse lockTable (string table_name, string lock_type=LockTableRequest.LockType.STATUS, IDictionary< string, string > options=null)
 Manages global access to a table’s data.
 
async System.Threading.Tasks.Task< LockTableResponseLockTableAsync (string table_name, string lock_type=LockTableRequest.LockType.STATUS, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Manages global access to a table’s data.
 
MatchGraphResponse matchGraph (MatchGraphRequest request_)
 Matches a directed route implied by a given set of latitude/longitude points to an existing underlying road network graph using a given solution type.
 
async System.Threading.Tasks.Task< MatchGraphResponseMatchGraphAsync (MatchGraphRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Matches a directed route implied by a given set of latitude/longitude points to an existing underlying road network graph using a given solution type.
 
MatchGraphResponse matchGraph (string graph_name, IList< string > sample_points, string solve_method=MatchGraphRequest.SolveMethod.MARKOV_CHAIN, string solution_table="", IDictionary< string, string > options=null)
 Matches a directed route implied by a given set of latitude/longitude points to an existing underlying road network graph using a given solution type.
 
async System.Threading.Tasks.Task< MatchGraphResponseMatchGraphAsync (string graph_name, IList< string > sample_points, string solve_method=MatchGraphRequest.SolveMethod.MARKOV_CHAIN, string solution_table="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Matches a directed route implied by a given set of latitude/longitude points to an existing underlying road network graph using a given solution type.
 
ModifyGraphResponse modifyGraph (ModifyGraphRequest request_)
 Update an existing graph network using given nodes, edges, weights, restrictions, and options.
 
async System.Threading.Tasks.Task< ModifyGraphResponseModifyGraphAsync (ModifyGraphRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Update an existing graph network using given nodes, edges, weights, restrictions, and options.
 
ModifyGraphResponse modifyGraph (string graph_name, IList< string > nodes, IList< string > edges, IList< string > weights, IList< string > restrictions, IDictionary< string, string > options=null)
 Update an existing graph network using given nodes, edges, weights, restrictions, and options.
 
async System.Threading.Tasks.Task< ModifyGraphResponseModifyGraphAsync (string graph_name, IList< string > nodes, IList< string > edges, IList< string > weights, IList< string > restrictions, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Update an existing graph network using given nodes, edges, weights, restrictions, and options.
 
QueryGraphResponse queryGraph (QueryGraphRequest request_)
 Employs a topological query on a graph generated a-priori by createGraph and returns a list of adjacent edge(s) or node(s), also known as an adjacency list, depending on what’s been provided to the endpoint; providing edges will return nodes and providing nodes will return edges.
 
async System.Threading.Tasks.Task< QueryGraphResponseQueryGraphAsync (QueryGraphRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Employs a topological query on a graph generated a-priori by createGraph and returns a list of adjacent edge(s) or node(s), also known as an adjacency list, depending on what’s been provided to the endpoint; providing edges will return nodes and providing nodes will return edges.
 
QueryGraphResponse queryGraph (string graph_name, IList< string > queries, IList< string > restrictions=null, string adjacency_table="", int rings=1, IDictionary< string, string > options=null)
 Employs a topological query on a graph generated a-priori by createGraph and returns a list of adjacent edge(s) or node(s), also known as an adjacency list, depending on what’s been provided to the endpoint; providing edges will return nodes and providing nodes will return edges.
 
async System.Threading.Tasks.Task< QueryGraphResponseQueryGraphAsync (string graph_name, IList< string > queries, IList< string > restrictions=null, string adjacency_table="", int rings=1, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Employs a topological query on a graph generated a-priori by createGraph and returns a list of adjacent edge(s) or node(s), also known as an adjacency list, depending on what’s been provided to the endpoint; providing edges will return nodes and providing nodes will return edges.
 
RepartitionGraphResponse repartitionGraph (RepartitionGraphRequest request_)
 Rebalances an existing partitioned graph.
 
async System.Threading.Tasks.Task< RepartitionGraphResponseRepartitionGraphAsync (RepartitionGraphRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Rebalances an existing partitioned graph.
 
RepartitionGraphResponse repartitionGraph (string graph_name, IDictionary< string, string > options=null)
 Rebalances an existing partitioned graph.
 
async System.Threading.Tasks.Task< RepartitionGraphResponseRepartitionGraphAsync (string graph_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Rebalances an existing partitioned graph.
 
RestoreBackupResponse restoreBackup (RestoreBackupRequest request_)
 Restores database objects from a backup accessible via the data source specified by datasource_name.
 
async System.Threading.Tasks.Task< RestoreBackupResponseRestoreBackupAsync (RestoreBackupRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Restores database objects from a backup accessible via the data source specified by datasource_name.
 
RestoreBackupResponse restoreBackup (string backup_name, IDictionary< string, string > restore_objects_map, string datasource_name, IDictionary< string, string > options=null)
 Restores database objects from a backup accessible via the data source specified by datasource_name .
 
async System.Threading.Tasks.Task< RestoreBackupResponseRestoreBackupAsync (string backup_name, IDictionary< string, string > restore_objects_map, string datasource_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Restores database objects from a backup accessible via the data source specified by datasource_name .
 
RevokePermissionResponse revokePermission (RevokePermissionRequest request_)
 Revoke user or role the specified permission on the specified object.
 
async System.Threading.Tasks.Task< RevokePermissionResponseRevokePermissionAsync (RevokePermissionRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Revoke user or role the specified permission on the specified object.
 
RevokePermissionResponse revokePermission (string principal, string _object, string object_type, string permission, IDictionary< string, string > options=null)
 Revoke user or role the specified permission on the specified object.
 
async System.Threading.Tasks.Task< RevokePermissionResponseRevokePermissionAsync (string principal, string _object, string object_type, string permission, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Revoke user or role the specified permission on the specified object.
 
RevokePermissionCredentialResponse revokePermissionCredential (RevokePermissionCredentialRequest request_)
 [DEPRECATED–please use revokePermission instead] Revokes a credential-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionCredentialResponseRevokePermissionCredentialAsync (RevokePermissionCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a credential-level permission from a user or role.
 
RevokePermissionCredentialResponse revokePermissionCredential (string name, string permission, string credential_name, IDictionary< string, string > options=null)
 [DEPRECATED–please use revokePermission instead] Revokes a credential-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionCredentialResponseRevokePermissionCredentialAsync (string name, string permission, string credential_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a credential-level permission from a user or role.
 
RevokePermissionDatasourceResponse revokePermissionDatasource (RevokePermissionDatasourceRequest request_)
 [DEPRECATED–please use revokePermission instead] Revokes a data source permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionDatasourceResponseRevokePermissionDatasourceAsync (RevokePermissionDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a data source permission from a user or role.
 
RevokePermissionDatasourceResponse revokePermissionDatasource (string name, string permission, string datasource_name, IDictionary< string, string > options=null)
 [DEPRECATED–please use revokePermission instead] Revokes a data source permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionDatasourceResponseRevokePermissionDatasourceAsync (string name, string permission, string datasource_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a data source permission from a user or role.
 
RevokePermissionDirectoryResponse revokePermissionDirectory (RevokePermissionDirectoryRequest request_)
 [DEPRECATED–please use revokePermission instead] Revokes a KiFS directory-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionDirectoryResponseRevokePermissionDirectoryAsync (RevokePermissionDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a KiFS directory-level permission from a user or role.
 
RevokePermissionDirectoryResponse revokePermissionDirectory (string name, string permission, string directory_name, IDictionary< string, string > options=null)
 [DEPRECATED–please use revokePermission instead] Revokes a KiFS directory-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionDirectoryResponseRevokePermissionDirectoryAsync (string name, string permission, string directory_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a KiFS directory-level permission from a user or role.
 
RevokePermissionProcResponse revokePermissionProc (RevokePermissionProcRequest request_)
 [DEPRECATED–please use revokePermission instead] Revokes a proc-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionProcResponseRevokePermissionProcAsync (RevokePermissionProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a proc-level permission from a user or role.
 
RevokePermissionProcResponse revokePermissionProc (string name, string permission, string proc_name, IDictionary< string, string > options=null)
 [DEPRECATED–please use revokePermission instead] Revokes a proc-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionProcResponseRevokePermissionProcAsync (string name, string permission, string proc_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a proc-level permission from a user or role.
 
RevokePermissionSystemResponse revokePermissionSystem (RevokePermissionSystemRequest request_)
 [DEPRECATED–please use revokePermission instead] Revokes a system-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionSystemResponseRevokePermissionSystemAsync (RevokePermissionSystemRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a system-level permission from a user or role.
 
RevokePermissionSystemResponse revokePermissionSystem (string name, string permission, IDictionary< string, string > options=null)
 [DEPRECATED–please use revokePermission instead] Revokes a system-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionSystemResponseRevokePermissionSystemAsync (string name, string permission, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a system-level permission from a user or role.
 
RevokePermissionTableResponse revokePermissionTable (RevokePermissionTableRequest request_)
 [DEPRECATED–please use revokePermission instead] Revokes a table-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionTableResponseRevokePermissionTableAsync (RevokePermissionTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a table-level permission from a user or role.
 
RevokePermissionTableResponse revokePermissionTable (string name, string permission, string table_name, IDictionary< string, string > options=null)
 [DEPRECATED–please use revokePermission instead] Revokes a table-level permission from a user or role.
 
async System.Threading.Tasks.Task< RevokePermissionTableResponseRevokePermissionTableAsync (string name, string permission, string table_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 [DEPRECATED–please use revokePermission instead] Revokes a table-level permission from a user or role.
 
RevokeRoleResponse revokeRole (RevokeRoleRequest request_)
 Revokes membership in a role from a user or role.
 
async System.Threading.Tasks.Task< RevokeRoleResponseRevokeRoleAsync (RevokeRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Revokes membership in a role from a user or role.
 
RevokeRoleResponse revokeRole (string role, string member, IDictionary< string, string > options=null)
 Revokes membership in a role from a user or role.
 
async System.Threading.Tasks.Task< RevokeRoleResponseRevokeRoleAsync (string role, string member, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Revokes membership in a role from a user or role.
 
ShowBackupResponse showBackup (ShowBackupRequest request_)
 Shows information about one or more backups accessible via the data source specified by datasource_name.
 
async System.Threading.Tasks.Task< ShowBackupResponseShowBackupAsync (ShowBackupRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information about one or more backups accessible via the data source specified by datasource_name.
 
ShowBackupResponse showBackup (string backup_name, string datasource_name, IDictionary< string, string > options=null)
 Shows information about one or more backups accessible via the data source specified by datasource_name .
 
async System.Threading.Tasks.Task< ShowBackupResponseShowBackupAsync (string backup_name, string datasource_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information about one or more backups accessible via the data source specified by datasource_name .
 
ShowCredentialResponse showCredential (ShowCredentialRequest request_)
 Shows information about a specified credential or all credentials.
 
async System.Threading.Tasks.Task< ShowCredentialResponseShowCredentialAsync (ShowCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a specified credential or all credentials.
 
ShowCredentialResponse showCredential (string credential_name, IDictionary< string, string > options=null)
 Shows information about a specified credential or all credentials.
 
async System.Threading.Tasks.Task< ShowCredentialResponseShowCredentialAsync (string credential_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a specified credential or all credentials.
 
ShowDatasinkResponse showDatasink (ShowDatasinkRequest request_)
 Shows information about a specified data sink or all data sinks.
 
async System.Threading.Tasks.Task< ShowDatasinkResponseShowDatasinkAsync (ShowDatasinkRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a specified data sink or all data sinks.
 
ShowDatasinkResponse showDatasink (string name, IDictionary< string, string > options=null)
 Shows information about a specified data sink or all data sinks.
 
async System.Threading.Tasks.Task< ShowDatasinkResponseShowDatasinkAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a specified data sink or all data sinks.
 
ShowDatasourceResponse showDatasource (ShowDatasourceRequest request_)
 Shows information about a specified data source or all data sources.
 
async System.Threading.Tasks.Task< ShowDatasourceResponseShowDatasourceAsync (ShowDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a specified data source or all data sources.
 
ShowDatasourceResponse showDatasource (string name, IDictionary< string, string > options=null)
 Shows information about a specified data source or all data sources.
 
async System.Threading.Tasks.Task< ShowDatasourceResponseShowDatasourceAsync (string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a specified data source or all data sources.
 
ShowDirectoriesResponse showDirectories (ShowDirectoriesRequest request_)
 Shows information about directories in KiFS.
 
async System.Threading.Tasks.Task< ShowDirectoriesResponseShowDirectoriesAsync (ShowDirectoriesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information about directories in KiFS.
 
ShowDirectoriesResponse showDirectories (string directory_name="", IDictionary< string, string > options=null)
 Shows information about directories in KiFS.
 
async System.Threading.Tasks.Task< ShowDirectoriesResponseShowDirectoriesAsync (string directory_name="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information about directories in KiFS.
 
ShowEnvironmentResponse showEnvironment (ShowEnvironmentRequest request_)
 Shows information about a specified user-defined function (UDF) environment or all environments.Returns detailed information about existing environments.
 
async System.Threading.Tasks.Task< ShowEnvironmentResponseShowEnvironmentAsync (ShowEnvironmentRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a specified user-defined function (UDF) environment or all environments.Returns detailed information about existing environments.
 
ShowEnvironmentResponse showEnvironment (string environment_name="", IDictionary< string, string > options=null)
 Shows information about a specified user-defined function (UDF) environment or all environments.Returns detailed information about existing environments.
 
async System.Threading.Tasks.Task< ShowEnvironmentResponseShowEnvironmentAsync (string environment_name="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a specified user-defined function (UDF) environment or all environments.Returns detailed information about existing environments.
 
ShowFilesResponse showFiles (ShowFilesRequest request_)
 Shows information about files in KiFS.
 
async System.Threading.Tasks.Task< ShowFilesResponseShowFilesAsync (ShowFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information about files in KiFS.
 
ShowFilesResponse showFiles (IList< string > paths, IDictionary< string, string > options=null)
 Shows information about files in KiFS.
 
async System.Threading.Tasks.Task< ShowFilesResponseShowFilesAsync (IList< string > paths, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information about files in KiFS.
 
ShowGraphResponse showGraph (ShowGraphRequest request_)
 Shows information and characteristics of graphs that exist on the graph server.
 
async System.Threading.Tasks.Task< ShowGraphResponseShowGraphAsync (ShowGraphRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information and characteristics of graphs that exist on the graph server.
 
ShowGraphResponse showGraph (string graph_name="", IDictionary< string, string > options=null)
 Shows information and characteristics of graphs that exist on the graph server.
 
async System.Threading.Tasks.Task< ShowGraphResponseShowGraphAsync (string graph_name="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information and characteristics of graphs that exist on the graph server.
 
ShowProcResponse showProc (ShowProcRequest request_)
 Shows information about a proc.
 
async System.Threading.Tasks.Task< ShowProcResponseShowProcAsync (ShowProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a proc.
 
ShowProcResponse showProc (string proc_name="", IDictionary< string, string > options=null)
 Shows information about a proc.
 
async System.Threading.Tasks.Task< ShowProcResponseShowProcAsync (string proc_name="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information about a proc.
 
ShowProcStatusResponse showProcStatus (ShowProcStatusRequest request_)
 Shows the statuses of running or completed proc instances.
 
async System.Threading.Tasks.Task< ShowProcStatusResponseShowProcStatusAsync (ShowProcStatusRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows the statuses of running or completed proc instances.
 
ShowProcStatusResponse showProcStatus (string run_id="", IDictionary< string, string > options=null)
 Shows the statuses of running or completed proc instances.
 
async System.Threading.Tasks.Task< ShowProcStatusResponseShowProcStatusAsync (string run_id="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows the statuses of running or completed proc instances.
 
ShowResourceObjectsResponse showResourceObjects (ShowResourceObjectsRequest request_)
 Returns information about the internal sub-components (tiered objects) which use resources of the system.
 
async System.Threading.Tasks.Task< ShowResourceObjectsResponseShowResourceObjectsAsync (ShowResourceObjectsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Returns information about the internal sub-components (tiered objects) which use resources of the system.
 
ShowResourceObjectsResponse showResourceObjects (IDictionary< string, string > options=null)
 Returns information about the internal sub-components (tiered objects) which use resources of the system.
 
async System.Threading.Tasks.Task< ShowResourceObjectsResponseShowResourceObjectsAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Returns information about the internal sub-components (tiered objects) which use resources of the system.
 
ShowResourceStatisticsResponse showResourceStatistics (ShowResourceStatisticsRequest request_)
 Requests various statistics for storage/memory tiers and resource groups.Returns statistics on a per-rank basis.
 
async System.Threading.Tasks.Task< ShowResourceStatisticsResponseShowResourceStatisticsAsync (ShowResourceStatisticsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Requests various statistics for storage/memory tiers and resource groups.Returns statistics on a per-rank basis.
 
ShowResourceStatisticsResponse showResourceStatistics (IDictionary< string, string > options=null)
 Requests various statistics for storage/memory tiers and resource groups.Returns statistics on a per-rank basis.
 
async System.Threading.Tasks.Task< ShowResourceStatisticsResponseShowResourceStatisticsAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Requests various statistics for storage/memory tiers and resource groups.Returns statistics on a per-rank basis.
 
ShowResourceGroupsResponse showResourceGroups (ShowResourceGroupsRequest request_)
 Requests resource group properties.Returns detailed information about the requested resource groups.
 
async System.Threading.Tasks.Task< ShowResourceGroupsResponseShowResourceGroupsAsync (ShowResourceGroupsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Requests resource group properties.Returns detailed information about the requested resource groups.
 
ShowResourceGroupsResponse showResourceGroups (IList< string > names, IDictionary< string, string > options=null)
 Requests resource group properties.Returns detailed information about the requested resource groups.
 
async System.Threading.Tasks.Task< ShowResourceGroupsResponseShowResourceGroupsAsync (IList< string > names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Requests resource group properties.Returns detailed information about the requested resource groups.
 
ShowSchemaResponse showSchema (ShowSchemaRequest request_)
 Retrieves information about a schema (or all schemas), as specified in schema_name.
 
async System.Threading.Tasks.Task< ShowSchemaResponseShowSchemaAsync (ShowSchemaRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves information about a schema (or all schemas), as specified in schema_name.
 
ShowSchemaResponse showSchema (string schema_name, IDictionary< string, string > options=null)
 Retrieves information about a schema (or all schemas), as specified in schema_name .
 
async System.Threading.Tasks.Task< ShowSchemaResponseShowSchemaAsync (string schema_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves information about a schema (or all schemas), as specified in schema_name .
 
ShowSecurityResponse showSecurity (ShowSecurityRequest request_)
 Shows security information relating to users and/or roles.
 
async System.Threading.Tasks.Task< ShowSecurityResponseShowSecurityAsync (ShowSecurityRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows security information relating to users and/or roles.
 
ShowSecurityResponse showSecurity (IList< string > names, IDictionary< string, string > options=null)
 Shows security information relating to users and/or roles.
 
async System.Threading.Tasks.Task< ShowSecurityResponseShowSecurityAsync (IList< string > names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows security information relating to users and/or roles.
 
ShowSqlProcResponse showSqlProc (ShowSqlProcRequest request_)
 Shows information about SQL procedures, including the full definition of each requested procedure.
 
async System.Threading.Tasks.Task< ShowSqlProcResponseShowSqlProcAsync (ShowSqlProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Shows information about SQL procedures, including the full definition of each requested procedure.
 
ShowSqlProcResponse showSqlProc (string procedure_name="", IDictionary< string, string > options=null)
 Shows information about SQL procedures, including the full definition of each requested procedure.
 
async System.Threading.Tasks.Task< ShowSqlProcResponseShowSqlProcAsync (string procedure_name="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Shows information about SQL procedures, including the full definition of each requested procedure.
 
ShowStatisticsResponse showStatistics (ShowStatisticsRequest request_)
 Retrieves the collected column statistics for the specified table(s).
 
async System.Threading.Tasks.Task< ShowStatisticsResponseShowStatisticsAsync (ShowStatisticsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves the collected column statistics for the specified table(s).
 
ShowStatisticsResponse showStatistics (IList< string > table_names, IDictionary< string, string > options=null)
 Retrieves the collected column statistics for the specified table(s).
 
async System.Threading.Tasks.Task< ShowStatisticsResponseShowStatisticsAsync (IList< string > table_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves the collected column statistics for the specified table(s).
 
ShowSystemPropertiesResponse showSystemProperties (ShowSystemPropertiesRequest request_)
 Returns server configuration and version related information to the caller.
 
async System.Threading.Tasks.Task< ShowSystemPropertiesResponseShowSystemPropertiesAsync (ShowSystemPropertiesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Returns server configuration and version related information to the caller.
 
ShowSystemPropertiesResponse showSystemProperties (IDictionary< string, string > options=null)
 Returns server configuration and version related information to the caller.
 
async System.Threading.Tasks.Task< ShowSystemPropertiesResponseShowSystemPropertiesAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Returns server configuration and version related information to the caller.
 
ShowSystemStatusResponse showSystemStatus (ShowSystemStatusRequest request_)
 Provides server configuration and health related status to the caller.
 
async System.Threading.Tasks.Task< ShowSystemStatusResponseShowSystemStatusAsync (ShowSystemStatusRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Provides server configuration and health related status to the caller.
 
ShowSystemStatusResponse showSystemStatus (IDictionary< string, string > options=null)
 Provides server configuration and health related status to the caller.
 
async System.Threading.Tasks.Task< ShowSystemStatusResponseShowSystemStatusAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Provides server configuration and health related status to the caller.
 
ShowSystemTimingResponse showSystemTiming (ShowSystemTimingRequest request_)
 Returns the last 100 database requests along with the request timing and internal job ID.
 
async System.Threading.Tasks.Task< ShowSystemTimingResponseShowSystemTimingAsync (ShowSystemTimingRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Returns the last 100 database requests along with the request timing and internal job ID.
 
ShowSystemTimingResponse showSystemTiming (IDictionary< string, string > options=null)
 Returns the last 100 database requests along with the request timing and internal job ID.
 
async System.Threading.Tasks.Task< ShowSystemTimingResponseShowSystemTimingAsync (IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Returns the last 100 database requests along with the request timing and internal job ID.
 
ShowTableResponse showTable (ShowTableRequest request_)
 Retrieves detailed information about a table, view, or schema, specified in table_name.
 
async System.Threading.Tasks.Task< ShowTableResponseShowTableAsync (ShowTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves detailed information about a table, view, or schema, specified in table_name.
 
ShowTableResponse showTable (string table_name, IDictionary< string, string > options=null)
 Retrieves detailed information about a table, view, or schema, specified in table_name .
 
async System.Threading.Tasks.Task< ShowTableResponseShowTableAsync (string table_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves detailed information about a table, view, or schema, specified in table_name .
 
ShowTableMetadataResponse showTableMetadata (ShowTableMetadataRequest request_)
 Retrieves the user provided metadata for the specified tables.
 
async System.Threading.Tasks.Task< ShowTableMetadataResponseShowTableMetadataAsync (ShowTableMetadataRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves the user provided metadata for the specified tables.
 
ShowTableMetadataResponse showTableMetadata (IList< string > table_names, IDictionary< string, string > options=null)
 Retrieves the user provided metadata for the specified tables.
 
async System.Threading.Tasks.Task< ShowTableMetadataResponseShowTableMetadataAsync (IList< string > table_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves the user provided metadata for the specified tables.
 
ShowTableMonitorsResponse showTableMonitors (ShowTableMonitorsRequest request_)
 Show table monitors and their properties.
 
async System.Threading.Tasks.Task< ShowTableMonitorsResponseShowTableMonitorsAsync (ShowTableMonitorsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Show table monitors and their properties.
 
ShowTableMonitorsResponse showTableMonitors (IList< string > monitor_ids, IDictionary< string, string > options=null)
 Show table monitors and their properties.
 
async System.Threading.Tasks.Task< ShowTableMonitorsResponseShowTableMonitorsAsync (IList< string > monitor_ids, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Show table monitors and their properties.
 
ShowTablesByTypeResponse showTablesByType (ShowTablesByTypeRequest request_)
 Gets names of the tables whose type matches the given criteria.
 
async System.Threading.Tasks.Task< ShowTablesByTypeResponseShowTablesByTypeAsync (ShowTablesByTypeRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Gets names of the tables whose type matches the given criteria.
 
ShowTablesByTypeResponse showTablesByType (string type_id, string label, IDictionary< string, string > options=null)
 Gets names of the tables whose type matches the given criteria.
 
async System.Threading.Tasks.Task< ShowTablesByTypeResponseShowTablesByTypeAsync (string type_id, string label, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Gets names of the tables whose type matches the given criteria.
 
ShowTriggersResponse showTriggers (ShowTriggersRequest request_)
 Retrieves information regarding the specified triggers or all existing triggers currently active.
 
async System.Threading.Tasks.Task< ShowTriggersResponseShowTriggersAsync (ShowTriggersRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves information regarding the specified triggers or all existing triggers currently active.
 
ShowTriggersResponse showTriggers (IList< string > trigger_ids, IDictionary< string, string > options=null)
 Retrieves information regarding the specified triggers or all existing triggers currently active.
 
async System.Threading.Tasks.Task< ShowTriggersResponseShowTriggersAsync (IList< string > trigger_ids, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves information regarding the specified triggers or all existing triggers currently active.
 
ShowTypesResponse showTypes (ShowTypesRequest request_)
 Retrieves information for the specified data type ID or type label.
 
async System.Threading.Tasks.Task< ShowTypesResponseShowTypesAsync (ShowTypesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves information for the specified data type ID or type label.
 
ShowTypesResponse showTypes (string type_id, string label, IDictionary< string, string > options=null)
 Retrieves information for the specified data type ID or type label.
 
async System.Threading.Tasks.Task< ShowTypesResponseShowTypesAsync (string type_id, string label, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves information for the specified data type ID or type label.
 
ShowVideoResponse showVideo (ShowVideoRequest request_)
 Retrieves information about rendered videos.
 
async System.Threading.Tasks.Task< ShowVideoResponseShowVideoAsync (ShowVideoRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Retrieves information about rendered videos.
 
ShowVideoResponse showVideo (IList< string > paths, IDictionary< string, string > options=null)
 Retrieves information about rendered videos.
 
async System.Threading.Tasks.Task< ShowVideoResponseShowVideoAsync (IList< string > paths, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Retrieves information about rendered videos.
 
ShowWalResponse showWal (ShowWalRequest request_)
 Requests table write-ahead log (WAL) properties.Returns information about the requested table WAL entries.
 
async System.Threading.Tasks.Task< ShowWalResponseShowWalAsync (ShowWalRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Requests table write-ahead log (WAL) properties.Returns information about the requested table WAL entries.
 
ShowWalResponse showWal (IList< string > table_names, IDictionary< string, string > options=null)
 Requests table write-ahead log (WAL) properties.Returns information about the requested table WAL entries.
 
async System.Threading.Tasks.Task< ShowWalResponseShowWalAsync (IList< string > table_names, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Requests table write-ahead log (WAL) properties.Returns information about the requested table WAL entries.
 
SolveGraphResponse solveGraph (SolveGraphRequest request_)
 Solves an existing graph for a type of problem (e.g., shortest path, page rank, traveling salesman, etc.) using source nodes, destination nodes, and additional, optional weights and restrictions.
 
async System.Threading.Tasks.Task< SolveGraphResponseSolveGraphAsync (SolveGraphRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Solves an existing graph for a type of problem (e.g., shortest path, page rank, traveling salesman, etc.) using source nodes, destination nodes, and additional, optional weights and restrictions.
 
SolveGraphResponse solveGraph (string graph_name, IList< string > weights_on_edges=null, IList< string > restrictions=null, string solver_type=SolveGraphRequest.SolverType.SHORTEST_PATH, IList< string > source_nodes=null, IList< string > destination_nodes=null, string solution_table=“graph_solutions”, IDictionary< string, string > options=null)
 Solves an existing graph for a type of problem (e.g., shortest path, page rank, traveling salesman, etc.) using source nodes, destination nodes, and additional, optional weights and restrictions.
 
async System.Threading.Tasks.Task< SolveGraphResponseSolveGraphAsync (string graph_name, IList< string > weights_on_edges=null, IList< string > restrictions=null, string solver_type=SolveGraphRequest.SolverType.SHORTEST_PATH, IList< string > source_nodes=null, IList< string > destination_nodes=null, string solution_table=“graph_solutions”, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Solves an existing graph for a type of problem (e.g., shortest path, page rank, traveling salesman, etc.) using source nodes, destination nodes, and additional, optional weights and restrictions.
 
UpdateRecordsResponse updateRecordsRaw (RawUpdateRecordsRequest request_)
 Runs multiple predicate-based updates in a single call.
 
async System.Threading.Tasks.Task< UpdateRecordsResponseUpdateRecordsRawAsync (RawUpdateRecordsRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Runs multiple predicate-based updates in a single call.
 
UpdateRecordsResponse updateRecords< T > (UpdateRecordsRequest< T > request_)
 Runs multiple predicate-based updates in a single call.
 
async System.Threading.Tasks.Task< UpdateRecordsResponseUpdateRecordsAsync< T > (UpdateRecordsRequest< T > request_, System.Threading.CancellationToken cancellationToken=default)
 Runs multiple predicate-based updates in a single call.
 
UpdateRecordsResponse updateRecords< T > (string table_name, IList< string > expressions, IList< IDictionary< string, string > > new_values_maps, IList< T > data=null, IDictionary< string, string > options=null)
 Runs multiple predicate-based updates in a single call.
 
async System.Threading.Tasks.Task< UpdateRecordsResponseUpdateRecordsAsync< T > (string table_name, IList< string > expressions, IList< IDictionary< string, string > > new_values_maps, IList< T > data=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Runs multiple predicate-based updates in a single call.
 
UploadFilesResponse uploadFiles (UploadFilesRequest request_)
 Uploads one or more files to KiFS.
 
async System.Threading.Tasks.Task< UploadFilesResponseUploadFilesAsync (UploadFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Uploads one or more files to KiFS.
 
UploadFilesResponse uploadFiles (IList< string > file_names, IList< byte[]> file_data, IDictionary< string, string > options=null)
 Uploads one or more files to KiFS.
 
async System.Threading.Tasks.Task< UploadFilesResponseUploadFilesAsync (IList< string > file_names, IList< byte[]> file_data, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Uploads one or more files to KiFS.
 
UploadFilesFromurlResponse uploadFilesFromurl (UploadFilesFromurlRequest request_)
 Uploads one or more files to KiFS.
 
async System.Threading.Tasks.Task< UploadFilesFromurlResponseUploadFilesFromurlAsync (UploadFilesFromurlRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Uploads one or more files to KiFS.
 
UploadFilesFromurlResponse uploadFilesFromurl (IList< string > file_names, IList< string > urls, IDictionary< string, string > options=null)
 Uploads one or more files to KiFS.
 
async System.Threading.Tasks.Task< UploadFilesFromurlResponseUploadFilesFromurlAsync (IList< string > file_names, IList< string > urls, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Uploads one or more files to KiFS.
 
VerifyBackupResponse verifyBackup (VerifyBackupRequest request_)
 Inspects the requested database backup(s) for conformity at the remote file store accessible via the data source specified by datasource_name.
 
async System.Threading.Tasks.Task< VerifyBackupResponseVerifyBackupAsync (VerifyBackupRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Inspects the requested database backup(s) for conformity at the remote file store accessible via the data source specified by datasource_name.
 
VerifyBackupResponse verifyBackup (string backup_name, string datasource_name, IDictionary< string, string > options=null)
 Inspects the requested database backup(s) for conformity at the remote file store accessible via the data source specified by datasource_name .
 
async System.Threading.Tasks.Task< VerifyBackupResponseVerifyBackupAsync (string backup_name, string datasource_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Inspects the requested database backup(s) for conformity at the remote file store accessible via the data source specified by datasource_name .
 
VisualizeImageChartResponse visualizeImageChart (VisualizeImageChartRequest request_)
 Scatter plot is the only plot type currently supported.
 
async System.Threading.Tasks.Task< VisualizeImageChartResponseVisualizeImageChartAsync (VisualizeImageChartRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Scatter plot is the only plot type currently supported.
 
VisualizeImageChartResponse visualizeImageChart (string table_name, IList< string > x_column_names, IList< string > y_column_names, double min_x, double max_x, double min_y, double max_y, int width, int height, string bg_color, IDictionary< string, IList< string > > style_options, IDictionary< string, string > options=null)
 Scatter plot is the only plot type currently supported.
 
async System.Threading.Tasks.Task< VisualizeImageChartResponseVisualizeImageChartAsync (string table_name, IList< string > x_column_names, IList< string > y_column_names, double min_x, double max_x, double min_y, double max_y, int width, int height, string bg_color, IDictionary< string, IList< string > > style_options, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Scatter plot is the only plot type currently supported.
 
VisualizeIsochroneResponse visualizeIsochrone (VisualizeIsochroneRequest request_)
 Generate an image containing isolines for travel results using an existing graph.
 
async System.Threading.Tasks.Task< VisualizeIsochroneResponseVisualizeIsochroneAsync (VisualizeIsochroneRequest request_, System.Threading.CancellationToken cancellationToken=default)
 Generate an image containing isolines for travel results using an existing graph.
 
VisualizeIsochroneResponse visualizeIsochrone (string graph_name, string source_node, double max_solution_radius, IList< string > weights_on_edges, IList< string > restrictions, int num_levels, bool generate_image, string levels_table, IDictionary< string, string > style_options, IDictionary< string, string > solve_options=null, IDictionary< string, string > contour_options=null, IDictionary< string, string > options=null)
 Generate an image containing isolines for travel results using an existing graph.
 
async System.Threading.Tasks.Task< VisualizeIsochroneResponseVisualizeIsochroneAsync (string graph_name, string source_node, double max_solution_radius, IList< string > weights_on_edges, IList< string > restrictions, int num_levels, bool generate_image, string levels_table, IDictionary< string, string > style_options, IDictionary< string, string > solve_options=null, IDictionary< string, string > contour_options=null, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
 Generate an image containing isolines for travel results using an existing graph.
 

Static Public Member Functions

static string GetApiVersion ()
 API Version.
 
static bool IsConnectionError (Exception ex)
 Checks if an exception is a connection error that warrants HA failover.
 

Static Public Attributes

const int END_OF_SET = -9999
 No Limit.
 
const string API_VERSION = “7.2.3.5”
 The version of this Kinetica API binding.
 

Protected Member Functions

virtual void Dispose (bool disposing)
 Disposes managed and unmanaged resources.
 

Properties

string Url [get]
 URL for Kinetica Server (including “http:” and port) as a string.
 
Uri URL [get]
 URL for Kinetica Server (including “http:” and port)
 
string? Username = null [get]
 Optional: User Name for Kinetica security.
 
bool UseSnappy = false [get, set]
 Use Snappy.
 
int ThreadCount = 1 [get, set]
 Thread Count.
 
HAFailoverManagerHAManager [get]
 Gets the HA failover manager instance.
 
int NumClusterSwitches [get]
 Gets the number of times the client has switched to a different cluster.
 
int HARingSize [get]
 Gets the HA ring size.
 

Detailed Description

API to talk to Kinetica Database.

Definition at line 39 of file Kinetica.cs.

Constructor & Destructor Documentation