Inherits IDisposable.
|
| IList< ClusterAddressInfo > | GetHARingInfo () |
| | Gets the list of all cluster addresses in the HA ring.
|
| |
| ClusterAddressInfo? | GetCurrentClusterInfo () |
| | 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< AdminAddHostResponse > | AdminAddHostAsync (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< AdminAddHostResponse > | AdminAddHostAsync (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< AdminAddRanksResponse > | AdminAddRanksAsync (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< AdminAddRanksResponse > | AdminAddRanksAsync (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< AdminAlterHostResponse > | AdminAlterHostAsync (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< AdminAlterHostResponse > | AdminAlterHostAsync (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< AdminAlterJobsResponse > | AdminAlterJobsAsync (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< AdminAlterJobsResponse > | AdminAlterJobsAsync (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< AdminBackupBeginResponse > | AdminBackupBeginAsync (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< AdminBackupBeginResponse > | AdminBackupBeginAsync (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< AdminBackupEndResponse > | AdminBackupEndAsync (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< AdminBackupEndResponse > | AdminBackupEndAsync (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< AdminHaOfflineResponse > | AdminHaOfflineAsync (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< AdminHaOfflineResponse > | AdminHaOfflineAsync (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< AdminHaRefreshResponse > | AdminHaRefreshAsync (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< AdminHaRefreshResponse > | AdminHaRefreshAsync (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< AdminOfflineResponse > | AdminOfflineAsync (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< AdminOfflineResponse > | AdminOfflineAsync (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< AdminRebalanceResponse > | AdminRebalanceAsync (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< AdminRebalanceResponse > | AdminRebalanceAsync (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< AdminRemoveHostResponse > | AdminRemoveHostAsync (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< AdminRemoveHostResponse > | AdminRemoveHostAsync (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< AdminRemoveRanksResponse > | AdminRemoveRanksAsync (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< AdminRemoveRanksResponse > | AdminRemoveRanksAsync (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< AdminRepairTableResponse > | AdminRepairTableAsync (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< AdminRepairTableResponse > | AdminRepairTableAsync (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< AdminSendAlertResponse > | AdminSendAlertAsync (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< AdminSendAlertResponse > | AdminSendAlertAsync (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< AdminShowAlertsResponse > | AdminShowAlertsAsync (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< AdminShowAlertsResponse > | AdminShowAlertsAsync (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< AdminShowClusterOperationsResponse > | AdminShowClusterOperationsAsync (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< AdminShowClusterOperationsResponse > | AdminShowClusterOperationsAsync (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< AdminShowJobsResponse > | AdminShowJobsAsync (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< AdminShowJobsResponse > | AdminShowJobsAsync (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< AdminShowShardsResponse > | AdminShowShardsAsync (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< AdminShowShardsResponse > | AdminShowShardsAsync (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< AdminShutdownResponse > | AdminShutdownAsync (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< AdminShutdownResponse > | AdminShutdownAsync (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< AdminSwitchoverResponse > | AdminSwitchoverAsync (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< AdminSwitchoverResponse > | AdminSwitchoverAsync (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< AdminVerifyDbResponse > | AdminVerifyDbAsync (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< AdminVerifyDbResponse > | AdminVerifyDbAsync (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< AggregateConvexHullResponse > | AggregateConvexHullAsync (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< AggregateConvexHullResponse > | AggregateConvexHullAsync (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< AggregateGroupByResponse > | AggregateGroupByAsync (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< AggregateGroupByResponse > | AggregateGroupByAsync (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< AggregateHistogramResponse > | AggregateHistogramAsync (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< AggregateHistogramResponse > | AggregateHistogramAsync (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< AggregateKMeansResponse > | AggregateKMeansAsync (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< AggregateKMeansResponse > | AggregateKMeansAsync (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< AggregateMinMaxResponse > | AggregateMinMaxAsync (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< AggregateMinMaxResponse > | AggregateMinMaxAsync (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< AggregateMinMaxGeometryResponse > | AggregateMinMaxGeometryAsync (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< AggregateMinMaxGeometryResponse > | AggregateMinMaxGeometryAsync (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< AggregateStatisticsResponse > | AggregateStatisticsAsync (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< AggregateStatisticsResponse > | AggregateStatisticsAsync (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< AggregateStatisticsByRangeResponse > | AggregateStatisticsByRangeAsync (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< AggregateStatisticsByRangeResponse > | AggregateStatisticsByRangeAsync (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< AggregateUniqueResponse > | AggregateUniqueAsync (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< AggregateUniqueResponse > | AggregateUniqueAsync (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< AggregateUnpivotResponse > | AggregateUnpivotAsync (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< AggregateUnpivotResponse > | AggregateUnpivotAsync (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< AlterBackupResponse > | AlterBackupAsync (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< AlterBackupResponse > | AlterBackupAsync (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< AlterCredentialResponse > | AlterCredentialAsync (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< AlterCredentialResponse > | AlterCredentialAsync (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< AlterDatasinkResponse > | AlterDatasinkAsync (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< AlterDatasinkResponse > | AlterDatasinkAsync (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< AlterDatasourceResponse > | AlterDatasourceAsync (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< AlterDatasourceResponse > | AlterDatasourceAsync (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< AlterDirectoryResponse > | AlterDirectoryAsync (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< AlterDirectoryResponse > | AlterDirectoryAsync (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< AlterEnvironmentResponse > | AlterEnvironmentAsync (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< AlterEnvironmentResponse > | AlterEnvironmentAsync (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< AlterResourceGroupResponse > | AlterResourceGroupAsync (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< AlterResourceGroupResponse > | AlterResourceGroupAsync (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< AlterRoleResponse > | AlterRoleAsync (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< AlterRoleResponse > | AlterRoleAsync (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< AlterSchemaResponse > | AlterSchemaAsync (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< AlterSchemaResponse > | AlterSchemaAsync (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< AlterSystemPropertiesResponse > | AlterSystemPropertiesAsync (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< AlterSystemPropertiesResponse > | AlterSystemPropertiesAsync (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< AlterTableResponse > | AlterTableAsync (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< AlterTableResponse > | AlterTableAsync (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< AlterTableColumnsResponse > | AlterTableColumnsAsync (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< AlterTableColumnsResponse > | AlterTableColumnsAsync (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< AlterTableMetadataResponse > | AlterTableMetadataAsync (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< AlterTableMetadataResponse > | AlterTableMetadataAsync (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< AlterTableMonitorResponse > | AlterTableMonitorAsync (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< AlterTableMonitorResponse > | AlterTableMonitorAsync (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< AlterTierResponse > | AlterTierAsync (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< AlterTierResponse > | AlterTierAsync (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< AlterUserResponse > | AlterUserAsync (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< AlterUserResponse > | AlterUserAsync (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< AlterVideoResponse > | AlterVideoAsync (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< AlterVideoResponse > | AlterVideoAsync (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< AlterWalResponse > | AlterWalAsync (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< AlterWalResponse > | AlterWalAsync (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< AppendRecordsResponse > | AppendRecordsAsync (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< AppendRecordsResponse > | AppendRecordsAsync (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< CheckTableResponse > | CheckTableAsync (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< CheckTableResponse > | CheckTableAsync (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< ClearStatisticsResponse > | ClearStatisticsAsync (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< ClearStatisticsResponse > | ClearStatisticsAsync (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< ClearTableResponse > | ClearTableAsync (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< ClearTableResponse > | ClearTableAsync (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< ClearTableMonitorResponse > | ClearTableMonitorAsync (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< ClearTableMonitorResponse > | ClearTableMonitorAsync (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< ClearTablesResponse > | ClearTablesAsync (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< ClearTablesResponse > | ClearTablesAsync (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< ClearTriggerResponse > | ClearTriggerAsync (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< ClearTriggerResponse > | ClearTriggerAsync (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< CollectStatisticsResponse > | CollectStatisticsAsync (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< CollectStatisticsResponse > | CollectStatisticsAsync (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< CreateBackupResponse > | CreateBackupAsync (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< CreateBackupResponse > | CreateBackupAsync (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< CreateCatalogResponse > | CreateCatalogAsync (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< CreateCatalogResponse > | CreateCatalogAsync (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< CreateCredentialResponse > | CreateCredentialAsync (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< CreateCredentialResponse > | CreateCredentialAsync (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< CreateDatasinkResponse > | CreateDatasinkAsync (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< CreateDatasinkResponse > | CreateDatasinkAsync (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< CreateDatasourceResponse > | CreateDatasourceAsync (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< CreateDatasourceResponse > | CreateDatasourceAsync (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< CreateDirectoryResponse > | CreateDirectoryAsync (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< CreateDirectoryResponse > | CreateDirectoryAsync (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< CreateEnvironmentResponse > | CreateEnvironmentAsync (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< CreateEnvironmentResponse > | CreateEnvironmentAsync (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< CreateGraphResponse > | CreateGraphAsync (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< CreateGraphResponse > | CreateGraphAsync (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< CreateJobResponse > | CreateJobAsync (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< CreateJobResponse > | CreateJobAsync (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< CreateJoinTableResponse > | CreateJoinTableAsync (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< CreateJoinTableResponse > | CreateJoinTableAsync (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< CreateMaterializedViewResponse > | CreateMaterializedViewAsync (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< CreateMaterializedViewResponse > | CreateMaterializedViewAsync (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< CreateProcResponse > | CreateProcAsync (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< CreateProcResponse > | CreateProcAsync (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< CreateProjectionResponse > | CreateProjectionAsync (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< CreateProjectionResponse > | CreateProjectionAsync (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< CreateResourceGroupResponse > | CreateResourceGroupAsync (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< CreateResourceGroupResponse > | CreateResourceGroupAsync (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< CreateRoleResponse > | CreateRoleAsync (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< CreateRoleResponse > | CreateRoleAsync (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< CreateSchemaResponse > | CreateSchemaAsync (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< CreateSchemaResponse > | CreateSchemaAsync (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< CreateTableResponse > | CreateTableAsync (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< CreateTableResponse > | CreateTableAsync (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< CreateTableExternalResponse > | CreateTableExternalAsync (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< CreateTableExternalResponse > | CreateTableExternalAsync (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< CreateTableMonitorResponse > | CreateTableMonitorAsync (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< CreateTableMonitorResponse > | CreateTableMonitorAsync (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< CreateTriggerByAreaResponse > | CreateTriggerByAreaAsync (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< CreateTriggerByAreaResponse > | CreateTriggerByAreaAsync (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< CreateTriggerByRangeResponse > | CreateTriggerByRangeAsync (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< CreateTriggerByRangeResponse > | CreateTriggerByRangeAsync (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< CreateTypeResponse > | CreateTypeAsync (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< CreateTypeResponse > | CreateTypeAsync (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< CreateUnionResponse > | CreateUnionAsync (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< CreateUnionResponse > | CreateUnionAsync (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< CreateUserExternalResponse > | CreateUserExternalAsync (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< CreateUserExternalResponse > | CreateUserExternalAsync (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< CreateUserInternalResponse > | CreateUserInternalAsync (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< CreateUserInternalResponse > | CreateUserInternalAsync (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< CreateVideoResponse > | CreateVideoAsync (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< CreateVideoResponse > | CreateVideoAsync (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< DeleteDirectoryResponse > | DeleteDirectoryAsync (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< DeleteDirectoryResponse > | DeleteDirectoryAsync (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< DeleteFilesResponse > | DeleteFilesAsync (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< DeleteFilesResponse > | DeleteFilesAsync (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< DeleteGraphResponse > | DeleteGraphAsync (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< DeleteGraphResponse > | DeleteGraphAsync (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< DeleteProcResponse > | DeleteProcAsync (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< DeleteProcResponse > | DeleteProcAsync (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< DeleteRecordsResponse > | DeleteRecordsAsync (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< DeleteRecordsResponse > | DeleteRecordsAsync (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< DeleteResourceGroupResponse > | DeleteResourceGroupAsync (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< DeleteResourceGroupResponse > | DeleteResourceGroupAsync (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< DeleteRoleResponse > | DeleteRoleAsync (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< DeleteRoleResponse > | DeleteRoleAsync (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< DeleteUserResponse > | DeleteUserAsync (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< DeleteUserResponse > | DeleteUserAsync (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< DownloadFilesResponse > | DownloadFilesAsync (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< DownloadFilesResponse > | DownloadFilesAsync (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< DropBackupResponse > | DropBackupAsync (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< DropBackupResponse > | DropBackupAsync (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< DropCatalogResponse > | DropCatalogAsync (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< DropCatalogResponse > | DropCatalogAsync (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< DropCredentialResponse > | DropCredentialAsync (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< DropCredentialResponse > | DropCredentialAsync (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< DropDatasinkResponse > | DropDatasinkAsync (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< DropDatasinkResponse > | DropDatasinkAsync (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< DropDatasourceResponse > | DropDatasourceAsync (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< DropDatasourceResponse > | DropDatasourceAsync (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< DropEnvironmentResponse > | DropEnvironmentAsync (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< DropEnvironmentResponse > | DropEnvironmentAsync (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< DropSchemaResponse > | DropSchemaAsync (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< DropSchemaResponse > | DropSchemaAsync (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< ExecuteProcResponse > | ExecuteProcAsync (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< ExecuteProcResponse > | ExecuteProcAsync (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< ExecuteSqlResponse > | ExecuteSqlAsync (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< ExecuteSqlResponse > | ExecuteSqlAsync (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< ExportQueryMetricsResponse > | ExportQueryMetricsAsync (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< ExportQueryMetricsResponse > | ExportQueryMetricsAsync (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< ExportRecordsToFilesResponse > | ExportRecordsToFilesAsync (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< ExportRecordsToFilesResponse > | ExportRecordsToFilesAsync (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< ExportRecordsToTableResponse > | ExportRecordsToTableAsync (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< ExportRecordsToTableResponse > | ExportRecordsToTableAsync (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< FilterResponse > | FilterAsync (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< FilterResponse > | FilterAsync (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< FilterByAreaResponse > | FilterByAreaAsync (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< FilterByAreaResponse > | FilterByAreaAsync (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< FilterByAreaGeometryResponse > | FilterByAreaGeometryAsync (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< FilterByAreaGeometryResponse > | FilterByAreaGeometryAsync (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< FilterByBoxResponse > | FilterByBoxAsync (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< FilterByBoxResponse > | FilterByBoxAsync (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< FilterByBoxGeometryResponse > | FilterByBoxGeometryAsync (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< FilterByBoxGeometryResponse > | FilterByBoxGeometryAsync (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< FilterByGeometryResponse > | FilterByGeometryAsync (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< FilterByGeometryResponse > | FilterByGeometryAsync (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< FilterByListResponse > | FilterByListAsync (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< FilterByListResponse > | FilterByListAsync (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< FilterByRadiusResponse > | FilterByRadiusAsync (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< FilterByRadiusResponse > | FilterByRadiusAsync (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< FilterByRadiusGeometryResponse > | FilterByRadiusGeometryAsync (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< FilterByRadiusGeometryResponse > | FilterByRadiusGeometryAsync (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< FilterByRangeResponse > | FilterByRangeAsync (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< FilterByRangeResponse > | FilterByRangeAsync (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< FilterBySeriesResponse > | FilterBySeriesAsync (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< FilterBySeriesResponse > | FilterBySeriesAsync (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< FilterByStringResponse > | FilterByStringAsync (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< FilterByStringResponse > | FilterByStringAsync (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< FilterByTableResponse > | FilterByTableAsync (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< FilterByTableResponse > | FilterByTableAsync (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< FilterByValueResponse > | FilterByValueAsync (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< FilterByValueResponse > | FilterByValueAsync (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< GetGraphEntitiesResponse > | GetGraphEntitiesAsync (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< GetGraphEntitiesResponse > | GetGraphEntitiesAsync (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< GetJobResponse > | GetJobAsync (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< GetJobResponse > | GetJobAsync (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< GetRecordsByColumnResponse > | GetRecordsByColumnAsync (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< GetRecordsByColumnResponse > | GetRecordsByColumnAsync (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< GrantPermissionResponse > | GrantPermissionAsync (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< GrantPermissionResponse > | GrantPermissionAsync (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< GrantPermissionCredentialResponse > | GrantPermissionCredentialAsync (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< GrantPermissionCredentialResponse > | GrantPermissionCredentialAsync (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< GrantPermissionDatasourceResponse > | GrantPermissionDatasourceAsync (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< GrantPermissionDatasourceResponse > | GrantPermissionDatasourceAsync (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< GrantPermissionDirectoryResponse > | GrantPermissionDirectoryAsync (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< GrantPermissionDirectoryResponse > | GrantPermissionDirectoryAsync (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< GrantPermissionProcResponse > | GrantPermissionProcAsync (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< GrantPermissionProcResponse > | GrantPermissionProcAsync (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< GrantPermissionSystemResponse > | GrantPermissionSystemAsync (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< GrantPermissionSystemResponse > | GrantPermissionSystemAsync (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< GrantPermissionTableResponse > | GrantPermissionTableAsync (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< GrantPermissionTableResponse > | GrantPermissionTableAsync (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< GrantRoleResponse > | GrantRoleAsync (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< GrantRoleResponse > | GrantRoleAsync (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< HasPermissionResponse > | HasPermissionAsync (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< HasPermissionResponse > | HasPermissionAsync (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< HasProcResponse > | HasProcAsync (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< HasProcResponse > | HasProcAsync (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< HasRoleResponse > | HasRoleAsync (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< HasRoleResponse > | HasRoleAsync (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< HasSchemaResponse > | HasSchemaAsync (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< HasSchemaResponse > | HasSchemaAsync (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< HasTableResponse > | HasTableAsync (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< HasTableResponse > | HasTableAsync (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< HasTypeResponse > | HasTypeAsync (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< HasTypeResponse > | HasTypeAsync (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< InsertRecordsResponse > | InsertRecordsRawAsync (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< InsertRecordsResponse > | InsertRecordsAsync< 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< InsertRecordsResponse > | InsertRecordsAsync< 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< InsertRecordsFromFilesResponse > | InsertRecordsFromFilesAsync (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< InsertRecordsFromFilesResponse > | InsertRecordsFromFilesAsync (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< InsertRecordsFromPayloadResponse > | InsertRecordsFromPayloadAsync (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< InsertRecordsFromPayloadResponse > | InsertRecordsFromPayloadAsync (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< InsertRecordsFromQueryResponse > | InsertRecordsFromQueryAsync (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< InsertRecordsFromQueryResponse > | InsertRecordsFromQueryAsync (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< InsertRecordsRandomResponse > | InsertRecordsRandomAsync (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< InsertRecordsRandomResponse > | InsertRecordsRandomAsync (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< InsertSymbolResponse > | InsertSymbolAsync (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< InsertSymbolResponse > | InsertSymbolAsync (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< KillProcResponse > | KillProcAsync (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< KillProcResponse > | KillProcAsync (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< LockTableResponse > | LockTableAsync (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< LockTableResponse > | LockTableAsync (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< MatchGraphResponse > | MatchGraphAsync (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< MatchGraphResponse > | MatchGraphAsync (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< ModifyGraphResponse > | ModifyGraphAsync (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< ModifyGraphResponse > | ModifyGraphAsync (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< QueryGraphResponse > | QueryGraphAsync (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< QueryGraphResponse > | QueryGraphAsync (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< RepartitionGraphResponse > | RepartitionGraphAsync (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< RepartitionGraphResponse > | RepartitionGraphAsync (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< RestoreBackupResponse > | RestoreBackupAsync (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< RestoreBackupResponse > | RestoreBackupAsync (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< RevokePermissionResponse > | RevokePermissionAsync (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< RevokePermissionResponse > | RevokePermissionAsync (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< RevokePermissionCredentialResponse > | RevokePermissionCredentialAsync (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< RevokePermissionCredentialResponse > | RevokePermissionCredentialAsync (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< RevokePermissionDatasourceResponse > | RevokePermissionDatasourceAsync (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< RevokePermissionDatasourceResponse > | RevokePermissionDatasourceAsync (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< RevokePermissionDirectoryResponse > | RevokePermissionDirectoryAsync (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< RevokePermissionDirectoryResponse > | RevokePermissionDirectoryAsync (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< RevokePermissionProcResponse > | RevokePermissionProcAsync (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< RevokePermissionProcResponse > | RevokePermissionProcAsync (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< RevokePermissionSystemResponse > | RevokePermissionSystemAsync (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< RevokePermissionSystemResponse > | RevokePermissionSystemAsync (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< RevokePermissionTableResponse > | RevokePermissionTableAsync (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< RevokePermissionTableResponse > | RevokePermissionTableAsync (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< RevokeRoleResponse > | RevokeRoleAsync (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< RevokeRoleResponse > | RevokeRoleAsync (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< ShowBackupResponse > | ShowBackupAsync (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< ShowBackupResponse > | ShowBackupAsync (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< ShowCredentialResponse > | ShowCredentialAsync (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< ShowCredentialResponse > | ShowCredentialAsync (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< ShowDatasinkResponse > | ShowDatasinkAsync (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< ShowDatasinkResponse > | ShowDatasinkAsync (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< ShowDatasourceResponse > | ShowDatasourceAsync (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< ShowDatasourceResponse > | ShowDatasourceAsync (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< ShowDirectoriesResponse > | ShowDirectoriesAsync (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< ShowDirectoriesResponse > | ShowDirectoriesAsync (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< ShowEnvironmentResponse > | ShowEnvironmentAsync (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< ShowEnvironmentResponse > | ShowEnvironmentAsync (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< ShowFilesResponse > | ShowFilesAsync (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< ShowFilesResponse > | ShowFilesAsync (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< ShowGraphResponse > | ShowGraphAsync (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< ShowGraphResponse > | ShowGraphAsync (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< ShowProcResponse > | ShowProcAsync (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< ShowProcResponse > | ShowProcAsync (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< ShowProcStatusResponse > | ShowProcStatusAsync (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< ShowProcStatusResponse > | ShowProcStatusAsync (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< ShowResourceObjectsResponse > | ShowResourceObjectsAsync (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< ShowResourceObjectsResponse > | ShowResourceObjectsAsync (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< ShowResourceStatisticsResponse > | ShowResourceStatisticsAsync (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< ShowResourceStatisticsResponse > | ShowResourceStatisticsAsync (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< ShowResourceGroupsResponse > | ShowResourceGroupsAsync (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< ShowResourceGroupsResponse > | ShowResourceGroupsAsync (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< ShowSchemaResponse > | ShowSchemaAsync (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< ShowSchemaResponse > | ShowSchemaAsync (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< ShowSecurityResponse > | ShowSecurityAsync (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< ShowSecurityResponse > | ShowSecurityAsync (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< ShowSqlProcResponse > | ShowSqlProcAsync (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< ShowSqlProcResponse > | ShowSqlProcAsync (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< ShowStatisticsResponse > | ShowStatisticsAsync (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< ShowStatisticsResponse > | ShowStatisticsAsync (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< ShowSystemPropertiesResponse > | ShowSystemPropertiesAsync (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< ShowSystemPropertiesResponse > | ShowSystemPropertiesAsync (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< ShowSystemStatusResponse > | ShowSystemStatusAsync (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< ShowSystemStatusResponse > | ShowSystemStatusAsync (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< ShowSystemTimingResponse > | ShowSystemTimingAsync (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< ShowSystemTimingResponse > | ShowSystemTimingAsync (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< ShowTableResponse > | ShowTableAsync (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< ShowTableResponse > | ShowTableAsync (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< ShowTableMetadataResponse > | ShowTableMetadataAsync (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< ShowTableMetadataResponse > | ShowTableMetadataAsync (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< ShowTableMonitorsResponse > | ShowTableMonitorsAsync (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< ShowTableMonitorsResponse > | ShowTableMonitorsAsync (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< ShowTablesByTypeResponse > | ShowTablesByTypeAsync (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< ShowTablesByTypeResponse > | ShowTablesByTypeAsync (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< ShowTriggersResponse > | ShowTriggersAsync (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< ShowTriggersResponse > | ShowTriggersAsync (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< ShowTypesResponse > | ShowTypesAsync (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< ShowTypesResponse > | ShowTypesAsync (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< ShowVideoResponse > | ShowVideoAsync (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< ShowVideoResponse > | ShowVideoAsync (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< ShowWalResponse > | ShowWalAsync (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< ShowWalResponse > | ShowWalAsync (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< SolveGraphResponse > | SolveGraphAsync (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< SolveGraphResponse > | SolveGraphAsync (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< UpdateRecordsResponse > | UpdateRecordsRawAsync (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< UpdateRecordsResponse > | UpdateRecordsAsync< 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< UpdateRecordsResponse > | UpdateRecordsAsync< 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< UploadFilesResponse > | UploadFilesAsync (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< UploadFilesResponse > | UploadFilesAsync (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< UploadFilesFromurlResponse > | UploadFilesFromurlAsync (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< UploadFilesFromurlResponse > | UploadFilesFromurlAsync (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< VerifyBackupResponse > | VerifyBackupAsync (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< VerifyBackupResponse > | VerifyBackupAsync (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< VisualizeImageChartResponse > | VisualizeImageChartAsync (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< VisualizeImageChartResponse > | VisualizeImageChartAsync (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< VisualizeIsochroneResponse > | VisualizeIsochroneAsync (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< VisualizeIsochroneResponse > | VisualizeIsochroneAsync (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.
|
| |