Kinetica   C#   API  Version 7.2.3.1
KineticaFunctions.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using Avro;
8 using System.Collections.Generic;
9 using System.Threading;
10 using System.Threading.Tasks;
11 
12 namespace kinetica;
13 
14 public partial class Kinetica
15 {
16  // Kinetica Version
17  public const string API_VERSION = "7.2.3.1";
18 
28  {
29  AdminAddHostResponse actualResponse_ = SubmitRequest<AdminAddHostResponse>("/admin/add/host", request_, false);
30 
31  return actualResponse_;
32  }
33 
44  public async System.Threading.Tasks.Task<AdminAddHostResponse> AdminAddHostAsync( AdminAddHostRequest request_,
45  System.Threading.CancellationToken cancellationToken = default )
46  {
47  AdminAddHostResponse actualResponse_ = await SubmitRequestAsync<AdminAddHostResponse>("/admin/add/host", request_, false, true, cancellationToken);
48 
49  return actualResponse_;
50  }
51 
157  public AdminAddHostResponse adminAddHost( string host_address,
158  IDictionary<string, string> options = null )
159  {
160  return adminAddHost( new AdminAddHostRequest( host_address, options ) );
161  }
162 
270  public async System.Threading.Tasks.Task<AdminAddHostResponse> AdminAddHostAsync( string host_address,
271  IDictionary<string, string> options = null,
272  System.Threading.CancellationToken cancellationToken = default )
273  {
274  return await AdminAddHostAsync( new AdminAddHostRequest( host_address, options ), cancellationToken );
275  }
276 
311  {
312  AdminAddRanksResponse actualResponse_ = SubmitRequest<AdminAddRanksResponse>("/admin/add/ranks", request_, false);
313 
314  return actualResponse_;
315  }
316 
352  public async System.Threading.Tasks.Task<AdminAddRanksResponse> AdminAddRanksAsync( AdminAddRanksRequest request_,
353  System.Threading.CancellationToken cancellationToken = default )
354  {
355  AdminAddRanksResponse actualResponse_ = await SubmitRequestAsync<AdminAddRanksResponse>("/admin/add/ranks", request_, false, true, cancellationToken);
356 
357  return actualResponse_;
358  }
359 
453  public AdminAddRanksResponse adminAddRanks( IList<string> hosts,
454  IList<IDictionary<string, string>> config_params,
455  IDictionary<string, string> options = null )
456  {
457  return adminAddRanks( new AdminAddRanksRequest( hosts, config_params, options ) );
458  }
459 
555  public async System.Threading.Tasks.Task<AdminAddRanksResponse> AdminAddRanksAsync( IList<string> hosts,
556  IList<IDictionary<string, string>> config_params,
557  IDictionary<string, string> options = null,
558  System.Threading.CancellationToken cancellationToken = default )
559  {
560  return await AdminAddRanksAsync( new AdminAddRanksRequest( hosts, config_params,
561  options ), cancellationToken );
562  }
563 
573  {
574  AdminAlterHostResponse actualResponse_ = SubmitRequest<AdminAlterHostResponse>("/admin/alter/host", request_, false);
575 
576  return actualResponse_;
577  }
578 
590  public async System.Threading.Tasks.Task<AdminAlterHostResponse> AdminAlterHostAsync( AdminAlterHostRequest request_,
591  System.Threading.CancellationToken cancellationToken = default )
592  {
593  AdminAlterHostResponse actualResponse_ = await SubmitRequestAsync<AdminAlterHostResponse>("/admin/alter/host", request_, false, true, cancellationToken);
594 
595  return actualResponse_;
596  }
597 
637  IDictionary<string, string> options = null )
638  {
639  return adminAlterHost( new AdminAlterHostRequest( host, options ) );
640  }
641 
683  public async System.Threading.Tasks.Task<AdminAlterHostResponse> AdminAlterHostAsync( string host,
684  IDictionary<string, string> options = null,
685  System.Threading.CancellationToken cancellationToken = default )
686  {
687  return await AdminAlterHostAsync( new AdminAlterHostRequest( host, options ), cancellationToken );
688  }
689 
704  {
705  AdminAlterJobsResponse actualResponse_ = SubmitRequest<AdminAlterJobsResponse>("/admin/alter/jobs", request_, false);
706 
707  return actualResponse_;
708  }
709 
725  public async System.Threading.Tasks.Task<AdminAlterJobsResponse> AdminAlterJobsAsync( AdminAlterJobsRequest request_,
726  System.Threading.CancellationToken cancellationToken = default )
727  {
728  AdminAlterJobsResponse actualResponse_ = await SubmitRequestAsync<AdminAlterJobsResponse>("/admin/alter/jobs", request_, false, true, cancellationToken);
729 
730  return actualResponse_;
731  }
732 
765  public AdminAlterJobsResponse adminAlterJobs( IList<long> job_ids,
766  string action,
767  IDictionary<string, string> options = null )
768  {
769  return adminAlterJobs( new AdminAlterJobsRequest( job_ids, action, options ) );
770  }
771 
806  public async System.Threading.Tasks.Task<AdminAlterJobsResponse> AdminAlterJobsAsync( IList<long> job_ids,
807  string action,
808  IDictionary<string, string> options = null,
809  System.Threading.CancellationToken cancellationToken = default )
810  {
811  return await AdminAlterJobsAsync( new AdminAlterJobsRequest( job_ids, action,
812  options ), cancellationToken );
813  }
814 
828  {
829  AdminBackupBeginResponse actualResponse_ = SubmitRequest<AdminBackupBeginResponse>("/admin/backup/begin", request_, false);
830 
831  return actualResponse_;
832  }
833 
849  public async System.Threading.Tasks.Task<AdminBackupBeginResponse> AdminBackupBeginAsync( AdminBackupBeginRequest request_,
850  System.Threading.CancellationToken cancellationToken = default )
851  {
852  AdminBackupBeginResponse actualResponse_ = await SubmitRequestAsync<AdminBackupBeginResponse>("/admin/backup/begin", request_, false, true, cancellationToken);
853 
854  return actualResponse_;
855  }
856 
869  public AdminBackupBeginResponse adminBackupBegin( IDictionary<string, string> options = null )
870  {
871  return adminBackupBegin( new AdminBackupBeginRequest( options ) );
872  }
873 
889  public async System.Threading.Tasks.Task<AdminBackupBeginResponse> AdminBackupBeginAsync( IDictionary<string, string> options = null,
890  System.Threading.CancellationToken cancellationToken = default )
891  {
892  return await AdminBackupBeginAsync( new AdminBackupBeginRequest( options ), cancellationToken );
893  }
894 
904  {
905  AdminBackupEndResponse actualResponse_ = SubmitRequest<AdminBackupEndResponse>("/admin/backup/end", request_, false);
906 
907  return actualResponse_;
908  }
909 
920  public async System.Threading.Tasks.Task<AdminBackupEndResponse> AdminBackupEndAsync( AdminBackupEndRequest request_,
921  System.Threading.CancellationToken cancellationToken = default )
922  {
923  AdminBackupEndResponse actualResponse_ = await SubmitRequestAsync<AdminBackupEndResponse>("/admin/backup/end", request_, false, true, cancellationToken);
924 
925  return actualResponse_;
926  }
927 
936  public AdminBackupEndResponse adminBackupEnd( IDictionary<string, string> options = null )
937  {
938  return adminBackupEnd( new AdminBackupEndRequest( options ) );
939  }
940 
951  public async System.Threading.Tasks.Task<AdminBackupEndResponse> AdminBackupEndAsync( IDictionary<string, string> options = null,
952  System.Threading.CancellationToken cancellationToken = default )
953  {
954  return await AdminBackupEndAsync( new AdminBackupEndRequest( options ), cancellationToken );
955  }
956 
967  {
968  AdminHaOfflineResponse actualResponse_ = SubmitRequest<AdminHaOfflineResponse>("/admin/ha/offline", request_, false);
969 
970  return actualResponse_;
971  }
972 
984  public async System.Threading.Tasks.Task<AdminHaOfflineResponse> AdminHaOfflineAsync( AdminHaOfflineRequest request_,
985  System.Threading.CancellationToken cancellationToken = default )
986  {
987  AdminHaOfflineResponse actualResponse_ = await SubmitRequestAsync<AdminHaOfflineResponse>("/admin/ha/offline", request_, false, true, cancellationToken);
988 
989  return actualResponse_;
990  }
991 
1012  IDictionary<string, string> options = null )
1013  {
1014  return adminHaOffline( new AdminHaOfflineRequest( offline, options ) );
1015  }
1016 
1038  public async System.Threading.Tasks.Task<AdminHaOfflineResponse> AdminHaOfflineAsync( bool offline,
1039  IDictionary<string, string> options = null,
1040  System.Threading.CancellationToken cancellationToken = default )
1041  {
1042  return await AdminHaOfflineAsync( new AdminHaOfflineRequest( offline, options ), cancellationToken );
1043  }
1044 
1055  {
1056  AdminHaRefreshResponse actualResponse_ = SubmitRequest<AdminHaRefreshResponse>("/admin/ha/refresh", request_, false);
1057 
1058  return actualResponse_;
1059  }
1060 
1072  public async System.Threading.Tasks.Task<AdminHaRefreshResponse> AdminHaRefreshAsync( AdminHaRefreshRequest request_,
1073  System.Threading.CancellationToken cancellationToken = default )
1074  {
1075  AdminHaRefreshResponse actualResponse_ = await SubmitRequestAsync<AdminHaRefreshResponse>("/admin/ha/refresh", request_, false, true, cancellationToken);
1076 
1077  return actualResponse_;
1078  }
1079 
1089  public AdminHaRefreshResponse adminHaRefresh( IDictionary<string, string> options = null )
1090  {
1091  return adminHaRefresh( new AdminHaRefreshRequest( options ) );
1092  }
1093 
1105  public async System.Threading.Tasks.Task<AdminHaRefreshResponse> AdminHaRefreshAsync( IDictionary<string, string> options = null,
1106  System.Threading.CancellationToken cancellationToken = default )
1107  {
1108  return await AdminHaRefreshAsync( new AdminHaRefreshRequest( options ), cancellationToken );
1109  }
1110 
1120  {
1121  AdminOfflineResponse actualResponse_ = SubmitRequest<AdminOfflineResponse>("/admin/offline", request_, false);
1122 
1123  return actualResponse_;
1124  }
1125 
1136  public async System.Threading.Tasks.Task<AdminOfflineResponse> AdminOfflineAsync( AdminOfflineRequest request_,
1137  System.Threading.CancellationToken cancellationToken = default )
1138  {
1139  AdminOfflineResponse actualResponse_ = await SubmitRequestAsync<AdminOfflineResponse>("/admin/offline", request_, false, true, cancellationToken);
1140 
1141  return actualResponse_;
1142  }
1143 
1183  public AdminOfflineResponse adminOffline( bool offline,
1184  IDictionary<string, string> options = null )
1185  {
1186  return adminOffline( new AdminOfflineRequest( offline, options ) );
1187  }
1188 
1230  public async System.Threading.Tasks.Task<AdminOfflineResponse> AdminOfflineAsync( bool offline,
1231  IDictionary<string, string> options = null,
1232  System.Threading.CancellationToken cancellationToken = default )
1233  {
1234  return await AdminOfflineAsync( new AdminOfflineRequest( offline, options ), cancellationToken );
1235  }
1236 
1269  {
1270  AdminRebalanceResponse actualResponse_ = SubmitRequest<AdminRebalanceResponse>("/admin/rebalance", request_, false);
1271 
1272  return actualResponse_;
1273  }
1274 
1308  public async System.Threading.Tasks.Task<AdminRebalanceResponse> AdminRebalanceAsync( AdminRebalanceRequest request_,
1309  System.Threading.CancellationToken cancellationToken = default )
1310  {
1311  AdminRebalanceResponse actualResponse_ = await SubmitRequestAsync<AdminRebalanceResponse>("/admin/rebalance", request_, false, true, cancellationToken);
1312 
1313  return actualResponse_;
1314  }
1315 
1537  public AdminRebalanceResponse adminRebalance( IDictionary<string, string> options = null )
1538  {
1539  return adminRebalance( new AdminRebalanceRequest( options ) );
1540  }
1541 
1765  public async System.Threading.Tasks.Task<AdminRebalanceResponse> AdminRebalanceAsync( IDictionary<string, string> options = null,
1766  System.Threading.CancellationToken cancellationToken = default )
1767  {
1768  return await AdminRebalanceAsync( new AdminRebalanceRequest( options ), cancellationToken );
1769  }
1770 
1789  {
1790  AdminRemoveHostResponse actualResponse_ = SubmitRequest<AdminRemoveHostResponse>("/admin/remove/host", request_, false);
1791 
1792  return actualResponse_;
1793  }
1794 
1814  public async System.Threading.Tasks.Task<AdminRemoveHostResponse> AdminRemoveHostAsync( AdminRemoveHostRequest request_,
1815  System.Threading.CancellationToken cancellationToken = default )
1816  {
1817  AdminRemoveHostResponse actualResponse_ = await SubmitRequestAsync<AdminRemoveHostResponse>("/admin/remove/host", request_, false, true, cancellationToken);
1818 
1819  return actualResponse_;
1820  }
1821 
1869  IDictionary<string, string> options = null )
1870  {
1871  return adminRemoveHost( new AdminRemoveHostRequest( host, options ) );
1872  }
1873 
1922  public async System.Threading.Tasks.Task<AdminRemoveHostResponse> AdminRemoveHostAsync( string host,
1923  IDictionary<string, string> options = null,
1924  System.Threading.CancellationToken cancellationToken = default )
1925  {
1926  return await AdminRemoveHostAsync( new AdminRemoveHostRequest( host, options ), cancellationToken );
1927  }
1928 
1957  {
1958  AdminRemoveRanksResponse actualResponse_ = SubmitRequest<AdminRemoveRanksResponse>("/admin/remove/ranks", request_, false);
1959 
1960  return actualResponse_;
1961  }
1962 
1992  public async System.Threading.Tasks.Task<AdminRemoveRanksResponse> AdminRemoveRanksAsync( AdminRemoveRanksRequest request_,
1993  System.Threading.CancellationToken cancellationToken = default )
1994  {
1995  AdminRemoveRanksResponse actualResponse_ = await SubmitRequestAsync<AdminRemoveRanksResponse>("/admin/remove/ranks", request_, false, true, cancellationToken);
1996 
1997  return actualResponse_;
1998  }
1999 
2110  public AdminRemoveRanksResponse adminRemoveRanks( IList<string> ranks,
2111  IDictionary<string, string> options = null )
2112  {
2113  return adminRemoveRanks( new AdminRemoveRanksRequest( ranks, options ) );
2114  }
2115 
2228  public async System.Threading.Tasks.Task<AdminRemoveRanksResponse> AdminRemoveRanksAsync( IList<string> ranks,
2229  IDictionary<string, string> options = null,
2230  System.Threading.CancellationToken cancellationToken = default )
2231  {
2232  return await AdminRemoveRanksAsync( new AdminRemoveRanksRequest( ranks, options ), cancellationToken );
2233  }
2234 
2243  {
2244  AdminRepairTableResponse actualResponse_ = SubmitRequest<AdminRepairTableResponse>("/admin/repair/table", request_, false);
2245 
2246  return actualResponse_;
2247  }
2248 
2258  public async System.Threading.Tasks.Task<AdminRepairTableResponse> AdminRepairTableAsync( AdminRepairTableRequest request_,
2259  System.Threading.CancellationToken cancellationToken = default )
2260  {
2261  AdminRepairTableResponse actualResponse_ = await SubmitRequestAsync<AdminRepairTableResponse>("/admin/repair/table", request_, false, true, cancellationToken);
2262 
2263  return actualResponse_;
2264  }
2265 
2341  public AdminRepairTableResponse adminRepairTable( IList<string> table_names,
2342  IDictionary<string, string> table_types,
2343  IDictionary<string, string> options = null )
2344  {
2345  return adminRepairTable( new AdminRepairTableRequest( table_names, table_types,
2346  options ) );
2347  }
2348 
2426  public async System.Threading.Tasks.Task<AdminRepairTableResponse> AdminRepairTableAsync( IList<string> table_names,
2427  IDictionary<string, string> table_types,
2428  IDictionary<string, string> options = null,
2429  System.Threading.CancellationToken cancellationToken = default )
2430  {
2431  return await AdminRepairTableAsync( new AdminRepairTableRequest( table_names,
2432  table_types,
2433  options ), cancellationToken );
2434  }
2435 
2444  {
2445  AdminSendAlertResponse actualResponse_ = SubmitRequest<AdminSendAlertResponse>("/admin/send/alert", request_, false);
2446 
2447  return actualResponse_;
2448  }
2449 
2459  public async System.Threading.Tasks.Task<AdminSendAlertResponse> AdminSendAlertAsync( AdminSendAlertRequest request_,
2460  System.Threading.CancellationToken cancellationToken = default )
2461  {
2462  AdminSendAlertResponse actualResponse_ = await SubmitRequestAsync<AdminSendAlertResponse>("/admin/send/alert", request_, false, true, cancellationToken);
2463 
2464  return actualResponse_;
2465  }
2466 
2502  public AdminSendAlertResponse adminSendAlert( string message,
2503  string label,
2504  string log_level,
2505  IDictionary<string, string> options = null )
2506  {
2507  return adminSendAlert( new AdminSendAlertRequest( message, label, log_level,
2508  options ) );
2509  }
2510 
2548  public async System.Threading.Tasks.Task<AdminSendAlertResponse> AdminSendAlertAsync( string message,
2549  string label,
2550  string log_level,
2551  IDictionary<string, string> options = null,
2552  System.Threading.CancellationToken cancellationToken = default )
2553  {
2554  return await AdminSendAlertAsync( new AdminSendAlertRequest( message, label,
2555  log_level, options ), cancellationToken );
2556  }
2557 
2566  {
2567  AdminShowAlertsResponse actualResponse_ = SubmitRequest<AdminShowAlertsResponse>("/admin/show/alerts", request_, false);
2568 
2569  return actualResponse_;
2570  }
2571 
2581  public async System.Threading.Tasks.Task<AdminShowAlertsResponse> AdminShowAlertsAsync( AdminShowAlertsRequest request_,
2582  System.Threading.CancellationToken cancellationToken = default )
2583  {
2584  AdminShowAlertsResponse actualResponse_ = await SubmitRequestAsync<AdminShowAlertsResponse>("/admin/show/alerts", request_, false, true, cancellationToken);
2585 
2586  return actualResponse_;
2587  }
2588 
2601  IDictionary<string, string> options = null )
2602  {
2603  return adminShowAlerts( new AdminShowAlertsRequest( num_alerts, options ) );
2604  }
2605 
2619  public async System.Threading.Tasks.Task<AdminShowAlertsResponse> AdminShowAlertsAsync( int num_alerts,
2620  IDictionary<string, string> options = null,
2621  System.Threading.CancellationToken cancellationToken = default )
2622  {
2623  return await AdminShowAlertsAsync( new AdminShowAlertsRequest( num_alerts, options ), cancellationToken );
2624  }
2625 
2638  {
2639  AdminShowClusterOperationsResponse actualResponse_ = SubmitRequest<AdminShowClusterOperationsResponse>("/admin/show/cluster/operations", request_, false);
2640 
2641  return actualResponse_;
2642  }
2643 
2658  System.Threading.CancellationToken cancellationToken = default )
2659  {
2660  AdminShowClusterOperationsResponse actualResponse_ = await SubmitRequestAsync<AdminShowClusterOperationsResponse>("/admin/show/cluster/operations", request_, false, true, cancellationToken);
2661 
2662  return actualResponse_;
2663  }
2664 
2679  IDictionary<string, string> options = null )
2680  {
2682  options ) );
2683  }
2684 
2700  public async System.Threading.Tasks.Task<AdminShowClusterOperationsResponse> AdminShowClusterOperationsAsync( int history_index = 0,
2701  IDictionary<string, string> options = null,
2702  System.Threading.CancellationToken cancellationToken = default )
2703  {
2704  return await AdminShowClusterOperationsAsync( new AdminShowClusterOperationsRequest( history_index,
2705  options ), cancellationToken );
2706  }
2707 
2715  {
2716  AdminShowJobsResponse actualResponse_ = SubmitRequest<AdminShowJobsResponse>("/admin/show/jobs", request_, false);
2717 
2718  return actualResponse_;
2719  }
2720 
2729  public async System.Threading.Tasks.Task<AdminShowJobsResponse> AdminShowJobsAsync( AdminShowJobsRequest request_,
2730  System.Threading.CancellationToken cancellationToken = default )
2731  {
2732  AdminShowJobsResponse actualResponse_ = await SubmitRequestAsync<AdminShowJobsResponse>("/admin/show/jobs", request_, false, true, cancellationToken);
2733 
2734  return actualResponse_;
2735  }
2736 
2793  public AdminShowJobsResponse adminShowJobs( IDictionary<string, string> options = null )
2794  {
2795  return adminShowJobs( new AdminShowJobsRequest( options ) );
2796  }
2797 
2856  public async System.Threading.Tasks.Task<AdminShowJobsResponse> AdminShowJobsAsync( IDictionary<string, string> options = null,
2857  System.Threading.CancellationToken cancellationToken = default )
2858  {
2859  return await AdminShowJobsAsync( new AdminShowJobsRequest( options ), cancellationToken );
2860  }
2861 
2873  {
2874  AdminShowShardsResponse actualResponse_ = SubmitRequest<AdminShowShardsResponse>("/admin/show/shards", request_, false);
2875 
2876  return actualResponse_;
2877  }
2878 
2891  public async System.Threading.Tasks.Task<AdminShowShardsResponse> AdminShowShardsAsync( AdminShowShardsRequest request_,
2892  System.Threading.CancellationToken cancellationToken = default )
2893  {
2894  AdminShowShardsResponse actualResponse_ = await SubmitRequestAsync<AdminShowShardsResponse>("/admin/show/shards", request_, false, true, cancellationToken);
2895 
2896  return actualResponse_;
2897  }
2898 
2909  public AdminShowShardsResponse adminShowShards( IDictionary<string, string> options = null )
2910  {
2911  return adminShowShards( new AdminShowShardsRequest( options ) );
2912  }
2913 
2926  public async System.Threading.Tasks.Task<AdminShowShardsResponse> AdminShowShardsAsync( IDictionary<string, string> options = null,
2927  System.Threading.CancellationToken cancellationToken = default )
2928  {
2929  return await AdminShowShardsAsync( new AdminShowShardsRequest( options ), cancellationToken );
2930  }
2931 
2939  {
2940  AdminShutdownResponse actualResponse_ = SubmitRequest<AdminShutdownResponse>("/admin/shutdown", request_, false);
2941 
2942  return actualResponse_;
2943  }
2944 
2953  public async System.Threading.Tasks.Task<AdminShutdownResponse> AdminShutdownAsync( AdminShutdownRequest request_,
2954  System.Threading.CancellationToken cancellationToken = default )
2955  {
2956  AdminShutdownResponse actualResponse_ = await SubmitRequestAsync<AdminShutdownResponse>("/admin/shutdown", request_, false, true, cancellationToken);
2957 
2958  return actualResponse_;
2959  }
2960 
2971  public AdminShutdownResponse adminShutdown( string exit_type,
2972  string authorization,
2973  IDictionary<string, string> options = null )
2974  {
2975  return adminShutdown( new AdminShutdownRequest( exit_type, authorization, options ) );
2976  }
2977 
2990  public async System.Threading.Tasks.Task<AdminShutdownResponse> AdminShutdownAsync( string exit_type,
2991  string authorization,
2992  IDictionary<string, string> options = null,
2993  System.Threading.CancellationToken cancellationToken = default )
2994  {
2995  return await AdminShutdownAsync( new AdminShutdownRequest( exit_type,
2996  authorization, options ), cancellationToken );
2997  }
2998 
3011  {
3012  AdminSwitchoverResponse actualResponse_ = SubmitRequest<AdminSwitchoverResponse>("/admin/switchover", request_, false);
3013 
3014  return actualResponse_;
3015  }
3016 
3030  public async System.Threading.Tasks.Task<AdminSwitchoverResponse> AdminSwitchoverAsync( AdminSwitchoverRequest request_,
3031  System.Threading.CancellationToken cancellationToken = default )
3032  {
3033  AdminSwitchoverResponse actualResponse_ = await SubmitRequestAsync<AdminSwitchoverResponse>("/admin/switchover", request_, false, true, cancellationToken);
3034 
3035  return actualResponse_;
3036  }
3037 
3092  public AdminSwitchoverResponse adminSwitchover( IList<string> processes,
3093  IList<string> destinations,
3094  IDictionary<string, string> options = null )
3095  {
3096  return adminSwitchover( new AdminSwitchoverRequest( processes, destinations,
3097  options ) );
3098  }
3099 
3156  public async System.Threading.Tasks.Task<AdminSwitchoverResponse> AdminSwitchoverAsync( IList<string> processes,
3157  IList<string> destinations,
3158  IDictionary<string, string> options = null,
3159  System.Threading.CancellationToken cancellationToken = default )
3160  {
3161  return await AdminSwitchoverAsync( new AdminSwitchoverRequest( processes,
3162  destinations,
3163  options ), cancellationToken );
3164  }
3165 
3176  {
3177  AdminVerifyDbResponse actualResponse_ = SubmitRequest<AdminVerifyDbResponse>("/admin/verifydb", request_, false);
3178 
3179  return actualResponse_;
3180  }
3181 
3193  public async System.Threading.Tasks.Task<AdminVerifyDbResponse> AdminVerifyDbAsync( AdminVerifyDbRequest request_,
3194  System.Threading.CancellationToken cancellationToken = default )
3195  {
3196  AdminVerifyDbResponse actualResponse_ = await SubmitRequestAsync<AdminVerifyDbResponse>("/admin/verifydb", request_, false, true, cancellationToken);
3197 
3198  return actualResponse_;
3199  }
3200 
3413  public AdminVerifyDbResponse adminVerifyDb( IDictionary<string, string> options = null )
3414  {
3415  return adminVerifyDb( new AdminVerifyDbRequest( options ) );
3416  }
3417 
3632  public async System.Threading.Tasks.Task<AdminVerifyDbResponse> AdminVerifyDbAsync( IDictionary<string, string> options = null,
3633  System.Threading.CancellationToken cancellationToken = default )
3634  {
3635  return await AdminVerifyDbAsync( new AdminVerifyDbRequest( options ), cancellationToken );
3636  }
3637 
3648  {
3649  AggregateConvexHullResponse actualResponse_ = SubmitRequest<AggregateConvexHullResponse>("/aggregate/convexhull", request_, false);
3650 
3651  return actualResponse_;
3652  }
3653 
3665  public async System.Threading.Tasks.Task<AggregateConvexHullResponse> AggregateConvexHullAsync( AggregateConvexHullRequest request_,
3666  System.Threading.CancellationToken cancellationToken = default )
3667  {
3668  AggregateConvexHullResponse actualResponse_ = await SubmitRequestAsync<AggregateConvexHullResponse>("/aggregate/convexhull", request_, false, true, cancellationToken);
3669 
3670  return actualResponse_;
3671  }
3672 
3690  string x_column_name,
3691  string y_column_name,
3692  IDictionary<string, string> options = null )
3693  {
3694  return aggregateConvexHull( new AggregateConvexHullRequest( table_name,
3695  x_column_name,
3696  y_column_name, options ) );
3697  }
3698 
3717  public async System.Threading.Tasks.Task<AggregateConvexHullResponse> AggregateConvexHullAsync( string table_name,
3718  string x_column_name,
3719  string y_column_name,
3720  IDictionary<string, string> options = null,
3721  System.Threading.CancellationToken cancellationToken = default )
3722  {
3723  return await AggregateConvexHullAsync( new AggregateConvexHullRequest( table_name,
3724  x_column_name,
3725  y_column_name,
3726  options ), cancellationToken );
3727  }
3728 
3800  {
3801  RawAggregateGroupByResponse actualResponse_ = SubmitRequest<RawAggregateGroupByResponse>("/aggregate/groupby", request_, false);
3802 
3804  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
3805  response_.total_number_of_records = actualResponse_.total_number_of_records;
3806  response_.has_more_records = actualResponse_.has_more_records;
3807  response_.info = actualResponse_.info;
3808  return response_;
3809  }
3810 
3883  public async System.Threading.Tasks.Task<AggregateGroupByResponse> AggregateGroupByAsync( AggregateGroupByRequest request_,
3884  System.Threading.CancellationToken cancellationToken = default )
3885  {
3886  RawAggregateGroupByResponse actualResponse_ = await SubmitRequestAsync<RawAggregateGroupByResponse>("/aggregate/groupby", request_, false, true, cancellationToken);
3887 
3889  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
3890  response_.total_number_of_records = actualResponse_.total_number_of_records;
3891  response_.has_more_records = actualResponse_.has_more_records;
3892  response_.info = actualResponse_.info;
3893  return response_;
3894  }
3895 
4498  public AggregateGroupByResponse aggregateGroupBy( string table_name,
4499  IList<string> column_names,
4500  long offset = 0,
4501  long limit = -9999,
4502  IDictionary<string, string> options = null )
4503  {
4504  return aggregateGroupBy( new AggregateGroupByRequest( table_name, column_names,
4505  offset, limit, options ) );
4506  }
4507 
5112  public async System.Threading.Tasks.Task<AggregateGroupByResponse> AggregateGroupByAsync( string table_name,
5113  IList<string> column_names,
5114  long offset = 0,
5115  long limit = -9999,
5116  IDictionary<string, string> options = null,
5117  System.Threading.CancellationToken cancellationToken = default )
5118  {
5119  return await AggregateGroupByAsync( new AggregateGroupByRequest( table_name,
5120  column_names,
5121  offset, limit,
5122  options ), cancellationToken );
5123  }
5124 
5150  {
5151  AggregateHistogramResponse actualResponse_ = SubmitRequest<AggregateHistogramResponse>("/aggregate/histogram", request_, false);
5152 
5153  return actualResponse_;
5154  }
5155 
5182  public async System.Threading.Tasks.Task<AggregateHistogramResponse> AggregateHistogramAsync( AggregateHistogramRequest request_,
5183  System.Threading.CancellationToken cancellationToken = default )
5184  {
5185  AggregateHistogramResponse actualResponse_ = await SubmitRequestAsync<AggregateHistogramResponse>("/aggregate/histogram", request_, false, true, cancellationToken);
5186 
5187  return actualResponse_;
5188  }
5189 
5255  string column_name,
5256  double start,
5257  double end,
5258  double interval,
5259  IDictionary<string, string> options = null )
5260  {
5261  return aggregateHistogram( new AggregateHistogramRequest( table_name, column_name,
5262  start, end, interval,
5263  options ) );
5264  }
5265 
5332  public async System.Threading.Tasks.Task<AggregateHistogramResponse> AggregateHistogramAsync( string table_name,
5333  string column_name,
5334  double start,
5335  double end,
5336  double interval,
5337  IDictionary<string, string> options = null,
5338  System.Threading.CancellationToken cancellationToken = default )
5339  {
5340  return await AggregateHistogramAsync( new AggregateHistogramRequest( table_name,
5341  column_name,
5342  start, end,
5343  interval,
5344  options ), cancellationToken );
5345  }
5346 
5365  {
5366  AggregateKMeansResponse actualResponse_ = SubmitRequest<AggregateKMeansResponse>("/aggregate/kmeans", request_, false);
5367 
5368  return actualResponse_;
5369  }
5370 
5390  public async System.Threading.Tasks.Task<AggregateKMeansResponse> AggregateKMeansAsync( AggregateKMeansRequest request_,
5391  System.Threading.CancellationToken cancellationToken = default )
5392  {
5393  AggregateKMeansResponse actualResponse_ = await SubmitRequestAsync<AggregateKMeansResponse>("/aggregate/kmeans", request_, false, true, cancellationToken);
5394 
5395  return actualResponse_;
5396  }
5397 
5539  public AggregateKMeansResponse aggregateKMeans( string table_name,
5540  IList<string> column_names,
5541  int k,
5542  double tolerance,
5543  IDictionary<string, string> options = null )
5544  {
5545  return aggregateKMeans( new AggregateKMeansRequest( table_name, column_names, k,
5546  tolerance, options ) );
5547  }
5548 
5692  public async System.Threading.Tasks.Task<AggregateKMeansResponse> AggregateKMeansAsync( string table_name,
5693  IList<string> column_names,
5694  int k,
5695  double tolerance,
5696  IDictionary<string, string> options = null,
5697  System.Threading.CancellationToken cancellationToken = default )
5698  {
5699  return await AggregateKMeansAsync( new AggregateKMeansRequest( table_name,
5700  column_names, k,
5701  tolerance, options ), cancellationToken );
5702  }
5703 
5712  {
5713  AggregateMinMaxResponse actualResponse_ = SubmitRequest<AggregateMinMaxResponse>("/aggregate/minmax", request_, false);
5714 
5715  return actualResponse_;
5716  }
5717 
5727  public async System.Threading.Tasks.Task<AggregateMinMaxResponse> AggregateMinMaxAsync( AggregateMinMaxRequest request_,
5728  System.Threading.CancellationToken cancellationToken = default )
5729  {
5730  AggregateMinMaxResponse actualResponse_ = await SubmitRequestAsync<AggregateMinMaxResponse>("/aggregate/minmax", request_, false, true, cancellationToken);
5731 
5732  return actualResponse_;
5733  }
5734 
5749  public AggregateMinMaxResponse aggregateMinMax( string table_name,
5750  string column_name,
5751  IDictionary<string, string> options = null )
5752  {
5753  return aggregateMinMax( new AggregateMinMaxRequest( table_name, column_name,
5754  options ) );
5755  }
5756 
5773  public async System.Threading.Tasks.Task<AggregateMinMaxResponse> AggregateMinMaxAsync( string table_name,
5774  string column_name,
5775  IDictionary<string, string> options = null,
5776  System.Threading.CancellationToken cancellationToken = default )
5777  {
5778  return await AggregateMinMaxAsync( new AggregateMinMaxRequest( table_name,
5779  column_name,
5780  options ), cancellationToken );
5781  }
5782 
5792  {
5793  AggregateMinMaxGeometryResponse actualResponse_ = SubmitRequest<AggregateMinMaxGeometryResponse>("/aggregate/minmax/geometry", request_, false);
5794 
5795  return actualResponse_;
5796  }
5797 
5809  System.Threading.CancellationToken cancellationToken = default )
5810  {
5811  AggregateMinMaxGeometryResponse actualResponse_ = await SubmitRequestAsync<AggregateMinMaxGeometryResponse>("/aggregate/minmax/geometry", request_, false, true, cancellationToken);
5812 
5813  return actualResponse_;
5814  }
5815 
5832  string column_name,
5833  IDictionary<string, string> options = null )
5834  {
5836  column_name,
5837  options ) );
5838  }
5839 
5857  public async System.Threading.Tasks.Task<AggregateMinMaxGeometryResponse> AggregateMinMaxGeometryAsync( string table_name,
5858  string column_name,
5859  IDictionary<string, string> options = null,
5860  System.Threading.CancellationToken cancellationToken = default )
5861  {
5862  return await AggregateMinMaxGeometryAsync( new AggregateMinMaxGeometryRequest( table_name,
5863  column_name,
5864  options ), cancellationToken );
5865  }
5866 
5936  {
5937  AggregateStatisticsResponse actualResponse_ = SubmitRequest<AggregateStatisticsResponse>("/aggregate/statistics", request_, false);
5938 
5939  return actualResponse_;
5940  }
5941 
6012  public async System.Threading.Tasks.Task<AggregateStatisticsResponse> AggregateStatisticsAsync( AggregateStatisticsRequest request_,
6013  System.Threading.CancellationToken cancellationToken = default )
6014  {
6015  AggregateStatisticsResponse actualResponse_ = await SubmitRequestAsync<AggregateStatisticsResponse>("/aggregate/statistics", request_, false, true, cancellationToken);
6016 
6017  return actualResponse_;
6018  }
6019 
6213  string column_name,
6214  string stats,
6215  IDictionary<string, string> options = null )
6216  {
6217  return aggregateStatistics( new AggregateStatisticsRequest( table_name,
6218  column_name, stats,
6219  options ) );
6220  }
6221 
6416  public async System.Threading.Tasks.Task<AggregateStatisticsResponse> AggregateStatisticsAsync( string table_name,
6417  string column_name,
6418  string stats,
6419  IDictionary<string, string> options = null,
6420  System.Threading.CancellationToken cancellationToken = default )
6421  {
6422  return await AggregateStatisticsAsync( new AggregateStatisticsRequest( table_name,
6423  column_name,
6424  stats,
6425  options ), cancellationToken );
6426  }
6427 
6463  {
6464  AggregateStatisticsByRangeResponse actualResponse_ = SubmitRequest<AggregateStatisticsByRangeResponse>("/aggregate/statistics/byrange", request_, false);
6465 
6466  return actualResponse_;
6467  }
6468 
6506  System.Threading.CancellationToken cancellationToken = default )
6507  {
6508  AggregateStatisticsByRangeResponse actualResponse_ = await SubmitRequestAsync<AggregateStatisticsByRangeResponse>("/aggregate/statistics/byrange", request_, false, true, cancellationToken);
6509 
6510  return actualResponse_;
6511  }
6512 
6600  string select_expression,
6601  string column_name,
6602  string value_column_name,
6603  string stats,
6604  double start,
6605  double end,
6606  double interval,
6607  IDictionary<string, string> options = null )
6608  {
6610  select_expression,
6611  column_name,
6612  value_column_name,
6613  stats,
6614  start,
6615  end,
6616  interval,
6617  options ) );
6618  }
6619 
6708  public async System.Threading.Tasks.Task<AggregateStatisticsByRangeResponse> AggregateStatisticsByRangeAsync( string table_name,
6709  string select_expression,
6710  string column_name,
6711  string value_column_name,
6712  string stats,
6713  double start,
6714  double end,
6715  double interval,
6716  IDictionary<string, string> options = null,
6717  System.Threading.CancellationToken cancellationToken = default )
6718  {
6720  select_expression,
6721  column_name,
6722  value_column_name,
6723  stats,
6724  start,
6725  end,
6726  interval,
6727  options ), cancellationToken );
6728  }
6729 
6771  {
6772  RawAggregateUniqueResponse actualResponse_ = SubmitRequest<RawAggregateUniqueResponse>("/aggregate/unique", request_, false);
6773 
6775  response_.table_name = actualResponse_.table_name;
6776  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
6777  response_.has_more_records = actualResponse_.has_more_records;
6778  response_.info = actualResponse_.info;
6779  return response_;
6780  }
6781 
6825  public async System.Threading.Tasks.Task<AggregateUniqueResponse> AggregateUniqueAsync( AggregateUniqueRequest request_,
6826  System.Threading.CancellationToken cancellationToken = default )
6827  {
6828  RawAggregateUniqueResponse actualResponse_ = await SubmitRequestAsync<RawAggregateUniqueResponse>("/aggregate/unique", request_, false, true, cancellationToken);
6829 
6831  response_.table_name = actualResponse_.table_name;
6832  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
6833  response_.has_more_records = actualResponse_.has_more_records;
6834  response_.info = actualResponse_.info;
6835  return response_;
6836  }
6837 
7134  public AggregateUniqueResponse aggregateUnique( string table_name,
7135  string column_name,
7136  long offset = 0,
7137  long limit = -9999,
7138  IDictionary<string, string> options = null )
7139  {
7140  return aggregateUnique( new AggregateUniqueRequest( table_name, column_name,
7141  offset, limit, options ) );
7142  }
7143 
7442  public async System.Threading.Tasks.Task<AggregateUniqueResponse> AggregateUniqueAsync( string table_name,
7443  string column_name,
7444  long offset = 0,
7445  long limit = -9999,
7446  IDictionary<string, string> options = null,
7447  System.Threading.CancellationToken cancellationToken = default )
7448  {
7449  return await AggregateUniqueAsync( new AggregateUniqueRequest( table_name,
7450  column_name,
7451  offset, limit,
7452  options ), cancellationToken );
7453  }
7454 
7477  {
7478  RawAggregateUnpivotResponse actualResponse_ = SubmitRequest<RawAggregateUnpivotResponse>("/aggregate/unpivot", request_, false);
7479 
7481  response_.table_name = actualResponse_.table_name;
7482  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
7483  response_.total_number_of_records = actualResponse_.total_number_of_records;
7484  response_.has_more_records = actualResponse_.has_more_records;
7485  response_.info = actualResponse_.info;
7486  return response_;
7487  }
7488 
7512  public async System.Threading.Tasks.Task<AggregateUnpivotResponse> AggregateUnpivotAsync( AggregateUnpivotRequest request_,
7513  System.Threading.CancellationToken cancellationToken = default )
7514  {
7515  RawAggregateUnpivotResponse actualResponse_ = await SubmitRequestAsync<RawAggregateUnpivotResponse>("/aggregate/unpivot", request_, false, true, cancellationToken);
7516 
7518  response_.table_name = actualResponse_.table_name;
7519  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
7520  response_.total_number_of_records = actualResponse_.total_number_of_records;
7521  response_.has_more_records = actualResponse_.has_more_records;
7522  response_.info = actualResponse_.info;
7523  return response_;
7524  }
7525 
7772  public AggregateUnpivotResponse aggregateUnpivot( string table_name,
7773  IList<string> column_names,
7774  string variable_column_name,
7775  string value_column_name,
7776  IList<string> pivoted_columns,
7777  IDictionary<string, string> options = null )
7778  {
7779  return aggregateUnpivot( new AggregateUnpivotRequest( table_name, column_names,
7780  variable_column_name,
7781  value_column_name,
7782  pivoted_columns, options ) );
7783  }
7784 
8033  public async System.Threading.Tasks.Task<AggregateUnpivotResponse> AggregateUnpivotAsync( string table_name,
8034  IList<string> column_names,
8035  string variable_column_name,
8036  string value_column_name,
8037  IList<string> pivoted_columns,
8038  IDictionary<string, string> options = null,
8039  System.Threading.CancellationToken cancellationToken = default )
8040  {
8041  return await AggregateUnpivotAsync( new AggregateUnpivotRequest( table_name,
8042  column_names,
8043  variable_column_name,
8044  value_column_name,
8045  pivoted_columns,
8046  options ), cancellationToken );
8047  }
8048 
8061  {
8062  AlterBackupResponse actualResponse_ = SubmitRequest<AlterBackupResponse>("/alter/backup", request_, false);
8063 
8064  return actualResponse_;
8065  }
8066 
8081  public async System.Threading.Tasks.Task<AlterBackupResponse> AlterBackupAsync( AlterBackupRequest request_,
8082  System.Threading.CancellationToken cancellationToken = default )
8083  {
8084  AlterBackupResponse actualResponse_ = await SubmitRequestAsync<AlterBackupResponse>("/alter/backup", request_, false, true, cancellationToken);
8085 
8086  return actualResponse_;
8087  }
8088 
8173  public AlterBackupResponse alterBackup( string backup_name,
8174  string action,
8175  string _value,
8176  string datasink_name,
8177  IDictionary<string, string> options = null )
8178  {
8179  return alterBackup( new AlterBackupRequest( backup_name, action, _value,
8180  datasink_name, options ) );
8181  }
8182 
8269  public async System.Threading.Tasks.Task<AlterBackupResponse> AlterBackupAsync( string backup_name,
8270  string action,
8271  string _value,
8272  string datasink_name,
8273  IDictionary<string, string> options = null,
8274  System.Threading.CancellationToken cancellationToken = default )
8275  {
8276  return await AlterBackupAsync( new AlterBackupRequest( backup_name, action,
8277  _value, datasink_name,
8278  options ), cancellationToken );
8279  }
8280 
8290  {
8291  AlterCredentialResponse actualResponse_ = SubmitRequest<AlterCredentialResponse>("/alter/credential", request_, false);
8292 
8293  return actualResponse_;
8294  }
8295 
8306  public async System.Threading.Tasks.Task<AlterCredentialResponse> AlterCredentialAsync( AlterCredentialRequest request_,
8307  System.Threading.CancellationToken cancellationToken = default )
8308  {
8309  AlterCredentialResponse actualResponse_ = await SubmitRequestAsync<AlterCredentialResponse>("/alter/credential", request_, false, true, cancellationToken);
8310 
8311  return actualResponse_;
8312  }
8313 
8414  public AlterCredentialResponse alterCredential( string credential_name,
8415  IDictionary<string, string> credential_updates_map,
8416  IDictionary<string, string> options )
8417  {
8418  return alterCredential( new AlterCredentialRequest( credential_name,
8419  credential_updates_map,
8420  options ) );
8421  }
8422 
8525  public async System.Threading.Tasks.Task<AlterCredentialResponse> AlterCredentialAsync( string credential_name,
8526  IDictionary<string, string> credential_updates_map,
8527  IDictionary<string, string> options,
8528  System.Threading.CancellationToken cancellationToken = default )
8529  {
8530  return await AlterCredentialAsync( new AlterCredentialRequest( credential_name,
8531  credential_updates_map,
8532  options ), cancellationToken );
8533  }
8534 
8544  {
8545  AlterDatasinkResponse actualResponse_ = SubmitRequest<AlterDatasinkResponse>("/alter/datasink", request_, false);
8546 
8547  return actualResponse_;
8548  }
8549 
8560  public async System.Threading.Tasks.Task<AlterDatasinkResponse> AlterDatasinkAsync( AlterDatasinkRequest request_,
8561  System.Threading.CancellationToken cancellationToken = default )
8562  {
8563  AlterDatasinkResponse actualResponse_ = await SubmitRequestAsync<AlterDatasinkResponse>("/alter/datasink", request_, false, true, cancellationToken);
8564 
8565  return actualResponse_;
8566  }
8567 
9011  IDictionary<string, string> datasink_updates_map,
9012  IDictionary<string, string> options )
9013  {
9014  return alterDatasink( new AlterDatasinkRequest( name, datasink_updates_map,
9015  options ) );
9016  }
9017 
9462  public async System.Threading.Tasks.Task<AlterDatasinkResponse> AlterDatasinkAsync( string name,
9463  IDictionary<string, string> datasink_updates_map,
9464  IDictionary<string, string> options,
9465  System.Threading.CancellationToken cancellationToken = default )
9466  {
9467  return await AlterDatasinkAsync( new AlterDatasinkRequest( name,
9468  datasink_updates_map,
9469  options ), cancellationToken );
9470  }
9471 
9481  {
9482  AlterDatasourceResponse actualResponse_ = SubmitRequest<AlterDatasourceResponse>("/alter/datasource", request_, false);
9483 
9484  return actualResponse_;
9485  }
9486 
9497  public async System.Threading.Tasks.Task<AlterDatasourceResponse> AlterDatasourceAsync( AlterDatasourceRequest request_,
9498  System.Threading.CancellationToken cancellationToken = default )
9499  {
9500  AlterDatasourceResponse actualResponse_ = await SubmitRequestAsync<AlterDatasourceResponse>("/alter/datasource", request_, false, true, cancellationToken);
9501 
9502  return actualResponse_;
9503  }
9504 
9945  IDictionary<string, string> datasource_updates_map,
9946  IDictionary<string, string> options )
9947  {
9948  return alterDatasource( new AlterDatasourceRequest( name, datasource_updates_map,
9949  options ) );
9950  }
9951 
10393  public async System.Threading.Tasks.Task<AlterDatasourceResponse> AlterDatasourceAsync( string name,
10394  IDictionary<string, string> datasource_updates_map,
10395  IDictionary<string, string> options,
10396  System.Threading.CancellationToken cancellationToken = default )
10397  {
10398  return await AlterDatasourceAsync( new AlterDatasourceRequest( name,
10399  datasource_updates_map,
10400  options ), cancellationToken );
10401  }
10402 
10411  {
10412  AlterDirectoryResponse actualResponse_ = SubmitRequest<AlterDirectoryResponse>("/alter/directory", request_, false);
10413 
10414  return actualResponse_;
10415  }
10416 
10426  public async System.Threading.Tasks.Task<AlterDirectoryResponse> AlterDirectoryAsync( AlterDirectoryRequest request_,
10427  System.Threading.CancellationToken cancellationToken = default )
10428  {
10429  AlterDirectoryResponse actualResponse_ = await SubmitRequestAsync<AlterDirectoryResponse>("/alter/directory", request_, false, true, cancellationToken);
10430 
10431  return actualResponse_;
10432  }
10433 
10454  public AlterDirectoryResponse alterDirectory( string directory_name,
10455  IDictionary<string, string> directory_updates_map,
10456  IDictionary<string, string> options = null )
10457  {
10458  return alterDirectory( new AlterDirectoryRequest( directory_name,
10459  directory_updates_map, options ) );
10460  }
10461 
10484  public async System.Threading.Tasks.Task<AlterDirectoryResponse> AlterDirectoryAsync( string directory_name,
10485  IDictionary<string, string> directory_updates_map,
10486  IDictionary<string, string> options = null,
10487  System.Threading.CancellationToken cancellationToken = default )
10488  {
10489  return await AlterDirectoryAsync( new AlterDirectoryRequest( directory_name,
10490  directory_updates_map,
10491  options ), cancellationToken );
10492  }
10493 
10503  {
10504  AlterEnvironmentResponse actualResponse_ = SubmitRequest<AlterEnvironmentResponse>("/alter/environment", request_, false);
10505 
10506  return actualResponse_;
10507  }
10508 
10519  public async System.Threading.Tasks.Task<AlterEnvironmentResponse> AlterEnvironmentAsync( AlterEnvironmentRequest request_,
10520  System.Threading.CancellationToken cancellationToken = default )
10521  {
10522  AlterEnvironmentResponse actualResponse_ = await SubmitRequestAsync<AlterEnvironmentResponse>("/alter/environment", request_, false, true, cancellationToken);
10523 
10524  return actualResponse_;
10525  }
10526 
10608  public AlterEnvironmentResponse alterEnvironment( string environment_name,
10609  string action,
10610  string _value,
10611  IDictionary<string, string> options = null )
10612  {
10613  return alterEnvironment( new AlterEnvironmentRequest( environment_name, action,
10614  _value, options ) );
10615  }
10616 
10700  public async System.Threading.Tasks.Task<AlterEnvironmentResponse> AlterEnvironmentAsync( string environment_name,
10701  string action,
10702  string _value,
10703  IDictionary<string, string> options = null,
10704  System.Threading.CancellationToken cancellationToken = default )
10705  {
10706  return await AlterEnvironmentAsync( new AlterEnvironmentRequest( environment_name,
10707  action, _value,
10708  options ), cancellationToken );
10709  }
10710 
10712  public AlterGraphResponse alterGraph( AlterGraphRequest request_ )
10713  {
10714  AlterGraphResponse actualResponse_ = SubmitRequest<AlterGraphResponse>("/alter/graph", request_, false);
10715 
10716  return actualResponse_;
10717  }
10719 
10721  public async System.Threading.Tasks.Task<AlterGraphResponse> AlterGraphAsync( AlterGraphRequest request_,
10722  System.Threading.CancellationToken cancellationToken = default )
10723  {
10724  AlterGraphResponse actualResponse_ = await SubmitRequestAsync<AlterGraphResponse>("/alter/graph", request_, false, true, cancellationToken);
10725 
10726  return actualResponse_;
10727  }
10729 
10731  public AlterGraphResponse alterGraph( string graph_name,
10732  string action,
10733  string action_arg,
10734  IDictionary<string, string> options = null )
10735  {
10736  return alterGraph( new AlterGraphRequest( graph_name, action, action_arg, options ) );
10737  }
10739 
10741  public async System.Threading.Tasks.Task<AlterGraphResponse> AlterGraphAsync( string graph_name,
10742  string action,
10743  string action_arg,
10744  IDictionary<string, string> options = null,
10745  System.Threading.CancellationToken cancellationToken = default )
10746  {
10747  return await AlterGraphAsync( new AlterGraphRequest( graph_name, action,
10748  action_arg, options ), cancellationToken );
10749  }
10751 
10753  public AlterModelResponse alterModel( AlterModelRequest request_ )
10754  {
10755  AlterModelResponse actualResponse_ = SubmitRequest<AlterModelResponse>("/alter/model", request_, false);
10756 
10757  return actualResponse_;
10758  }
10760 
10762  public async System.Threading.Tasks.Task<AlterModelResponse> AlterModelAsync( AlterModelRequest request_,
10763  System.Threading.CancellationToken cancellationToken = default )
10764  {
10765  AlterModelResponse actualResponse_ = await SubmitRequestAsync<AlterModelResponse>("/alter/model", request_, false, true, cancellationToken);
10766 
10767  return actualResponse_;
10768  }
10770 
10772  public AlterModelResponse alterModel( string model_name,
10773  string action,
10774  string _value,
10775  IDictionary<string, string> options = null )
10776  {
10777  return alterModel( new AlterModelRequest( model_name, action, _value, options ) );
10778  }
10780 
10782  public async System.Threading.Tasks.Task<AlterModelResponse> AlterModelAsync( string model_name,
10783  string action,
10784  string _value,
10785  IDictionary<string, string> options = null,
10786  System.Threading.CancellationToken cancellationToken = default )
10787  {
10788  return await AlterModelAsync( new AlterModelRequest( model_name, action, _value,
10789  options ), cancellationToken );
10790  }
10792 
10801  {
10802  AlterResourceGroupResponse actualResponse_ = SubmitRequest<AlterResourceGroupResponse>("/alter/resourcegroup", request_, false);
10803 
10804  return actualResponse_;
10805  }
10806 
10816  public async System.Threading.Tasks.Task<AlterResourceGroupResponse> AlterResourceGroupAsync( AlterResourceGroupRequest request_,
10817  System.Threading.CancellationToken cancellationToken = default )
10818  {
10819  AlterResourceGroupResponse actualResponse_ = await SubmitRequestAsync<AlterResourceGroupResponse>("/alter/resourcegroup", request_, false, true, cancellationToken);
10820 
10821  return actualResponse_;
10822  }
10823 
10996  IDictionary<string, IDictionary<string, string>> tier_attributes = null,
10998  string adjoining_resource_group = "",
10999  IDictionary<string, string> options = null )
11000  {
11001  return alterResourceGroup( new AlterResourceGroupRequest( name, tier_attributes,
11002  ranking,
11003  adjoining_resource_group,
11004  options ) );
11005  }
11006 
11180  public async System.Threading.Tasks.Task<AlterResourceGroupResponse> AlterResourceGroupAsync( string name,
11181  IDictionary<string, IDictionary<string, string>> tier_attributes = null,
11183  string adjoining_resource_group = "",
11184  IDictionary<string, string> options = null,
11185  System.Threading.CancellationToken cancellationToken = default )
11186  {
11187  return await AlterResourceGroupAsync( new AlterResourceGroupRequest( name,
11188  tier_attributes,
11189  ranking,
11190  adjoining_resource_group,
11191  options ), cancellationToken );
11192  }
11193 
11201  {
11202  AlterRoleResponse actualResponse_ = SubmitRequest<AlterRoleResponse>("/alter/role", request_, false);
11203 
11204  return actualResponse_;
11205  }
11206 
11215  public async System.Threading.Tasks.Task<AlterRoleResponse> AlterRoleAsync( AlterRoleRequest request_,
11216  System.Threading.CancellationToken cancellationToken = default )
11217  {
11218  AlterRoleResponse actualResponse_ = await SubmitRequestAsync<AlterRoleResponse>("/alter/role", request_, false, true, cancellationToken);
11219 
11220  return actualResponse_;
11221  }
11222 
11252  public AlterRoleResponse alterRole( string name,
11253  string action,
11254  string _value,
11255  IDictionary<string, string> options = null )
11256  {
11257  return alterRole( new AlterRoleRequest( name, action, _value, options ) );
11258  }
11259 
11291  public async System.Threading.Tasks.Task<AlterRoleResponse> AlterRoleAsync( string name,
11292  string action,
11293  string _value,
11294  IDictionary<string, string> options = null,
11295  System.Threading.CancellationToken cancellationToken = default )
11296  {
11297  return await AlterRoleAsync( new AlterRoleRequest( name, action, _value, options ), cancellationToken );
11298  }
11299 
11310  {
11311  AlterSchemaResponse actualResponse_ = SubmitRequest<AlterSchemaResponse>("/alter/schema", request_, false);
11312 
11313  return actualResponse_;
11314  }
11315 
11327  public async System.Threading.Tasks.Task<AlterSchemaResponse> AlterSchemaAsync( AlterSchemaRequest request_,
11328  System.Threading.CancellationToken cancellationToken = default )
11329  {
11330  AlterSchemaResponse actualResponse_ = await SubmitRequestAsync<AlterSchemaResponse>("/alter/schema", request_, false, true, cancellationToken);
11331 
11332  return actualResponse_;
11333  }
11334 
11369  public AlterSchemaResponse alterSchema( string schema_name,
11370  string action,
11371  string _value,
11372  IDictionary<string, string> options = null )
11373  {
11374  return alterSchema( new AlterSchemaRequest( schema_name, action, _value, options ) );
11375  }
11376 
11413  public async System.Threading.Tasks.Task<AlterSchemaResponse> AlterSchemaAsync( string schema_name,
11414  string action,
11415  string _value,
11416  IDictionary<string, string> options = null,
11417  System.Threading.CancellationToken cancellationToken = default )
11418  {
11419  return await AlterSchemaAsync( new AlterSchemaRequest( schema_name, action,
11420  _value, options ), cancellationToken );
11421  }
11422 
11438  {
11439  AlterSystemPropertiesResponse actualResponse_ = SubmitRequest<AlterSystemPropertiesResponse>("/alter/system/properties", request_, false);
11440 
11441  return actualResponse_;
11442  }
11443 
11461  System.Threading.CancellationToken cancellationToken = default )
11462  {
11463  AlterSystemPropertiesResponse actualResponse_ = await SubmitRequestAsync<AlterSystemPropertiesResponse>("/alter/system/properties", request_, false, true, cancellationToken);
11464 
11465  return actualResponse_;
11466  }
11467 
11913  public AlterSystemPropertiesResponse alterSystemProperties( IDictionary<string, string> property_updates_map,
11914  IDictionary<string, string> options = null )
11915  {
11916  return alterSystemProperties( new AlterSystemPropertiesRequest( property_updates_map,
11917  options ) );
11918  }
11919 
12367  public async System.Threading.Tasks.Task<AlterSystemPropertiesResponse> AlterSystemPropertiesAsync( IDictionary<string, string> property_updates_map,
12368  IDictionary<string, string> options = null,
12369  System.Threading.CancellationToken cancellationToken = default )
12370  {
12371  return await AlterSystemPropertiesAsync( new AlterSystemPropertiesRequest( property_updates_map,
12372  options ), cancellationToken );
12373  }
12374 
12427  {
12428  AlterTableResponse actualResponse_ = SubmitRequest<AlterTableResponse>("/alter/table", request_, false);
12429 
12430  return actualResponse_;
12431  }
12432 
12487  public async System.Threading.Tasks.Task<AlterTableResponse> AlterTableAsync( AlterTableRequest request_,
12488  System.Threading.CancellationToken cancellationToken = default )
12489  {
12490  AlterTableResponse actualResponse_ = await SubmitRequestAsync<AlterTableResponse>("/alter/table", request_, false, true, cancellationToken);
12491 
12492  return actualResponse_;
12493  }
12494 
13166  public AlterTableResponse alterTable( string table_name,
13167  string action,
13168  string _value,
13169  IDictionary<string, string> options = null )
13170  {
13171  return alterTable( new AlterTableRequest( table_name, action, _value, options ) );
13172  }
13173 
13848  public async System.Threading.Tasks.Task<AlterTableResponse> AlterTableAsync( string table_name,
13849  string action,
13850  string _value,
13851  IDictionary<string, string> options = null,
13852  System.Threading.CancellationToken cancellationToken = default )
13853  {
13854  return await AlterTableAsync( new AlterTableRequest( table_name, action, _value,
13855  options ), cancellationToken );
13856  }
13857 
13878  {
13879  AlterTableColumnsResponse actualResponse_ = SubmitRequest<AlterTableColumnsResponse>("/alter/table/columns", request_, false);
13880 
13881  return actualResponse_;
13882  }
13883 
13905  public async System.Threading.Tasks.Task<AlterTableColumnsResponse> AlterTableColumnsAsync( AlterTableColumnsRequest request_,
13906  System.Threading.CancellationToken cancellationToken = default )
13907  {
13908  AlterTableColumnsResponse actualResponse_ = await SubmitRequestAsync<AlterTableColumnsResponse>("/alter/table/columns", request_, false, true, cancellationToken);
13909 
13910  return actualResponse_;
13911  }
13912 
13944  IList<IDictionary<string, string>> column_alterations,
13945  IDictionary<string, string> options )
13946  {
13947  return alterTableColumns( new AlterTableColumnsRequest( table_name,
13948  column_alterations,
13949  options ) );
13950  }
13951 
13984  public async System.Threading.Tasks.Task<AlterTableColumnsResponse> AlterTableColumnsAsync( string table_name,
13985  IList<IDictionary<string, string>> column_alterations,
13986  IDictionary<string, string> options,
13987  System.Threading.CancellationToken cancellationToken = default )
13988  {
13989  return await AlterTableColumnsAsync( new AlterTableColumnsRequest( table_name,
13990  column_alterations,
13991  options ), cancellationToken );
13992  }
13993 
14005  {
14006  AlterTableMetadataResponse actualResponse_ = SubmitRequest<AlterTableMetadataResponse>("/alter/table/metadata", request_, false);
14007 
14008  return actualResponse_;
14009  }
14010 
14024  public async System.Threading.Tasks.Task<AlterTableMetadataResponse> AlterTableMetadataAsync( AlterTableMetadataRequest request_,
14025  System.Threading.CancellationToken cancellationToken = default )
14026  {
14027  AlterTableMetadataResponse actualResponse_ = await SubmitRequestAsync<AlterTableMetadataResponse>("/alter/table/metadata", request_, false, true, cancellationToken);
14028 
14029  return actualResponse_;
14030  }
14031 
14052  public AlterTableMetadataResponse alterTableMetadata( IList<string> table_names,
14053  IDictionary<string, string> metadata_map,
14054  IDictionary<string, string> options = null )
14055  {
14056  return alterTableMetadata( new AlterTableMetadataRequest( table_names,
14057  metadata_map, options ) );
14058  }
14059 
14083  public async System.Threading.Tasks.Task<AlterTableMetadataResponse> AlterTableMetadataAsync( IList<string> table_names,
14084  IDictionary<string, string> metadata_map,
14085  IDictionary<string, string> options = null,
14086  System.Threading.CancellationToken cancellationToken = default )
14087  {
14088  return await AlterTableMetadataAsync( new AlterTableMetadataRequest( table_names,
14089  metadata_map,
14090  options ), cancellationToken );
14091  }
14092 
14102  {
14103  AlterTableMonitorResponse actualResponse_ = SubmitRequest<AlterTableMonitorResponse>("/alter/tablemonitor", request_, false);
14104 
14105  return actualResponse_;
14106  }
14107 
14118  public async System.Threading.Tasks.Task<AlterTableMonitorResponse> AlterTableMonitorAsync( AlterTableMonitorRequest request_,
14119  System.Threading.CancellationToken cancellationToken = default )
14120  {
14121  AlterTableMonitorResponse actualResponse_ = await SubmitRequestAsync<AlterTableMonitorResponse>("/alter/tablemonitor", request_, false, true, cancellationToken);
14122 
14123  return actualResponse_;
14124  }
14125 
14182  IDictionary<string, string> monitor_updates_map,
14183  IDictionary<string, string> options = null )
14184  {
14185  return alterTableMonitor( new AlterTableMonitorRequest( topic_id,
14186  monitor_updates_map,
14187  options ) );
14188  }
14189 
14247  public async System.Threading.Tasks.Task<AlterTableMonitorResponse> AlterTableMonitorAsync( string topic_id,
14248  IDictionary<string, string> monitor_updates_map,
14249  IDictionary<string, string> options = null,
14250  System.Threading.CancellationToken cancellationToken = default )
14251  {
14252  return await AlterTableMonitorAsync( new AlterTableMonitorRequest( topic_id,
14253  monitor_updates_map,
14254  options ), cancellationToken );
14255  }
14256 
14273  {
14274  AlterTierResponse actualResponse_ = SubmitRequest<AlterTierResponse>("/alter/tier", request_, false);
14275 
14276  return actualResponse_;
14277  }
14278 
14296  public async System.Threading.Tasks.Task<AlterTierResponse> AlterTierAsync( AlterTierRequest request_,
14297  System.Threading.CancellationToken cancellationToken = default )
14298  {
14299  AlterTierResponse actualResponse_ = await SubmitRequestAsync<AlterTierResponse>("/alter/tier", request_, false, true, cancellationToken);
14300 
14301  return actualResponse_;
14302  }
14303 
14387  public AlterTierResponse alterTier( string name,
14388  IDictionary<string, string> options = null )
14389  {
14390  return alterTier( new AlterTierRequest( name, options ) );
14391  }
14392 
14478  public async System.Threading.Tasks.Task<AlterTierResponse> AlterTierAsync( string name,
14479  IDictionary<string, string> options = null,
14480  System.Threading.CancellationToken cancellationToken = default )
14481  {
14482  return await AlterTierAsync( new AlterTierRequest( name, options ), cancellationToken );
14483  }
14484 
14492  {
14493  AlterUserResponse actualResponse_ = SubmitRequest<AlterUserResponse>("/alter/user", request_, false);
14494 
14495  return actualResponse_;
14496  }
14497 
14506  public async System.Threading.Tasks.Task<AlterUserResponse> AlterUserAsync( AlterUserRequest request_,
14507  System.Threading.CancellationToken cancellationToken = default )
14508  {
14509  AlterUserResponse actualResponse_ = await SubmitRequestAsync<AlterUserResponse>("/alter/user", request_, false, true, cancellationToken);
14510 
14511  return actualResponse_;
14512  }
14513 
14574  public AlterUserResponse alterUser( string name,
14575  string action,
14576  string _value,
14577  IDictionary<string, string> options = null )
14578  {
14579  return alterUser( new AlterUserRequest( name, action, _value, options ) );
14580  }
14581 
14644  public async System.Threading.Tasks.Task<AlterUserResponse> AlterUserAsync( string name,
14645  string action,
14646  string _value,
14647  IDictionary<string, string> options = null,
14648  System.Threading.CancellationToken cancellationToken = default )
14649  {
14650  return await AlterUserAsync( new AlterUserRequest( name, action, _value, options ), cancellationToken );
14651  }
14652 
14660  {
14661  AlterVideoResponse actualResponse_ = SubmitRequest<AlterVideoResponse>("/alter/video", request_, false);
14662 
14663  return actualResponse_;
14664  }
14665 
14674  public async System.Threading.Tasks.Task<AlterVideoResponse> AlterVideoAsync( AlterVideoRequest request_,
14675  System.Threading.CancellationToken cancellationToken = default )
14676  {
14677  AlterVideoResponse actualResponse_ = await SubmitRequestAsync<AlterVideoResponse>("/alter/video", request_, false, true, cancellationToken);
14678 
14679  return actualResponse_;
14680  }
14681 
14698  public AlterVideoResponse alterVideo( string path,
14699  IDictionary<string, string> options = null )
14700  {
14701  return alterVideo( new AlterVideoRequest( path, options ) );
14702  }
14703 
14722  public async System.Threading.Tasks.Task<AlterVideoResponse> AlterVideoAsync( string path,
14723  IDictionary<string, string> options = null,
14724  System.Threading.CancellationToken cancellationToken = default )
14725  {
14726  return await AlterVideoAsync( new AlterVideoRequest( path, options ), cancellationToken );
14727  }
14728 
14737  {
14738  AlterWalResponse actualResponse_ = SubmitRequest<AlterWalResponse>("/alter/wal", request_, false);
14739 
14740  return actualResponse_;
14741  }
14742 
14753  public async System.Threading.Tasks.Task<AlterWalResponse> AlterWalAsync( AlterWalRequest request_,
14754  System.Threading.CancellationToken cancellationToken = default )
14755  {
14756  AlterWalResponse actualResponse_ = await SubmitRequestAsync<AlterWalResponse>("/alter/wal", request_, false, true, cancellationToken);
14757 
14758  return actualResponse_;
14759  }
14760 
14918  public AlterWalResponse alterWal( IList<string> table_names,
14919  IDictionary<string, string> options = null )
14920  {
14921  return alterWal( new AlterWalRequest( table_names, options ) );
14922  }
14923 
15084  public async System.Threading.Tasks.Task<AlterWalResponse> AlterWalAsync( IList<string> table_names,
15085  IDictionary<string, string> options = null,
15086  System.Threading.CancellationToken cancellationToken = default )
15087  {
15088  return await AlterWalAsync( new AlterWalRequest( table_names, options ), cancellationToken );
15089  }
15090 
15106  {
15107  AppendRecordsResponse actualResponse_ = SubmitRequest<AppendRecordsResponse>("/append/records", request_, false);
15108 
15109  return actualResponse_;
15110  }
15111 
15129  public async System.Threading.Tasks.Task<AppendRecordsResponse> AppendRecordsAsync( AppendRecordsRequest request_,
15130  System.Threading.CancellationToken cancellationToken = default )
15131  {
15132  AppendRecordsResponse actualResponse_ = await SubmitRequestAsync<AppendRecordsResponse>("/append/records", request_, false, true, cancellationToken);
15133 
15134  return actualResponse_;
15135  }
15136 
15339  public AppendRecordsResponse appendRecords( string table_name,
15340  string source_table_name,
15341  IDictionary<string, string> field_map,
15342  IDictionary<string, string> options = null )
15343  {
15344  return appendRecords( new AppendRecordsRequest( table_name, source_table_name,
15345  field_map, options ) );
15346  }
15347 
15552  public async System.Threading.Tasks.Task<AppendRecordsResponse> AppendRecordsAsync( string table_name,
15553  string source_table_name,
15554  IDictionary<string, string> field_map,
15555  IDictionary<string, string> options = null,
15556  System.Threading.CancellationToken cancellationToken = default )
15557  {
15558  return await AppendRecordsAsync( new AppendRecordsRequest( table_name,
15559  source_table_name,
15560  field_map, options ), cancellationToken );
15561  }
15562 
15579  {
15580  CheckTableResponse actualResponse_ = SubmitRequest<CheckTableResponse>("/check/table", request_, false);
15581 
15582  return actualResponse_;
15583  }
15584 
15602  public async System.Threading.Tasks.Task<CheckTableResponse> CheckTableAsync( CheckTableRequest request_,
15603  System.Threading.CancellationToken cancellationToken = default )
15604  {
15605  CheckTableResponse actualResponse_ = await SubmitRequestAsync<CheckTableResponse>("/check/table", request_, false, true, cancellationToken);
15606 
15607  return actualResponse_;
15608  }
15609 
15673  public CheckTableResponse checkTable( IList<string> table_names,
15674  IDictionary<string, string> options = null )
15675  {
15676  return checkTable( new CheckTableRequest( table_names, options ) );
15677  }
15678 
15744  public async System.Threading.Tasks.Task<CheckTableResponse> CheckTableAsync( IList<string> table_names,
15745  IDictionary<string, string> options = null,
15746  System.Threading.CancellationToken cancellationToken = default )
15747  {
15748  return await CheckTableAsync( new CheckTableRequest( table_names, options ), cancellationToken );
15749  }
15750 
15759  {
15760  ClearStatisticsResponse actualResponse_ = SubmitRequest<ClearStatisticsResponse>("/clear/statistics", request_, false);
15761 
15762  return actualResponse_;
15763  }
15764 
15774  public async System.Threading.Tasks.Task<ClearStatisticsResponse> ClearStatisticsAsync( ClearStatisticsRequest request_,
15775  System.Threading.CancellationToken cancellationToken = default )
15776  {
15777  ClearStatisticsResponse actualResponse_ = await SubmitRequestAsync<ClearStatisticsResponse>("/clear/statistics", request_, false, true, cancellationToken);
15778 
15779  return actualResponse_;
15780  }
15781 
15798  public ClearStatisticsResponse clearStatistics( string table_name = "",
15799  string column_name = "",
15800  IDictionary<string, string> options = null )
15801  {
15802  return clearStatistics( new ClearStatisticsRequest( table_name, column_name,
15803  options ) );
15804  }
15805 
15824  public async System.Threading.Tasks.Task<ClearStatisticsResponse> ClearStatisticsAsync( string table_name = "",
15825  string column_name = "",
15826  IDictionary<string, string> options = null,
15827  System.Threading.CancellationToken cancellationToken = default )
15828  {
15829  return await ClearStatisticsAsync( new ClearStatisticsRequest( table_name,
15830  column_name,
15831  options ), cancellationToken );
15832  }
15833 
15846  {
15847  ClearTableResponse actualResponse_ = SubmitRequest<ClearTableResponse>("/clear/table", request_, false);
15848 
15849  return actualResponse_;
15850  }
15851 
15865  public async System.Threading.Tasks.Task<ClearTableResponse> ClearTableAsync( ClearTableRequest request_,
15866  System.Threading.CancellationToken cancellationToken = default )
15867  {
15868  ClearTableResponse actualResponse_ = await SubmitRequestAsync<ClearTableResponse>("/clear/table", request_, false, true, cancellationToken);
15869 
15870  return actualResponse_;
15871  }
15872 
15922  public ClearTableResponse clearTable( string table_name = "",
15923  string authorization = "",
15924  IDictionary<string, string> options = null )
15925  {
15926  return clearTable( new ClearTableRequest( table_name, authorization, options ) );
15927  }
15928 
15980  public async System.Threading.Tasks.Task<ClearTableResponse> ClearTableAsync( string table_name = "",
15981  string authorization = "",
15982  IDictionary<string, string> options = null,
15983  System.Threading.CancellationToken cancellationToken = default )
15984  {
15985  return await ClearTableAsync( new ClearTableRequest( table_name, authorization,
15986  options ), cancellationToken );
15987  }
15988 
15998  {
15999  ClearTableMonitorResponse actualResponse_ = SubmitRequest<ClearTableMonitorResponse>("/clear/tablemonitor", request_, false);
16000 
16001  return actualResponse_;
16002  }
16003 
16014  public async System.Threading.Tasks.Task<ClearTableMonitorResponse> ClearTableMonitorAsync( ClearTableMonitorRequest request_,
16015  System.Threading.CancellationToken cancellationToken = default )
16016  {
16017  ClearTableMonitorResponse actualResponse_ = await SubmitRequestAsync<ClearTableMonitorResponse>("/clear/tablemonitor", request_, false, true, cancellationToken);
16018 
16019  return actualResponse_;
16020  }
16021 
16090  IDictionary<string, string> options = null )
16091  {
16092  return clearTableMonitor( new ClearTableMonitorRequest( topic_id, options ) );
16093  }
16094 
16164  public async System.Threading.Tasks.Task<ClearTableMonitorResponse> ClearTableMonitorAsync( string topic_id,
16165  IDictionary<string, string> options = null,
16166  System.Threading.CancellationToken cancellationToken = default )
16167  {
16168  return await ClearTableMonitorAsync( new ClearTableMonitorRequest( topic_id,
16169  options ), cancellationToken );
16170  }
16171 
16183  {
16184  ClearTablesResponse actualResponse_ = SubmitRequest<ClearTablesResponse>("/clear/tables", request_, false);
16185 
16186  return actualResponse_;
16187  }
16188 
16202  public async System.Threading.Tasks.Task<ClearTablesResponse> ClearTablesAsync( ClearTablesRequest request_,
16203  System.Threading.CancellationToken cancellationToken = default )
16204  {
16205  ClearTablesResponse actualResponse_ = await SubmitRequestAsync<ClearTablesResponse>("/clear/tables", request_, false, true, cancellationToken);
16206 
16207  return actualResponse_;
16208  }
16209 
16257  public ClearTablesResponse clearTables( IList<string> table_names = null,
16258  IDictionary<string, string> options = null )
16259  {
16260  return clearTables( new ClearTablesRequest( table_names, options ) );
16261  }
16262 
16313  public async System.Threading.Tasks.Task<ClearTablesResponse> ClearTablesAsync( IList<string> table_names = null,
16314  IDictionary<string, string> options = null,
16315  System.Threading.CancellationToken cancellationToken = default )
16316  {
16317  return await ClearTablesAsync( new ClearTablesRequest( table_names, options ), cancellationToken );
16318  }
16319 
16331  {
16332  ClearTriggerResponse actualResponse_ = SubmitRequest<ClearTriggerResponse>("/clear/trigger", request_, false);
16333 
16334  return actualResponse_;
16335  }
16336 
16349  public async System.Threading.Tasks.Task<ClearTriggerResponse> ClearTriggerAsync( ClearTriggerRequest request_,
16350  System.Threading.CancellationToken cancellationToken = default )
16351  {
16352  ClearTriggerResponse actualResponse_ = await SubmitRequestAsync<ClearTriggerResponse>("/clear/trigger", request_, false, true, cancellationToken);
16353 
16354  return actualResponse_;
16355  }
16356 
16368  public ClearTriggerResponse clearTrigger( string trigger_id,
16369  IDictionary<string, string> options = null )
16370  {
16371  return clearTrigger( new ClearTriggerRequest( trigger_id, options ) );
16372  }
16373 
16387  public async System.Threading.Tasks.Task<ClearTriggerResponse> ClearTriggerAsync( string trigger_id,
16388  IDictionary<string, string> options = null,
16389  System.Threading.CancellationToken cancellationToken = default )
16390  {
16391  return await ClearTriggerAsync( new ClearTriggerRequest( trigger_id, options ), cancellationToken );
16392  }
16393 
16402  {
16403  CollectStatisticsResponse actualResponse_ = SubmitRequest<CollectStatisticsResponse>("/collect/statistics", request_, false);
16404 
16405  return actualResponse_;
16406  }
16407 
16417  public async System.Threading.Tasks.Task<CollectStatisticsResponse> CollectStatisticsAsync( CollectStatisticsRequest request_,
16418  System.Threading.CancellationToken cancellationToken = default )
16419  {
16420  CollectStatisticsResponse actualResponse_ = await SubmitRequestAsync<CollectStatisticsResponse>("/collect/statistics", request_, false, true, cancellationToken);
16421 
16422  return actualResponse_;
16423  }
16424 
16441  IList<string> column_names,
16442  IDictionary<string, string> options = null )
16443  {
16444  return collectStatistics( new CollectStatisticsRequest( table_name, column_names,
16445  options ) );
16446  }
16447 
16465  public async System.Threading.Tasks.Task<CollectStatisticsResponse> CollectStatisticsAsync( string table_name,
16466  IList<string> column_names,
16467  IDictionary<string, string> options = null,
16468  System.Threading.CancellationToken cancellationToken = default )
16469  {
16470  return await CollectStatisticsAsync( new CollectStatisticsRequest( table_name,
16471  column_names,
16472  options ), cancellationToken );
16473  }
16474 
16488  {
16489  CreateBackupResponse actualResponse_ = SubmitRequest<CreateBackupResponse>("/create/backup", request_, false);
16490 
16491  return actualResponse_;
16492  }
16493 
16509  public async System.Threading.Tasks.Task<CreateBackupResponse> CreateBackupAsync( CreateBackupRequest request_,
16510  System.Threading.CancellationToken cancellationToken = default )
16511  {
16512  CreateBackupResponse actualResponse_ = await SubmitRequestAsync<CreateBackupResponse>("/create/backup", request_, false, true, cancellationToken);
16513 
16514  return actualResponse_;
16515  }
16516 
16820  public CreateBackupResponse createBackup( string backup_name,
16821  string backup_type,
16822  IDictionary<string, string> backup_objects_map,
16823  string datasink_name,
16824  IDictionary<string, string> options = null )
16825  {
16826  return createBackup( new CreateBackupRequest( backup_name, backup_type,
16827  backup_objects_map, datasink_name,
16828  options ) );
16829  }
16830 
17136  public async System.Threading.Tasks.Task<CreateBackupResponse> CreateBackupAsync( string backup_name,
17137  string backup_type,
17138  IDictionary<string, string> backup_objects_map,
17139  string datasink_name,
17140  IDictionary<string, string> options = null,
17141  System.Threading.CancellationToken cancellationToken = default )
17142  {
17143  return await CreateBackupAsync( new CreateBackupRequest( backup_name, backup_type,
17144  backup_objects_map,
17145  datasink_name, options ), cancellationToken );
17146  }
17147 
17157  {
17158  CreateCatalogResponse actualResponse_ = SubmitRequest<CreateCatalogResponse>("/create/catalog", request_, false);
17159 
17160  return actualResponse_;
17161  }
17162 
17173  public async System.Threading.Tasks.Task<CreateCatalogResponse> CreateCatalogAsync( CreateCatalogRequest request_,
17174  System.Threading.CancellationToken cancellationToken = default )
17175  {
17176  CreateCatalogResponse actualResponse_ = await SubmitRequestAsync<CreateCatalogResponse>("/create/catalog", request_, false, true, cancellationToken);
17177 
17178  return actualResponse_;
17179  }
17180 
17248  string table_format,
17249  string location,
17250  string type,
17251  string credential,
17252  string datasource,
17253  IDictionary<string, string> options = null )
17254  {
17255  return createCatalog( new CreateCatalogRequest( name, table_format, location,
17256  type, credential, datasource,
17257  options ) );
17258  }
17259 
17328  public async System.Threading.Tasks.Task<CreateCatalogResponse> CreateCatalogAsync( string name,
17329  string table_format,
17330  string location,
17331  string type,
17332  string credential,
17333  string datasource,
17334  IDictionary<string, string> options = null,
17335  System.Threading.CancellationToken cancellationToken = default )
17336  {
17337  return await CreateCatalogAsync( new CreateCatalogRequest( name, table_format,
17338  location, type,
17339  credential, datasource,
17340  options ), cancellationToken );
17341  }
17342 
17344  public CreateContainerRegistryResponse createContainerRegistry( CreateContainerRegistryRequest request_ )
17345  {
17346  CreateContainerRegistryResponse actualResponse_ = SubmitRequest<CreateContainerRegistryResponse>("/create/container/registry", request_, false);
17347 
17348  return actualResponse_;
17349  }
17351 
17353  public async System.Threading.Tasks.Task<CreateContainerRegistryResponse> CreateContainerRegistryAsync( CreateContainerRegistryRequest request_,
17354  System.Threading.CancellationToken cancellationToken = default )
17355  {
17356  CreateContainerRegistryResponse actualResponse_ = await SubmitRequestAsync<CreateContainerRegistryResponse>("/create/container/registry", request_, false, true, cancellationToken);
17357 
17358  return actualResponse_;
17359  }
17361 
17363  public CreateContainerRegistryResponse createContainerRegistry( string registry_name,
17364  string uri,
17365  string credential,
17366  IDictionary<string, string> options = null )
17367  {
17368  return createContainerRegistry( new CreateContainerRegistryRequest( registry_name,
17369  uri,
17370  credential,
17371  options ) );
17372  }
17374 
17376  public async System.Threading.Tasks.Task<CreateContainerRegistryResponse> CreateContainerRegistryAsync( string registry_name,
17377  string uri,
17378  string credential,
17379  IDictionary<string, string> options = null,
17380  System.Threading.CancellationToken cancellationToken = default )
17381  {
17382  return await CreateContainerRegistryAsync( new CreateContainerRegistryRequest( registry_name,
17383  uri,
17384  credential,
17385  options ), cancellationToken );
17386  }
17388 
17397  {
17398  CreateCredentialResponse actualResponse_ = SubmitRequest<CreateCredentialResponse>("/create/credential", request_, false);
17399 
17400  return actualResponse_;
17401  }
17402 
17412  public async System.Threading.Tasks.Task<CreateCredentialResponse> CreateCredentialAsync( CreateCredentialRequest request_,
17413  System.Threading.CancellationToken cancellationToken = default )
17414  {
17415  CreateCredentialResponse actualResponse_ = await SubmitRequestAsync<CreateCredentialResponse>("/create/credential", request_, false, true, cancellationToken);
17416 
17417  return actualResponse_;
17418  }
17419 
17511  public CreateCredentialResponse createCredential( string credential_name,
17512  string type,
17513  string identity,
17514  string secret,
17515  IDictionary<string, string> options = null )
17516  {
17517  return createCredential( new CreateCredentialRequest( credential_name, type,
17518  identity, secret, options ) );
17519  }
17520 
17614  public async System.Threading.Tasks.Task<CreateCredentialResponse> CreateCredentialAsync( string credential_name,
17615  string type,
17616  string identity,
17617  string secret,
17618  IDictionary<string, string> options = null,
17619  System.Threading.CancellationToken cancellationToken = default )
17620  {
17621  return await CreateCredentialAsync( new CreateCredentialRequest( credential_name,
17622  type, identity,
17623  secret, options ), cancellationToken );
17624  }
17625 
17635  {
17636  CreateDatasinkResponse actualResponse_ = SubmitRequest<CreateDatasinkResponse>("/create/datasink", request_, false);
17637 
17638  return actualResponse_;
17639  }
17640 
17651  public async System.Threading.Tasks.Task<CreateDatasinkResponse> CreateDatasinkAsync( CreateDatasinkRequest request_,
17652  System.Threading.CancellationToken cancellationToken = default )
17653  {
17654  CreateDatasinkResponse actualResponse_ = await SubmitRequestAsync<CreateDatasinkResponse>("/create/datasink", request_, false, true, cancellationToken);
17655 
17656  return actualResponse_;
17657  }
17658 
18052  string destination,
18053  IDictionary<string, string> options = null )
18054  {
18055  return createDatasink( new CreateDatasinkRequest( name, destination, options ) );
18056  }
18057 
18452  public async System.Threading.Tasks.Task<CreateDatasinkResponse> CreateDatasinkAsync( string name,
18453  string destination,
18454  IDictionary<string, string> options = null,
18455  System.Threading.CancellationToken cancellationToken = default )
18456  {
18457  return await CreateDatasinkAsync( new CreateDatasinkRequest( name, destination,
18458  options ), cancellationToken );
18459  }
18460 
18471  {
18472  CreateDatasourceResponse actualResponse_ = SubmitRequest<CreateDatasourceResponse>("/create/datasource", request_, false);
18473 
18474  return actualResponse_;
18475  }
18476 
18488  public async System.Threading.Tasks.Task<CreateDatasourceResponse> CreateDatasourceAsync( CreateDatasourceRequest request_,
18489  System.Threading.CancellationToken cancellationToken = default )
18490  {
18491  CreateDatasourceResponse actualResponse_ = await SubmitRequestAsync<CreateDatasourceResponse>("/create/datasource", request_, false, true, cancellationToken);
18492 
18493  return actualResponse_;
18494  }
18495 
18925  string location,
18926  string user_name,
18927  string password,
18928  IDictionary<string, string> options = null )
18929  {
18930  return createDatasource( new CreateDatasourceRequest( name, location, user_name,
18931  password, options ) );
18932  }
18933 
19364  public async System.Threading.Tasks.Task<CreateDatasourceResponse> CreateDatasourceAsync( string name,
19365  string location,
19366  string user_name,
19367  string password,
19368  IDictionary<string, string> options = null,
19369  System.Threading.CancellationToken cancellationToken = default )
19370  {
19371  return await CreateDatasourceAsync( new CreateDatasourceRequest( name, location,
19372  user_name,
19373  password, options ), cancellationToken );
19374  }
19375 
19377  public CreateDeltaTableResponse createDeltaTable( CreateDeltaTableRequest request_ )
19378  {
19379  CreateDeltaTableResponse actualResponse_ = SubmitRequest<CreateDeltaTableResponse>("/create/deltatable", request_, false);
19380 
19381  return actualResponse_;
19382  }
19384 
19386  public async System.Threading.Tasks.Task<CreateDeltaTableResponse> CreateDeltaTableAsync( CreateDeltaTableRequest request_,
19387  System.Threading.CancellationToken cancellationToken = default )
19388  {
19389  CreateDeltaTableResponse actualResponse_ = await SubmitRequestAsync<CreateDeltaTableResponse>("/create/deltatable", request_, false, true, cancellationToken);
19390 
19391  return actualResponse_;
19392  }
19394 
19396  public CreateDeltaTableResponse createDeltaTable( string delta_table_name,
19397  string table_name,
19398  IDictionary<string, string> options = null )
19399  {
19400  return createDeltaTable( new CreateDeltaTableRequest( delta_table_name,
19401  table_name, options ) );
19402  }
19404 
19406  public async System.Threading.Tasks.Task<CreateDeltaTableResponse> CreateDeltaTableAsync( string delta_table_name,
19407  string table_name,
19408  IDictionary<string, string> options = null,
19409  System.Threading.CancellationToken cancellationToken = default )
19410  {
19411  return await CreateDeltaTableAsync( new CreateDeltaTableRequest( delta_table_name,
19412  table_name,
19413  options ), cancellationToken );
19414  }
19416 
19429  {
19430  CreateDirectoryResponse actualResponse_ = SubmitRequest<CreateDirectoryResponse>("/create/directory", request_, false);
19431 
19432  return actualResponse_;
19433  }
19434 
19448  public async System.Threading.Tasks.Task<CreateDirectoryResponse> CreateDirectoryAsync( CreateDirectoryRequest request_,
19449  System.Threading.CancellationToken cancellationToken = default )
19450  {
19451  CreateDirectoryResponse actualResponse_ = await SubmitRequestAsync<CreateDirectoryResponse>("/create/directory", request_, false, true, cancellationToken);
19452 
19453  return actualResponse_;
19454  }
19455 
19512  public CreateDirectoryResponse createDirectory( string directory_name,
19513  IDictionary<string, string> options = null )
19514  {
19515  return createDirectory( new CreateDirectoryRequest( directory_name, options ) );
19516  }
19517 
19576  public async System.Threading.Tasks.Task<CreateDirectoryResponse> CreateDirectoryAsync( string directory_name,
19577  IDictionary<string, string> options = null,
19578  System.Threading.CancellationToken cancellationToken = default )
19579  {
19580  return await CreateDirectoryAsync( new CreateDirectoryRequest( directory_name,
19581  options ), cancellationToken );
19582  }
19583 
19593  {
19594  CreateEnvironmentResponse actualResponse_ = SubmitRequest<CreateEnvironmentResponse>("/create/environment", request_, false);
19595 
19596  return actualResponse_;
19597  }
19598 
19609  public async System.Threading.Tasks.Task<CreateEnvironmentResponse> CreateEnvironmentAsync( CreateEnvironmentRequest request_,
19610  System.Threading.CancellationToken cancellationToken = default )
19611  {
19612  CreateEnvironmentResponse actualResponse_ = await SubmitRequestAsync<CreateEnvironmentResponse>("/create/environment", request_, false, true, cancellationToken);
19613 
19614  return actualResponse_;
19615  }
19616 
19627  public CreateEnvironmentResponse createEnvironment( string environment_name,
19628  IDictionary<string, string> options = null )
19629  {
19630  return createEnvironment( new CreateEnvironmentRequest( environment_name, options ) );
19631  }
19632 
19645  public async System.Threading.Tasks.Task<CreateEnvironmentResponse> CreateEnvironmentAsync( string environment_name,
19646  IDictionary<string, string> options = null,
19647  System.Threading.CancellationToken cancellationToken = default )
19648  {
19649  return await CreateEnvironmentAsync( new CreateEnvironmentRequest( environment_name,
19650  options ), cancellationToken );
19651  }
19652 
19668  {
19669  CreateGraphResponse actualResponse_ = SubmitRequest<CreateGraphResponse>("/create/graph", request_, false);
19670 
19671  return actualResponse_;
19672  }
19673 
19690  public async System.Threading.Tasks.Task<CreateGraphResponse> CreateGraphAsync( CreateGraphRequest request_,
19691  System.Threading.CancellationToken cancellationToken = default )
19692  {
19693  CreateGraphResponse actualResponse_ = await SubmitRequestAsync<CreateGraphResponse>("/create/graph", request_, false, true, cancellationToken);
19694 
19695  return actualResponse_;
19696  }
19697 
20009  public CreateGraphResponse createGraph( string graph_name,
20010  bool directed_graph,
20011  IList<string> nodes,
20012  IList<string> edges,
20013  IList<string> weights,
20014  IList<string> restrictions,
20015  IDictionary<string, string> options = null )
20016  {
20017  return createGraph( new CreateGraphRequest( graph_name, directed_graph, nodes,
20018  edges, weights, restrictions, options ) );
20019  }
20020 
20334  public async System.Threading.Tasks.Task<CreateGraphResponse> CreateGraphAsync( string graph_name,
20335  bool directed_graph,
20336  IList<string> nodes,
20337  IList<string> edges,
20338  IList<string> weights,
20339  IList<string> restrictions,
20340  IDictionary<string, string> options = null,
20341  System.Threading.CancellationToken cancellationToken = default )
20342  {
20343  return await CreateGraphAsync( new CreateGraphRequest( graph_name, directed_graph,
20344  nodes, edges, weights,
20345  restrictions, options ), cancellationToken );
20346  }
20347 
20359  {
20360  CreateJobResponse actualResponse_ = SubmitRequest<CreateJobResponse>("/create/job", request_, false);
20361 
20362  return actualResponse_;
20363  }
20364 
20377  public async System.Threading.Tasks.Task<CreateJobResponse> CreateJobAsync( CreateJobRequest request_,
20378  System.Threading.CancellationToken cancellationToken = default )
20379  {
20380  CreateJobResponse actualResponse_ = await SubmitRequestAsync<CreateJobResponse>("/create/job", request_, false, true, cancellationToken);
20381 
20382  return actualResponse_;
20383  }
20384 
20443  public CreateJobResponse createJob( string endpoint,
20444  string request_encoding,
20445  byte[] data,
20446  string data_str,
20447  IDictionary<string, string> options = null )
20448  {
20449  return createJob( new CreateJobRequest( endpoint, request_encoding, data,
20450  data_str, options ) );
20451  }
20452 
20513  public async System.Threading.Tasks.Task<CreateJobResponse> CreateJobAsync( string endpoint,
20514  string request_encoding,
20515  byte[] data,
20516  string data_str,
20517  IDictionary<string, string> options = null,
20518  System.Threading.CancellationToken cancellationToken = default )
20519  {
20520  return await CreateJobAsync( new CreateJobRequest( endpoint, request_encoding,
20521  data, data_str, options ), cancellationToken );
20522  }
20523 
20536  {
20537  CreateJoinTableResponse actualResponse_ = SubmitRequest<CreateJoinTableResponse>("/create/jointable", request_, false);
20538 
20539  return actualResponse_;
20540  }
20541 
20556  public async System.Threading.Tasks.Task<CreateJoinTableResponse> CreateJoinTableAsync( CreateJoinTableRequest request_,
20557  System.Threading.CancellationToken cancellationToken = default )
20558  {
20559  CreateJoinTableResponse actualResponse_ = await SubmitRequestAsync<CreateJoinTableResponse>("/create/jointable", request_, false, true, cancellationToken);
20560 
20561  return actualResponse_;
20562  }
20563 
20744  public CreateJoinTableResponse createJoinTable( string join_table_name,
20745  IList<string> table_names,
20746  IList<string> column_names,
20747  IList<string> expressions = null,
20748  IDictionary<string, string> options = null )
20749  {
20750  return createJoinTable( new CreateJoinTableRequest( join_table_name, table_names,
20751  column_names, expressions,
20752  options ) );
20753  }
20754 
20938  public async System.Threading.Tasks.Task<CreateJoinTableResponse> CreateJoinTableAsync( string join_table_name,
20939  IList<string> table_names,
20940  IList<string> column_names,
20941  IList<string> expressions = null,
20942  IDictionary<string, string> options = null,
20943  System.Threading.CancellationToken cancellationToken = default )
20944  {
20945  return await CreateJoinTableAsync( new CreateJoinTableRequest( join_table_name,
20946  table_names,
20947  column_names,
20948  expressions,
20949  options ), cancellationToken );
20950  }
20951 
20968  {
20969  CreateMaterializedViewResponse actualResponse_ = SubmitRequest<CreateMaterializedViewResponse>("/create/materializedview", request_, false);
20970 
20971  return actualResponse_;
20972  }
20973 
20992  System.Threading.CancellationToken cancellationToken = default )
20993  {
20994  CreateMaterializedViewResponse actualResponse_ = await SubmitRequestAsync<CreateMaterializedViewResponse>("/create/materializedview", request_, false, true, cancellationToken);
20995 
20996  return actualResponse_;
20997  }
20998 
21214  IDictionary<string, string> options = null )
21215  {
21216  return createMaterializedView( new CreateMaterializedViewRequest( table_name,
21217  options ) );
21218  }
21219 
21436  public async System.Threading.Tasks.Task<CreateMaterializedViewResponse> CreateMaterializedViewAsync( string table_name,
21437  IDictionary<string, string> options = null,
21438  System.Threading.CancellationToken cancellationToken = default )
21439  {
21440  return await CreateMaterializedViewAsync( new CreateMaterializedViewRequest( table_name,
21441  options ), cancellationToken );
21442  }
21443 
21454  {
21455  CreateProcResponse actualResponse_ = SubmitRequest<CreateProcResponse>("/create/proc", request_, false);
21456 
21457  return actualResponse_;
21458  }
21459 
21471  public async System.Threading.Tasks.Task<CreateProcResponse> CreateProcAsync( CreateProcRequest request_,
21472  System.Threading.CancellationToken cancellationToken = default )
21473  {
21474  CreateProcResponse actualResponse_ = await SubmitRequestAsync<CreateProcResponse>("/create/proc", request_, false, true, cancellationToken);
21475 
21476  return actualResponse_;
21477  }
21478 
21558  public CreateProcResponse createProc( string proc_name,
21559  string execution_mode = CreateProcRequest.ExecutionMode.DISTRIBUTED,
21560  IDictionary<string, byte[]> files = null,
21561  string command = "",
21562  IList<string> args = null,
21563  IDictionary<string, string> options = null )
21564  {
21565  return createProc( new CreateProcRequest( proc_name, execution_mode, files,
21566  command, args, options ) );
21567  }
21568 
21650  public async System.Threading.Tasks.Task<CreateProcResponse> CreateProcAsync( string proc_name,
21651  string execution_mode = CreateProcRequest.ExecutionMode.DISTRIBUTED,
21652  IDictionary<string, byte[]> files = null,
21653  string command = "",
21654  IList<string> args = null,
21655  IDictionary<string, string> options = null,
21656  System.Threading.CancellationToken cancellationToken = default )
21657  {
21658  return await CreateProcAsync( new CreateProcRequest( proc_name, execution_mode,
21659  files, command, args, options ), cancellationToken );
21660  }
21661 
21699  {
21700  CreateProjectionResponse actualResponse_ = SubmitRequest<CreateProjectionResponse>("/create/projection", request_, false);
21701 
21702  return actualResponse_;
21703  }
21704 
21743  public async System.Threading.Tasks.Task<CreateProjectionResponse> CreateProjectionAsync( CreateProjectionRequest request_,
21744  System.Threading.CancellationToken cancellationToken = default )
21745  {
21746  CreateProjectionResponse actualResponse_ = await SubmitRequestAsync<CreateProjectionResponse>("/create/projection", request_, false, true, cancellationToken);
21747 
21748  return actualResponse_;
21749  }
21750 
22199  public CreateProjectionResponse createProjection( string table_name,
22200  string projection_name,
22201  IList<string> column_names,
22202  IDictionary<string, string> options = null )
22203  {
22204  return createProjection( new CreateProjectionRequest( table_name, projection_name,
22205  column_names, options ) );
22206  }
22207 
22658  public async System.Threading.Tasks.Task<CreateProjectionResponse> CreateProjectionAsync( string table_name,
22659  string projection_name,
22660  IList<string> column_names,
22661  IDictionary<string, string> options = null,
22662  System.Threading.CancellationToken cancellationToken = default )
22663  {
22664  return await CreateProjectionAsync( new CreateProjectionRequest( table_name,
22665  projection_name,
22666  column_names,
22667  options ), cancellationToken );
22668  }
22669 
22678  {
22679  CreateResourceGroupResponse actualResponse_ = SubmitRequest<CreateResourceGroupResponse>("/create/resourcegroup", request_, false);
22680 
22681  return actualResponse_;
22682  }
22683 
22693  public async System.Threading.Tasks.Task<CreateResourceGroupResponse> CreateResourceGroupAsync( CreateResourceGroupRequest request_,
22694  System.Threading.CancellationToken cancellationToken = default )
22695  {
22696  CreateResourceGroupResponse actualResponse_ = await SubmitRequestAsync<CreateResourceGroupResponse>("/create/resourcegroup", request_, false, true, cancellationToken);
22697 
22698  return actualResponse_;
22699  }
22700 
22807  IDictionary<string, IDictionary<string, string>> tier_attributes,
22808  string ranking,
22809  string adjoining_resource_group = "",
22810  IDictionary<string, string> options = null )
22811  {
22812  return createResourceGroup( new CreateResourceGroupRequest( name, tier_attributes,
22813  ranking,
22814  adjoining_resource_group,
22815  options ) );
22816  }
22817 
22925  public async System.Threading.Tasks.Task<CreateResourceGroupResponse> CreateResourceGroupAsync( string name,
22926  IDictionary<string, IDictionary<string, string>> tier_attributes,
22927  string ranking,
22928  string adjoining_resource_group = "",
22929  IDictionary<string, string> options = null,
22930  System.Threading.CancellationToken cancellationToken = default )
22931  {
22932  return await CreateResourceGroupAsync( new CreateResourceGroupRequest( name,
22933  tier_attributes,
22934  ranking,
22935  adjoining_resource_group,
22936  options ), cancellationToken );
22937  }
22938 
22948  {
22949  CreateRoleResponse actualResponse_ = SubmitRequest<CreateRoleResponse>("/create/role", request_, false);
22950 
22951  return actualResponse_;
22952  }
22953 
22964  public async System.Threading.Tasks.Task<CreateRoleResponse> CreateRoleAsync( CreateRoleRequest request_,
22965  System.Threading.CancellationToken cancellationToken = default )
22966  {
22967  CreateRoleResponse actualResponse_ = await SubmitRequestAsync<CreateRoleResponse>("/create/role", request_, false, true, cancellationToken);
22968 
22969  return actualResponse_;
22970  }
22971 
22992  public CreateRoleResponse createRole( string name,
22993  IDictionary<string, string> options = null )
22994  {
22995  return createRole( new CreateRoleRequest( name, options ) );
22996  }
22997 
23020  public async System.Threading.Tasks.Task<CreateRoleResponse> CreateRoleAsync( string name,
23021  IDictionary<string, string> options = null,
23022  System.Threading.CancellationToken cancellationToken = default )
23023  {
23024  return await CreateRoleAsync( new CreateRoleRequest( name, options ), cancellationToken );
23025  }
23026 
23038  {
23039  CreateSchemaResponse actualResponse_ = SubmitRequest<CreateSchemaResponse>("/create/schema", request_, false);
23040 
23041  return actualResponse_;
23042  }
23043 
23056  public async System.Threading.Tasks.Task<CreateSchemaResponse> CreateSchemaAsync( CreateSchemaRequest request_,
23057  System.Threading.CancellationToken cancellationToken = default )
23058  {
23059  CreateSchemaResponse actualResponse_ = await SubmitRequestAsync<CreateSchemaResponse>("/create/schema", request_, false, true, cancellationToken);
23060 
23061  return actualResponse_;
23062  }
23063 
23103  public CreateSchemaResponse createSchema( string schema_name,
23104  IDictionary<string, string> options = null )
23105  {
23106  return createSchema( new CreateSchemaRequest( schema_name, options ) );
23107  }
23108 
23150  public async System.Threading.Tasks.Task<CreateSchemaResponse> CreateSchemaAsync( string schema_name,
23151  IDictionary<string, string> options = null,
23152  System.Threading.CancellationToken cancellationToken = default )
23153  {
23154  return await CreateSchemaAsync( new CreateSchemaRequest( schema_name, options ), cancellationToken );
23155  }
23156 
23158  public CreateStateTableResponse createStateTable( CreateStateTableRequest request_ )
23159  {
23160  CreateStateTableResponse actualResponse_ = SubmitRequest<CreateStateTableResponse>("/create/statetable", request_, false);
23161 
23162  return actualResponse_;
23163  }
23165 
23167  public async System.Threading.Tasks.Task<CreateStateTableResponse> CreateStateTableAsync( CreateStateTableRequest request_,
23168  System.Threading.CancellationToken cancellationToken = default )
23169  {
23170  CreateStateTableResponse actualResponse_ = await SubmitRequestAsync<CreateStateTableResponse>("/create/statetable", request_, false, true, cancellationToken);
23171 
23172  return actualResponse_;
23173  }
23175 
23177  public CreateStateTableResponse createStateTable( string table_name,
23178  string input_table_name,
23179  string init_table_name,
23180  IDictionary<string, string> options = null )
23181  {
23182  return createStateTable( new CreateStateTableRequest( table_name,
23183  input_table_name,
23184  init_table_name, options ) );
23185  }
23187 
23189  public async System.Threading.Tasks.Task<CreateStateTableResponse> CreateStateTableAsync( string table_name,
23190  string input_table_name,
23191  string init_table_name,
23192  IDictionary<string, string> options = null,
23193  System.Threading.CancellationToken cancellationToken = default )
23194  {
23195  return await CreateStateTableAsync( new CreateStateTableRequest( table_name,
23196  input_table_name,
23197  init_table_name,
23198  options ), cancellationToken );
23199  }
23201 
23250  {
23251  CreateTableResponse actualResponse_ = SubmitRequest<CreateTableResponse>("/create/table", request_, false);
23252 
23253  return actualResponse_;
23254  }
23255 
23305  public async System.Threading.Tasks.Task<CreateTableResponse> CreateTableAsync( CreateTableRequest request_,
23306  System.Threading.CancellationToken cancellationToken = default )
23307  {
23308  CreateTableResponse actualResponse_ = await SubmitRequestAsync<CreateTableResponse>("/create/table", request_, false, true, cancellationToken);
23309 
23310  return actualResponse_;
23311  }
23312 
23786  public CreateTableResponse createTable( string table_name,
23787  string type_id,
23788  IDictionary<string, string> options = null )
23789  {
23790  return createTable( new CreateTableRequest( table_name, type_id, options ) );
23791  }
23792 
24268  public async System.Threading.Tasks.Task<CreateTableResponse> CreateTableAsync( string table_name,
24269  string type_id,
24270  IDictionary<string, string> options = null,
24271  System.Threading.CancellationToken cancellationToken = default )
24272  {
24273  return await CreateTableAsync( new CreateTableRequest( table_name, type_id,
24274  options ), cancellationToken );
24275  }
24276 
24297  {
24298  CreateTableExternalResponse actualResponse_ = SubmitRequest<CreateTableExternalResponse>("/create/table/external", request_, false);
24299 
24300  return actualResponse_;
24301  }
24302 
24325  public async System.Threading.Tasks.Task<CreateTableExternalResponse> CreateTableExternalAsync( CreateTableExternalRequest request_,
24326  System.Threading.CancellationToken cancellationToken = default )
24327  {
24328  CreateTableExternalResponse actualResponse_ = await SubmitRequestAsync<CreateTableExternalResponse>("/create/table/external", request_, false, true, cancellationToken);
24329 
24330  return actualResponse_;
24331  }
24332 
25753  IList<string> filepaths,
25754  IDictionary<string, IDictionary<string, string>> modify_columns = null,
25755  IDictionary<string, string> create_table_options = null,
25756  IDictionary<string, string> options = null )
25757  {
25758  return createTableExternal( new CreateTableExternalRequest( table_name, filepaths,
25759  modify_columns,
25760  create_table_options,
25761  options ) );
25762  }
25763 
27186  public async System.Threading.Tasks.Task<CreateTableExternalResponse> CreateTableExternalAsync( string table_name,
27187  IList<string> filepaths,
27188  IDictionary<string, IDictionary<string, string>> modify_columns = null,
27189  IDictionary<string, string> create_table_options = null,
27190  IDictionary<string, string> options = null,
27191  System.Threading.CancellationToken cancellationToken = default )
27192  {
27193  return await CreateTableExternalAsync( new CreateTableExternalRequest( table_name,
27194  filepaths,
27195  modify_columns,
27196  create_table_options,
27197  options ), cancellationToken );
27198  }
27199 
27225  {
27226  CreateTableMonitorResponse actualResponse_ = SubmitRequest<CreateTableMonitorResponse>("/create/tablemonitor", request_, false);
27227 
27228  return actualResponse_;
27229  }
27230 
27257  public async System.Threading.Tasks.Task<CreateTableMonitorResponse> CreateTableMonitorAsync( CreateTableMonitorRequest request_,
27258  System.Threading.CancellationToken cancellationToken = default )
27259  {
27260  CreateTableMonitorResponse actualResponse_ = await SubmitRequestAsync<CreateTableMonitorResponse>("/create/tablemonitor", request_, false, true, cancellationToken);
27261 
27262  return actualResponse_;
27263  }
27264 
27485  IDictionary<string, string> options = null )
27486  {
27487  return createTableMonitor( new CreateTableMonitorRequest( table_name, options ) );
27488  }
27489 
27711  public async System.Threading.Tasks.Task<CreateTableMonitorResponse> CreateTableMonitorAsync( string table_name,
27712  IDictionary<string, string> options = null,
27713  System.Threading.CancellationToken cancellationToken = default )
27714  {
27715  return await CreateTableMonitorAsync( new CreateTableMonitorRequest( table_name,
27716  options ), cancellationToken );
27717  }
27718 
27743  {
27744  CreateTriggerByAreaResponse actualResponse_ = SubmitRequest<CreateTriggerByAreaResponse>("/create/trigger/byarea", request_, false);
27745 
27746  return actualResponse_;
27747  }
27748 
27774  public async System.Threading.Tasks.Task<CreateTriggerByAreaResponse> CreateTriggerByAreaAsync( CreateTriggerByAreaRequest request_,
27775  System.Threading.CancellationToken cancellationToken = default )
27776  {
27777  CreateTriggerByAreaResponse actualResponse_ = await SubmitRequestAsync<CreateTriggerByAreaResponse>("/create/trigger/byarea", request_, false, true, cancellationToken);
27778 
27779  return actualResponse_;
27780  }
27781 
27826  IList<string> table_names,
27827  string x_column_name,
27828  IList<double> x_vector,
27829  string y_column_name,
27830  IList<double> y_vector,
27831  IDictionary<string, string> options = null )
27832  {
27833  return createTriggerByArea( new CreateTriggerByAreaRequest( request_id,
27834  table_names,
27835  x_column_name,
27836  x_vector,
27837  y_column_name,
27838  y_vector, options ) );
27839  }
27840 
27886  public async System.Threading.Tasks.Task<CreateTriggerByAreaResponse> CreateTriggerByAreaAsync( string request_id,
27887  IList<string> table_names,
27888  string x_column_name,
27889  IList<double> x_vector,
27890  string y_column_name,
27891  IList<double> y_vector,
27892  IDictionary<string, string> options = null,
27893  System.Threading.CancellationToken cancellationToken = default )
27894  {
27895  return await CreateTriggerByAreaAsync( new CreateTriggerByAreaRequest( request_id,
27896  table_names,
27897  x_column_name,
27898  x_vector,
27899  y_column_name,
27900  y_vector,
27901  options ), cancellationToken );
27902  }
27903 
27925  {
27926  CreateTriggerByRangeResponse actualResponse_ = SubmitRequest<CreateTriggerByRangeResponse>("/create/trigger/byrange", request_, false);
27927 
27928  return actualResponse_;
27929  }
27930 
27953  public async System.Threading.Tasks.Task<CreateTriggerByRangeResponse> CreateTriggerByRangeAsync( CreateTriggerByRangeRequest request_,
27954  System.Threading.CancellationToken cancellationToken = default )
27955  {
27956  CreateTriggerByRangeResponse actualResponse_ = await SubmitRequestAsync<CreateTriggerByRangeResponse>("/create/trigger/byrange", request_, false, true, cancellationToken);
27957 
27958  return actualResponse_;
27959  }
27960 
27995  IList<string> table_names,
27996  string column_name,
27997  double min,
27998  double max,
27999  IDictionary<string, string> options = null )
28000  {
28001  return createTriggerByRange( new CreateTriggerByRangeRequest( request_id,
28002  table_names,
28003  column_name, min,
28004  max, options ) );
28005  }
28006 
28042  public async System.Threading.Tasks.Task<CreateTriggerByRangeResponse> CreateTriggerByRangeAsync( string request_id,
28043  IList<string> table_names,
28044  string column_name,
28045  double min,
28046  double max,
28047  IDictionary<string, string> options = null,
28048  System.Threading.CancellationToken cancellationToken = default )
28049  {
28050  return await CreateTriggerByRangeAsync( new CreateTriggerByRangeRequest( request_id,
28051  table_names,
28052  column_name,
28053  min, max,
28054  options ), cancellationToken );
28055  }
28056 
28111  {
28112  CreateTypeResponse actualResponse_ = SubmitRequest<CreateTypeResponse>("/create/type", request_, false);
28113 
28114  SetDecoderIfMissing( actualResponse_.type_id,
28115  actualResponse_.label,
28116  actualResponse_.type_definition,
28117  actualResponse_.properties );
28118  return actualResponse_;
28119  }
28120 
28176  public async System.Threading.Tasks.Task<CreateTypeResponse> CreateTypeAsync( CreateTypeRequest request_,
28177  System.Threading.CancellationToken cancellationToken = default )
28178  {
28179  CreateTypeResponse actualResponse_ = await SubmitRequestAsync<CreateTypeResponse>("/create/type", request_, false, true, cancellationToken);
28180 
28181  SetDecoderIfMissing( actualResponse_.type_id,
28182  actualResponse_.label,
28183  actualResponse_.type_definition,
28184  actualResponse_.properties );
28185  return actualResponse_;
28186  }
28187 
28575  public CreateTypeResponse createType( string type_definition,
28576  string label,
28577  IDictionary<string, IList<string>> properties = null,
28578  IDictionary<string, string> options = null )
28579  {
28580  return createType( new CreateTypeRequest( type_definition, label, properties,
28581  options ) );
28582  }
28583 
28973  public async System.Threading.Tasks.Task<CreateTypeResponse> CreateTypeAsync( string type_definition,
28974  string label,
28975  IDictionary<string, IList<string>> properties = null,
28976  IDictionary<string, string> options = null,
28977  System.Threading.CancellationToken cancellationToken = default )
28978  {
28979  return await CreateTypeAsync( new CreateTypeRequest( type_definition, label,
28980  properties, options ), cancellationToken );
28981  }
28982 
29007  {
29008  CreateUnionResponse actualResponse_ = SubmitRequest<CreateUnionResponse>("/create/union", request_, false);
29009 
29010  return actualResponse_;
29011  }
29012 
29038  public async System.Threading.Tasks.Task<CreateUnionResponse> CreateUnionAsync( CreateUnionRequest request_,
29039  System.Threading.CancellationToken cancellationToken = default )
29040  {
29041  CreateUnionResponse actualResponse_ = await SubmitRequestAsync<CreateUnionResponse>("/create/union", request_, false, true, cancellationToken);
29042 
29043  return actualResponse_;
29044  }
29045 
29430  public CreateUnionResponse createUnion( string table_name,
29431  IList<string> table_names,
29432  IList<IList<string>> input_column_names,
29433  IList<string> output_column_names,
29434  IDictionary<string, string> options = null )
29435  {
29436  return createUnion( new CreateUnionRequest( table_name, table_names,
29437  input_column_names,
29438  output_column_names, options ) );
29439  }
29440 
29827  public async System.Threading.Tasks.Task<CreateUnionResponse> CreateUnionAsync( string table_name,
29828  IList<string> table_names,
29829  IList<IList<string>> input_column_names,
29830  IList<string> output_column_names,
29831  IDictionary<string, string> options = null,
29832  System.Threading.CancellationToken cancellationToken = default )
29833  {
29834  return await CreateUnionAsync( new CreateUnionRequest( table_name, table_names,
29835  input_column_names,
29836  output_column_names,
29837  options ), cancellationToken );
29838  }
29839 
29850  {
29851  CreateUserExternalResponse actualResponse_ = SubmitRequest<CreateUserExternalResponse>("/create/user/external", request_, false);
29852 
29853  return actualResponse_;
29854  }
29855 
29867  public async System.Threading.Tasks.Task<CreateUserExternalResponse> CreateUserExternalAsync( CreateUserExternalRequest request_,
29868  System.Threading.CancellationToken cancellationToken = default )
29869  {
29870  CreateUserExternalResponse actualResponse_ = await SubmitRequestAsync<CreateUserExternalResponse>("/create/user/external", request_, false, true, cancellationToken);
29871 
29872  return actualResponse_;
29873  }
29874 
29964  IDictionary<string, string> options = null )
29965  {
29966  return createUserExternal( new CreateUserExternalRequest( name, options ) );
29967  }
29968 
30059  public async System.Threading.Tasks.Task<CreateUserExternalResponse> CreateUserExternalAsync( string name,
30060  IDictionary<string, string> options = null,
30061  System.Threading.CancellationToken cancellationToken = default )
30062  {
30063  return await CreateUserExternalAsync( new CreateUserExternalRequest( name, options ), cancellationToken );
30064  }
30065 
30074  {
30075  CreateUserInternalResponse actualResponse_ = SubmitRequest<CreateUserInternalResponse>("/create/user/internal", request_, false);
30076 
30077  return actualResponse_;
30078  }
30079 
30089  public async System.Threading.Tasks.Task<CreateUserInternalResponse> CreateUserInternalAsync( CreateUserInternalRequest request_,
30090  System.Threading.CancellationToken cancellationToken = default )
30091  {
30092  CreateUserInternalResponse actualResponse_ = await SubmitRequestAsync<CreateUserInternalResponse>("/create/user/internal", request_, false, true, cancellationToken);
30093 
30094  return actualResponse_;
30095  }
30096 
30186  string password,
30187  IDictionary<string, string> options = null )
30188  {
30189  return createUserInternal( new CreateUserInternalRequest( name, password, options ) );
30190  }
30191 
30282  public async System.Threading.Tasks.Task<CreateUserInternalResponse> CreateUserInternalAsync( string name,
30283  string password,
30284  IDictionary<string, string> options = null,
30285  System.Threading.CancellationToken cancellationToken = default )
30286  {
30287  return await CreateUserInternalAsync( new CreateUserInternalRequest( name,
30288  password,
30289  options ), cancellationToken );
30290  }
30291 
30300  {
30301  CreateVideoResponse actualResponse_ = SubmitRequest<CreateVideoResponse>("/create/video", request_, false);
30302 
30303  return actualResponse_;
30304  }
30305 
30315  public async System.Threading.Tasks.Task<CreateVideoResponse> CreateVideoAsync( CreateVideoRequest request_,
30316  System.Threading.CancellationToken cancellationToken = default )
30317  {
30318  CreateVideoResponse actualResponse_ = await SubmitRequestAsync<CreateVideoResponse>("/create/video", request_, false, true, cancellationToken);
30319 
30320  return actualResponse_;
30321  }
30322 
30449  public CreateVideoResponse createVideo( string attribute,
30450  string begin,
30451  double duration_seconds,
30452  string end,
30453  double frames_per_second,
30454  string style,
30455  string path,
30456  string style_parameters,
30457  IDictionary<string, string> options = null )
30458  {
30459  return createVideo( new CreateVideoRequest( attribute, begin, duration_seconds,
30460  end, frames_per_second, style, path,
30461  style_parameters, options ) );
30462  }
30463 
30592  public async System.Threading.Tasks.Task<CreateVideoResponse> CreateVideoAsync( string attribute,
30593  string begin,
30594  double duration_seconds,
30595  string end,
30596  double frames_per_second,
30597  string style,
30598  string path,
30599  string style_parameters,
30600  IDictionary<string, string> options = null,
30601  System.Threading.CancellationToken cancellationToken = default )
30602  {
30603  return await CreateVideoAsync( new CreateVideoRequest( attribute, begin,
30604  duration_seconds, end,
30605  frames_per_second, style,
30606  path, style_parameters,
30607  options ), cancellationToken );
30608  }
30609 
30618  {
30619  DeleteDirectoryResponse actualResponse_ = SubmitRequest<DeleteDirectoryResponse>("/delete/directory", request_, false);
30620 
30621  return actualResponse_;
30622  }
30623 
30633  public async System.Threading.Tasks.Task<DeleteDirectoryResponse> DeleteDirectoryAsync( DeleteDirectoryRequest request_,
30634  System.Threading.CancellationToken cancellationToken = default )
30635  {
30636  DeleteDirectoryResponse actualResponse_ = await SubmitRequestAsync<DeleteDirectoryResponse>("/delete/directory", request_, false, true, cancellationToken);
30637 
30638  return actualResponse_;
30639  }
30640 
30703  public DeleteDirectoryResponse deleteDirectory( string directory_name,
30704  IDictionary<string, string> options = null )
30705  {
30706  return deleteDirectory( new DeleteDirectoryRequest( directory_name, options ) );
30707  }
30708 
30773  public async System.Threading.Tasks.Task<DeleteDirectoryResponse> DeleteDirectoryAsync( string directory_name,
30774  IDictionary<string, string> options = null,
30775  System.Threading.CancellationToken cancellationToken = default )
30776  {
30777  return await DeleteDirectoryAsync( new DeleteDirectoryRequest( directory_name,
30778  options ), cancellationToken );
30779  }
30780 
30789  {
30790  DeleteFilesResponse actualResponse_ = SubmitRequest<DeleteFilesResponse>("/delete/files", request_, false);
30791 
30792  return actualResponse_;
30793  }
30794 
30804  public async System.Threading.Tasks.Task<DeleteFilesResponse> DeleteFilesAsync( DeleteFilesRequest request_,
30805  System.Threading.CancellationToken cancellationToken = default )
30806  {
30807  DeleteFilesResponse actualResponse_ = await SubmitRequestAsync<DeleteFilesResponse>("/delete/files", request_, false, true, cancellationToken);
30808 
30809  return actualResponse_;
30810  }
30811 
30851  public DeleteFilesResponse deleteFiles( IList<string> file_names,
30852  IDictionary<string, string> options = null )
30853  {
30854  return deleteFiles( new DeleteFilesRequest( file_names, options ) );
30855  }
30856 
30898  public async System.Threading.Tasks.Task<DeleteFilesResponse> DeleteFilesAsync( IList<string> file_names,
30899  IDictionary<string, string> options = null,
30900  System.Threading.CancellationToken cancellationToken = default )
30901  {
30902  return await DeleteFilesAsync( new DeleteFilesRequest( file_names, options ), cancellationToken );
30903  }
30904 
30913  {
30914  DeleteGraphResponse actualResponse_ = SubmitRequest<DeleteGraphResponse>("/delete/graph", request_, false);
30915 
30916  return actualResponse_;
30917  }
30918 
30928  public async System.Threading.Tasks.Task<DeleteGraphResponse> DeleteGraphAsync( DeleteGraphRequest request_,
30929  System.Threading.CancellationToken cancellationToken = default )
30930  {
30931  DeleteGraphResponse actualResponse_ = await SubmitRequestAsync<DeleteGraphResponse>("/delete/graph", request_, false, true, cancellationToken);
30932 
30933  return actualResponse_;
30934  }
30935 
30982  public DeleteGraphResponse deleteGraph( string graph_name,
30983  IDictionary<string, string> options = null )
30984  {
30985  return deleteGraph( new DeleteGraphRequest( graph_name, options ) );
30986  }
30987 
31036  public async System.Threading.Tasks.Task<DeleteGraphResponse> DeleteGraphAsync( string graph_name,
31037  IDictionary<string, string> options = null,
31038  System.Threading.CancellationToken cancellationToken = default )
31039  {
31040  return await DeleteGraphAsync( new DeleteGraphRequest( graph_name, options ), cancellationToken );
31041  }
31042 
31052  {
31053  DeleteProcResponse actualResponse_ = SubmitRequest<DeleteProcResponse>("/delete/proc", request_, false);
31054 
31055  return actualResponse_;
31056  }
31057 
31068  public async System.Threading.Tasks.Task<DeleteProcResponse> DeleteProcAsync( DeleteProcRequest request_,
31069  System.Threading.CancellationToken cancellationToken = default )
31070  {
31071  DeleteProcResponse actualResponse_ = await SubmitRequestAsync<DeleteProcResponse>("/delete/proc", request_, false, true, cancellationToken);
31072 
31073  return actualResponse_;
31074  }
31075 
31086  public DeleteProcResponse deleteProc( string proc_name,
31087  IDictionary<string, string> options = null )
31088  {
31089  return deleteProc( new DeleteProcRequest( proc_name, options ) );
31090  }
31091 
31104  public async System.Threading.Tasks.Task<DeleteProcResponse> DeleteProcAsync( string proc_name,
31105  IDictionary<string, string> options = null,
31106  System.Threading.CancellationToken cancellationToken = default )
31107  {
31108  return await DeleteProcAsync( new DeleteProcRequest( proc_name, options ), cancellationToken );
31109  }
31110 
31130  {
31131  DeleteRecordsResponse actualResponse_ = SubmitRequest<DeleteRecordsResponse>("/delete/records", request_, false);
31132 
31133  return actualResponse_;
31134  }
31135 
31156  public async System.Threading.Tasks.Task<DeleteRecordsResponse> DeleteRecordsAsync( DeleteRecordsRequest request_,
31157  System.Threading.CancellationToken cancellationToken = default )
31158  {
31159  DeleteRecordsResponse actualResponse_ = await SubmitRequestAsync<DeleteRecordsResponse>("/delete/records", request_, false, true, cancellationToken);
31160 
31161  return actualResponse_;
31162  }
31163 
31244  public DeleteRecordsResponse deleteRecords( string table_name,
31245  IList<string> expressions,
31246  IDictionary<string, string> options = null )
31247  {
31248  return deleteRecords( new DeleteRecordsRequest( table_name, expressions, options ) );
31249  }
31250 
31333  public async System.Threading.Tasks.Task<DeleteRecordsResponse> DeleteRecordsAsync( string table_name,
31334  IList<string> expressions,
31335  IDictionary<string, string> options = null,
31336  System.Threading.CancellationToken cancellationToken = default )
31337  {
31338  return await DeleteRecordsAsync( new DeleteRecordsRequest( table_name,
31339  expressions, options ), cancellationToken );
31340  }
31341 
31349  {
31350  DeleteResourceGroupResponse actualResponse_ = SubmitRequest<DeleteResourceGroupResponse>("/delete/resourcegroup", request_, false);
31351 
31352  return actualResponse_;
31353  }
31354 
31363  public async System.Threading.Tasks.Task<DeleteResourceGroupResponse> DeleteResourceGroupAsync( DeleteResourceGroupRequest request_,
31364  System.Threading.CancellationToken cancellationToken = default )
31365  {
31366  DeleteResourceGroupResponse actualResponse_ = await SubmitRequestAsync<DeleteResourceGroupResponse>("/delete/resourcegroup", request_, false, true, cancellationToken);
31367 
31368  return actualResponse_;
31369  }
31370 
31406  IDictionary<string, string> options = null )
31407  {
31408  return deleteResourceGroup( new DeleteResourceGroupRequest( name, options ) );
31409  }
31410 
31447  public async System.Threading.Tasks.Task<DeleteResourceGroupResponse> DeleteResourceGroupAsync( string name,
31448  IDictionary<string, string> options = null,
31449  System.Threading.CancellationToken cancellationToken = default )
31450  {
31451  return await DeleteResourceGroupAsync( new DeleteResourceGroupRequest( name,
31452  options ), cancellationToken );
31453  }
31454 
31464  {
31465  DeleteRoleResponse actualResponse_ = SubmitRequest<DeleteRoleResponse>("/delete/role", request_, false);
31466 
31467  return actualResponse_;
31468  }
31469 
31480  public async System.Threading.Tasks.Task<DeleteRoleResponse> DeleteRoleAsync( DeleteRoleRequest request_,
31481  System.Threading.CancellationToken cancellationToken = default )
31482  {
31483  DeleteRoleResponse actualResponse_ = await SubmitRequestAsync<DeleteRoleResponse>("/delete/role", request_, false, true, cancellationToken);
31484 
31485  return actualResponse_;
31486  }
31487 
31498  public DeleteRoleResponse deleteRole( string name,
31499  IDictionary<string, string> options = null )
31500  {
31501  return deleteRole( new DeleteRoleRequest( name, options ) );
31502  }
31503 
31516  public async System.Threading.Tasks.Task<DeleteRoleResponse> DeleteRoleAsync( string name,
31517  IDictionary<string, string> options = null,
31518  System.Threading.CancellationToken cancellationToken = default )
31519  {
31520  return await DeleteRoleAsync( new DeleteRoleRequest( name, options ), cancellationToken );
31521  }
31522 
31532  {
31533  DeleteUserResponse actualResponse_ = SubmitRequest<DeleteUserResponse>("/delete/user", request_, false);
31534 
31535  return actualResponse_;
31536  }
31537 
31548  public async System.Threading.Tasks.Task<DeleteUserResponse> DeleteUserAsync( DeleteUserRequest request_,
31549  System.Threading.CancellationToken cancellationToken = default )
31550  {
31551  DeleteUserResponse actualResponse_ = await SubmitRequestAsync<DeleteUserResponse>("/delete/user", request_, false, true, cancellationToken);
31552 
31553  return actualResponse_;
31554  }
31555 
31566  public DeleteUserResponse deleteUser( string name,
31567  IDictionary<string, string> options = null )
31568  {
31569  return deleteUser( new DeleteUserRequest( name, options ) );
31570  }
31571 
31584  public async System.Threading.Tasks.Task<DeleteUserResponse> DeleteUserAsync( string name,
31585  IDictionary<string, string> options = null,
31586  System.Threading.CancellationToken cancellationToken = default )
31587  {
31588  return await DeleteUserAsync( new DeleteUserRequest( name, options ), cancellationToken );
31589  }
31590 
31599  {
31600  DownloadFilesResponse actualResponse_ = SubmitRequest<DownloadFilesResponse>("/download/files", request_, false);
31601 
31602  return actualResponse_;
31603  }
31604 
31614  public async System.Threading.Tasks.Task<DownloadFilesResponse> DownloadFilesAsync( DownloadFilesRequest request_,
31615  System.Threading.CancellationToken cancellationToken = default )
31616  {
31617  DownloadFilesResponse actualResponse_ = await SubmitRequestAsync<DownloadFilesResponse>("/download/files", request_, false, true, cancellationToken);
31618 
31619  return actualResponse_;
31620  }
31621 
31676  public DownloadFilesResponse downloadFiles( IList<string> file_names,
31677  IList<long> read_offsets,
31678  IList<long> read_lengths,
31679  IDictionary<string, string> options = null )
31680  {
31681  return downloadFiles( new DownloadFilesRequest( file_names, read_offsets,
31682  read_lengths, options ) );
31683  }
31684 
31741  public async System.Threading.Tasks.Task<DownloadFilesResponse> DownloadFilesAsync( IList<string> file_names,
31742  IList<long> read_offsets,
31743  IList<long> read_lengths,
31744  IDictionary<string, string> options = null,
31745  System.Threading.CancellationToken cancellationToken = default )
31746  {
31747  return await DownloadFilesAsync( new DownloadFilesRequest( file_names,
31748  read_offsets,
31749  read_lengths, options ), cancellationToken );
31750  }
31751 
31764  {
31765  DropBackupResponse actualResponse_ = SubmitRequest<DropBackupResponse>("/drop/backup", request_, false);
31766 
31767  return actualResponse_;
31768  }
31769 
31784  public async System.Threading.Tasks.Task<DropBackupResponse> DropBackupAsync( DropBackupRequest request_,
31785  System.Threading.CancellationToken cancellationToken = default )
31786  {
31787  DropBackupResponse actualResponse_ = await SubmitRequestAsync<DropBackupResponse>("/drop/backup", request_, false, true, cancellationToken);
31788 
31789  return actualResponse_;
31790  }
31791 
31880  public DropBackupResponse dropBackup( string backup_name,
31881  string datasink_name,
31882  IDictionary<string, string> options = null )
31883  {
31884  return dropBackup( new DropBackupRequest( backup_name, datasink_name, options ) );
31885  }
31886 
31977  public async System.Threading.Tasks.Task<DropBackupResponse> DropBackupAsync( string backup_name,
31978  string datasink_name,
31979  IDictionary<string, string> options = null,
31980  System.Threading.CancellationToken cancellationToken = default )
31981  {
31982  return await DropBackupAsync( new DropBackupRequest( backup_name, datasink_name,
31983  options ), cancellationToken );
31984  }
31985 
31995  {
31996  DropCatalogResponse actualResponse_ = SubmitRequest<DropCatalogResponse>("/drop/catalog", request_, false);
31997 
31998  return actualResponse_;
31999  }
32000 
32011  public async System.Threading.Tasks.Task<DropCatalogResponse> DropCatalogAsync( DropCatalogRequest request_,
32012  System.Threading.CancellationToken cancellationToken = default )
32013  {
32014  DropCatalogResponse actualResponse_ = await SubmitRequestAsync<DropCatalogResponse>("/drop/catalog", request_, false, true, cancellationToken);
32015 
32016  return actualResponse_;
32017  }
32018 
32029  public DropCatalogResponse dropCatalog( string name,
32030  IDictionary<string, string> options = null )
32031  {
32032  return dropCatalog( new DropCatalogRequest( name, options ) );
32033  }
32034 
32047  public async System.Threading.Tasks.Task<DropCatalogResponse> DropCatalogAsync( string name,
32048  IDictionary<string, string> options = null,
32049  System.Threading.CancellationToken cancellationToken = default )
32050  {
32051  return await DropCatalogAsync( new DropCatalogRequest( name, options ), cancellationToken );
32052  }
32053 
32055  public DropContainerRegistryResponse dropContainerRegistry( DropContainerRegistryRequest request_ )
32056  {
32057  DropContainerRegistryResponse actualResponse_ = SubmitRequest<DropContainerRegistryResponse>("/drop/container/registry", request_, false);
32058 
32059  return actualResponse_;
32060  }
32062 
32064  public async System.Threading.Tasks.Task<DropContainerRegistryResponse> DropContainerRegistryAsync( DropContainerRegistryRequest request_,
32065  System.Threading.CancellationToken cancellationToken = default )
32066  {
32067  DropContainerRegistryResponse actualResponse_ = await SubmitRequestAsync<DropContainerRegistryResponse>("/drop/container/registry", request_, false, true, cancellationToken);
32068 
32069  return actualResponse_;
32070  }
32072 
32074  public DropContainerRegistryResponse dropContainerRegistry( string registry_name,
32075  IDictionary<string, string> options = null )
32076  {
32077  return dropContainerRegistry( new DropContainerRegistryRequest( registry_name,
32078  options ) );
32079  }
32081 
32083  public async System.Threading.Tasks.Task<DropContainerRegistryResponse> DropContainerRegistryAsync( string registry_name,
32084  IDictionary<string, string> options = null,
32085  System.Threading.CancellationToken cancellationToken = default )
32086  {
32087  return await DropContainerRegistryAsync( new DropContainerRegistryRequest( registry_name,
32088  options ), cancellationToken );
32089  }
32091 
32100  {
32101  DropCredentialResponse actualResponse_ = SubmitRequest<DropCredentialResponse>("/drop/credential", request_, false);
32102 
32103  return actualResponse_;
32104  }
32105 
32115  public async System.Threading.Tasks.Task<DropCredentialResponse> DropCredentialAsync( DropCredentialRequest request_,
32116  System.Threading.CancellationToken cancellationToken = default )
32117  {
32118  DropCredentialResponse actualResponse_ = await SubmitRequestAsync<DropCredentialResponse>("/drop/credential", request_, false, true, cancellationToken);
32119 
32120  return actualResponse_;
32121  }
32122 
32132  public DropCredentialResponse dropCredential( string credential_name,
32133  IDictionary<string, string> options = null )
32134  {
32135  return dropCredential( new DropCredentialRequest( credential_name, options ) );
32136  }
32137 
32149  public async System.Threading.Tasks.Task<DropCredentialResponse> DropCredentialAsync( string credential_name,
32150  IDictionary<string, string> options = null,
32151  System.Threading.CancellationToken cancellationToken = default )
32152  {
32153  return await DropCredentialAsync( new DropCredentialRequest( credential_name,
32154  options ), cancellationToken );
32155  }
32156 
32172  {
32173  DropDatasinkResponse actualResponse_ = SubmitRequest<DropDatasinkResponse>("/drop/datasink", request_, false);
32174 
32175  return actualResponse_;
32176  }
32177 
32194  public async System.Threading.Tasks.Task<DropDatasinkResponse> DropDatasinkAsync( DropDatasinkRequest request_,
32195  System.Threading.CancellationToken cancellationToken = default )
32196  {
32197  DropDatasinkResponse actualResponse_ = await SubmitRequestAsync<DropDatasinkResponse>("/drop/datasink", request_, false, true, cancellationToken);
32198 
32199  return actualResponse_;
32200  }
32201 
32245  public DropDatasinkResponse dropDatasink( string name,
32246  IDictionary<string, string> options = null )
32247  {
32248  return dropDatasink( new DropDatasinkRequest( name, options ) );
32249  }
32250 
32296  public async System.Threading.Tasks.Task<DropDatasinkResponse> DropDatasinkAsync( string name,
32297  IDictionary<string, string> options = null,
32298  System.Threading.CancellationToken cancellationToken = default )
32299  {
32300  return await DropDatasinkAsync( new DropDatasinkRequest( name, options ), cancellationToken );
32301  }
32302 
32313  {
32314  DropDatasourceResponse actualResponse_ = SubmitRequest<DropDatasourceResponse>("/drop/datasource", request_, false);
32315 
32316  return actualResponse_;
32317  }
32318 
32330  public async System.Threading.Tasks.Task<DropDatasourceResponse> DropDatasourceAsync( DropDatasourceRequest request_,
32331  System.Threading.CancellationToken cancellationToken = default )
32332  {
32333  DropDatasourceResponse actualResponse_ = await SubmitRequestAsync<DropDatasourceResponse>("/drop/datasource", request_, false, true, cancellationToken);
32334 
32335  return actualResponse_;
32336  }
32337 
32350  IDictionary<string, string> options = null )
32351  {
32352  return dropDatasource( new DropDatasourceRequest( name, options ) );
32353  }
32354 
32368  public async System.Threading.Tasks.Task<DropDatasourceResponse> DropDatasourceAsync( string name,
32369  IDictionary<string, string> options = null,
32370  System.Threading.CancellationToken cancellationToken = default )
32371  {
32372  return await DropDatasourceAsync( new DropDatasourceRequest( name, options ), cancellationToken );
32373  }
32374 
32383  {
32384  DropEnvironmentResponse actualResponse_ = SubmitRequest<DropEnvironmentResponse>("/drop/environment", request_, false);
32385 
32386  return actualResponse_;
32387  }
32388 
32399  public async System.Threading.Tasks.Task<DropEnvironmentResponse> DropEnvironmentAsync( DropEnvironmentRequest request_,
32400  System.Threading.CancellationToken cancellationToken = default )
32401  {
32402  DropEnvironmentResponse actualResponse_ = await SubmitRequestAsync<DropEnvironmentResponse>("/drop/environment", request_, false, true, cancellationToken);
32403 
32404  return actualResponse_;
32405  }
32406 
32446  public DropEnvironmentResponse dropEnvironment( string environment_name,
32447  IDictionary<string, string> options = null )
32448  {
32449  return dropEnvironment( new DropEnvironmentRequest( environment_name, options ) );
32450  }
32451 
32494  public async System.Threading.Tasks.Task<DropEnvironmentResponse> DropEnvironmentAsync( string environment_name,
32495  IDictionary<string, string> options = null,
32496  System.Threading.CancellationToken cancellationToken = default )
32497  {
32498  return await DropEnvironmentAsync( new DropEnvironmentRequest( environment_name,
32499  options ), cancellationToken );
32500  }
32501 
32503  public DropModelResponse dropModel( DropModelRequest request_ )
32504  {
32505  DropModelResponse actualResponse_ = SubmitRequest<DropModelResponse>("/drop/model", request_, false);
32506 
32507  return actualResponse_;
32508  }
32510 
32512  public async System.Threading.Tasks.Task<DropModelResponse> DropModelAsync( DropModelRequest request_,
32513  System.Threading.CancellationToken cancellationToken = default )
32514  {
32515  DropModelResponse actualResponse_ = await SubmitRequestAsync<DropModelResponse>("/drop/model", request_, false, true, cancellationToken);
32516 
32517  return actualResponse_;
32518  }
32520 
32522  public DropModelResponse dropModel( string model_name,
32523  IDictionary<string, string> options = null )
32524  {
32525  return dropModel( new DropModelRequest( model_name, options ) );
32526  }
32528 
32530  public async System.Threading.Tasks.Task<DropModelResponse> DropModelAsync( string model_name,
32531  IDictionary<string, string> options = null,
32532  System.Threading.CancellationToken cancellationToken = default )
32533  {
32534  return await DropModelAsync( new DropModelRequest( model_name, options ), cancellationToken );
32535  }
32537 
32548  {
32549  DropSchemaResponse actualResponse_ = SubmitRequest<DropSchemaResponse>("/drop/schema", request_, false);
32550 
32551  return actualResponse_;
32552  }
32553 
32565  public async System.Threading.Tasks.Task<DropSchemaResponse> DropSchemaAsync( DropSchemaRequest request_,
32566  System.Threading.CancellationToken cancellationToken = default )
32567  {
32568  DropSchemaResponse actualResponse_ = await SubmitRequestAsync<DropSchemaResponse>("/drop/schema", request_, false, true, cancellationToken);
32569 
32570  return actualResponse_;
32571  }
32572 
32636  public DropSchemaResponse dropSchema( string schema_name,
32637  IDictionary<string, string> options = null )
32638  {
32639  return dropSchema( new DropSchemaRequest( schema_name, options ) );
32640  }
32641 
32707  public async System.Threading.Tasks.Task<DropSchemaResponse> DropSchemaAsync( string schema_name,
32708  IDictionary<string, string> options = null,
32709  System.Threading.CancellationToken cancellationToken = default )
32710  {
32711  return await DropSchemaAsync( new DropSchemaRequest( schema_name, options ), cancellationToken );
32712  }
32713 
32715  public EvaluateModelResponse evaluateModel( EvaluateModelRequest request_ )
32716  {
32717  EvaluateModelResponse actualResponse_ = SubmitRequest<EvaluateModelResponse>("/evaluate/model", request_, false);
32718 
32719  return actualResponse_;
32720  }
32722 
32724  public async System.Threading.Tasks.Task<EvaluateModelResponse> EvaluateModelAsync( EvaluateModelRequest request_,
32725  System.Threading.CancellationToken cancellationToken = default )
32726  {
32727  EvaluateModelResponse actualResponse_ = await SubmitRequestAsync<EvaluateModelResponse>("/evaluate/model", request_, false, true, cancellationToken);
32728 
32729  return actualResponse_;
32730  }
32732 
32734  public EvaluateModelResponse evaluateModel( string model_name,
32735  int replicas,
32736  string deployment_mode,
32737  string source_table,
32738  string destination_table,
32739  IDictionary<string, string> options = null )
32740  {
32741  return evaluateModel( new EvaluateModelRequest( model_name, replicas,
32742  deployment_mode, source_table,
32743  destination_table, options ) );
32744  }
32746 
32748  public async System.Threading.Tasks.Task<EvaluateModelResponse> EvaluateModelAsync( string model_name,
32749  int replicas,
32750  string deployment_mode,
32751  string source_table,
32752  string destination_table,
32753  IDictionary<string, string> options = null,
32754  System.Threading.CancellationToken cancellationToken = default )
32755  {
32756  return await EvaluateModelAsync( new EvaluateModelRequest( model_name, replicas,
32757  deployment_mode,
32758  source_table,
32759  destination_table,
32760  options ), cancellationToken );
32761  }
32763 
32782  {
32783  ExecuteProcResponse actualResponse_ = SubmitRequest<ExecuteProcResponse>("/execute/proc", request_, false);
32784 
32785  return actualResponse_;
32786  }
32787 
32807  public async System.Threading.Tasks.Task<ExecuteProcResponse> ExecuteProcAsync( ExecuteProcRequest request_,
32808  System.Threading.CancellationToken cancellationToken = default )
32809  {
32810  ExecuteProcResponse actualResponse_ = await SubmitRequestAsync<ExecuteProcResponse>("/execute/proc", request_, false, true, cancellationToken);
32811 
32812  return actualResponse_;
32813  }
32814 
32945  public ExecuteProcResponse executeProc( string proc_name,
32946  IDictionary<string, string> _params = null,
32947  IDictionary<string, byte[]> bin_params = null,
32948  IList<string> input_table_names = null,
32949  IDictionary<string, IList<string>> input_column_names = null,
32950  IList<string> output_table_names = null,
32951  IDictionary<string, string> options = null )
32952  {
32953  return executeProc( new ExecuteProcRequest( proc_name, _params, bin_params,
32954  input_table_names, input_column_names,
32955  output_table_names, options ) );
32956  }
32957 
33090  public async System.Threading.Tasks.Task<ExecuteProcResponse> ExecuteProcAsync( string proc_name,
33091  IDictionary<string, string> _params = null,
33092  IDictionary<string, byte[]> bin_params = null,
33093  IList<string> input_table_names = null,
33094  IDictionary<string, IList<string>> input_column_names = null,
33095  IList<string> output_table_names = null,
33096  IDictionary<string, string> options = null,
33097  System.Threading.CancellationToken cancellationToken = default )
33098  {
33099  return await ExecuteProcAsync( new ExecuteProcRequest( proc_name, _params,
33100  bin_params,
33101  input_table_names,
33102  input_column_names,
33103  output_table_names, options ), cancellationToken );
33104  }
33105 
33137  {
33138  RawExecuteSqlResponse actualResponse_ = SubmitRequest<RawExecuteSqlResponse>("/execute/sql", request_, false);
33139 
33140  ExecuteSqlResponse response_ = new ExecuteSqlResponse();
33141  response_.count_affected = actualResponse_.count_affected;
33142  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
33143  response_.total_number_of_records = actualResponse_.total_number_of_records;
33144  response_.has_more_records = actualResponse_.has_more_records;
33145  response_.paging_table = actualResponse_.paging_table;
33146  response_.info = actualResponse_.info;
33147  return response_;
33148  }
33149 
33183  public async System.Threading.Tasks.Task<ExecuteSqlResponse> ExecuteSqlAsync( ExecuteSqlRequest request_,
33184  System.Threading.CancellationToken cancellationToken = default )
33185  {
33186  RawExecuteSqlResponse actualResponse_ = await SubmitRequestAsync<RawExecuteSqlResponse>("/execute/sql", request_, false, true, cancellationToken);
33187 
33188  ExecuteSqlResponse response_ = new ExecuteSqlResponse();
33189  response_.count_affected = actualResponse_.count_affected;
33190  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
33191  response_.total_number_of_records = actualResponse_.total_number_of_records;
33192  response_.has_more_records = actualResponse_.has_more_records;
33193  response_.paging_table = actualResponse_.paging_table;
33194  response_.info = actualResponse_.info;
33195  return response_;
33196  }
33197 
33685  public ExecuteSqlResponse executeSql( string statement,
33686  long offset = 0,
33687  long limit = -9999,
33688  string request_schema_str = "",
33689  IList<byte[]> data = null,
33690  IDictionary<string, string> options = null )
33691  {
33692  return executeSql( new ExecuteSqlRequest( statement, offset, limit,
33693  request_schema_str, data, options ) );
33694  }
33695 
34186  public async System.Threading.Tasks.Task<ExecuteSqlResponse> ExecuteSqlAsync( string statement,
34187  long offset = 0,
34188  long limit = -9999,
34189  string request_schema_str = "",
34190  IList<byte[]> data = null,
34191  IDictionary<string, string> options = null,
34192  System.Threading.CancellationToken cancellationToken = default )
34193  {
34194  return await ExecuteSqlAsync( new ExecuteSqlRequest( statement, offset, limit,
34195  request_schema_str, data,
34196  options ), cancellationToken );
34197  }
34198 
34207  {
34208  ExportQueryMetricsResponse actualResponse_ = SubmitRequest<ExportQueryMetricsResponse>("/export/query/metrics", request_, false);
34209 
34210  return actualResponse_;
34211  }
34212 
34222  public async System.Threading.Tasks.Task<ExportQueryMetricsResponse> ExportQueryMetricsAsync( ExportQueryMetricsRequest request_,
34223  System.Threading.CancellationToken cancellationToken = default )
34224  {
34225  ExportQueryMetricsResponse actualResponse_ = await SubmitRequestAsync<ExportQueryMetricsResponse>("/export/query/metrics", request_, false, true, cancellationToken);
34226 
34227  return actualResponse_;
34228  }
34229 
34291  public ExportQueryMetricsResponse exportQueryMetrics( IDictionary<string, string> options = null )
34292  {
34293  return exportQueryMetrics( new ExportQueryMetricsRequest( options ) );
34294  }
34295 
34359  public async System.Threading.Tasks.Task<ExportQueryMetricsResponse> ExportQueryMetricsAsync( IDictionary<string, string> options = null,
34360  System.Threading.CancellationToken cancellationToken = default )
34361  {
34362  return await ExportQueryMetricsAsync( new ExportQueryMetricsRequest( options ), cancellationToken );
34363  }
34364 
34390  {
34391  ExportRecordsToFilesResponse actualResponse_ = SubmitRequest<ExportRecordsToFilesResponse>("/export/records/tofiles", request_, false);
34392 
34393  return actualResponse_;
34394  }
34395 
34422  public async System.Threading.Tasks.Task<ExportRecordsToFilesResponse> ExportRecordsToFilesAsync( ExportRecordsToFilesRequest request_,
34423  System.Threading.CancellationToken cancellationToken = default )
34424  {
34425  ExportRecordsToFilesResponse actualResponse_ = await SubmitRequestAsync<ExportRecordsToFilesResponse>("/export/records/tofiles", request_, false, true, cancellationToken);
34426 
34427  return actualResponse_;
34428  }
34429 
34746  string filepath,
34747  IDictionary<string, string> options = null )
34748  {
34749  return exportRecordsToFiles( new ExportRecordsToFilesRequest( table_name,
34750  filepath, options ) );
34751  }
34752 
35070  public async System.Threading.Tasks.Task<ExportRecordsToFilesResponse> ExportRecordsToFilesAsync( string table_name,
35071  string filepath,
35072  IDictionary<string, string> options = null,
35073  System.Threading.CancellationToken cancellationToken = default )
35074  {
35075  return await ExportRecordsToFilesAsync( new ExportRecordsToFilesRequest( table_name,
35076  filepath,
35077  options ), cancellationToken );
35078  }
35079 
35088  {
35089  ExportRecordsToTableResponse actualResponse_ = SubmitRequest<ExportRecordsToTableResponse>("/export/records/totable", request_, false);
35090 
35091  return actualResponse_;
35092  }
35093 
35103  public async System.Threading.Tasks.Task<ExportRecordsToTableResponse> ExportRecordsToTableAsync( ExportRecordsToTableRequest request_,
35104  System.Threading.CancellationToken cancellationToken = default )
35105  {
35106  ExportRecordsToTableResponse actualResponse_ = await SubmitRequestAsync<ExportRecordsToTableResponse>("/export/records/totable", request_, false, true, cancellationToken);
35107 
35108  return actualResponse_;
35109  }
35110 
35212  string remote_query = "",
35213  IDictionary<string, string> options = null )
35214  {
35215  return exportRecordsToTable( new ExportRecordsToTableRequest( table_name,
35216  remote_query,
35217  options ) );
35218  }
35219 
35322  public async System.Threading.Tasks.Task<ExportRecordsToTableResponse> ExportRecordsToTableAsync( string table_name,
35323  string remote_query = "",
35324  IDictionary<string, string> options = null,
35325  System.Threading.CancellationToken cancellationToken = default )
35326  {
35327  return await ExportRecordsToTableAsync( new ExportRecordsToTableRequest( table_name,
35328  remote_query,
35329  options ), cancellationToken );
35330  }
35331 
35348  {
35349  FilterResponse actualResponse_ = SubmitRequest<FilterResponse>("/filter", request_, false);
35350 
35351  return actualResponse_;
35352  }
35353 
35372  public async System.Threading.Tasks.Task<FilterResponse> FilterAsync( FilterRequest request_,
35373  System.Threading.CancellationToken cancellationToken = default )
35374  {
35375  FilterResponse actualResponse_ = await SubmitRequestAsync<FilterResponse>("/filter", request_, false, true, cancellationToken);
35376 
35377  return actualResponse_;
35378  }
35379 
35460  public FilterResponse filter( string table_name,
35461  string view_name,
35462  string expression,
35463  IDictionary<string, string> options = null )
35464  {
35465  return filter( new FilterRequest( table_name, view_name, expression, options ) );
35466  }
35467 
35551  public async System.Threading.Tasks.Task<FilterResponse> FilterAsync( string table_name,
35552  string view_name,
35553  string expression,
35554  IDictionary<string, string> options = null,
35555  System.Threading.CancellationToken cancellationToken = default )
35556  {
35557  return await FilterAsync( new FilterRequest( table_name, view_name, expression,
35558  options ), cancellationToken );
35559  }
35560 
35576  {
35577  FilterByAreaResponse actualResponse_ = SubmitRequest<FilterByAreaResponse>("/filter/byarea", request_, false);
35578 
35579  return actualResponse_;
35580  }
35581 
35598  public async System.Threading.Tasks.Task<FilterByAreaResponse> FilterByAreaAsync( FilterByAreaRequest request_,
35599  System.Threading.CancellationToken cancellationToken = default )
35600  {
35601  FilterByAreaResponse actualResponse_ = await SubmitRequestAsync<FilterByAreaResponse>("/filter/byarea", request_, false, true, cancellationToken);
35602 
35603  return actualResponse_;
35604  }
35605 
35681  public FilterByAreaResponse filterByArea( string table_name,
35682  string view_name,
35683  string x_column_name,
35684  IList<double> x_vector,
35685  string y_column_name,
35686  IList<double> y_vector,
35687  IDictionary<string, string> options = null )
35688  {
35689  return filterByArea( new FilterByAreaRequest( table_name, view_name,
35690  x_column_name, x_vector,
35691  y_column_name, y_vector, options ) );
35692  }
35693 
35771  public async System.Threading.Tasks.Task<FilterByAreaResponse> FilterByAreaAsync( string table_name,
35772  string view_name,
35773  string x_column_name,
35774  IList<double> x_vector,
35775  string y_column_name,
35776  IList<double> y_vector,
35777  IDictionary<string, string> options = null,
35778  System.Threading.CancellationToken cancellationToken = default )
35779  {
35780  return await FilterByAreaAsync( new FilterByAreaRequest( table_name, view_name,
35781  x_column_name, x_vector,
35782  y_column_name, y_vector,
35783  options ), cancellationToken );
35784  }
35785 
35801  {
35802  FilterByAreaGeometryResponse actualResponse_ = SubmitRequest<FilterByAreaGeometryResponse>("/filter/byarea/geometry", request_, false);
35803 
35804  return actualResponse_;
35805  }
35806 
35823  public async System.Threading.Tasks.Task<FilterByAreaGeometryResponse> FilterByAreaGeometryAsync( FilterByAreaGeometryRequest request_,
35824  System.Threading.CancellationToken cancellationToken = default )
35825  {
35826  FilterByAreaGeometryResponse actualResponse_ = await SubmitRequestAsync<FilterByAreaGeometryResponse>("/filter/byarea/geometry", request_, false, true, cancellationToken);
35827 
35828  return actualResponse_;
35829  }
35830 
35905  string view_name,
35906  string column_name,
35907  IList<double> x_vector,
35908  IList<double> y_vector,
35909  IDictionary<string, string> options = null )
35910  {
35911  return filterByAreaGeometry( new FilterByAreaGeometryRequest( table_name,
35912  view_name,
35913  column_name,
35914  x_vector, y_vector,
35915  options ) );
35916  }
35917 
35993  public async System.Threading.Tasks.Task<FilterByAreaGeometryResponse> FilterByAreaGeometryAsync( string table_name,
35994  string view_name,
35995  string column_name,
35996  IList<double> x_vector,
35997  IList<double> y_vector,
35998  IDictionary<string, string> options = null,
35999  System.Threading.CancellationToken cancellationToken = default )
36000  {
36001  return await FilterByAreaGeometryAsync( new FilterByAreaGeometryRequest( table_name,
36002  view_name,
36003  column_name,
36004  x_vector,
36005  y_vector,
36006  options ), cancellationToken );
36007  }
36008 
36024  {
36025  FilterByBoxResponse actualResponse_ = SubmitRequest<FilterByBoxResponse>("/filter/bybox", request_, false);
36026 
36027  return actualResponse_;
36028  }
36029 
36046  public async System.Threading.Tasks.Task<FilterByBoxResponse> FilterByBoxAsync( FilterByBoxRequest request_,
36047  System.Threading.CancellationToken cancellationToken = default )
36048  {
36049  FilterByBoxResponse actualResponse_ = await SubmitRequestAsync<FilterByBoxResponse>("/filter/bybox", request_, false, true, cancellationToken);
36050 
36051  return actualResponse_;
36052  }
36053 
36134  public FilterByBoxResponse filterByBox( string table_name,
36135  string view_name,
36136  string x_column_name,
36137  double min_x,
36138  double max_x,
36139  string y_column_name,
36140  double min_y,
36141  double max_y,
36142  IDictionary<string, string> options = null )
36143  {
36144  return filterByBox( new FilterByBoxRequest( table_name, view_name, x_column_name,
36145  min_x, max_x, y_column_name, min_y,
36146  max_y, options ) );
36147  }
36148 
36231  public async System.Threading.Tasks.Task<FilterByBoxResponse> FilterByBoxAsync( string table_name,
36232  string view_name,
36233  string x_column_name,
36234  double min_x,
36235  double max_x,
36236  string y_column_name,
36237  double min_y,
36238  double max_y,
36239  IDictionary<string, string> options = null,
36240  System.Threading.CancellationToken cancellationToken = default )
36241  {
36242  return await FilterByBoxAsync( new FilterByBoxRequest( table_name, view_name,
36243  x_column_name, min_x,
36244  max_x, y_column_name,
36245  min_y, max_y, options ), cancellationToken );
36246  }
36247 
36263  {
36264  FilterByBoxGeometryResponse actualResponse_ = SubmitRequest<FilterByBoxGeometryResponse>("/filter/bybox/geometry", request_, false);
36265 
36266  return actualResponse_;
36267  }
36268 
36285  public async System.Threading.Tasks.Task<FilterByBoxGeometryResponse> FilterByBoxGeometryAsync( FilterByBoxGeometryRequest request_,
36286  System.Threading.CancellationToken cancellationToken = default )
36287  {
36288  FilterByBoxGeometryResponse actualResponse_ = await SubmitRequestAsync<FilterByBoxGeometryResponse>("/filter/bybox/geometry", request_, false, true, cancellationToken);
36289 
36290  return actualResponse_;
36291  }
36292 
36373  string view_name,
36374  string column_name,
36375  double min_x,
36376  double max_x,
36377  double min_y,
36378  double max_y,
36379  IDictionary<string, string> options = null )
36380  {
36381  return filterByBoxGeometry( new FilterByBoxGeometryRequest( table_name, view_name,
36382  column_name, min_x,
36383  max_x, min_y, max_y,
36384  options ) );
36385  }
36386 
36468  public async System.Threading.Tasks.Task<FilterByBoxGeometryResponse> FilterByBoxGeometryAsync( string table_name,
36469  string view_name,
36470  string column_name,
36471  double min_x,
36472  double max_x,
36473  double min_y,
36474  double max_y,
36475  IDictionary<string, string> options = null,
36476  System.Threading.CancellationToken cancellationToken = default )
36477  {
36478  return await FilterByBoxGeometryAsync( new FilterByBoxGeometryRequest( table_name,
36479  view_name,
36480  column_name,
36481  min_x,
36482  max_x,
36483  min_y,
36484  max_y,
36485  options ), cancellationToken );
36486  }
36487 
36499  {
36500  FilterByGeometryResponse actualResponse_ = SubmitRequest<FilterByGeometryResponse>("/filter/bygeometry", request_, false);
36501 
36502  return actualResponse_;
36503  }
36504 
36517  public async System.Threading.Tasks.Task<FilterByGeometryResponse> FilterByGeometryAsync( FilterByGeometryRequest request_,
36518  System.Threading.CancellationToken cancellationToken = default )
36519  {
36520  FilterByGeometryResponse actualResponse_ = await SubmitRequestAsync<FilterByGeometryResponse>("/filter/bygeometry", request_, false, true, cancellationToken);
36521 
36522  return actualResponse_;
36523  }
36524 
36654  public FilterByGeometryResponse filterByGeometry( string table_name,
36655  string view_name,
36656  string column_name,
36657  string input_wkt,
36658  string operation,
36659  IDictionary<string, string> options = null )
36660  {
36661  return filterByGeometry( new FilterByGeometryRequest( table_name, view_name,
36662  column_name, input_wkt,
36663  operation, options ) );
36664  }
36665 
36797  public async System.Threading.Tasks.Task<FilterByGeometryResponse> FilterByGeometryAsync( string table_name,
36798  string view_name,
36799  string column_name,
36800  string input_wkt,
36801  string operation,
36802  IDictionary<string, string> options = null,
36803  System.Threading.CancellationToken cancellationToken = default )
36804  {
36805  return await FilterByGeometryAsync( new FilterByGeometryRequest( table_name,
36806  view_name,
36807  column_name,
36808  input_wkt,
36809  operation,
36810  options ), cancellationToken );
36811  }
36812 
36836  {
36837  FilterByListResponse actualResponse_ = SubmitRequest<FilterByListResponse>("/filter/bylist", request_, false);
36838 
36839  return actualResponse_;
36840  }
36841 
36866  public async System.Threading.Tasks.Task<FilterByListResponse> FilterByListAsync( FilterByListRequest request_,
36867  System.Threading.CancellationToken cancellationToken = default )
36868  {
36869  FilterByListResponse actualResponse_ = await SubmitRequestAsync<FilterByListResponse>("/filter/bylist", request_, false, true, cancellationToken);
36870 
36871  return actualResponse_;
36872  }
36873 
36978  public FilterByListResponse filterByList( string table_name,
36979  string view_name,
36980  IDictionary<string, IList<string>> column_values_map,
36981  IDictionary<string, string> options = null )
36982  {
36983  return filterByList( new FilterByListRequest( table_name, view_name,
36984  column_values_map, options ) );
36985  }
36986 
37093  public async System.Threading.Tasks.Task<FilterByListResponse> FilterByListAsync( string table_name,
37094  string view_name,
37095  IDictionary<string, IList<string>> column_values_map,
37096  IDictionary<string, string> options = null,
37097  System.Threading.CancellationToken cancellationToken = default )
37098  {
37099  return await FilterByListAsync( new FilterByListRequest( table_name, view_name,
37100  column_values_map,
37101  options ), cancellationToken );
37102  }
37103 
37122  {
37123  FilterByRadiusResponse actualResponse_ = SubmitRequest<FilterByRadiusResponse>("/filter/byradius", request_, false);
37124 
37125  return actualResponse_;
37126  }
37127 
37148  public async System.Threading.Tasks.Task<FilterByRadiusResponse> FilterByRadiusAsync( FilterByRadiusRequest request_,
37149  System.Threading.CancellationToken cancellationToken = default )
37150  {
37151  FilterByRadiusResponse actualResponse_ = await SubmitRequestAsync<FilterByRadiusResponse>("/filter/byradius", request_, false, true, cancellationToken);
37152 
37153  return actualResponse_;
37154  }
37155 
37241  public FilterByRadiusResponse filterByRadius( string table_name,
37242  string view_name,
37243  string x_column_name,
37244  double x_center,
37245  string y_column_name,
37246  double y_center,
37247  double radius,
37248  IDictionary<string, string> options = null )
37249  {
37250  return filterByRadius( new FilterByRadiusRequest( table_name, view_name,
37251  x_column_name, x_center,
37252  y_column_name, y_center, radius,
37253  options ) );
37254  }
37255 
37344  public async System.Threading.Tasks.Task<FilterByRadiusResponse> FilterByRadiusAsync( string table_name,
37345  string view_name,
37346  string x_column_name,
37347  double x_center,
37348  string y_column_name,
37349  double y_center,
37350  double radius,
37351  IDictionary<string, string> options = null,
37352  System.Threading.CancellationToken cancellationToken = default )
37353  {
37354  return await FilterByRadiusAsync( new FilterByRadiusRequest( table_name,
37355  view_name,
37356  x_column_name,
37357  x_center,
37358  y_column_name,
37359  y_center, radius,
37360  options ), cancellationToken );
37361  }
37362 
37379  {
37380  FilterByRadiusGeometryResponse actualResponse_ = SubmitRequest<FilterByRadiusGeometryResponse>("/filter/byradius/geometry", request_, false);
37381 
37382  return actualResponse_;
37383  }
37384 
37403  System.Threading.CancellationToken cancellationToken = default )
37404  {
37405  FilterByRadiusGeometryResponse actualResponse_ = await SubmitRequestAsync<FilterByRadiusGeometryResponse>("/filter/byradius/geometry", request_, false, true, cancellationToken);
37406 
37407  return actualResponse_;
37408  }
37409 
37492  string view_name,
37493  string column_name,
37494  double x_center,
37495  double y_center,
37496  double radius,
37497  IDictionary<string, string> options = null )
37498  {
37499  return filterByRadiusGeometry( new FilterByRadiusGeometryRequest( table_name,
37500  view_name,
37501  column_name,
37502  x_center,
37503  y_center,
37504  radius, options ) );
37505  }
37506 
37590  public async System.Threading.Tasks.Task<FilterByRadiusGeometryResponse> FilterByRadiusGeometryAsync( string table_name,
37591  string view_name,
37592  string column_name,
37593  double x_center,
37594  double y_center,
37595  double radius,
37596  IDictionary<string, string> options = null,
37597  System.Threading.CancellationToken cancellationToken = default )
37598  {
37599  return await FilterByRadiusGeometryAsync( new FilterByRadiusGeometryRequest( table_name,
37600  view_name,
37601  column_name,
37602  x_center,
37603  y_center,
37604  radius,
37605  options ), cancellationToken );
37606  }
37607 
37629  {
37630  FilterByRangeResponse actualResponse_ = SubmitRequest<FilterByRangeResponse>("/filter/byrange", request_, false);
37631 
37632  return actualResponse_;
37633  }
37634 
37657  public async System.Threading.Tasks.Task<FilterByRangeResponse> FilterByRangeAsync( FilterByRangeRequest request_,
37658  System.Threading.CancellationToken cancellationToken = default )
37659  {
37660  FilterByRangeResponse actualResponse_ = await SubmitRequestAsync<FilterByRangeResponse>("/filter/byrange", request_, false, true, cancellationToken);
37661 
37662  return actualResponse_;
37663  }
37664 
37740  public FilterByRangeResponse filterByRange( string table_name,
37741  string view_name,
37742  string column_name,
37743  double lower_bound,
37744  double upper_bound,
37745  IDictionary<string, string> options = null )
37746  {
37747  return filterByRange( new FilterByRangeRequest( table_name, view_name,
37748  column_name, lower_bound,
37749  upper_bound, options ) );
37750  }
37751 
37829  public async System.Threading.Tasks.Task<FilterByRangeResponse> FilterByRangeAsync( string table_name,
37830  string view_name,
37831  string column_name,
37832  double lower_bound,
37833  double upper_bound,
37834  IDictionary<string, string> options = null,
37835  System.Threading.CancellationToken cancellationToken = default )
37836  {
37837  return await FilterByRangeAsync( new FilterByRangeRequest( table_name, view_name,
37838  column_name,
37839  lower_bound,
37840  upper_bound, options ), cancellationToken );
37841  }
37842 
37864  {
37865  FilterBySeriesResponse actualResponse_ = SubmitRequest<FilterBySeriesResponse>("/filter/byseries", request_, false);
37866 
37867  return actualResponse_;
37868  }
37869 
37892  public async System.Threading.Tasks.Task<FilterBySeriesResponse> FilterBySeriesAsync( FilterBySeriesRequest request_,
37893  System.Threading.CancellationToken cancellationToken = default )
37894  {
37895  FilterBySeriesResponse actualResponse_ = await SubmitRequestAsync<FilterBySeriesResponse>("/filter/byseries", request_, false, true, cancellationToken);
37896 
37897  return actualResponse_;
37898  }
37899 
38023  public FilterBySeriesResponse filterBySeries( string table_name,
38024  string view_name,
38025  string track_id,
38026  IList<string> target_track_ids,
38027  IDictionary<string, string> options = null )
38028  {
38029  return filterBySeries( new FilterBySeriesRequest( table_name, view_name, track_id,
38030  target_track_ids, options ) );
38031  }
38032 
38158  public async System.Threading.Tasks.Task<FilterBySeriesResponse> FilterBySeriesAsync( string table_name,
38159  string view_name,
38160  string track_id,
38161  IList<string> target_track_ids,
38162  IDictionary<string, string> options = null,
38163  System.Threading.CancellationToken cancellationToken = default )
38164  {
38165  return await FilterBySeriesAsync( new FilterBySeriesRequest( table_name,
38166  view_name, track_id,
38167  target_track_ids,
38168  options ), cancellationToken );
38169  }
38170 
38186  {
38187  FilterByStringResponse actualResponse_ = SubmitRequest<FilterByStringResponse>("/filter/bystring", request_, false);
38188 
38189  return actualResponse_;
38190  }
38191 
38208  public async System.Threading.Tasks.Task<FilterByStringResponse> FilterByStringAsync( FilterByStringRequest request_,
38209  System.Threading.CancellationToken cancellationToken = default )
38210  {
38211  FilterByStringResponse actualResponse_ = await SubmitRequestAsync<FilterByStringResponse>("/filter/bystring", request_, false, true, cancellationToken);
38212 
38213  return actualResponse_;
38214  }
38215 
38358  public FilterByStringResponse filterByString( string table_name,
38359  string view_name,
38360  string expression,
38361  string mode,
38362  IList<string> column_names,
38363  IDictionary<string, string> options = null )
38364  {
38365  return filterByString( new FilterByStringRequest( table_name, view_name,
38366  expression, mode, column_names,
38367  options ) );
38368  }
38369 
38514  public async System.Threading.Tasks.Task<FilterByStringResponse> FilterByStringAsync( string table_name,
38515  string view_name,
38516  string expression,
38517  string mode,
38518  IList<string> column_names,
38519  IDictionary<string, string> options = null,
38520  System.Threading.CancellationToken cancellationToken = default )
38521  {
38522  return await FilterByStringAsync( new FilterByStringRequest( table_name,
38523  view_name,
38524  expression, mode,
38525  column_names, options ), cancellationToken );
38526  }
38527 
38546  {
38547  FilterByTableResponse actualResponse_ = SubmitRequest<FilterByTableResponse>("/filter/bytable", request_, false);
38548 
38549  return actualResponse_;
38550  }
38551 
38571  public async System.Threading.Tasks.Task<FilterByTableResponse> FilterByTableAsync( FilterByTableRequest request_,
38572  System.Threading.CancellationToken cancellationToken = default )
38573  {
38574  FilterByTableResponse actualResponse_ = await SubmitRequestAsync<FilterByTableResponse>("/filter/bytable", request_, false, true, cancellationToken);
38575 
38576  return actualResponse_;
38577  }
38578 
38780  public FilterByTableResponse filterByTable( string table_name,
38781  string view_name,
38782  string column_name,
38783  string source_table_name,
38784  string source_table_column_name,
38785  IDictionary<string, string> options = null )
38786  {
38787  return filterByTable( new FilterByTableRequest( table_name, view_name,
38788  column_name, source_table_name,
38789  source_table_column_name, options ) );
38790  }
38791 
38995  public async System.Threading.Tasks.Task<FilterByTableResponse> FilterByTableAsync( string table_name,
38996  string view_name,
38997  string column_name,
38998  string source_table_name,
38999  string source_table_column_name,
39000  IDictionary<string, string> options = null,
39001  System.Threading.CancellationToken cancellationToken = default )
39002  {
39003  return await FilterByTableAsync( new FilterByTableRequest( table_name, view_name,
39004  column_name,
39005  source_table_name,
39006  source_table_column_name,
39007  options ), cancellationToken );
39008  }
39009 
39028  {
39029  FilterByValueResponse actualResponse_ = SubmitRequest<FilterByValueResponse>("/filter/byvalue", request_, false);
39030 
39031  return actualResponse_;
39032  }
39033 
39053  public async System.Threading.Tasks.Task<FilterByValueResponse> FilterByValueAsync( FilterByValueRequest request_,
39054  System.Threading.CancellationToken cancellationToken = default )
39055  {
39056  FilterByValueResponse actualResponse_ = await SubmitRequestAsync<FilterByValueResponse>("/filter/byvalue", request_, false, true, cancellationToken);
39057 
39058  return actualResponse_;
39059  }
39060 
39139  public FilterByValueResponse filterByValue( string table_name,
39140  string view_name,
39141  bool is_string,
39142  double _value,
39143  string value_str,
39144  string column_name,
39145  IDictionary<string, string> options = null )
39146  {
39147  return filterByValue( new FilterByValueRequest( table_name, view_name, is_string,
39148  _value, value_str, column_name,
39149  options ) );
39150  }
39151 
39232  public async System.Threading.Tasks.Task<FilterByValueResponse> FilterByValueAsync( string table_name,
39233  string view_name,
39234  bool is_string,
39235  double _value,
39236  string value_str,
39237  string column_name,
39238  IDictionary<string, string> options = null,
39239  System.Threading.CancellationToken cancellationToken = default )
39240  {
39241  return await FilterByValueAsync( new FilterByValueRequest( table_name, view_name,
39242  is_string, _value,
39243  value_str, column_name,
39244  options ), cancellationToken );
39245  }
39246 
39258  {
39259  GetGraphEntitiesResponse actualResponse_ = SubmitRequest<GetGraphEntitiesResponse>("/get/graph/entities", request_, false);
39260 
39261  return actualResponse_;
39262  }
39263 
39276  public async System.Threading.Tasks.Task<GetGraphEntitiesResponse> GetGraphEntitiesAsync( GetGraphEntitiesRequest request_,
39277  System.Threading.CancellationToken cancellationToken = default )
39278  {
39279  GetGraphEntitiesResponse actualResponse_ = await SubmitRequestAsync<GetGraphEntitiesResponse>("/get/graph/entities", request_, false, true, cancellationToken);
39280 
39281  return actualResponse_;
39282  }
39283 
39419  public GetGraphEntitiesResponse getGraphEntities( string graph_name,
39420  long offset = 0,
39421  long limit = 10000,
39422  IDictionary<string, string> options = null )
39423  {
39424  return getGraphEntities( new GetGraphEntitiesRequest( graph_name, offset, limit,
39425  options ) );
39426  }
39427 
39565  public async System.Threading.Tasks.Task<GetGraphEntitiesResponse> GetGraphEntitiesAsync( string graph_name,
39566  long offset = 0,
39567  long limit = 10000,
39568  IDictionary<string, string> options = null,
39569  System.Threading.CancellationToken cancellationToken = default )
39570  {
39571  return await GetGraphEntitiesAsync( new GetGraphEntitiesRequest( graph_name,
39572  offset, limit,
39573  options ), cancellationToken );
39574  }
39575 
39588  {
39589  GetJobResponse actualResponse_ = SubmitRequest<GetJobResponse>("/get/job", request_, false);
39590 
39591  return actualResponse_;
39592  }
39593 
39607  public async System.Threading.Tasks.Task<GetJobResponse> GetJobAsync( GetJobRequest request_,
39608  System.Threading.CancellationToken cancellationToken = default )
39609  {
39610  GetJobResponse actualResponse_ = await SubmitRequestAsync<GetJobResponse>("/get/job", request_, false, true, cancellationToken);
39611 
39612  return actualResponse_;
39613  }
39614 
39637  public GetJobResponse getJob( long job_id,
39638  IDictionary<string, string> options = null )
39639  {
39640  return getJob( new GetJobRequest( job_id, options ) );
39641  }
39642 
39667  public async System.Threading.Tasks.Task<GetJobResponse> GetJobAsync( long job_id,
39668  IDictionary<string, string> options = null,
39669  System.Threading.CancellationToken cancellationToken = default )
39670  {
39671  return await GetJobAsync( new GetJobRequest( job_id, options ), cancellationToken );
39672  }
39673 
39692  public GetRecordsResponse<T> getRecords<T>( GetRecordsRequest request_ ) where T : new()
39693  {
39694  RawGetRecordsResponse actualResponse_ = SubmitRequest<RawGetRecordsResponse>("/get/records", request_, false);
39695 
39696  GetRecordsResponse<T> response_ = new GetRecordsResponse<T>();
39697  response_.table_name = actualResponse_.table_name;
39698  response_.type_name = actualResponse_.type_name;
39699  response_.type_schema = actualResponse_.type_schema;
39700  response_.data = new List<T>();
39701  this.DecodeRawBinaryDataUsingSchemaString<T>( response_.type_schema, actualResponse_.records_binary, response_.data );
39702  response_.total_number_of_records = actualResponse_.total_number_of_records;
39703  response_.has_more_records = actualResponse_.has_more_records;
39704  response_.info = actualResponse_.info;
39705  return response_;
39706  }
39707 
39728  public async System.Threading.Tasks.Task<GetRecordsResponse<T>> GetRecordsAsync<T>( GetRecordsRequest request_,
39729  System.Threading.CancellationToken cancellationToken = default ) where T : new()
39730  {
39731  RawGetRecordsResponse actualResponse_ = await SubmitRequestAsync<RawGetRecordsResponse>("/get/records", request_, false, true, cancellationToken);
39732 
39733  GetRecordsResponse<T> response_ = new GetRecordsResponse<T>();
39734  response_.table_name = actualResponse_.table_name;
39735  response_.type_name = actualResponse_.type_name;
39736  response_.type_schema = actualResponse_.type_schema;
39737  response_.data = new List<T>();
39738  this.DecodeRawBinaryDataUsingSchemaString<T>( response_.type_schema, actualResponse_.records_binary, response_.data );
39739  response_.total_number_of_records = actualResponse_.total_number_of_records;
39740  response_.has_more_records = actualResponse_.has_more_records;
39741  response_.info = actualResponse_.info;
39742  return response_;
39743  }
39744 
39843  public GetRecordsResponse<T> getRecords<T>( string table_name,
39844  long offset = 0,
39845  long limit = -9999,
39846  IDictionary<string, string> options = null ) where T : new()
39847  {
39848  return getRecords<T>( new GetRecordsRequest( table_name, offset, limit, options ) );
39849  }
39850 
39951  public async System.Threading.Tasks.Task<GetRecordsResponse<T>> GetRecordsAsync<T>( string table_name,
39952  long offset = 0,
39953  long limit = -9999,
39954  IDictionary<string, string> options = null,
39955  System.Threading.CancellationToken cancellationToken = default ) where T : new()
39956  {
39957  return await GetRecordsAsync<T>( new GetRecordsRequest( table_name, offset, limit,
39958  options ), cancellationToken );
39959  }
39960 
39996  {
39997  RawGetRecordsByColumnResponse actualResponse_ = SubmitRequest<RawGetRecordsByColumnResponse>("/get/records/bycolumn", request_, false);
39998 
40000  response_.table_name = actualResponse_.table_name;
40001  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
40002  response_.total_number_of_records = actualResponse_.total_number_of_records;
40003  response_.has_more_records = actualResponse_.has_more_records;
40004  response_.info = actualResponse_.info;
40005  return response_;
40006  }
40007 
40044  public async System.Threading.Tasks.Task<GetRecordsByColumnResponse> GetRecordsByColumnAsync( GetRecordsByColumnRequest request_,
40045  System.Threading.CancellationToken cancellationToken = default )
40046  {
40047  RawGetRecordsByColumnResponse actualResponse_ = await SubmitRequestAsync<RawGetRecordsByColumnResponse>("/get/records/bycolumn", request_, false, true, cancellationToken);
40048 
40050  response_.table_name = actualResponse_.table_name;
40051  response_.data = KineticaRecord.DecodeDynamicTableRecords( actualResponse_.response_schema_str, actualResponse_.binary_encoded_response );
40052  response_.total_number_of_records = actualResponse_.total_number_of_records;
40053  response_.has_more_records = actualResponse_.has_more_records;
40054  response_.info = actualResponse_.info;
40055  return response_;
40056  }
40057 
40208  IList<string> column_names,
40209  long offset = 0,
40210  long limit = -9999,
40211  IDictionary<string, string> options = null )
40212  {
40213  return getRecordsByColumn( new GetRecordsByColumnRequest( table_name,
40214  column_names, offset,
40215  limit, options ) );
40216  }
40217 
40369  public async System.Threading.Tasks.Task<GetRecordsByColumnResponse> GetRecordsByColumnAsync( string table_name,
40370  IList<string> column_names,
40371  long offset = 0,
40372  long limit = -9999,
40373  IDictionary<string, string> options = null,
40374  System.Threading.CancellationToken cancellationToken = default )
40375  {
40376  return await GetRecordsByColumnAsync( new GetRecordsByColumnRequest( table_name,
40377  column_names,
40378  offset,
40379  limit,
40380  options ), cancellationToken );
40381  }
40382 
40408  {
40409  RawGetRecordsBySeriesResponse actualResponse_ = SubmitRequest<RawGetRecordsBySeriesResponse>("/get/records/byseries", request_, false);
40410 
40412  response_.table_names = actualResponse_.table_names;
40413  response_.type_names = actualResponse_.type_names;
40414  response_.type_schemas = actualResponse_.type_schemas;
40415  response_.data = new List<IList<T>>();
40416  this.DecodeRawBinaryDataUsingTypeIDs<T>( response_.type_names, actualResponse_.list_records_binary, response_.data );
40417  response_.info = actualResponse_.info;
40418  return response_;
40419  }
40420 
40448  public async System.Threading.Tasks.Task<GetRecordsBySeriesResponse<T>> GetRecordsBySeriesAsync<T>( GetRecordsBySeriesRequest request_,
40449  System.Threading.CancellationToken cancellationToken = default ) where T : new()
40450  {
40451  RawGetRecordsBySeriesResponse actualResponse_ = await SubmitRequestAsync<RawGetRecordsBySeriesResponse>("/get/records/byseries", request_, false, true, cancellationToken);
40452 
40454  response_.table_names = actualResponse_.table_names;
40455  response_.type_names = actualResponse_.type_names;
40456  response_.type_schemas = actualResponse_.type_schemas;
40457  response_.data = new List<IList<T>>();
40458  this.DecodeRawBinaryDataUsingTypeIDs<T>( response_.type_names, actualResponse_.list_records_binary, response_.data );
40459  response_.info = actualResponse_.info;
40460  return response_;
40461  }
40462 
40506  string world_table_name,
40507  int offset = 0,
40508  int limit = 250,
40509  IDictionary<string, string> options = null ) where T : new()
40510  {
40511  return getRecordsBySeries<T>( new GetRecordsBySeriesRequest( table_name,
40512  world_table_name,
40513  offset, limit,
40514  options ) );
40515  }
40516 
40562  public async System.Threading.Tasks.Task<GetRecordsBySeriesResponse<T>> GetRecordsBySeriesAsync<T>( string table_name,
40563  string world_table_name,
40564  int offset = 0,
40565  int limit = 250,
40566  IDictionary<string, string> options = null,
40567  System.Threading.CancellationToken cancellationToken = default ) where T : new()
40568  {
40569  return await GetRecordsBySeriesAsync<T>( new GetRecordsBySeriesRequest( table_name,
40570  world_table_name,
40571  offset,
40572  limit,
40573  options ), cancellationToken );
40574  }
40575 
40595  {
40596  RawGetRecordsFromCollectionResponse actualResponse_ = SubmitRequest<RawGetRecordsFromCollectionResponse>("/get/records/fromcollection", request_, false);
40597 
40599  response_.table_name = actualResponse_.table_name;
40600  response_.type_names = actualResponse_.type_names;
40601  response_.data = new List<T>();
40602  this.DecodeRawBinaryDataUsingTypeIDs<T>( response_.type_names, actualResponse_.records_binary, response_.data );
40603  response_.record_ids = actualResponse_.record_ids;
40604  response_.info = actualResponse_.info;
40605  return response_;
40606  }
40607 
40629  System.Threading.CancellationToken cancellationToken = default ) where T : new()
40630  {
40631  RawGetRecordsFromCollectionResponse actualResponse_ = await SubmitRequestAsync<RawGetRecordsFromCollectionResponse>("/get/records/fromcollection", request_, false, true, cancellationToken);
40632 
40634  response_.table_name = actualResponse_.table_name;
40635  response_.type_names = actualResponse_.type_names;
40636  response_.data = new List<T>();
40637  this.DecodeRawBinaryDataUsingTypeIDs<T>( response_.type_names, actualResponse_.records_binary, response_.data );
40638  response_.record_ids = actualResponse_.record_ids;
40639  response_.info = actualResponse_.info;
40640  return response_;
40641  }
40642 
40711  long offset = 0,
40712  long limit = -9999,
40713  IDictionary<string, string> options = null ) where T : new()
40714  {
40716  offset,
40717  limit,
40718  options ) );
40719  }
40720 
40790  public async System.Threading.Tasks.Task<GetRecordsFromCollectionResponse<T>> GetRecordsFromCollectionAsync<T>( string table_name,
40791  long offset = 0,
40792  long limit = -9999,
40793  IDictionary<string, string> options = null,
40794  System.Threading.CancellationToken cancellationToken = default ) where T : new()
40795  {
40797  offset,
40798  limit,
40799  options ), cancellationToken );
40800  }
40801 
40803  public GetVectortileResponse getVectortile( GetVectortileRequest request_ )
40804  {
40805  GetVectortileResponse actualResponse_ = SubmitRequest<GetVectortileResponse>("/get/vectortile", request_, false);
40806 
40807  return actualResponse_;
40808  }
40810 
40812  public async System.Threading.Tasks.Task<GetVectortileResponse> GetVectortileAsync( GetVectortileRequest request_,
40813  System.Threading.CancellationToken cancellationToken = default )
40814  {
40815  GetVectortileResponse actualResponse_ = await SubmitRequestAsync<GetVectortileResponse>("/get/vectortile", request_, false, true, cancellationToken);
40816 
40817  return actualResponse_;
40818  }
40820 
40822  public GetVectortileResponse getVectortile( IList<string> table_names,
40823  IList<string> column_names,
40824  IDictionary<string, IList<string>> layers,
40825  int tile_x,
40826  int tile_y,
40827  int zoom,
40828  IDictionary<string, string> options = null )
40829  {
40830  return getVectortile( new GetVectortileRequest( table_names, column_names, layers,
40831  tile_x, tile_y, zoom, options ) );
40832  }
40834 
40836  public async System.Threading.Tasks.Task<GetVectortileResponse> GetVectortileAsync( IList<string> table_names,
40837  IList<string> column_names,
40838  IDictionary<string, IList<string>> layers,
40839  int tile_x,
40840  int tile_y,
40841  int zoom,
40842  IDictionary<string, string> options = null,
40843  System.Threading.CancellationToken cancellationToken = default )
40844  {
40845  return await GetVectortileAsync( new GetVectortileRequest( table_names,
40846  column_names, layers,
40847  tile_x, tile_y, zoom,
40848  options ), cancellationToken );
40849  }
40851 
40860  {
40861  GrantPermissionResponse actualResponse_ = SubmitRequest<GrantPermissionResponse>("/grant/permission", request_, false);
40862 
40863  return actualResponse_;
40864  }
40865 
40875  public async System.Threading.Tasks.Task<GrantPermissionResponse> GrantPermissionAsync( GrantPermissionRequest request_,
40876  System.Threading.CancellationToken cancellationToken = default )
40877  {
40878  GrantPermissionResponse actualResponse_ = await SubmitRequestAsync<GrantPermissionResponse>("/grant/permission", request_, false, true, cancellationToken);
40879 
40880  return actualResponse_;
40881  }
40882 
41100  public GrantPermissionResponse grantPermission( string principal,
41101  string _object,
41102  string object_type,
41103  string permission,
41104  IDictionary<string, string> options = null )
41105  {
41106  return grantPermission( new GrantPermissionRequest( principal, _object,
41107  object_type, permission,
41108  options ) );
41109  }
41110 
41330  public async System.Threading.Tasks.Task<GrantPermissionResponse> GrantPermissionAsync( string principal,
41331  string _object,
41332  string object_type,
41333  string permission,
41334  IDictionary<string, string> options = null,
41335  System.Threading.CancellationToken cancellationToken = default )
41336  {
41337  return await GrantPermissionAsync( new GrantPermissionRequest( principal, _object,
41338  object_type,
41339  permission, options ), cancellationToken );
41340  }
41341 
41352  {
41353  GrantPermissionCredentialResponse actualResponse_ = SubmitRequest<GrantPermissionCredentialResponse>("/grant/permission/credential", request_, false);
41354 
41355  return actualResponse_;
41356  }
41357 
41370  System.Threading.CancellationToken cancellationToken = default )
41371  {
41372  GrantPermissionCredentialResponse actualResponse_ = await SubmitRequestAsync<GrantPermissionCredentialResponse>("/grant/permission/credential", request_, false, true, cancellationToken);
41373 
41374  return actualResponse_;
41375  }
41376 
41410  string permission,
41411  string credential_name,
41412  IDictionary<string, string> options = null )
41413  {
41415  permission,
41416  credential_name,
41417  options ) );
41418  }
41419 
41454  public async System.Threading.Tasks.Task<GrantPermissionCredentialResponse> GrantPermissionCredentialAsync( string name,
41455  string permission,
41456  string credential_name,
41457  IDictionary<string, string> options = null,
41458  System.Threading.CancellationToken cancellationToken = default )
41459  {
41461  permission,
41462  credential_name,
41463  options ), cancellationToken );
41464  }
41465 
41474  {
41475  GrantPermissionDatasourceResponse actualResponse_ = SubmitRequest<GrantPermissionDatasourceResponse>("/grant/permission/datasource", request_, false);
41476 
41477  return actualResponse_;
41478  }
41479 
41491  System.Threading.CancellationToken cancellationToken = default )
41492  {
41493  GrantPermissionDatasourceResponse actualResponse_ = await SubmitRequestAsync<GrantPermissionDatasourceResponse>("/grant/permission/datasource", request_, false, true, cancellationToken);
41494 
41495  return actualResponse_;
41496  }
41497 
41529  string permission,
41530  string datasource_name,
41531  IDictionary<string, string> options = null )
41532  {
41534  permission,
41535  datasource_name,
41536  options ) );
41537  }
41538 
41572  public async System.Threading.Tasks.Task<GrantPermissionDatasourceResponse> GrantPermissionDatasourceAsync( string name,
41573  string permission,
41574  string datasource_name,
41575  IDictionary<string, string> options = null,
41576  System.Threading.CancellationToken cancellationToken = default )
41577  {
41579  permission,
41580  datasource_name,
41581  options ), cancellationToken );
41582  }
41583 
41592  {
41593  GrantPermissionDirectoryResponse actualResponse_ = SubmitRequest<GrantPermissionDirectoryResponse>("/grant/permission/directory", request_, false);
41594 
41595  return actualResponse_;
41596  }
41597 
41608  System.Threading.CancellationToken cancellationToken = default )
41609  {
41610  GrantPermissionDirectoryResponse actualResponse_ = await SubmitRequestAsync<GrantPermissionDirectoryResponse>("/grant/permission/directory", request_, false, true, cancellationToken);
41611 
41612  return actualResponse_;
41613  }
41614 
41648  string permission,
41649  string directory_name,
41650  IDictionary<string, string> options = null )
41651  {
41653  permission,
41654  directory_name,
41655  options ) );
41656  }
41657 
41692  public async System.Threading.Tasks.Task<GrantPermissionDirectoryResponse> GrantPermissionDirectoryAsync( string name,
41693  string permission,
41694  string directory_name,
41695  IDictionary<string, string> options = null,
41696  System.Threading.CancellationToken cancellationToken = default )
41697  {
41699  permission,
41700  directory_name,
41701  options ), cancellationToken );
41702  }
41703 
41711  {
41712  GrantPermissionProcResponse actualResponse_ = SubmitRequest<GrantPermissionProcResponse>("/grant/permission/proc", request_, false);
41713 
41714  return actualResponse_;
41715  }
41716 
41726  public async System.Threading.Tasks.Task<GrantPermissionProcResponse> GrantPermissionProcAsync( GrantPermissionProcRequest request_,
41727  System.Threading.CancellationToken cancellationToken = default )
41728  {
41729  GrantPermissionProcResponse actualResponse_ = await SubmitRequestAsync<GrantPermissionProcResponse>("/grant/permission/proc", request_, false, true, cancellationToken);
41730 
41731  return actualResponse_;
41732  }
41733 
41762  string permission,
41763  string proc_name,
41764  IDictionary<string, string> options = null )
41765  {
41766  return grantPermissionProc( new GrantPermissionProcRequest( name, permission,
41767  proc_name, options ) );
41768  }
41769 
41800  public async System.Threading.Tasks.Task<GrantPermissionProcResponse> GrantPermissionProcAsync( string name,
41801  string permission,
41802  string proc_name,
41803  IDictionary<string, string> options = null,
41804  System.Threading.CancellationToken cancellationToken = default )
41805  {
41806  return await GrantPermissionProcAsync( new GrantPermissionProcRequest( name,
41807  permission,
41808  proc_name,
41809  options ), cancellationToken );
41810  }
41811 
41819  {
41820  GrantPermissionSystemResponse actualResponse_ = SubmitRequest<GrantPermissionSystemResponse>("/grant/permission/system", request_, false);
41821 
41822  return actualResponse_;
41823  }
41824 
41835  System.Threading.CancellationToken cancellationToken = default )
41836  {
41837  GrantPermissionSystemResponse actualResponse_ = await SubmitRequestAsync<GrantPermissionSystemResponse>("/grant/permission/system", request_, false, true, cancellationToken);
41838 
41839  return actualResponse_;
41840  }
41841 
41887  string permission,
41888  IDictionary<string, string> options = null )
41889  {
41890  return grantPermissionSystem( new GrantPermissionSystemRequest( name, permission,
41891  options ) );
41892  }
41893 
41941  public async System.Threading.Tasks.Task<GrantPermissionSystemResponse> GrantPermissionSystemAsync( string name,
41942  string permission,
41943  IDictionary<string, string> options = null,
41944  System.Threading.CancellationToken cancellationToken = default )
41945  {
41947  permission,
41948  options ), cancellationToken );
41949  }
41950 
41958  {
41959  GrantPermissionTableResponse actualResponse_ = SubmitRequest<GrantPermissionTableResponse>("/grant/permission/table", request_, false);
41960 
41961  return actualResponse_;
41962  }
41963 
41973  public async System.Threading.Tasks.Task<GrantPermissionTableResponse> GrantPermissionTableAsync( GrantPermissionTableRequest request_,
41974  System.Threading.CancellationToken cancellationToken = default )
41975  {
41976  GrantPermissionTableResponse actualResponse_ = await SubmitRequestAsync<GrantPermissionTableResponse>("/grant/permission/table", request_, false, true, cancellationToken);
41977 
41978  return actualResponse_;
41979  }
41980 
42043  string permission,
42044  string table_name,
42045  string filter_expression = "",
42046  IDictionary<string, string> options = null )
42047  {
42048  return grantPermissionTable( new GrantPermissionTableRequest( name, permission,
42049  table_name,
42050  filter_expression,
42051  options ) );
42052  }
42053 
42118  public async System.Threading.Tasks.Task<GrantPermissionTableResponse> GrantPermissionTableAsync( string name,
42119  string permission,
42120  string table_name,
42121  string filter_expression = "",
42122  IDictionary<string, string> options = null,
42123  System.Threading.CancellationToken cancellationToken = default )
42124  {
42126  permission,
42127  table_name,
42128  filter_expression,
42129  options ), cancellationToken );
42130  }
42131 
42139  {
42140  GrantRoleResponse actualResponse_ = SubmitRequest<GrantRoleResponse>("/grant/role", request_, false);
42141 
42142  return actualResponse_;
42143  }
42144 
42154  public async System.Threading.Tasks.Task<GrantRoleResponse> GrantRoleAsync( GrantRoleRequest request_,
42155  System.Threading.CancellationToken cancellationToken = default )
42156  {
42157  GrantRoleResponse actualResponse_ = await SubmitRequestAsync<GrantRoleResponse>("/grant/role", request_, false, true, cancellationToken);
42158 
42159  return actualResponse_;
42160  }
42161 
42173  public GrantRoleResponse grantRole( string role,
42174  string member,
42175  IDictionary<string, string> options = null )
42176  {
42177  return grantRole( new GrantRoleRequest( role, member, options ) );
42178  }
42179 
42194  public async System.Threading.Tasks.Task<GrantRoleResponse> GrantRoleAsync( string role,
42195  string member,
42196  IDictionary<string, string> options = null,
42197  System.Threading.CancellationToken cancellationToken = default )
42198  {
42199  return await GrantRoleAsync( new GrantRoleRequest( role, member, options ), cancellationToken );
42200  }
42201 
42210  {
42211  HasPermissionResponse actualResponse_ = SubmitRequest<HasPermissionResponse>("/has/permission", request_, false);
42212 
42213  return actualResponse_;
42214  }
42215 
42225  public async System.Threading.Tasks.Task<HasPermissionResponse> HasPermissionAsync( HasPermissionRequest request_,
42226  System.Threading.CancellationToken cancellationToken = default )
42227  {
42228  HasPermissionResponse actualResponse_ = await SubmitRequestAsync<HasPermissionResponse>("/has/permission", request_, false, true, cancellationToken);
42229 
42230  return actualResponse_;
42231  }
42232 
42441  public HasPermissionResponse hasPermission( string principal,
42442  string _object,
42443  string object_type,
42444  string permission,
42445  IDictionary<string, string> options = null )
42446  {
42447  return hasPermission( new HasPermissionRequest( principal, _object, object_type,
42448  permission, options ) );
42449  }
42450 
42661  public async System.Threading.Tasks.Task<HasPermissionResponse> HasPermissionAsync( string principal,
42662  string _object,
42663  string object_type,
42664  string permission,
42665  IDictionary<string, string> options = null,
42666  System.Threading.CancellationToken cancellationToken = default )
42667  {
42668  return await HasPermissionAsync( new HasPermissionRequest( principal, _object,
42669  object_type,
42670  permission, options ), cancellationToken );
42671  }
42672 
42680  {
42681  HasProcResponse actualResponse_ = SubmitRequest<HasProcResponse>("/has/proc", request_, false);
42682 
42683  return actualResponse_;
42684  }
42685 
42695  public async System.Threading.Tasks.Task<HasProcResponse> HasProcAsync( HasProcRequest request_,
42696  System.Threading.CancellationToken cancellationToken = default )
42697  {
42698  HasProcResponse actualResponse_ = await SubmitRequestAsync<HasProcResponse>("/has/proc", request_, false, true, cancellationToken);
42699 
42700  return actualResponse_;
42701  }
42702 
42711  public HasProcResponse hasProc( string proc_name,
42712  IDictionary<string, string> options = null )
42713  {
42714  return hasProc( new HasProcRequest( proc_name, options ) );
42715  }
42716 
42728  public async System.Threading.Tasks.Task<HasProcResponse> HasProcAsync( string proc_name,
42729  IDictionary<string, string> options = null,
42730  System.Threading.CancellationToken cancellationToken = default )
42731  {
42732  return await HasProcAsync( new HasProcRequest( proc_name, options ), cancellationToken );
42733  }
42734 
42742  {
42743  HasRoleResponse actualResponse_ = SubmitRequest<HasRoleResponse>("/has/role", request_, false);
42744 
42745  return actualResponse_;
42746  }
42747 
42757  public async System.Threading.Tasks.Task<HasRoleResponse> HasRoleAsync( HasRoleRequest request_,
42758  System.Threading.CancellationToken cancellationToken = default )
42759  {
42760  HasRoleResponse actualResponse_ = await SubmitRequestAsync<HasRoleResponse>("/has/role", request_, false, true, cancellationToken);
42761 
42762  return actualResponse_;
42763  }
42764 
42827  public HasRoleResponse hasRole( string principal,
42828  string role,
42829  IDictionary<string, string> options = null )
42830  {
42831  return hasRole( new HasRoleRequest( principal, role, options ) );
42832  }
42833 
42899  public async System.Threading.Tasks.Task<HasRoleResponse> HasRoleAsync( string principal,
42900  string role,
42901  IDictionary<string, string> options = null,
42902  System.Threading.CancellationToken cancellationToken = default )
42903  {
42904  return await HasRoleAsync( new HasRoleRequest( principal, role, options ), cancellationToken );
42905  }
42906 
42915  {
42916  HasSchemaResponse actualResponse_ = SubmitRequest<HasSchemaResponse>("/has/schema", request_, false);
42917 
42918  return actualResponse_;
42919  }
42920 
42930  public async System.Threading.Tasks.Task<HasSchemaResponse> HasSchemaAsync( HasSchemaRequest request_,
42931  System.Threading.CancellationToken cancellationToken = default )
42932  {
42933  HasSchemaResponse actualResponse_ = await SubmitRequestAsync<HasSchemaResponse>("/has/schema", request_, false, true, cancellationToken);
42934 
42935  return actualResponse_;
42936  }
42937 
42949  public HasSchemaResponse hasSchema( string schema_name,
42950  IDictionary<string, string> options = null )
42951  {
42952  return hasSchema( new HasSchemaRequest( schema_name, options ) );
42953  }
42954 
42968  public async System.Threading.Tasks.Task<HasSchemaResponse> HasSchemaAsync( string schema_name,
42969  IDictionary<string, string> options = null,
42970  System.Threading.CancellationToken cancellationToken = default )
42971  {
42972  return await HasSchemaAsync( new HasSchemaRequest( schema_name, options ), cancellationToken );
42973  }
42974 
42983  {
42984  HasTableResponse actualResponse_ = SubmitRequest<HasTableResponse>("/has/table", request_, false);
42985 
42986  return actualResponse_;
42987  }
42988 
42998  public async System.Threading.Tasks.Task<HasTableResponse> HasTableAsync( HasTableRequest request_,
42999  System.Threading.CancellationToken cancellationToken = default )
43000  {
43001  HasTableResponse actualResponse_ = await SubmitRequestAsync<HasTableResponse>("/has/table", request_, false, true, cancellationToken);
43002 
43003  return actualResponse_;
43004  }
43005 
43017  public HasTableResponse hasTable( string table_name,
43018  IDictionary<string, string> options = null )
43019  {
43020  return hasTable( new HasTableRequest( table_name, options ) );
43021  }
43022 
43036  public async System.Threading.Tasks.Task<HasTableResponse> HasTableAsync( string table_name,
43037  IDictionary<string, string> options = null,
43038  System.Threading.CancellationToken cancellationToken = default )
43039  {
43040  return await HasTableAsync( new HasTableRequest( table_name, options ), cancellationToken );
43041  }
43042 
43050  {
43051  HasTypeResponse actualResponse_ = SubmitRequest<HasTypeResponse>("/has/type", request_, false);
43052 
43053  return actualResponse_;
43054  }
43055 
43064  public async System.Threading.Tasks.Task<HasTypeResponse> HasTypeAsync( HasTypeRequest request_,
43065  System.Threading.CancellationToken cancellationToken = default )
43066  {
43067  HasTypeResponse actualResponse_ = await SubmitRequestAsync<HasTypeResponse>("/has/type", request_, false, true, cancellationToken);
43068 
43069  return actualResponse_;
43070  }
43071 
43081  public HasTypeResponse hasType( string type_id,
43082  IDictionary<string, string> options = null )
43083  {
43084  return hasType( new HasTypeRequest( type_id, options ) );
43085  }
43086 
43098  public async System.Threading.Tasks.Task<HasTypeResponse> HasTypeAsync( string type_id,
43099  IDictionary<string, string> options = null,
43100  System.Threading.CancellationToken cancellationToken = default )
43101  {
43102  return await HasTypeAsync( new HasTypeRequest( type_id, options ), cancellationToken );
43103  }
43104 
43106  public ImportModelResponse importModel( ImportModelRequest request_ )
43107  {
43108  ImportModelResponse actualResponse_ = SubmitRequest<ImportModelResponse>("/import/model", request_, false);
43109 
43110  return actualResponse_;
43111  }
43113 
43115  public async System.Threading.Tasks.Task<ImportModelResponse> ImportModelAsync( ImportModelRequest request_,
43116  System.Threading.CancellationToken cancellationToken = default )
43117  {
43118  ImportModelResponse actualResponse_ = await SubmitRequestAsync<ImportModelResponse>("/import/model", request_, false, true, cancellationToken);
43119 
43120  return actualResponse_;
43121  }
43123 
43125  public ImportModelResponse importModel( string model_name,
43126  string registry_name,
43127  string container,
43128  string run_function,
43129  string model_type,
43130  IDictionary<string, string> options = null )
43131  {
43132  return importModel( new ImportModelRequest( model_name, registry_name, container,
43133  run_function, model_type, options ) );
43134  }
43136 
43138  public async System.Threading.Tasks.Task<ImportModelResponse> ImportModelAsync( string model_name,
43139  string registry_name,
43140  string container,
43141  string run_function,
43142  string model_type,
43143  IDictionary<string, string> options = null,
43144  System.Threading.CancellationToken cancellationToken = default )
43145  {
43146  return await ImportModelAsync( new ImportModelRequest( model_name, registry_name,
43147  container, run_function,
43148  model_type, options ), cancellationToken );
43149  }
43151 
43176  {
43177  InsertRecordsResponse actualResponse_ = SubmitRequest<InsertRecordsResponse>("/insert/records", request_, true);
43178 
43179  return actualResponse_;
43180  }
43181 
43208  public async System.Threading.Tasks.Task<InsertRecordsResponse> InsertRecordsRawAsync( RawInsertRecordsRequest request_,
43209  System.Threading.CancellationToken cancellationToken = default )
43210  {
43211  InsertRecordsResponse actualResponse_ = await SubmitRequestAsync<InsertRecordsResponse>("/insert/records", request_, true, true, cancellationToken);
43212 
43213  return actualResponse_;
43214  }
43215 
43242  {
43243  RawInsertRecordsRequest actualRequest_ = new RawInsertRecordsRequest();
43244  actualRequest_.table_name = request_.table_name;
43245  foreach (var thisObj in request_.data) actualRequest_.list.Add( AvroEncode( thisObj ) );
43246  actualRequest_.options = request_.options;
43247  InsertRecordsResponse actualResponse_ = SubmitRequest<InsertRecordsResponse>("/insert/records", actualRequest_, true);
43248 
43249  return actualResponse_;
43250  }
43251 
43280  public async System.Threading.Tasks.Task<InsertRecordsResponse> InsertRecordsAsync<T>( InsertRecordsRequest<T> request_,
43281  System.Threading.CancellationToken cancellationToken = default )
43282  {
43283  RawInsertRecordsRequest actualRequest_ = new RawInsertRecordsRequest();
43284  actualRequest_.table_name = request_.table_name;
43285  foreach (var thisObj in request_.data) actualRequest_.list.Add( AvroEncode( thisObj ) );
43286  actualRequest_.options = request_.options;
43287  InsertRecordsResponse actualResponse_ = await SubmitRequestAsync<InsertRecordsResponse>("/insert/records", actualRequest_, true, true, cancellationToken);
43288 
43289  return actualResponse_;
43290  }
43291 
43568  public InsertRecordsResponse insertRecords<T>( string table_name,
43569  IList<T> data,
43570  IDictionary<string, string> options = null )
43571  {
43572  return insertRecords<T>( new InsertRecordsRequest<T>( table_name, data, options ) );
43573  }
43574 
43854  public async System.Threading.Tasks.Task<InsertRecordsResponse> InsertRecordsAsync<T>( string table_name,
43855  IList<T> data,
43856  IDictionary<string, string> options = null,
43857  System.Threading.CancellationToken cancellationToken = default )
43858  {
43859  return await InsertRecordsAsync<T>( new InsertRecordsRequest<T>( table_name, data,
43860  options ), cancellationToken );
43861  }
43862 
43899  {
43900  InsertRecordsFromFilesResponse actualResponse_ = SubmitRequest<InsertRecordsFromFilesResponse>("/insert/records/fromfiles", request_, false);
43901 
43902  return actualResponse_;
43903  }
43904 
43943  System.Threading.CancellationToken cancellationToken = default )
43944  {
43945  InsertRecordsFromFilesResponse actualResponse_ = await SubmitRequestAsync<InsertRecordsFromFilesResponse>("/insert/records/fromfiles", request_, false, true, cancellationToken);
43946 
43947  return actualResponse_;
43948  }
43949 
45270  IList<string> filepaths,
45271  IDictionary<string, IDictionary<string, string>> modify_columns = null,
45272  IDictionary<string, string> create_table_options = null,
45273  IDictionary<string, string> options = null )
45274  {
45275  return insertRecordsFromFiles( new InsertRecordsFromFilesRequest( table_name,
45276  filepaths,
45277  modify_columns,
45278  create_table_options,
45279  options ) );
45280  }
45281 
46603  public async System.Threading.Tasks.Task<InsertRecordsFromFilesResponse> InsertRecordsFromFilesAsync( string table_name,
46604  IList<string> filepaths,
46605  IDictionary<string, IDictionary<string, string>> modify_columns = null,
46606  IDictionary<string, string> create_table_options = null,
46607  IDictionary<string, string> options = null,
46608  System.Threading.CancellationToken cancellationToken = default )
46609  {
46610  return await InsertRecordsFromFilesAsync( new InsertRecordsFromFilesRequest( table_name,
46611  filepaths,
46612  modify_columns,
46613  create_table_options,
46614  options ), cancellationToken );
46615  }
46616 
46628  {
46629  InsertRecordsFromPayloadResponse actualResponse_ = SubmitRequest<InsertRecordsFromPayloadResponse>("/insert/records/frompayload", request_, false);
46630 
46631  return actualResponse_;
46632  }
46633 
46647  System.Threading.CancellationToken cancellationToken = default )
46648  {
46649  InsertRecordsFromPayloadResponse actualResponse_ = await SubmitRequestAsync<InsertRecordsFromPayloadResponse>("/insert/records/frompayload", request_, false, true, cancellationToken);
46650 
46651  return actualResponse_;
46652  }
46653 
47823  string data_text,
47824  byte[] data_bytes,
47825  IDictionary<string, IDictionary<string, string>> modify_columns = null,
47826  IDictionary<string, string> create_table_options = null,
47827  IDictionary<string, string> options = null )
47828  {
47830  data_text,
47831  data_bytes,
47832  modify_columns,
47833  create_table_options,
47834  options ) );
47835  }
47836 
49007  public async System.Threading.Tasks.Task<InsertRecordsFromPayloadResponse> InsertRecordsFromPayloadAsync( string table_name,
49008  string data_text,
49009  byte[] data_bytes,
49010  IDictionary<string, IDictionary<string, string>> modify_columns = null,
49011  IDictionary<string, string> create_table_options = null,
49012  IDictionary<string, string> options = null,
49013  System.Threading.CancellationToken cancellationToken = default )
49014  {
49015  return await InsertRecordsFromPayloadAsync( new InsertRecordsFromPayloadRequest( table_name,
49016  data_text,
49017  data_bytes,
49018  modify_columns,
49019  create_table_options,
49020  options ), cancellationToken );
49021  }
49022 
49031  {
49032  InsertRecordsFromQueryResponse actualResponse_ = SubmitRequest<InsertRecordsFromQueryResponse>("/insert/records/fromquery", request_, false);
49033 
49034  return actualResponse_;
49035  }
49036 
49047  System.Threading.CancellationToken cancellationToken = default )
49048  {
49049  InsertRecordsFromQueryResponse actualResponse_ = await SubmitRequestAsync<InsertRecordsFromQueryResponse>("/insert/records/fromquery", request_, false, true, cancellationToken);
49050 
49051  return actualResponse_;
49052  }
49053 
49701  string remote_query,
49702  IDictionary<string, IDictionary<string, string>> modify_columns = null,
49703  IDictionary<string, string> create_table_options = null,
49704  IDictionary<string, string> options = null )
49705  {
49706  return insertRecordsFromQuery( new InsertRecordsFromQueryRequest( table_name,
49707  remote_query,
49708  modify_columns,
49709  create_table_options,
49710  options ) );
49711  }
49712 
50361  public async System.Threading.Tasks.Task<InsertRecordsFromQueryResponse> InsertRecordsFromQueryAsync( string table_name,
50362  string remote_query,
50363  IDictionary<string, IDictionary<string, string>> modify_columns = null,
50364  IDictionary<string, string> create_table_options = null,
50365  IDictionary<string, string> options = null,
50366  System.Threading.CancellationToken cancellationToken = default )
50367  {
50368  return await InsertRecordsFromQueryAsync( new InsertRecordsFromQueryRequest( table_name,
50369  remote_query,
50370  modify_columns,
50371  create_table_options,
50372  options ), cancellationToken );
50373  }
50374 
50391  {
50392  InsertRecordsRandomResponse actualResponse_ = SubmitRequest<InsertRecordsRandomResponse>("/insert/records/random", request_, false);
50393 
50394  return actualResponse_;
50395  }
50396 
50414  public async System.Threading.Tasks.Task<InsertRecordsRandomResponse> InsertRecordsRandomAsync( InsertRecordsRandomRequest request_,
50415  System.Threading.CancellationToken cancellationToken = default )
50416  {
50417  InsertRecordsRandomResponse actualResponse_ = await SubmitRequestAsync<InsertRecordsRandomResponse>("/insert/records/random", request_, false, true, cancellationToken);
50418 
50419  return actualResponse_;
50420  }
50421 
50699  long count,
50700  IDictionary<string, IDictionary<string, double>> options = null )
50701  {
50702  return insertRecordsRandom( new InsertRecordsRandomRequest( table_name, count,
50703  options ) );
50704  }
50705 
50984  public async System.Threading.Tasks.Task<InsertRecordsRandomResponse> InsertRecordsRandomAsync( string table_name,
50985  long count,
50986  IDictionary<string, IDictionary<string, double>> options = null,
50987  System.Threading.CancellationToken cancellationToken = default )
50988  {
50989  return await InsertRecordsRandomAsync( new InsertRecordsRandomRequest( table_name,
50990  count,
50991  options ), cancellationToken );
50992  }
50993 
51011  {
51012  InsertSymbolResponse actualResponse_ = SubmitRequest<InsertSymbolResponse>("/insert/symbol", request_, false);
51013 
51014  return actualResponse_;
51015  }
51016 
51035  public async System.Threading.Tasks.Task<InsertSymbolResponse> InsertSymbolAsync( InsertSymbolRequest request_,
51036  System.Threading.CancellationToken cancellationToken = default )
51037  {
51038  InsertSymbolResponse actualResponse_ = await SubmitRequestAsync<InsertSymbolResponse>("/insert/symbol", request_, false, true, cancellationToken);
51039 
51040  return actualResponse_;
51041  }
51042 
51093  public InsertSymbolResponse insertSymbol( string symbol_id,
51094  string symbol_format,
51095  byte[] symbol_data,
51096  IDictionary<string, string> options = null )
51097  {
51098  return insertSymbol( new InsertSymbolRequest( symbol_id, symbol_format,
51099  symbol_data, options ) );
51100  }
51101 
51154  public async System.Threading.Tasks.Task<InsertSymbolResponse> InsertSymbolAsync( string symbol_id,
51155  string symbol_format,
51156  byte[] symbol_data,
51157  IDictionary<string, string> options = null,
51158  System.Threading.CancellationToken cancellationToken = default )
51159  {
51160  return await InsertSymbolAsync( new InsertSymbolRequest( symbol_id, symbol_format,
51161  symbol_data, options ), cancellationToken );
51162  }
51163 
51171  {
51172  KillProcResponse actualResponse_ = SubmitRequest<KillProcResponse>("/kill/proc", request_, false);
51173 
51174  return actualResponse_;
51175  }
51176 
51185  public async System.Threading.Tasks.Task<KillProcResponse> KillProcAsync( KillProcRequest request_,
51186  System.Threading.CancellationToken cancellationToken = default )
51187  {
51188  KillProcResponse actualResponse_ = await SubmitRequestAsync<KillProcResponse>("/kill/proc", request_, false, true, cancellationToken);
51189 
51190  return actualResponse_;
51191  }
51192 
51243  public KillProcResponse killProc( string run_id = "",
51244  IDictionary<string, string> options = null )
51245  {
51246  return killProc( new KillProcRequest( run_id, options ) );
51247  }
51248 
51301  public async System.Threading.Tasks.Task<KillProcResponse> KillProcAsync( string run_id = "",
51302  IDictionary<string, string> options = null,
51303  System.Threading.CancellationToken cancellationToken = default )
51304  {
51305  return await KillProcAsync( new KillProcRequest( run_id, options ), cancellationToken );
51306  }
51307 
51309  public ListGraphResponse listGraph( ListGraphRequest request_ )
51310  {
51311  ListGraphResponse actualResponse_ = SubmitRequest<ListGraphResponse>("/list/graph", request_, false);
51312 
51313  return actualResponse_;
51314  }
51316 
51318  public async System.Threading.Tasks.Task<ListGraphResponse> ListGraphAsync( ListGraphRequest request_,
51319  System.Threading.CancellationToken cancellationToken = default )
51320  {
51321  ListGraphResponse actualResponse_ = await SubmitRequestAsync<ListGraphResponse>("/list/graph", request_, false, true, cancellationToken);
51322 
51323  return actualResponse_;
51324  }
51326 
51328  public ListGraphResponse listGraph( string graph_name = "",
51329  IDictionary<string, string> options = null )
51330  {
51331  return listGraph( new ListGraphRequest( graph_name, options ) );
51332  }
51334 
51336  public async System.Threading.Tasks.Task<ListGraphResponse> ListGraphAsync( string graph_name = "",
51337  IDictionary<string, string> options = null,
51338  System.Threading.CancellationToken cancellationToken = default )
51339  {
51340  return await ListGraphAsync( new ListGraphRequest( graph_name, options ), cancellationToken );
51341  }
51343 
51365  {
51366  LockTableResponse actualResponse_ = SubmitRequest<LockTableResponse>("/lock/table", request_, false);
51367 
51368  return actualResponse_;
51369  }
51370 
51393  public async System.Threading.Tasks.Task<LockTableResponse> LockTableAsync( LockTableRequest request_,
51394  System.Threading.CancellationToken cancellationToken = default )
51395  {
51396  LockTableResponse actualResponse_ = await SubmitRequestAsync<LockTableResponse>("/lock/table", request_, false, true, cancellationToken);
51397 
51398  return actualResponse_;
51399  }
51400 
51461  public LockTableResponse lockTable( string table_name,
51462  string lock_type = LockTableRequest.LockType.STATUS,
51463  IDictionary<string, string> options = null )
51464  {
51465  return lockTable( new LockTableRequest( table_name, lock_type, options ) );
51466  }
51467 
51530  public async System.Threading.Tasks.Task<LockTableResponse> LockTableAsync( string table_name,
51531  string lock_type = LockTableRequest.LockType.STATUS,
51532  IDictionary<string, string> options = null,
51533  System.Threading.CancellationToken cancellationToken = default )
51534  {
51535  return await LockTableAsync( new LockTableRequest( table_name, lock_type, options ), cancellationToken );
51536  }
51537 
51554  {
51555  MatchGraphResponse actualResponse_ = SubmitRequest<MatchGraphResponse>("/match/graph", request_, false);
51556 
51557  return actualResponse_;
51558  }
51559 
51577  public async System.Threading.Tasks.Task<MatchGraphResponse> MatchGraphAsync( MatchGraphRequest request_,
51578  System.Threading.CancellationToken cancellationToken = default )
51579  {
51580  MatchGraphResponse actualResponse_ = await SubmitRequestAsync<MatchGraphResponse>("/match/graph", request_, false, true, cancellationToken);
51581 
51582  return actualResponse_;
51583  }
51584 
52605  public MatchGraphResponse matchGraph( string graph_name,
52606  IList<string> sample_points,
52607  string solve_method = MatchGraphRequest.SolveMethod.MARKOV_CHAIN,
52608  string solution_table = "",
52609  IDictionary<string, string> options = null )
52610  {
52611  return matchGraph( new MatchGraphRequest( graph_name, sample_points, solve_method,
52612  solution_table, options ) );
52613  }
52614 
53637  public async System.Threading.Tasks.Task<MatchGraphResponse> MatchGraphAsync( string graph_name,
53638  IList<string> sample_points,
53639  string solve_method = MatchGraphRequest.SolveMethod.MARKOV_CHAIN,
53640  string solution_table = "",
53641  IDictionary<string, string> options = null,
53642  System.Threading.CancellationToken cancellationToken = default )
53643  {
53644  return await MatchGraphAsync( new MatchGraphRequest( graph_name, sample_points,
53645  solve_method, solution_table,
53646  options ), cancellationToken );
53647  }
53648 
53662  {
53663  ModifyGraphResponse actualResponse_ = SubmitRequest<ModifyGraphResponse>("/modify/graph", request_, false);
53664 
53665  return actualResponse_;
53666  }
53667 
53682  public async System.Threading.Tasks.Task<ModifyGraphResponse> ModifyGraphAsync( ModifyGraphRequest request_,
53683  System.Threading.CancellationToken cancellationToken = default )
53684  {
53685  ModifyGraphResponse actualResponse_ = await SubmitRequestAsync<ModifyGraphResponse>("/modify/graph", request_, false, true, cancellationToken);
53686 
53687  return actualResponse_;
53688  }
53689 
54038  public ModifyGraphResponse modifyGraph( string graph_name,
54039  IList<string> nodes,
54040  IList<string> edges,
54041  IList<string> weights,
54042  IList<string> restrictions,
54043  IDictionary<string, string> options = null )
54044  {
54045  return modifyGraph( new ModifyGraphRequest( graph_name, nodes, edges, weights,
54046  restrictions, options ) );
54047  }
54048 
54399  public async System.Threading.Tasks.Task<ModifyGraphResponse> ModifyGraphAsync( string graph_name,
54400  IList<string> nodes,
54401  IList<string> edges,
54402  IList<string> weights,
54403  IList<string> restrictions,
54404  IDictionary<string, string> options = null,
54405  System.Threading.CancellationToken cancellationToken = default )
54406  {
54407  return await ModifyGraphAsync( new ModifyGraphRequest( graph_name, nodes, edges,
54408  weights, restrictions,
54409  options ), cancellationToken );
54410  }
54411 
54441  {
54442  QueryGraphResponse actualResponse_ = SubmitRequest<QueryGraphResponse>("/query/graph", request_, false);
54443 
54444  return actualResponse_;
54445  }
54446 
54477  public async System.Threading.Tasks.Task<QueryGraphResponse> QueryGraphAsync( QueryGraphRequest request_,
54478  System.Threading.CancellationToken cancellationToken = default )
54479  {
54480  QueryGraphResponse actualResponse_ = await SubmitRequestAsync<QueryGraphResponse>("/query/graph", request_, false, true, cancellationToken);
54481 
54482  return actualResponse_;
54483  }
54484 
54688  public QueryGraphResponse queryGraph( string graph_name,
54689  IList<string> queries,
54690  IList<string> restrictions = null,
54691  string adjacency_table = "",
54692  int rings = 1,
54693  IDictionary<string, string> options = null )
54694  {
54695  return queryGraph( new QueryGraphRequest( graph_name, queries, restrictions,
54696  adjacency_table, rings, options ) );
54697  }
54698 
54904  public async System.Threading.Tasks.Task<QueryGraphResponse> QueryGraphAsync( string graph_name,
54905  IList<string> queries,
54906  IList<string> restrictions = null,
54907  string adjacency_table = "",
54908  int rings = 1,
54909  IDictionary<string, string> options = null,
54910  System.Threading.CancellationToken cancellationToken = default )
54911  {
54912  return await QueryGraphAsync( new QueryGraphRequest( graph_name, queries,
54913  restrictions,
54914  adjacency_table, rings,
54915  options ), cancellationToken );
54916  }
54917 
54932  {
54933  RepartitionGraphResponse actualResponse_ = SubmitRequest<RepartitionGraphResponse>("/repartition/graph", request_, false);
54934 
54935  return actualResponse_;
54936  }
54937 
54953  public async System.Threading.Tasks.Task<RepartitionGraphResponse> RepartitionGraphAsync( RepartitionGraphRequest request_,
54954  System.Threading.CancellationToken cancellationToken = default )
54955  {
54956  RepartitionGraphResponse actualResponse_ = await SubmitRequestAsync<RepartitionGraphResponse>("/repartition/graph", request_, false, true, cancellationToken);
54957 
54958  return actualResponse_;
54959  }
54960 
55001  public RepartitionGraphResponse repartitionGraph( string graph_name,
55002  IDictionary<string, string> options = null )
55003  {
55004  return repartitionGraph( new RepartitionGraphRequest( graph_name, options ) );
55005  }
55006 
55049  public async System.Threading.Tasks.Task<RepartitionGraphResponse> RepartitionGraphAsync( string graph_name,
55050  IDictionary<string, string> options = null,
55051  System.Threading.CancellationToken cancellationToken = default )
55052  {
55053  return await RepartitionGraphAsync( new RepartitionGraphRequest( graph_name,
55054  options ), cancellationToken );
55055  }
55056 
55058  public ReserveResourceResponse reserveResource( ReserveResourceRequest request_ )
55059  {
55060  ReserveResourceResponse actualResponse_ = SubmitRequest<ReserveResourceResponse>("/reserve/resource", request_, false);
55061 
55062  return actualResponse_;
55063  }
55065 
55067  public async System.Threading.Tasks.Task<ReserveResourceResponse> ReserveResourceAsync( ReserveResourceRequest request_,
55068  System.Threading.CancellationToken cancellationToken = default )
55069  {
55070  ReserveResourceResponse actualResponse_ = await SubmitRequestAsync<ReserveResourceResponse>("/reserve/resource", request_, false, true, cancellationToken);
55071 
55072  return actualResponse_;
55073  }
55075 
55077  public ReserveResourceResponse reserveResource( string component,
55078  string name,
55079  string action,
55080  long bytes_requested = 0,
55081  long owner_id = 0,
55082  IDictionary<string, string> options = null )
55083  {
55084  return reserveResource( new ReserveResourceRequest( component, name, action,
55085  bytes_requested, owner_id,
55086  options ) );
55087  }
55089 
55091  public async System.Threading.Tasks.Task<ReserveResourceResponse> ReserveResourceAsync( string component,
55092  string name,
55093  string action,
55094  long bytes_requested = 0,
55095  long owner_id = 0,
55096  IDictionary<string, string> options = null,
55097  System.Threading.CancellationToken cancellationToken = default )
55098  {
55099  return await ReserveResourceAsync( new ReserveResourceRequest( component, name,
55100  action,
55101  bytes_requested,
55102  owner_id, options ), cancellationToken );
55103  }
55105 
55119  {
55120  RestoreBackupResponse actualResponse_ = SubmitRequest<RestoreBackupResponse>("/restore/backup", request_, false);
55121 
55122  return actualResponse_;
55123  }
55124 
55139  public async System.Threading.Tasks.Task<RestoreBackupResponse> RestoreBackupAsync( RestoreBackupRequest request_,
55140  System.Threading.CancellationToken cancellationToken = default )
55141  {
55142  RestoreBackupResponse actualResponse_ = await SubmitRequestAsync<RestoreBackupResponse>("/restore/backup", request_, false, true, cancellationToken);
55143 
55144  return actualResponse_;
55145  }
55146 
55501  public RestoreBackupResponse restoreBackup( string backup_name,
55502  IDictionary<string, string> restore_objects_map,
55503  string datasource_name,
55504  IDictionary<string, string> options = null )
55505  {
55506  return restoreBackup( new RestoreBackupRequest( backup_name, restore_objects_map,
55507  datasource_name, options ) );
55508  }
55509 
55866  public async System.Threading.Tasks.Task<RestoreBackupResponse> RestoreBackupAsync( string backup_name,
55867  IDictionary<string, string> restore_objects_map,
55868  string datasource_name,
55869  IDictionary<string, string> options = null,
55870  System.Threading.CancellationToken cancellationToken = default )
55871  {
55872  return await RestoreBackupAsync( new RestoreBackupRequest( backup_name,
55873  restore_objects_map,
55874  datasource_name,
55875  options ), cancellationToken );
55876  }
55877 
55886  {
55887  RevokePermissionResponse actualResponse_ = SubmitRequest<RevokePermissionResponse>("/revoke/permission", request_, false);
55888 
55889  return actualResponse_;
55890  }
55891 
55901  public async System.Threading.Tasks.Task<RevokePermissionResponse> RevokePermissionAsync( RevokePermissionRequest request_,
55902  System.Threading.CancellationToken cancellationToken = default )
55903  {
55904  RevokePermissionResponse actualResponse_ = await SubmitRequestAsync<RevokePermissionResponse>("/revoke/permission", request_, false, true, cancellationToken);
55905 
55906  return actualResponse_;
55907  }
55908 
56095  public RevokePermissionResponse revokePermission( string principal,
56096  string _object,
56097  string object_type,
56098  string permission,
56099  IDictionary<string, string> options = null )
56100  {
56101  return revokePermission( new RevokePermissionRequest( principal, _object,
56102  object_type, permission,
56103  options ) );
56104  }
56105 
56294  public async System.Threading.Tasks.Task<RevokePermissionResponse> RevokePermissionAsync( string principal,
56295  string _object,
56296  string object_type,
56297  string permission,
56298  IDictionary<string, string> options = null,
56299  System.Threading.CancellationToken cancellationToken = default )
56300  {
56301  return await RevokePermissionAsync( new RevokePermissionRequest( principal,
56302  _object,
56303  object_type,
56304  permission,
56305  options ), cancellationToken );
56306  }
56307 
56318  {
56319  RevokePermissionCredentialResponse actualResponse_ = SubmitRequest<RevokePermissionCredentialResponse>("/revoke/permission/credential", request_, false);
56320 
56321  return actualResponse_;
56322  }
56323 
56336  System.Threading.CancellationToken cancellationToken = default )
56337  {
56338  RevokePermissionCredentialResponse actualResponse_ = await SubmitRequestAsync<RevokePermissionCredentialResponse>("/revoke/permission/credential", request_, false, true, cancellationToken);
56339 
56340  return actualResponse_;
56341  }
56342 
56376  string permission,
56377  string credential_name,
56378  IDictionary<string, string> options = null )
56379  {
56381  permission,
56382  credential_name,
56383  options ) );
56384  }
56385 
56420  public async System.Threading.Tasks.Task<RevokePermissionCredentialResponse> RevokePermissionCredentialAsync( string name,
56421  string permission,
56422  string credential_name,
56423  IDictionary<string, string> options = null,
56424  System.Threading.CancellationToken cancellationToken = default )
56425  {
56427  permission,
56428  credential_name,
56429  options ), cancellationToken );
56430  }
56431 
56440  {
56441  RevokePermissionDatasourceResponse actualResponse_ = SubmitRequest<RevokePermissionDatasourceResponse>("/revoke/permission/datasource", request_, false);
56442 
56443  return actualResponse_;
56444  }
56445 
56457  System.Threading.CancellationToken cancellationToken = default )
56458  {
56459  RevokePermissionDatasourceResponse actualResponse_ = await SubmitRequestAsync<RevokePermissionDatasourceResponse>("/revoke/permission/datasource", request_, false, true, cancellationToken);
56460 
56461  return actualResponse_;
56462  }
56463 
56495  string permission,
56496  string datasource_name,
56497  IDictionary<string, string> options = null )
56498  {
56500  permission,
56501  datasource_name,
56502  options ) );
56503  }
56504 
56538  public async System.Threading.Tasks.Task<RevokePermissionDatasourceResponse> RevokePermissionDatasourceAsync( string name,
56539  string permission,
56540  string datasource_name,
56541  IDictionary<string, string> options = null,
56542  System.Threading.CancellationToken cancellationToken = default )
56543  {
56545  permission,
56546  datasource_name,
56547  options ), cancellationToken );
56548  }
56549 
56559  {
56560  RevokePermissionDirectoryResponse actualResponse_ = SubmitRequest<RevokePermissionDirectoryResponse>("/revoke/permission/directory", request_, false);
56561 
56562  return actualResponse_;
56563  }
56564 
56576  System.Threading.CancellationToken cancellationToken = default )
56577  {
56578  RevokePermissionDirectoryResponse actualResponse_ = await SubmitRequestAsync<RevokePermissionDirectoryResponse>("/revoke/permission/directory", request_, false, true, cancellationToken);
56579 
56580  return actualResponse_;
56581  }
56582 
56616  string permission,
56617  string directory_name,
56618  IDictionary<string, string> options = null )
56619  {
56621  permission,
56622  directory_name,
56623  options ) );
56624  }
56625 
56660  public async System.Threading.Tasks.Task<RevokePermissionDirectoryResponse> RevokePermissionDirectoryAsync( string name,
56661  string permission,
56662  string directory_name,
56663  IDictionary<string, string> options = null,
56664  System.Threading.CancellationToken cancellationToken = default )
56665  {
56667  permission,
56668  directory_name,
56669  options ), cancellationToken );
56670  }
56671 
56679  {
56680  RevokePermissionProcResponse actualResponse_ = SubmitRequest<RevokePermissionProcResponse>("/revoke/permission/proc", request_, false);
56681 
56682  return actualResponse_;
56683  }
56684 
56694  public async System.Threading.Tasks.Task<RevokePermissionProcResponse> RevokePermissionProcAsync( RevokePermissionProcRequest request_,
56695  System.Threading.CancellationToken cancellationToken = default )
56696  {
56697  RevokePermissionProcResponse actualResponse_ = await SubmitRequestAsync<RevokePermissionProcResponse>("/revoke/permission/proc", request_, false, true, cancellationToken);
56698 
56699  return actualResponse_;
56700  }
56701 
56730  string permission,
56731  string proc_name,
56732  IDictionary<string, string> options = null )
56733  {
56734  return revokePermissionProc( new RevokePermissionProcRequest( name, permission,
56735  proc_name, options ) );
56736  }
56737 
56768  public async System.Threading.Tasks.Task<RevokePermissionProcResponse> RevokePermissionProcAsync( string name,
56769  string permission,
56770  string proc_name,
56771  IDictionary<string, string> options = null,
56772  System.Threading.CancellationToken cancellationToken = default )
56773  {
56775  permission,
56776  proc_name,
56777  options ), cancellationToken );
56778  }
56779 
56788  {
56789  RevokePermissionSystemResponse actualResponse_ = SubmitRequest<RevokePermissionSystemResponse>("/revoke/permission/system", request_, false);
56790 
56791  return actualResponse_;
56792  }
56793 
56804  System.Threading.CancellationToken cancellationToken = default )
56805  {
56806  RevokePermissionSystemResponse actualResponse_ = await SubmitRequestAsync<RevokePermissionSystemResponse>("/revoke/permission/system", request_, false, true, cancellationToken);
56807 
56808  return actualResponse_;
56809  }
56810 
56857  string permission,
56858  IDictionary<string, string> options = null )
56859  {
56861  permission,
56862  options ) );
56863  }
56864 
56912  public async System.Threading.Tasks.Task<RevokePermissionSystemResponse> RevokePermissionSystemAsync( string name,
56913  string permission,
56914  IDictionary<string, string> options = null,
56915  System.Threading.CancellationToken cancellationToken = default )
56916  {
56918  permission,
56919  options ), cancellationToken );
56920  }
56921 
56930  {
56931  RevokePermissionTableResponse actualResponse_ = SubmitRequest<RevokePermissionTableResponse>("/revoke/permission/table", request_, false);
56932 
56933  return actualResponse_;
56934  }
56935 
56946  System.Threading.CancellationToken cancellationToken = default )
56947  {
56948  RevokePermissionTableResponse actualResponse_ = await SubmitRequestAsync<RevokePermissionTableResponse>("/revoke/permission/table", request_, false, true, cancellationToken);
56949 
56950  return actualResponse_;
56951  }
56952 
57012  string permission,
57013  string table_name,
57014  IDictionary<string, string> options = null )
57015  {
57016  return revokePermissionTable( new RevokePermissionTableRequest( name, permission,
57017  table_name,
57018  options ) );
57019  }
57020 
57081  public async System.Threading.Tasks.Task<RevokePermissionTableResponse> RevokePermissionTableAsync( string name,
57082  string permission,
57083  string table_name,
57084  IDictionary<string, string> options = null,
57085  System.Threading.CancellationToken cancellationToken = default )
57086  {
57088  permission,
57089  table_name,
57090  options ), cancellationToken );
57091  }
57092 
57100  {
57101  RevokeRoleResponse actualResponse_ = SubmitRequest<RevokeRoleResponse>("/revoke/role", request_, false);
57102 
57103  return actualResponse_;
57104  }
57105 
57115  public async System.Threading.Tasks.Task<RevokeRoleResponse> RevokeRoleAsync( RevokeRoleRequest request_,
57116  System.Threading.CancellationToken cancellationToken = default )
57117  {
57118  RevokeRoleResponse actualResponse_ = await SubmitRequestAsync<RevokeRoleResponse>("/revoke/role", request_, false, true, cancellationToken);
57119 
57120  return actualResponse_;
57121  }
57122 
57134  public RevokeRoleResponse revokeRole( string role,
57135  string member,
57136  IDictionary<string, string> options = null )
57137  {
57138  return revokeRole( new RevokeRoleRequest( role, member, options ) );
57139  }
57140 
57155  public async System.Threading.Tasks.Task<RevokeRoleResponse> RevokeRoleAsync( string role,
57156  string member,
57157  IDictionary<string, string> options = null,
57158  System.Threading.CancellationToken cancellationToken = default )
57159  {
57160  return await RevokeRoleAsync( new RevokeRoleRequest( role, member, options ), cancellationToken );
57161  }
57162 
57176  {
57177  ShowBackupResponse actualResponse_ = SubmitRequest<ShowBackupResponse>("/show/backup", request_, false);
57178 
57179  return actualResponse_;
57180  }
57181 
57196  public async System.Threading.Tasks.Task<ShowBackupResponse> ShowBackupAsync( ShowBackupRequest request_,
57197  System.Threading.CancellationToken cancellationToken = default )
57198  {
57199  ShowBackupResponse actualResponse_ = await SubmitRequestAsync<ShowBackupResponse>("/show/backup", request_, false, true, cancellationToken);
57200 
57201  return actualResponse_;
57202  }
57203 
57323  public ShowBackupResponse showBackup( string backup_name,
57324  string datasource_name,
57325  IDictionary<string, string> options = null )
57326  {
57327  return showBackup( new ShowBackupRequest( backup_name, datasource_name, options ) );
57328  }
57329 
57451  public async System.Threading.Tasks.Task<ShowBackupResponse> ShowBackupAsync( string backup_name,
57452  string datasource_name,
57453  IDictionary<string, string> options = null,
57454  System.Threading.CancellationToken cancellationToken = default )
57455  {
57456  return await ShowBackupAsync( new ShowBackupRequest( backup_name, datasource_name,
57457  options ), cancellationToken );
57458  }
57459 
57461  public ShowContainerRegistryResponse showContainerRegistry( ShowContainerRegistryRequest request_ )
57462  {
57463  ShowContainerRegistryResponse actualResponse_ = SubmitRequest<ShowContainerRegistryResponse>("/show/container/registry", request_, false);
57464 
57465  return actualResponse_;
57466  }
57468 
57470  public async System.Threading.Tasks.Task<ShowContainerRegistryResponse> ShowContainerRegistryAsync( ShowContainerRegistryRequest request_,
57471  System.Threading.CancellationToken cancellationToken = default )
57472  {
57473  ShowContainerRegistryResponse actualResponse_ = await SubmitRequestAsync<ShowContainerRegistryResponse>("/show/container/registry", request_, false, true, cancellationToken);
57474 
57475  return actualResponse_;
57476  }
57478 
57480  public ShowContainerRegistryResponse showContainerRegistry( string registry_name,
57481  IDictionary<string, string> options = null )
57482  {
57483  return showContainerRegistry( new ShowContainerRegistryRequest( registry_name,
57484  options ) );
57485  }
57487 
57489  public async System.Threading.Tasks.Task<ShowContainerRegistryResponse> ShowContainerRegistryAsync( string registry_name,
57490  IDictionary<string, string> options = null,
57491  System.Threading.CancellationToken cancellationToken = default )
57492  {
57493  return await ShowContainerRegistryAsync( new ShowContainerRegistryRequest( registry_name,
57494  options ), cancellationToken );
57495  }
57497 
57507  {
57508  ShowCredentialResponse actualResponse_ = SubmitRequest<ShowCredentialResponse>("/show/credential", request_, false);
57509 
57510  return actualResponse_;
57511  }
57512 
57523  public async System.Threading.Tasks.Task<ShowCredentialResponse> ShowCredentialAsync( ShowCredentialRequest request_,
57524  System.Threading.CancellationToken cancellationToken = default )
57525  {
57526  ShowCredentialResponse actualResponse_ = await SubmitRequestAsync<ShowCredentialResponse>("/show/credential", request_, false, true, cancellationToken);
57527 
57528  return actualResponse_;
57529  }
57530 
57543  public ShowCredentialResponse showCredential( string credential_name,
57544  IDictionary<string, string> options = null )
57545  {
57546  return showCredential( new ShowCredentialRequest( credential_name, options ) );
57547  }
57548 
57563  public async System.Threading.Tasks.Task<ShowCredentialResponse> ShowCredentialAsync( string credential_name,
57564  IDictionary<string, string> options = null,
57565  System.Threading.CancellationToken cancellationToken = default )
57566  {
57567  return await ShowCredentialAsync( new ShowCredentialRequest( credential_name,
57568  options ), cancellationToken );
57569  }
57570 
57580  {
57581  ShowDatasinkResponse actualResponse_ = SubmitRequest<ShowDatasinkResponse>("/show/datasink", request_, false);
57582 
57583  return actualResponse_;
57584  }
57585 
57596  public async System.Threading.Tasks.Task<ShowDatasinkResponse> ShowDatasinkAsync( ShowDatasinkRequest request_,
57597  System.Threading.CancellationToken cancellationToken = default )
57598  {
57599  ShowDatasinkResponse actualResponse_ = await SubmitRequestAsync<ShowDatasinkResponse>("/show/datasink", request_, false, true, cancellationToken);
57600 
57601  return actualResponse_;
57602  }
57603 
57616  public ShowDatasinkResponse showDatasink( string name,
57617  IDictionary<string, string> options = null )
57618  {
57619  return showDatasink( new ShowDatasinkRequest( name, options ) );
57620  }
57621 
57636  public async System.Threading.Tasks.Task<ShowDatasinkResponse> ShowDatasinkAsync( string name,
57637  IDictionary<string, string> options = null,
57638  System.Threading.CancellationToken cancellationToken = default )
57639  {
57640  return await ShowDatasinkAsync( new ShowDatasinkRequest( name, options ), cancellationToken );
57641  }
57642 
57652  {
57653  ShowDatasourceResponse actualResponse_ = SubmitRequest<ShowDatasourceResponse>("/show/datasource", request_, false);
57654 
57655  return actualResponse_;
57656  }
57657 
57668  public async System.Threading.Tasks.Task<ShowDatasourceResponse> ShowDatasourceAsync( ShowDatasourceRequest request_,
57669  System.Threading.CancellationToken cancellationToken = default )
57670  {
57671  ShowDatasourceResponse actualResponse_ = await SubmitRequestAsync<ShowDatasourceResponse>("/show/datasource", request_, false, true, cancellationToken);
57672 
57673  return actualResponse_;
57674  }
57675 
57689  IDictionary<string, string> options = null )
57690  {
57691  return showDatasource( new ShowDatasourceRequest( name, options ) );
57692  }
57693 
57708  public async System.Threading.Tasks.Task<ShowDatasourceResponse> ShowDatasourceAsync( string name,
57709  IDictionary<string, string> options = null,
57710  System.Threading.CancellationToken cancellationToken = default )
57711  {
57712  return await ShowDatasourceAsync( new ShowDatasourceRequest( name, options ), cancellationToken );
57713  }
57714 
57725  {
57726  ShowDirectoriesResponse actualResponse_ = SubmitRequest<ShowDirectoriesResponse>("/show/directories", request_, false);
57727 
57728  return actualResponse_;
57729  }
57730 
57742  public async System.Threading.Tasks.Task<ShowDirectoriesResponse> ShowDirectoriesAsync( ShowDirectoriesRequest request_,
57743  System.Threading.CancellationToken cancellationToken = default )
57744  {
57745  ShowDirectoriesResponse actualResponse_ = await SubmitRequestAsync<ShowDirectoriesResponse>("/show/directories", request_, false, true, cancellationToken);
57746 
57747  return actualResponse_;
57748  }
57749 
57761  public ShowDirectoriesResponse showDirectories( string directory_name = "",
57762  IDictionary<string, string> options = null )
57763  {
57764  return showDirectories( new ShowDirectoriesRequest( directory_name, options ) );
57765  }
57766 
57780  public async System.Threading.Tasks.Task<ShowDirectoriesResponse> ShowDirectoriesAsync( string directory_name = "",
57781  IDictionary<string, string> options = null,
57782  System.Threading.CancellationToken cancellationToken = default )
57783  {
57784  return await ShowDirectoriesAsync( new ShowDirectoriesRequest( directory_name,
57785  options ), cancellationToken );
57786  }
57787 
57798  {
57799  ShowEnvironmentResponse actualResponse_ = SubmitRequest<ShowEnvironmentResponse>("/show/environment", request_, false);
57800 
57801  return actualResponse_;
57802  }
57803 
57815  public async System.Threading.Tasks.Task<ShowEnvironmentResponse> ShowEnvironmentAsync( ShowEnvironmentRequest request_,
57816  System.Threading.CancellationToken cancellationToken = default )
57817  {
57818  ShowEnvironmentResponse actualResponse_ = await SubmitRequestAsync<ShowEnvironmentResponse>("/show/environment", request_, false, true, cancellationToken);
57819 
57820  return actualResponse_;
57821  }
57822 
57891  public ShowEnvironmentResponse showEnvironment( string environment_name = "",
57892  IDictionary<string, string> options = null )
57893  {
57894  return showEnvironment( new ShowEnvironmentRequest( environment_name, options ) );
57895  }
57896 
57967  public async System.Threading.Tasks.Task<ShowEnvironmentResponse> ShowEnvironmentAsync( string environment_name = "",
57968  IDictionary<string, string> options = null,
57969  System.Threading.CancellationToken cancellationToken = default )
57970  {
57971  return await ShowEnvironmentAsync( new ShowEnvironmentRequest( environment_name,
57972  options ), cancellationToken );
57973  }
57974 
57985  {
57986  ShowFilesResponse actualResponse_ = SubmitRequest<ShowFilesResponse>("/show/files", request_, false);
57987 
57988  return actualResponse_;
57989  }
57990 
58002  public async System.Threading.Tasks.Task<ShowFilesResponse> ShowFilesAsync( ShowFilesRequest request_,
58003  System.Threading.CancellationToken cancellationToken = default )
58004  {
58005  ShowFilesResponse actualResponse_ = await SubmitRequestAsync<ShowFilesResponse>("/show/files", request_, false, true, cancellationToken);
58006 
58007  return actualResponse_;
58008  }
58009 
58025  public ShowFilesResponse showFiles( IList<string> paths,
58026  IDictionary<string, string> options = null )
58027  {
58028  return showFiles( new ShowFilesRequest( paths, options ) );
58029  }
58030 
58048  public async System.Threading.Tasks.Task<ShowFilesResponse> ShowFilesAsync( IList<string> paths,
58049  IDictionary<string, string> options = null,
58050  System.Threading.CancellationToken cancellationToken = default )
58051  {
58052  return await ShowFilesAsync( new ShowFilesRequest( paths, options ), cancellationToken );
58053  }
58054 
58056  public ShowFunctionsResponse showFunctions( ShowFunctionsRequest request_ )
58057  {
58058  ShowFunctionsResponse actualResponse_ = SubmitRequest<ShowFunctionsResponse>("/show/functions", request_, false);
58059 
58060  return actualResponse_;
58061  }
58063 
58065  public async System.Threading.Tasks.Task<ShowFunctionsResponse> ShowFunctionsAsync( ShowFunctionsRequest request_,
58066  System.Threading.CancellationToken cancellationToken = default )
58067  {
58068  ShowFunctionsResponse actualResponse_ = await SubmitRequestAsync<ShowFunctionsResponse>("/show/functions", request_, false, true, cancellationToken);
58069 
58070  return actualResponse_;
58071  }
58073 
58075  public ShowFunctionsResponse showFunctions( IList<string> names,
58076  IDictionary<string, string> options = null )
58077  {
58078  return showFunctions( new ShowFunctionsRequest( names, options ) );
58079  }
58081 
58083  public async System.Threading.Tasks.Task<ShowFunctionsResponse> ShowFunctionsAsync( IList<string> names,
58084  IDictionary<string, string> options = null,
58085  System.Threading.CancellationToken cancellationToken = default )
58086  {
58087  return await ShowFunctionsAsync( new ShowFunctionsRequest( names, options ), cancellationToken );
58088  }
58090 
58099  {
58100  ShowGraphResponse actualResponse_ = SubmitRequest<ShowGraphResponse>("/show/graph", request_, false);
58101 
58102  return actualResponse_;
58103  }
58104 
58114  public async System.Threading.Tasks.Task<ShowGraphResponse> ShowGraphAsync( ShowGraphRequest request_,
58115  System.Threading.CancellationToken cancellationToken = default )
58116  {
58117  ShowGraphResponse actualResponse_ = await SubmitRequestAsync<ShowGraphResponse>("/show/graph", request_, false, true, cancellationToken);
58118 
58119  return actualResponse_;
58120  }
58121 
58188  public ShowGraphResponse showGraph( string graph_name = "",
58189  IDictionary<string, string> options = null )
58190  {
58191  return showGraph( new ShowGraphRequest( graph_name, options ) );
58192  }
58193 
58262  public async System.Threading.Tasks.Task<ShowGraphResponse> ShowGraphAsync( string graph_name = "",
58263  IDictionary<string, string> options = null,
58264  System.Threading.CancellationToken cancellationToken = default )
58265  {
58266  return await ShowGraphAsync( new ShowGraphRequest( graph_name, options ), cancellationToken );
58267  }
58268 
58270  public ShowGraphGrammarResponse showGraphGrammar( ShowGraphGrammarRequest request_ )
58271  {
58272  ShowGraphGrammarResponse actualResponse_ = SubmitRequest<ShowGraphGrammarResponse>("/show/graph/grammar", request_, false);
58273 
58274  return actualResponse_;
58275  }
58277 
58279  public async System.Threading.Tasks.Task<ShowGraphGrammarResponse> ShowGraphGrammarAsync( ShowGraphGrammarRequest request_,
58280  System.Threading.CancellationToken cancellationToken = default )
58281  {
58282  ShowGraphGrammarResponse actualResponse_ = await SubmitRequestAsync<ShowGraphGrammarResponse>("/show/graph/grammar", request_, false, true, cancellationToken);
58283 
58284  return actualResponse_;
58285  }
58287 
58289  public ShowGraphGrammarResponse showGraphGrammar( IDictionary<string, string> options = null )
58290  {
58291  return showGraphGrammar( new ShowGraphGrammarRequest( options ) );
58292  }
58294 
58296  public async System.Threading.Tasks.Task<ShowGraphGrammarResponse> ShowGraphGrammarAsync( IDictionary<string, string> options = null,
58297  System.Threading.CancellationToken cancellationToken = default )
58298  {
58299  return await ShowGraphGrammarAsync( new ShowGraphGrammarRequest( options ), cancellationToken );
58300  }
58302 
58304  public ShowModelResponse showModel( ShowModelRequest request_ )
58305  {
58306  ShowModelResponse actualResponse_ = SubmitRequest<ShowModelResponse>("/show/model", request_, false);
58307 
58308  return actualResponse_;
58309  }
58311 
58313  public async System.Threading.Tasks.Task<ShowModelResponse> ShowModelAsync( ShowModelRequest request_,
58314  System.Threading.CancellationToken cancellationToken = default )
58315  {
58316  ShowModelResponse actualResponse_ = await SubmitRequestAsync<ShowModelResponse>("/show/model", request_, false, true, cancellationToken);
58317 
58318  return actualResponse_;
58319  }
58321 
58323  public ShowModelResponse showModel( IList<string> model_names = null,
58324  IDictionary<string, string> options = null )
58325  {
58326  return showModel( new ShowModelRequest( model_names, options ) );
58327  }
58329 
58331  public async System.Threading.Tasks.Task<ShowModelResponse> ShowModelAsync( IList<string> model_names = null,
58332  IDictionary<string, string> options = null,
58333  System.Threading.CancellationToken cancellationToken = default )
58334  {
58335  return await ShowModelAsync( new ShowModelRequest( model_names, options ), cancellationToken );
58336  }
58338 
58346  {
58347  ShowProcResponse actualResponse_ = SubmitRequest<ShowProcResponse>("/show/proc", request_, false);
58348 
58349  return actualResponse_;
58350  }
58351 
58360  public async System.Threading.Tasks.Task<ShowProcResponse> ShowProcAsync( ShowProcRequest request_,
58361  System.Threading.CancellationToken cancellationToken = default )
58362  {
58363  ShowProcResponse actualResponse_ = await SubmitRequestAsync<ShowProcResponse>("/show/proc", request_, false, true, cancellationToken);
58364 
58365  return actualResponse_;
58366  }
58367 
58403  public ShowProcResponse showProc( string proc_name = "",
58404  IDictionary<string, string> options = null )
58405  {
58406  return showProc( new ShowProcRequest( proc_name, options ) );
58407  }
58408 
58446  public async System.Threading.Tasks.Task<ShowProcResponse> ShowProcAsync( string proc_name = "",
58447  IDictionary<string, string> options = null,
58448  System.Threading.CancellationToken cancellationToken = default )
58449  {
58450  return await ShowProcAsync( new ShowProcRequest( proc_name, options ), cancellationToken );
58451  }
58452 
58465  {
58466  ShowProcStatusResponse actualResponse_ = SubmitRequest<ShowProcStatusResponse>("/show/proc/status", request_, false);
58467 
58468  return actualResponse_;
58469  }
58470 
58484  public async System.Threading.Tasks.Task<ShowProcStatusResponse> ShowProcStatusAsync( ShowProcStatusRequest request_,
58485  System.Threading.CancellationToken cancellationToken = default )
58486  {
58487  ShowProcStatusResponse actualResponse_ = await SubmitRequestAsync<ShowProcStatusResponse>("/show/proc/status", request_, false, true, cancellationToken);
58488 
58489  return actualResponse_;
58490  }
58491 
58550  public ShowProcStatusResponse showProcStatus( string run_id = "",
58551  IDictionary<string, string> options = null )
58552  {
58553  return showProcStatus( new ShowProcStatusRequest( run_id, options ) );
58554  }
58555 
58616  public async System.Threading.Tasks.Task<ShowProcStatusResponse> ShowProcStatusAsync( string run_id = "",
58617  IDictionary<string, string> options = null,
58618  System.Threading.CancellationToken cancellationToken = default )
58619  {
58620  return await ShowProcStatusAsync( new ShowProcStatusRequest( run_id, options ), cancellationToken );
58621  }
58622 
58635  {
58636  ShowResourceObjectsResponse actualResponse_ = SubmitRequest<ShowResourceObjectsResponse>("/show/resource/objects", request_, false);
58637 
58638  return actualResponse_;
58639  }
58640 
58654  public async System.Threading.Tasks.Task<ShowResourceObjectsResponse> ShowResourceObjectsAsync( ShowResourceObjectsRequest request_,
58655  System.Threading.CancellationToken cancellationToken = default )
58656  {
58657  ShowResourceObjectsResponse actualResponse_ = await SubmitRequestAsync<ShowResourceObjectsResponse>("/show/resource/objects", request_, false, true, cancellationToken);
58658 
58659  return actualResponse_;
58660  }
58661 
58774  public ShowResourceObjectsResponse showResourceObjects( IDictionary<string, string> options = null )
58775  {
58776  return showResourceObjects( new ShowResourceObjectsRequest( options ) );
58777  }
58778 
58893  public async System.Threading.Tasks.Task<ShowResourceObjectsResponse> ShowResourceObjectsAsync( IDictionary<string, string> options = null,
58894  System.Threading.CancellationToken cancellationToken = default )
58895  {
58896  return await ShowResourceObjectsAsync( new ShowResourceObjectsRequest( options ), cancellationToken );
58897  }
58898 
58907  {
58908  ShowResourceStatisticsResponse actualResponse_ = SubmitRequest<ShowResourceStatisticsResponse>("/show/resource/statistics", request_, false);
58909 
58910  return actualResponse_;
58911  }
58912 
58924  System.Threading.CancellationToken cancellationToken = default )
58925  {
58926  ShowResourceStatisticsResponse actualResponse_ = await SubmitRequestAsync<ShowResourceStatisticsResponse>("/show/resource/statistics", request_, false, true, cancellationToken);
58927 
58928  return actualResponse_;
58929  }
58930 
58938  public ShowResourceStatisticsResponse showResourceStatistics( IDictionary<string, string> options = null )
58939  {
58940  return showResourceStatistics( new ShowResourceStatisticsRequest( options ) );
58941  }
58942 
58953  public async System.Threading.Tasks.Task<ShowResourceStatisticsResponse> ShowResourceStatisticsAsync( IDictionary<string, string> options = null,
58954  System.Threading.CancellationToken cancellationToken = default )
58955  {
58956  return await ShowResourceStatisticsAsync( new ShowResourceStatisticsRequest( options ), cancellationToken );
58957  }
58958 
58967  {
58968  ShowResourceGroupsResponse actualResponse_ = SubmitRequest<ShowResourceGroupsResponse>("/show/resourcegroups", request_, false);
58969 
58970  return actualResponse_;
58971  }
58972 
58982  public async System.Threading.Tasks.Task<ShowResourceGroupsResponse> ShowResourceGroupsAsync( ShowResourceGroupsRequest request_,
58983  System.Threading.CancellationToken cancellationToken = default )
58984  {
58985  ShowResourceGroupsResponse actualResponse_ = await SubmitRequestAsync<ShowResourceGroupsResponse>("/show/resourcegroups", request_, false, true, cancellationToken);
58986 
58987  return actualResponse_;
58988  }
58989 
59077  public ShowResourceGroupsResponse showResourceGroups( IList<string> names,
59078  IDictionary<string, string> options = null )
59079  {
59080  return showResourceGroups( new ShowResourceGroupsRequest( names, options ) );
59081  }
59082 
59172  public async System.Threading.Tasks.Task<ShowResourceGroupsResponse> ShowResourceGroupsAsync( IList<string> names,
59173  IDictionary<string, string> options = null,
59174  System.Threading.CancellationToken cancellationToken = default )
59175  {
59176  return await ShowResourceGroupsAsync( new ShowResourceGroupsRequest( names,
59177  options ), cancellationToken );
59178  }
59179 
59190  {
59191  ShowSchemaResponse actualResponse_ = SubmitRequest<ShowSchemaResponse>("/show/schema", request_, false);
59192 
59193  return actualResponse_;
59194  }
59195 
59208  public async System.Threading.Tasks.Task<ShowSchemaResponse> ShowSchemaAsync( ShowSchemaRequest request_,
59209  System.Threading.CancellationToken cancellationToken = default )
59210  {
59211  ShowSchemaResponse actualResponse_ = await SubmitRequestAsync<ShowSchemaResponse>("/show/schema", request_, false, true, cancellationToken);
59212 
59213  return actualResponse_;
59214  }
59215 
59255  public ShowSchemaResponse showSchema( string schema_name,
59256  IDictionary<string, string> options = null )
59257  {
59258  return showSchema( new ShowSchemaRequest( schema_name, options ) );
59259  }
59260 
59303  public async System.Threading.Tasks.Task<ShowSchemaResponse> ShowSchemaAsync( string schema_name,
59304  IDictionary<string, string> options = null,
59305  System.Threading.CancellationToken cancellationToken = default )
59306  {
59307  return await ShowSchemaAsync( new ShowSchemaRequest( schema_name, options ), cancellationToken );
59308  }
59309 
59321  {
59322  ShowSecurityResponse actualResponse_ = SubmitRequest<ShowSecurityResponse>("/show/security", request_, false);
59323 
59324  return actualResponse_;
59325  }
59326 
59339  public async System.Threading.Tasks.Task<ShowSecurityResponse> ShowSecurityAsync( ShowSecurityRequest request_,
59340  System.Threading.CancellationToken cancellationToken = default )
59341  {
59342  ShowSecurityResponse actualResponse_ = await SubmitRequestAsync<ShowSecurityResponse>("/show/security", request_, false, true, cancellationToken);
59343 
59344  return actualResponse_;
59345  }
59346 
59386  public ShowSecurityResponse showSecurity( IList<string> names,
59387  IDictionary<string, string> options = null )
59388  {
59389  return showSecurity( new ShowSecurityRequest( names, options ) );
59390  }
59391 
59433  public async System.Threading.Tasks.Task<ShowSecurityResponse> ShowSecurityAsync( IList<string> names,
59434  IDictionary<string, string> options = null,
59435  System.Threading.CancellationToken cancellationToken = default )
59436  {
59437  return await ShowSecurityAsync( new ShowSecurityRequest( names, options ), cancellationToken );
59438  }
59439 
59448  {
59449  ShowSqlProcResponse actualResponse_ = SubmitRequest<ShowSqlProcResponse>("/show/sql/proc", request_, false);
59450 
59451  return actualResponse_;
59452  }
59453 
59463  public async System.Threading.Tasks.Task<ShowSqlProcResponse> ShowSqlProcAsync( ShowSqlProcRequest request_,
59464  System.Threading.CancellationToken cancellationToken = default )
59465  {
59466  ShowSqlProcResponse actualResponse_ = await SubmitRequestAsync<ShowSqlProcResponse>("/show/sql/proc", request_, false, true, cancellationToken);
59467 
59468  return actualResponse_;
59469  }
59470 
59510  public ShowSqlProcResponse showSqlProc( string procedure_name = "",
59511  IDictionary<string, string> options = null )
59512  {
59513  return showSqlProc( new ShowSqlProcRequest( procedure_name, options ) );
59514  }
59515 
59557  public async System.Threading.Tasks.Task<ShowSqlProcResponse> ShowSqlProcAsync( string procedure_name = "",
59558  IDictionary<string, string> options = null,
59559  System.Threading.CancellationToken cancellationToken = default )
59560  {
59561  return await ShowSqlProcAsync( new ShowSqlProcRequest( procedure_name, options ), cancellationToken );
59562  }
59563 
59572  {
59573  ShowStatisticsResponse actualResponse_ = SubmitRequest<ShowStatisticsResponse>("/show/statistics", request_, false);
59574 
59575  return actualResponse_;
59576  }
59577 
59587  public async System.Threading.Tasks.Task<ShowStatisticsResponse> ShowStatisticsAsync( ShowStatisticsRequest request_,
59588  System.Threading.CancellationToken cancellationToken = default )
59589  {
59590  ShowStatisticsResponse actualResponse_ = await SubmitRequestAsync<ShowStatisticsResponse>("/show/statistics", request_, false, true, cancellationToken);
59591 
59592  return actualResponse_;
59593  }
59594 
59637  public ShowStatisticsResponse showStatistics( IList<string> table_names,
59638  IDictionary<string, string> options = null )
59639  {
59640  return showStatistics( new ShowStatisticsRequest( table_names, options ) );
59641  }
59642 
59687  public async System.Threading.Tasks.Task<ShowStatisticsResponse> ShowStatisticsAsync( IList<string> table_names,
59688  IDictionary<string, string> options = null,
59689  System.Threading.CancellationToken cancellationToken = default )
59690  {
59691  return await ShowStatisticsAsync( new ShowStatisticsRequest( table_names, options ), cancellationToken );
59692  }
59693 
59704  {
59705  ShowSystemPropertiesResponse actualResponse_ = SubmitRequest<ShowSystemPropertiesResponse>("/show/system/properties", request_, false);
59706 
59707  return actualResponse_;
59708  }
59709 
59721  public async System.Threading.Tasks.Task<ShowSystemPropertiesResponse> ShowSystemPropertiesAsync( ShowSystemPropertiesRequest request_,
59722  System.Threading.CancellationToken cancellationToken = default )
59723  {
59724  ShowSystemPropertiesResponse actualResponse_ = await SubmitRequestAsync<ShowSystemPropertiesResponse>("/show/system/properties", request_, false, true, cancellationToken);
59725 
59726  return actualResponse_;
59727  }
59728 
59748  public ShowSystemPropertiesResponse showSystemProperties( IDictionary<string, string> options = null )
59749  {
59750  return showSystemProperties( new ShowSystemPropertiesRequest( options ) );
59751  }
59752 
59774  public async System.Threading.Tasks.Task<ShowSystemPropertiesResponse> ShowSystemPropertiesAsync( IDictionary<string, string> options = null,
59775  System.Threading.CancellationToken cancellationToken = default )
59776  {
59777  return await ShowSystemPropertiesAsync( new ShowSystemPropertiesRequest( options ), cancellationToken );
59778  }
59779 
59790  {
59791  ShowSystemStatusResponse actualResponse_ = SubmitRequest<ShowSystemStatusResponse>("/show/system/status", request_, false);
59792 
59793  return actualResponse_;
59794  }
59795 
59807  public async System.Threading.Tasks.Task<ShowSystemStatusResponse> ShowSystemStatusAsync( ShowSystemStatusRequest request_,
59808  System.Threading.CancellationToken cancellationToken = default )
59809  {
59810  ShowSystemStatusResponse actualResponse_ = await SubmitRequestAsync<ShowSystemStatusResponse>("/show/system/status", request_, false, true, cancellationToken);
59811 
59812  return actualResponse_;
59813  }
59814 
59824  public ShowSystemStatusResponse showSystemStatus( IDictionary<string, string> options = null )
59825  {
59826  return showSystemStatus( new ShowSystemStatusRequest( options ) );
59827  }
59828 
59840  public async System.Threading.Tasks.Task<ShowSystemStatusResponse> ShowSystemStatusAsync( IDictionary<string, string> options = null,
59841  System.Threading.CancellationToken cancellationToken = default )
59842  {
59843  return await ShowSystemStatusAsync( new ShowSystemStatusRequest( options ), cancellationToken );
59844  }
59845 
59856  {
59857  ShowSystemTimingResponse actualResponse_ = SubmitRequest<ShowSystemTimingResponse>("/show/system/timing", request_, false);
59858 
59859  return actualResponse_;
59860  }
59861 
59873  public async System.Threading.Tasks.Task<ShowSystemTimingResponse> ShowSystemTimingAsync( ShowSystemTimingRequest request_,
59874  System.Threading.CancellationToken cancellationToken = default )
59875  {
59876  ShowSystemTimingResponse actualResponse_ = await SubmitRequestAsync<ShowSystemTimingResponse>("/show/system/timing", request_, false, true, cancellationToken);
59877 
59878  return actualResponse_;
59879  }
59880 
59890  public ShowSystemTimingResponse showSystemTiming( IDictionary<string, string> options = null )
59891  {
59892  return showSystemTiming( new ShowSystemTimingRequest( options ) );
59893  }
59894 
59906  public async System.Threading.Tasks.Task<ShowSystemTimingResponse> ShowSystemTimingAsync( IDictionary<string, string> options = null,
59907  System.Threading.CancellationToken cancellationToken = default )
59908  {
59909  return await ShowSystemTimingAsync( new ShowSystemTimingRequest( options ), cancellationToken );
59910  }
59911 
59953  {
59954  ShowTableResponse actualResponse_ = SubmitRequest<ShowTableResponse>("/show/table", request_, false);
59955 
59956 
59957  for ( int i_ = 0; i_ < actualResponse_.type_ids.Count; ++i_ )
59958  {
59959  SetDecoderIfMissing( actualResponse_.type_ids[i_],
59960  actualResponse_.type_labels[i_],
59961  actualResponse_.type_schemas[i_],
59962  actualResponse_.properties[i_] );
59963  }
59964 
59965  return actualResponse_;
59966  }
59967 
60010  public async System.Threading.Tasks.Task<ShowTableResponse> ShowTableAsync( ShowTableRequest request_,
60011  System.Threading.CancellationToken cancellationToken = default )
60012  {
60013  ShowTableResponse actualResponse_ = await SubmitRequestAsync<ShowTableResponse>("/show/table", request_, false, true, cancellationToken);
60014 
60015 
60016  for ( int i_ = 0; i_ < actualResponse_.type_ids.Count; ++i_ )
60017  {
60018  SetDecoderIfMissing( actualResponse_.type_ids[i_],
60019  actualResponse_.type_labels[i_],
60020  actualResponse_.type_schemas[i_],
60021  actualResponse_.properties[i_] );
60022  }
60023 
60024  return actualResponse_;
60025  }
60026 
60335  public ShowTableResponse showTable( string table_name,
60336  IDictionary<string, string> options = null )
60337  {
60338  return showTable( new ShowTableRequest( table_name, options ) );
60339  }
60340 
60651  public async System.Threading.Tasks.Task<ShowTableResponse> ShowTableAsync( string table_name,
60652  IDictionary<string, string> options = null,
60653  System.Threading.CancellationToken cancellationToken = default )
60654  {
60655  return await ShowTableAsync( new ShowTableRequest( table_name, options ), cancellationToken );
60656  }
60657 
60666  {
60667  ShowTableMetadataResponse actualResponse_ = SubmitRequest<ShowTableMetadataResponse>("/show/table/metadata", request_, false);
60668 
60669  return actualResponse_;
60670  }
60671 
60681  public async System.Threading.Tasks.Task<ShowTableMetadataResponse> ShowTableMetadataAsync( ShowTableMetadataRequest request_,
60682  System.Threading.CancellationToken cancellationToken = default )
60683  {
60684  ShowTableMetadataResponse actualResponse_ = await SubmitRequestAsync<ShowTableMetadataResponse>("/show/table/metadata", request_, false, true, cancellationToken);
60685 
60686  return actualResponse_;
60687  }
60688 
60701  public ShowTableMetadataResponse showTableMetadata( IList<string> table_names,
60702  IDictionary<string, string> options = null )
60703  {
60704  return showTableMetadata( new ShowTableMetadataRequest( table_names, options ) );
60705  }
60706 
60721  public async System.Threading.Tasks.Task<ShowTableMetadataResponse> ShowTableMetadataAsync( IList<string> table_names,
60722  IDictionary<string, string> options = null,
60723  System.Threading.CancellationToken cancellationToken = default )
60724  {
60725  return await ShowTableMetadataAsync( new ShowTableMetadataRequest( table_names,
60726  options ), cancellationToken );
60727  }
60728 
60739  {
60740  ShowTableMonitorsResponse actualResponse_ = SubmitRequest<ShowTableMonitorsResponse>("/show/tablemonitors", request_, false);
60741 
60742  return actualResponse_;
60743  }
60744 
60756  public async System.Threading.Tasks.Task<ShowTableMonitorsResponse> ShowTableMonitorsAsync( ShowTableMonitorsRequest request_,
60757  System.Threading.CancellationToken cancellationToken = default )
60758  {
60759  ShowTableMonitorsResponse actualResponse_ = await SubmitRequestAsync<ShowTableMonitorsResponse>("/show/tablemonitors", request_, false, true, cancellationToken);
60760 
60761  return actualResponse_;
60762  }
60763 
60776  public ShowTableMonitorsResponse showTableMonitors( IList<string> monitor_ids,
60777  IDictionary<string, string> options = null )
60778  {
60779  return showTableMonitors( new ShowTableMonitorsRequest( monitor_ids, options ) );
60780  }
60781 
60796  public async System.Threading.Tasks.Task<ShowTableMonitorsResponse> ShowTableMonitorsAsync( IList<string> monitor_ids,
60797  IDictionary<string, string> options = null,
60798  System.Threading.CancellationToken cancellationToken = default )
60799  {
60800  return await ShowTableMonitorsAsync( new ShowTableMonitorsRequest( monitor_ids,
60801  options ), cancellationToken );
60802  }
60803 
60817  {
60818  ShowTablesByTypeResponse actualResponse_ = SubmitRequest<ShowTablesByTypeResponse>("/show/tables/bytype", request_, false);
60819 
60820  return actualResponse_;
60821  }
60822 
60837  public async System.Threading.Tasks.Task<ShowTablesByTypeResponse> ShowTablesByTypeAsync( ShowTablesByTypeRequest request_,
60838  System.Threading.CancellationToken cancellationToken = default )
60839  {
60840  ShowTablesByTypeResponse actualResponse_ = await SubmitRequestAsync<ShowTablesByTypeResponse>("/show/tables/bytype", request_, false, true, cancellationToken);
60841 
60842  return actualResponse_;
60843  }
60844 
60864  string label,
60865  IDictionary<string, string> options = null )
60866  {
60867  return showTablesByType( new ShowTablesByTypeRequest( type_id, label, options ) );
60868  }
60869 
60890  public async System.Threading.Tasks.Task<ShowTablesByTypeResponse> ShowTablesByTypeAsync( string type_id,
60891  string label,
60892  IDictionary<string, string> options = null,
60893  System.Threading.CancellationToken cancellationToken = default )
60894  {
60895  return await ShowTablesByTypeAsync( new ShowTablesByTypeRequest( type_id, label,
60896  options ), cancellationToken );
60897  }
60898 
60907  {
60908  ShowTriggersResponse actualResponse_ = SubmitRequest<ShowTriggersResponse>("/show/triggers", request_, false);
60909 
60910  return actualResponse_;
60911  }
60912 
60922  public async System.Threading.Tasks.Task<ShowTriggersResponse> ShowTriggersAsync( ShowTriggersRequest request_,
60923  System.Threading.CancellationToken cancellationToken = default )
60924  {
60925  ShowTriggersResponse actualResponse_ = await SubmitRequestAsync<ShowTriggersResponse>("/show/triggers", request_, false, true, cancellationToken);
60926 
60927  return actualResponse_;
60928  }
60929 
60940  public ShowTriggersResponse showTriggers( IList<string> trigger_ids,
60941  IDictionary<string, string> options = null )
60942  {
60943  return showTriggers( new ShowTriggersRequest( trigger_ids, options ) );
60944  }
60945 
60958  public async System.Threading.Tasks.Task<ShowTriggersResponse> ShowTriggersAsync( IList<string> trigger_ids,
60959  IDictionary<string, string> options = null,
60960  System.Threading.CancellationToken cancellationToken = default )
60961  {
60962  return await ShowTriggersAsync( new ShowTriggersRequest( trigger_ids, options ), cancellationToken );
60963  }
60964 
60976  {
60977  ShowTypesResponse actualResponse_ = SubmitRequest<ShowTypesResponse>("/show/types", request_, false);
60978 
60979 
60980  for ( int i_ = 0; i_ < actualResponse_.type_ids.Count; ++i_ )
60981  {
60982  SetDecoderIfMissing( actualResponse_.type_ids[i_],
60983  actualResponse_.labels[i_],
60984  actualResponse_.type_schemas[i_],
60985  actualResponse_.properties[i_] );
60986  }
60987 
60988  return actualResponse_;
60989  }
60990 
61003  public async System.Threading.Tasks.Task<ShowTypesResponse> ShowTypesAsync( ShowTypesRequest request_,
61004  System.Threading.CancellationToken cancellationToken = default )
61005  {
61006  ShowTypesResponse actualResponse_ = await SubmitRequestAsync<ShowTypesResponse>("/show/types", request_, false, true, cancellationToken);
61007 
61008 
61009  for ( int i_ = 0; i_ < actualResponse_.type_ids.Count; ++i_ )
61010  {
61011  SetDecoderIfMissing( actualResponse_.type_ids[i_],
61012  actualResponse_.labels[i_],
61013  actualResponse_.type_schemas[i_],
61014  actualResponse_.properties[i_] );
61015  }
61016 
61017  return actualResponse_;
61018  }
61019 
61061  public ShowTypesResponse showTypes( string type_id,
61062  string label,
61063  IDictionary<string, string> options = null )
61064  {
61065  return showTypes( new ShowTypesRequest( type_id, label, options ) );
61066  }
61067 
61111  public async System.Threading.Tasks.Task<ShowTypesResponse> ShowTypesAsync( string type_id,
61112  string label,
61113  IDictionary<string, string> options = null,
61114  System.Threading.CancellationToken cancellationToken = default )
61115  {
61116  return await ShowTypesAsync( new ShowTypesRequest( type_id, label, options ), cancellationToken );
61117  }
61118 
61126  {
61127  ShowVideoResponse actualResponse_ = SubmitRequest<ShowVideoResponse>("/show/video", request_, false);
61128 
61129  return actualResponse_;
61130  }
61131 
61140  public async System.Threading.Tasks.Task<ShowVideoResponse> ShowVideoAsync( ShowVideoRequest request_,
61141  System.Threading.CancellationToken cancellationToken = default )
61142  {
61143  ShowVideoResponse actualResponse_ = await SubmitRequestAsync<ShowVideoResponse>("/show/video", request_, false, true, cancellationToken);
61144 
61145  return actualResponse_;
61146  }
61147 
61157  public ShowVideoResponse showVideo( IList<string> paths,
61158  IDictionary<string, string> options = null )
61159  {
61160  return showVideo( new ShowVideoRequest( paths, options ) );
61161  }
61162 
61174  public async System.Threading.Tasks.Task<ShowVideoResponse> ShowVideoAsync( IList<string> paths,
61175  IDictionary<string, string> options = null,
61176  System.Threading.CancellationToken cancellationToken = default )
61177  {
61178  return await ShowVideoAsync( new ShowVideoRequest( paths, options ), cancellationToken );
61179  }
61180 
61189  {
61190  ShowWalResponse actualResponse_ = SubmitRequest<ShowWalResponse>("/show/wal", request_, false);
61191 
61192  return actualResponse_;
61193  }
61194 
61204  public async System.Threading.Tasks.Task<ShowWalResponse> ShowWalAsync( ShowWalRequest request_,
61205  System.Threading.CancellationToken cancellationToken = default )
61206  {
61207  ShowWalResponse actualResponse_ = await SubmitRequestAsync<ShowWalResponse>("/show/wal", request_, false, true, cancellationToken);
61208 
61209  return actualResponse_;
61210  }
61211 
61244  public ShowWalResponse showWal( IList<string> table_names,
61245  IDictionary<string, string> options = null )
61246  {
61247  return showWal( new ShowWalRequest( table_names, options ) );
61248  }
61249 
61284  public async System.Threading.Tasks.Task<ShowWalResponse> ShowWalAsync( IList<string> table_names,
61285  IDictionary<string, string> options = null,
61286  System.Threading.CancellationToken cancellationToken = default )
61287  {
61288  return await ShowWalAsync( new ShowWalRequest( table_names, options ), cancellationToken );
61289  }
61290 
61309  {
61310  SolveGraphResponse actualResponse_ = SubmitRequest<SolveGraphResponse>("/solve/graph", request_, false);
61311 
61312  return actualResponse_;
61313  }
61314 
61334  public async System.Threading.Tasks.Task<SolveGraphResponse> SolveGraphAsync( SolveGraphRequest request_,
61335  System.Threading.CancellationToken cancellationToken = default )
61336  {
61337  SolveGraphResponse actualResponse_ = await SubmitRequestAsync<SolveGraphResponse>("/solve/graph", request_, false, true, cancellationToken);
61338 
61339  return actualResponse_;
61340  }
61341 
61777  public SolveGraphResponse solveGraph( string graph_name,
61778  IList<string> weights_on_edges = null,
61779  IList<string> restrictions = null,
61780  string solver_type = SolveGraphRequest.SolverType.SHORTEST_PATH,
61781  IList<string> source_nodes = null,
61782  IList<string> destination_nodes = null,
61783  string solution_table = "graph_solutions",
61784  IDictionary<string, string> options = null )
61785  {
61786  return solveGraph( new SolveGraphRequest( graph_name, weights_on_edges,
61787  restrictions, solver_type, source_nodes,
61788  destination_nodes, solution_table,
61789  options ) );
61790  }
61791 
62229  public async System.Threading.Tasks.Task<SolveGraphResponse> SolveGraphAsync( string graph_name,
62230  IList<string> weights_on_edges = null,
62231  IList<string> restrictions = null,
62232  string solver_type = SolveGraphRequest.SolverType.SHORTEST_PATH,
62233  IList<string> source_nodes = null,
62234  IList<string> destination_nodes = null,
62235  string solution_table = "graph_solutions",
62236  IDictionary<string, string> options = null,
62237  System.Threading.CancellationToken cancellationToken = default )
62238  {
62239  return await SolveGraphAsync( new SolveGraphRequest( graph_name, weights_on_edges,
62240  restrictions, solver_type,
62241  source_nodes,
62242  destination_nodes,
62243  solution_table, options ), cancellationToken );
62244  }
62245 
62283  {
62284  UpdateRecordsResponse actualResponse_ = SubmitRequest<UpdateRecordsResponse>("/update/records", request_, true);
62285 
62286  return actualResponse_;
62287  }
62288 
62327  public async System.Threading.Tasks.Task<UpdateRecordsResponse> UpdateRecordsRawAsync( RawUpdateRecordsRequest request_,
62328  System.Threading.CancellationToken cancellationToken = default )
62329  {
62330  UpdateRecordsResponse actualResponse_ = await SubmitRequestAsync<UpdateRecordsResponse>("/update/records", request_, true, true, cancellationToken);
62331 
62332  return actualResponse_;
62333  }
62334 
62374  {
62375  RawUpdateRecordsRequest actualRequest_ = new RawUpdateRecordsRequest();
62376  actualRequest_.table_name = request_.table_name;
62377  actualRequest_.expressions = request_.expressions;
62378  actualRequest_.new_values_maps = request_.new_values_maps;
62379  foreach (var thisObj in request_.data) actualRequest_.records_to_insert.Add( AvroEncode( thisObj ) );
62380  actualRequest_.options = request_.options;
62381  UpdateRecordsResponse actualResponse_ = SubmitRequest<UpdateRecordsResponse>("/update/records", actualRequest_, true);
62382 
62383  return actualResponse_;
62384  }
62385 
62426  public async System.Threading.Tasks.Task<UpdateRecordsResponse> UpdateRecordsAsync<T>( UpdateRecordsRequest<T> request_,
62427  System.Threading.CancellationToken cancellationToken = default )
62428  {
62429  RawUpdateRecordsRequest actualRequest_ = new RawUpdateRecordsRequest();
62430  actualRequest_.table_name = request_.table_name;
62431  actualRequest_.expressions = request_.expressions;
62432  actualRequest_.new_values_maps = request_.new_values_maps;
62433  foreach (var thisObj in request_.data) actualRequest_.records_to_insert.Add( AvroEncode( thisObj ) );
62434  actualRequest_.options = request_.options;
62435  UpdateRecordsResponse actualResponse_ = await SubmitRequestAsync<UpdateRecordsResponse>("/update/records", actualRequest_, true, true, cancellationToken);
62436 
62437  return actualResponse_;
62438  }
62439 
62732  public UpdateRecordsResponse updateRecords<T>( string table_name,
62733  IList<string> expressions,
62734  IList<IDictionary<string, string>> new_values_maps,
62735  IList<T> data = null,
62736  IDictionary<string, string> options = null )
62737  {
62738  return updateRecords<T>( new UpdateRecordsRequest<T>( table_name, expressions,
62739  new_values_maps, data,
62740  options ) );
62741  }
62742 
63037  public async System.Threading.Tasks.Task<UpdateRecordsResponse> UpdateRecordsAsync<T>( string table_name,
63038  IList<string> expressions,
63039  IList<IDictionary<string, string>> new_values_maps,
63040  IList<T> data = null,
63041  IDictionary<string, string> options = null,
63042  System.Threading.CancellationToken cancellationToken = default )
63043  {
63044  return await UpdateRecordsAsync<T>( new UpdateRecordsRequest<T>( table_name,
63045  expressions,
63046  new_values_maps,
63047  data, options ), cancellationToken );
63048  }
63049 
63115  {
63116  UploadFilesResponse actualResponse_ = SubmitRequest<UploadFilesResponse>("/upload/files", request_, false);
63117 
63118  return actualResponse_;
63119  }
63120 
63187  public async System.Threading.Tasks.Task<UploadFilesResponse> UploadFilesAsync( UploadFilesRequest request_,
63188  System.Threading.CancellationToken cancellationToken = default )
63189  {
63190  UploadFilesResponse actualResponse_ = await SubmitRequestAsync<UploadFilesResponse>("/upload/files", request_, false, true, cancellationToken);
63191 
63192  return actualResponse_;
63193  }
63194 
63388  public UploadFilesResponse uploadFiles( IList<string> file_names,
63389  IList<byte[]> file_data,
63390  IDictionary<string, string> options = null )
63391  {
63392  return uploadFiles( new UploadFilesRequest( file_names, file_data, options ) );
63393  }
63394 
63590  public async System.Threading.Tasks.Task<UploadFilesResponse> UploadFilesAsync( IList<string> file_names,
63591  IList<byte[]> file_data,
63592  IDictionary<string, string> options = null,
63593  System.Threading.CancellationToken cancellationToken = default )
63594  {
63595  return await UploadFilesAsync( new UploadFilesRequest( file_names, file_data,
63596  options ), cancellationToken );
63597  }
63598 
63617  {
63618  UploadFilesFromurlResponse actualResponse_ = SubmitRequest<UploadFilesFromurlResponse>("/upload/files/fromurl", request_, false);
63619 
63620  return actualResponse_;
63621  }
63622 
63642  public async System.Threading.Tasks.Task<UploadFilesFromurlResponse> UploadFilesFromurlAsync( UploadFilesFromurlRequest request_,
63643  System.Threading.CancellationToken cancellationToken = default )
63644  {
63645  UploadFilesFromurlResponse actualResponse_ = await SubmitRequestAsync<UploadFilesFromurlResponse>("/upload/files/fromurl", request_, false, true, cancellationToken);
63646 
63647  return actualResponse_;
63648  }
63649 
63675  public UploadFilesFromurlResponse uploadFilesFromurl( IList<string> file_names,
63676  IList<string> urls,
63677  IDictionary<string, string> options = null )
63678  {
63679  return uploadFilesFromurl( new UploadFilesFromurlRequest( file_names, urls,
63680  options ) );
63681  }
63682 
63710  public async System.Threading.Tasks.Task<UploadFilesFromurlResponse> UploadFilesFromurlAsync( IList<string> file_names,
63711  IList<string> urls,
63712  IDictionary<string, string> options = null,
63713  System.Threading.CancellationToken cancellationToken = default )
63714  {
63715  return await UploadFilesFromurlAsync( new UploadFilesFromurlRequest( file_names,
63716  urls, options ), cancellationToken );
63717  }
63718 
63736  {
63737  VerifyBackupResponse actualResponse_ = SubmitRequest<VerifyBackupResponse>("/verify/backup", request_, false);
63738 
63739  return actualResponse_;
63740  }
63741 
63760  public async System.Threading.Tasks.Task<VerifyBackupResponse> VerifyBackupAsync( VerifyBackupRequest request_,
63761  System.Threading.CancellationToken cancellationToken = default )
63762  {
63763  VerifyBackupResponse actualResponse_ = await SubmitRequestAsync<VerifyBackupResponse>("/verify/backup", request_, false, true, cancellationToken);
63764 
63765  return actualResponse_;
63766  }
63767 
63800  public VerifyBackupResponse verifyBackup( string backup_name,
63801  string datasource_name,
63802  IDictionary<string, string> options = null )
63803  {
63804  return verifyBackup( new VerifyBackupRequest( backup_name, datasource_name,
63805  options ) );
63806  }
63807 
63842  public async System.Threading.Tasks.Task<VerifyBackupResponse> VerifyBackupAsync( string backup_name,
63843  string datasource_name,
63844  IDictionary<string, string> options = null,
63845  System.Threading.CancellationToken cancellationToken = default )
63846  {
63847  return await VerifyBackupAsync( new VerifyBackupRequest( backup_name,
63848  datasource_name, options ), cancellationToken );
63849  }
63850 
63852  public VisualizeGetFeatureInfoResponse visualizeGetFeatureInfo( VisualizeGetFeatureInfoRequest request_ )
63853  {
63854  VisualizeGetFeatureInfoResponse actualResponse_ = SubmitRequest<VisualizeGetFeatureInfoResponse>("/visualize/getfeatureinfo", request_, false);
63855 
63856  return actualResponse_;
63857  }
63859 
63861  public async System.Threading.Tasks.Task<VisualizeGetFeatureInfoResponse> VisualizeGetFeatureInfoAsync( VisualizeGetFeatureInfoRequest request_,
63862  System.Threading.CancellationToken cancellationToken = default )
63863  {
63864  VisualizeGetFeatureInfoResponse actualResponse_ = await SubmitRequestAsync<VisualizeGetFeatureInfoResponse>("/visualize/getfeatureinfo", request_, false, true, cancellationToken);
63865 
63866  return actualResponse_;
63867  }
63869 
63871  public VisualizeGetFeatureInfoResponse visualizeGetFeatureInfo( IList<string> table_names,
63872  IList<string> x_column_names,
63873  IList<string> y_column_names,
63874  IList<string> geometry_column_names,
63875  IList<IList<string>> query_column_names,
63876  string projection,
63877  double min_x,
63878  double max_x,
63879  double min_y,
63880  double max_y,
63881  int width,
63882  int height,
63883  int x,
63884  int y,
63885  int radius,
63886  long limit,
63887  string encoding,
63888  IDictionary<string, string> options = null )
63889  {
63890  return visualizeGetFeatureInfo( new VisualizeGetFeatureInfoRequest( table_names,
63891  x_column_names,
63892  y_column_names,
63893  geometry_column_names,
63894  query_column_names,
63895  projection,
63896  min_x, max_x,
63897  min_y, max_y,
63898  width, height,
63899  x, y, radius,
63900  limit,
63901  encoding,
63902  options ) );
63903  }
63905 
63907  public async System.Threading.Tasks.Task<VisualizeGetFeatureInfoResponse> VisualizeGetFeatureInfoAsync( IList<string> table_names,
63908  IList<string> x_column_names,
63909  IList<string> y_column_names,
63910  IList<string> geometry_column_names,
63911  IList<IList<string>> query_column_names,
63912  string projection,
63913  double min_x,
63914  double max_x,
63915  double min_y,
63916  double max_y,
63917  int width,
63918  int height,
63919  int x,
63920  int y,
63921  int radius,
63922  long limit,
63923  string encoding,
63924  IDictionary<string, string> options = null,
63925  System.Threading.CancellationToken cancellationToken = default )
63926  {
63927  return await VisualizeGetFeatureInfoAsync( new VisualizeGetFeatureInfoRequest( table_names,
63928  x_column_names,
63929  y_column_names,
63930  geometry_column_names,
63931  query_column_names,
63932  projection,
63933  min_x,
63934  max_x,
63935  min_y,
63936  max_y,
63937  width,
63938  height,
63939  x,
63940  y,
63941  radius,
63942  limit,
63943  encoding,
63944  options ), cancellationToken );
63945  }
63947 
63949  public VisualizeImageResponse visualizeImage( VisualizeImageRequest request_ )
63950  {
63951  VisualizeImageResponse actualResponse_ = SubmitRequest<VisualizeImageResponse>("/visualize/image", request_, false);
63952 
63953  return actualResponse_;
63954  }
63956 
63958  public async System.Threading.Tasks.Task<VisualizeImageResponse> VisualizeImageAsync( VisualizeImageRequest request_,
63959  System.Threading.CancellationToken cancellationToken = default )
63960  {
63961  VisualizeImageResponse actualResponse_ = await SubmitRequestAsync<VisualizeImageResponse>("/visualize/image", request_, false, true, cancellationToken);
63962 
63963  return actualResponse_;
63964  }
63966 
63968  public VisualizeImageResponse visualizeImage( IList<string> table_names,
63969  IList<string> world_table_names,
63970  string x_column_name,
63971  string y_column_name,
63972  string symbol_column_name,
63973  string geometry_column_name,
63974  IList<IList<string>> track_ids,
63975  double min_x,
63976  double max_x,
63977  double min_y,
63978  double max_y,
63979  int width,
63980  int height,
63981  string projection,
63982  long bg_color,
63983  IDictionary<string, IList<string>> style_options,
63984  IDictionary<string, string> options = null )
63985  {
63986  return visualizeImage( new VisualizeImageRequest( table_names, world_table_names,
63987  x_column_name, y_column_name,
63988  symbol_column_name,
63989  geometry_column_name, track_ids,
63990  min_x, max_x, min_y, max_y,
63991  width, height, projection,
63992  bg_color, style_options, options ) );
63993  }
63995 
63997  public async System.Threading.Tasks.Task<VisualizeImageResponse> VisualizeImageAsync( IList<string> table_names,
63998  IList<string> world_table_names,
63999  string x_column_name,
64000  string y_column_name,
64001  string symbol_column_name,
64002  string geometry_column_name,
64003  IList<IList<string>> track_ids,
64004  double min_x,
64005  double max_x,
64006  double min_y,
64007  double max_y,
64008  int width,
64009  int height,
64010  string projection,
64011  long bg_color,
64012  IDictionary<string, IList<string>> style_options,
64013  IDictionary<string, string> options = null,
64014  System.Threading.CancellationToken cancellationToken = default )
64015  {
64016  return await VisualizeImageAsync( new VisualizeImageRequest( table_names,
64017  world_table_names,
64018  x_column_name,
64019  y_column_name,
64020  symbol_column_name,
64021  geometry_column_name,
64022  track_ids, min_x,
64023  max_x, min_y, max_y,
64024  width, height,
64025  projection, bg_color,
64026  style_options,
64027  options ), cancellationToken );
64028  }
64030 
64045  {
64046  VisualizeImageChartResponse actualResponse_ = SubmitRequest<VisualizeImageChartResponse>("/visualize/image/chart", request_, false);
64047 
64048  return actualResponse_;
64049  }
64050 
64066  public async System.Threading.Tasks.Task<VisualizeImageChartResponse> VisualizeImageChartAsync( VisualizeImageChartRequest request_,
64067  System.Threading.CancellationToken cancellationToken = default )
64068  {
64069  VisualizeImageChartResponse actualResponse_ = await SubmitRequestAsync<VisualizeImageChartResponse>("/visualize/image/chart", request_, false, true, cancellationToken);
64070 
64071  return actualResponse_;
64072  }
64073 
64358  IList<string> x_column_names,
64359  IList<string> y_column_names,
64360  double min_x,
64361  double max_x,
64362  double min_y,
64363  double max_y,
64364  int width,
64365  int height,
64366  string bg_color,
64367  IDictionary<string, IList<string>> style_options,
64368  IDictionary<string, string> options = null )
64369  {
64370  return visualizeImageChart( new VisualizeImageChartRequest( table_name,
64371  x_column_names,
64372  y_column_names, min_x,
64373  max_x, min_y, max_y,
64374  width, height,
64375  bg_color,
64376  style_options, options ) );
64377  }
64378 
64664  public async System.Threading.Tasks.Task<VisualizeImageChartResponse> VisualizeImageChartAsync( string table_name,
64665  IList<string> x_column_names,
64666  IList<string> y_column_names,
64667  double min_x,
64668  double max_x,
64669  double min_y,
64670  double max_y,
64671  int width,
64672  int height,
64673  string bg_color,
64674  IDictionary<string, IList<string>> style_options,
64675  IDictionary<string, string> options = null,
64676  System.Threading.CancellationToken cancellationToken = default )
64677  {
64678  return await VisualizeImageChartAsync( new VisualizeImageChartRequest( table_name,
64679  x_column_names,
64680  y_column_names,
64681  min_x,
64682  max_x,
64683  min_y,
64684  max_y,
64685  width,
64686  height,
64687  bg_color,
64688  style_options,
64689  options ), cancellationToken );
64690  }
64691 
64693  public VisualizeImageClassbreakResponse visualizeImageClassbreak( VisualizeImageClassbreakRequest request_ )
64694  {
64695  VisualizeImageClassbreakResponse actualResponse_ = SubmitRequest<VisualizeImageClassbreakResponse>("/visualize/image/classbreak", request_, false);
64696 
64697  return actualResponse_;
64698  }
64700 
64702  public async System.Threading.Tasks.Task<VisualizeImageClassbreakResponse> VisualizeImageClassbreakAsync( VisualizeImageClassbreakRequest request_,
64703  System.Threading.CancellationToken cancellationToken = default )
64704  {
64705  VisualizeImageClassbreakResponse actualResponse_ = await SubmitRequestAsync<VisualizeImageClassbreakResponse>("/visualize/image/classbreak", request_, false, true, cancellationToken);
64706 
64707  return actualResponse_;
64708  }
64710 
64712  public VisualizeImageClassbreakResponse visualizeImageClassbreak( IList<string> table_names,
64713  IList<string> world_table_names,
64714  string x_column_name,
64715  string y_column_name,
64716  string symbol_column_name,
64717  string geometry_column_name,
64718  IList<IList<string>> track_ids,
64719  string cb_attr,
64720  IList<string> cb_vals,
64721  string cb_pointcolor_attr,
64722  IList<string> cb_pointcolor_vals,
64723  string cb_pointalpha_attr,
64724  IList<string> cb_pointalpha_vals,
64725  string cb_pointsize_attr,
64726  IList<string> cb_pointsize_vals,
64727  string cb_pointshape_attr,
64728  IList<string> cb_pointshape_vals,
64729  double min_x,
64730  double max_x,
64731  double min_y,
64732  double max_y,
64733  int width,
64734  int height,
64735  string projection,
64736  long bg_color,
64737  IDictionary<string, IList<string>> style_options,
64738  IDictionary<string, string> options,
64739  IList<int> cb_transparency_vec )
64740  {
64741  return visualizeImageClassbreak( new VisualizeImageClassbreakRequest( table_names,
64742  world_table_names,
64743  x_column_name,
64744  y_column_name,
64745  symbol_column_name,
64746  geometry_column_name,
64747  track_ids,
64748  cb_attr,
64749  cb_vals,
64750  cb_pointcolor_attr,
64751  cb_pointcolor_vals,
64752  cb_pointalpha_attr,
64753  cb_pointalpha_vals,
64754  cb_pointsize_attr,
64755  cb_pointsize_vals,
64756  cb_pointshape_attr,
64757  cb_pointshape_vals,
64758  min_x,
64759  max_x,
64760  min_y,
64761  max_y,
64762  width,
64763  height,
64764  projection,
64765  bg_color,
64766  style_options,
64767  options,
64768  cb_transparency_vec ) );
64769  }
64771 
64773  public async System.Threading.Tasks.Task<VisualizeImageClassbreakResponse> VisualizeImageClassbreakAsync( IList<string> table_names,
64774  IList<string> world_table_names,
64775  string x_column_name,
64776  string y_column_name,
64777  string symbol_column_name,
64778  string geometry_column_name,
64779  IList<IList<string>> track_ids,
64780  string cb_attr,
64781  IList<string> cb_vals,
64782  string cb_pointcolor_attr,
64783  IList<string> cb_pointcolor_vals,
64784  string cb_pointalpha_attr,
64785  IList<string> cb_pointalpha_vals,
64786  string cb_pointsize_attr,
64787  IList<string> cb_pointsize_vals,
64788  string cb_pointshape_attr,
64789  IList<string> cb_pointshape_vals,
64790  double min_x,
64791  double max_x,
64792  double min_y,
64793  double max_y,
64794  int width,
64795  int height,
64796  string projection,
64797  long bg_color,
64798  IDictionary<string, IList<string>> style_options,
64799  IDictionary<string, string> options,
64800  IList<int> cb_transparency_vec,
64801  System.Threading.CancellationToken cancellationToken = default )
64802  {
64803  return await VisualizeImageClassbreakAsync( new VisualizeImageClassbreakRequest( table_names,
64804  world_table_names,
64805  x_column_name,
64806  y_column_name,
64807  symbol_column_name,
64808  geometry_column_name,
64809  track_ids,
64810  cb_attr,
64811  cb_vals,
64812  cb_pointcolor_attr,
64813  cb_pointcolor_vals,
64814  cb_pointalpha_attr,
64815  cb_pointalpha_vals,
64816  cb_pointsize_attr,
64817  cb_pointsize_vals,
64818  cb_pointshape_attr,
64819  cb_pointshape_vals,
64820  min_x,
64821  max_x,
64822  min_y,
64823  max_y,
64824  width,
64825  height,
64826  projection,
64827  bg_color,
64828  style_options,
64829  options,
64830  cb_transparency_vec ), cancellationToken );
64831  }
64833 
64835  public VisualizeImageContourResponse visualizeImageContour( VisualizeImageContourRequest request_ )
64836  {
64837  VisualizeImageContourResponse actualResponse_ = SubmitRequest<VisualizeImageContourResponse>("/visualize/image/contour", request_, false);
64838 
64839  return actualResponse_;
64840  }
64842 
64844  public async System.Threading.Tasks.Task<VisualizeImageContourResponse> VisualizeImageContourAsync( VisualizeImageContourRequest request_,
64845  System.Threading.CancellationToken cancellationToken = default )
64846  {
64847  VisualizeImageContourResponse actualResponse_ = await SubmitRequestAsync<VisualizeImageContourResponse>("/visualize/image/contour", request_, false, true, cancellationToken);
64848 
64849  return actualResponse_;
64850  }
64852 
64854  public VisualizeImageContourResponse visualizeImageContour( IList<string> table_names,
64855  string x_column_name,
64856  string y_column_name,
64857  string value_column_name,
64858  double min_x,
64859  double max_x,
64860  double min_y,
64861  double max_y,
64862  int width,
64863  int height,
64864  string projection,
64865  IDictionary<string, string> style_options,
64866  IDictionary<string, string> options = null )
64867  {
64868  return visualizeImageContour( new VisualizeImageContourRequest( table_names,
64869  x_column_name,
64870  y_column_name,
64871  value_column_name,
64872  min_x, max_x,
64873  min_y, max_y,
64874  width, height,
64875  projection,
64876  style_options,
64877  options ) );
64878  }
64880 
64882  public async System.Threading.Tasks.Task<VisualizeImageContourResponse> VisualizeImageContourAsync( IList<string> table_names,
64883  string x_column_name,
64884  string y_column_name,
64885  string value_column_name,
64886  double min_x,
64887  double max_x,
64888  double min_y,
64889  double max_y,
64890  int width,
64891  int height,
64892  string projection,
64893  IDictionary<string, string> style_options,
64894  IDictionary<string, string> options = null,
64895  System.Threading.CancellationToken cancellationToken = default )
64896  {
64897  return await VisualizeImageContourAsync( new VisualizeImageContourRequest( table_names,
64898  x_column_name,
64899  y_column_name,
64900  value_column_name,
64901  min_x,
64902  max_x,
64903  min_y,
64904  max_y,
64905  width,
64906  height,
64907  projection,
64908  style_options,
64909  options ), cancellationToken );
64910  }
64912 
64914  public VisualizeImageHeatmapResponse visualizeImageHeatmap( VisualizeImageHeatmapRequest request_ )
64915  {
64916  VisualizeImageHeatmapResponse actualResponse_ = SubmitRequest<VisualizeImageHeatmapResponse>("/visualize/image/heatmap", request_, false);
64917 
64918  return actualResponse_;
64919  }
64921 
64923  public async System.Threading.Tasks.Task<VisualizeImageHeatmapResponse> VisualizeImageHeatmapAsync( VisualizeImageHeatmapRequest request_,
64924  System.Threading.CancellationToken cancellationToken = default )
64925  {
64926  VisualizeImageHeatmapResponse actualResponse_ = await SubmitRequestAsync<VisualizeImageHeatmapResponse>("/visualize/image/heatmap", request_, false, true, cancellationToken);
64927 
64928  return actualResponse_;
64929  }
64931 
64933  public VisualizeImageHeatmapResponse visualizeImageHeatmap( IList<string> table_names,
64934  string x_column_name,
64935  string y_column_name,
64936  string value_column_name,
64937  string geometry_column_name,
64938  double min_x,
64939  double max_x,
64940  double min_y,
64941  double max_y,
64942  int width,
64943  int height,
64944  string projection,
64945  IDictionary<string, string> style_options,
64946  IDictionary<string, string> options = null )
64947  {
64948  return visualizeImageHeatmap( new VisualizeImageHeatmapRequest( table_names,
64949  x_column_name,
64950  y_column_name,
64951  value_column_name,
64952  geometry_column_name,
64953  min_x, max_x,
64954  min_y, max_y,
64955  width, height,
64956  projection,
64957  style_options,
64958  options ) );
64959  }
64961 
64963  public async System.Threading.Tasks.Task<VisualizeImageHeatmapResponse> VisualizeImageHeatmapAsync( IList<string> table_names,
64964  string x_column_name,
64965  string y_column_name,
64966  string value_column_name,
64967  string geometry_column_name,
64968  double min_x,
64969  double max_x,
64970  double min_y,
64971  double max_y,
64972  int width,
64973  int height,
64974  string projection,
64975  IDictionary<string, string> style_options,
64976  IDictionary<string, string> options = null,
64977  System.Threading.CancellationToken cancellationToken = default )
64978  {
64979  return await VisualizeImageHeatmapAsync( new VisualizeImageHeatmapRequest( table_names,
64980  x_column_name,
64981  y_column_name,
64982  value_column_name,
64983  geometry_column_name,
64984  min_x,
64985  max_x,
64986  min_y,
64987  max_y,
64988  width,
64989  height,
64990  projection,
64991  style_options,
64992  options ), cancellationToken );
64993  }
64995 
64997  public VisualizeImageLabelsResponse visualizeImageLabels( VisualizeImageLabelsRequest request_ )
64998  {
64999  VisualizeImageLabelsResponse actualResponse_ = SubmitRequest<VisualizeImageLabelsResponse>("/visualize/image/labels", request_, false);
65000 
65001  return actualResponse_;
65002  }
65004 
65006  public async System.Threading.Tasks.Task<VisualizeImageLabelsResponse> VisualizeImageLabelsAsync( VisualizeImageLabelsRequest request_,
65007  System.Threading.CancellationToken cancellationToken = default )
65008  {
65009  VisualizeImageLabelsResponse actualResponse_ = await SubmitRequestAsync<VisualizeImageLabelsResponse>("/visualize/image/labels", request_, false, true, cancellationToken);
65010 
65011  return actualResponse_;
65012  }
65014 
65016  public VisualizeImageLabelsResponse visualizeImageLabels( string table_name,
65017  string x_column_name,
65018  string y_column_name,
65019  string x_offset,
65020  string y_offset,
65021  string text_string,
65022  string font,
65023  string text_color,
65024  string text_angle,
65025  string text_scale,
65026  string draw_box,
65027  string draw_leader,
65028  string line_width,
65029  string line_color,
65030  string fill_color,
65031  string leader_x_column_name,
65032  string leader_y_column_name,
65033  string filter,
65034  double min_x,
65035  double max_x,
65036  double min_y,
65037  double max_y,
65038  int width,
65039  int height,
65040  string projection = VisualizeImageLabelsRequest.Projection.PLATE_CARREE,
65041  IDictionary<string, string> options = null )
65042  {
65043  return visualizeImageLabels( new VisualizeImageLabelsRequest( table_name,
65044  x_column_name,
65045  y_column_name,
65046  x_offset, y_offset,
65047  text_string, font,
65048  text_color,
65049  text_angle,
65050  text_scale,
65051  draw_box,
65052  draw_leader,
65053  line_width,
65054  line_color,
65055  fill_color,
65056  leader_x_column_name,
65057  leader_y_column_name,
65058  filter, min_x,
65059  max_x, min_y, max_y,
65060  width, height,
65061  projection, options ) );
65062  }
65064 
65066  public async System.Threading.Tasks.Task<VisualizeImageLabelsResponse> VisualizeImageLabelsAsync( string table_name,
65067  string x_column_name,
65068  string y_column_name,
65069  string x_offset,
65070  string y_offset,
65071  string text_string,
65072  string font,
65073  string text_color,
65074  string text_angle,
65075  string text_scale,
65076  string draw_box,
65077  string draw_leader,
65078  string line_width,
65079  string line_color,
65080  string fill_color,
65081  string leader_x_column_name,
65082  string leader_y_column_name,
65083  string filter,
65084  double min_x,
65085  double max_x,
65086  double min_y,
65087  double max_y,
65088  int width,
65089  int height,
65090  string projection = VisualizeImageLabelsRequest.Projection.PLATE_CARREE,
65091  IDictionary<string, string> options = null,
65092  System.Threading.CancellationToken cancellationToken = default )
65093  {
65094  return await VisualizeImageLabelsAsync( new VisualizeImageLabelsRequest( table_name,
65095  x_column_name,
65096  y_column_name,
65097  x_offset,
65098  y_offset,
65099  text_string,
65100  font,
65101  text_color,
65102  text_angle,
65103  text_scale,
65104  draw_box,
65105  draw_leader,
65106  line_width,
65107  line_color,
65108  fill_color,
65109  leader_x_column_name,
65110  leader_y_column_name,
65111  filter,
65112  min_x,
65113  max_x,
65114  min_y,
65115  max_y,
65116  width,
65117  height,
65118  projection,
65119  options ), cancellationToken );
65120  }
65122 
65136  {
65137  VisualizeIsochroneResponse actualResponse_ = SubmitRequest<VisualizeIsochroneResponse>("/visualize/isochrone", request_, false);
65138 
65139  return actualResponse_;
65140  }
65141 
65156  public async System.Threading.Tasks.Task<VisualizeIsochroneResponse> VisualizeIsochroneAsync( VisualizeIsochroneRequest request_,
65157  System.Threading.CancellationToken cancellationToken = default )
65158  {
65159  VisualizeIsochroneResponse actualResponse_ = await SubmitRequestAsync<VisualizeIsochroneResponse>("/visualize/isochrone", request_, false, true, cancellationToken);
65160 
65161  return actualResponse_;
65162  }
65163 
66086  string source_node,
66087  double max_solution_radius,
66088  IList<string> weights_on_edges,
66089  IList<string> restrictions,
66090  int num_levels,
66091  bool generate_image,
66092  string levels_table,
66093  IDictionary<string, string> style_options,
66094  IDictionary<string, string> solve_options = null,
66095  IDictionary<string, string> contour_options = null,
66096  IDictionary<string, string> options = null )
66097  {
66098  return visualizeIsochrone( new VisualizeIsochroneRequest( graph_name, source_node,
66099  max_solution_radius,
66100  weights_on_edges,
66101  restrictions,
66102  num_levels,
66103  generate_image,
66104  levels_table,
66105  style_options,
66106  solve_options,
66107  contour_options, options ) );
66108  }
66109 
67033  public async System.Threading.Tasks.Task<VisualizeIsochroneResponse> VisualizeIsochroneAsync( string graph_name,
67034  string source_node,
67035  double max_solution_radius,
67036  IList<string> weights_on_edges,
67037  IList<string> restrictions,
67038  int num_levels,
67039  bool generate_image,
67040  string levels_table,
67041  IDictionary<string, string> style_options,
67042  IDictionary<string, string> solve_options = null,
67043  IDictionary<string, string> contour_options = null,
67044  IDictionary<string, string> options = null,
67045  System.Threading.CancellationToken cancellationToken = default )
67046  {
67047  return await VisualizeIsochroneAsync( new VisualizeIsochroneRequest( graph_name,
67048  source_node,
67049  max_solution_radius,
67050  weights_on_edges,
67051  restrictions,
67052  num_levels,
67053  generate_image,
67054  levels_table,
67055  style_options,
67056  solve_options,
67057  contour_options,
67058  options ), cancellationToken );
67059  }
67060 } // end class Kinetica
CreateCatalogResponse createCatalog(CreateCatalogRequest request_)
Creates a catalog, which contains the location and connection information for a deltalake catalog tha...
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....
AlterDatasinkResponse alterDatasink(string name, IDictionary< string, string > datasink_updates_map, IDictionary< string, string > options)
Alters the properties of an existing data sink.
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< GetRecordsFromCollectionResponse< T > > GetRecordsFromCollectionAsync< T >(GetRecordsFromCollectionRequest request_, System.Threading.CancellationToken cancellationToken=default)
Retrieves records from a collection.
AlterTableMetadataResponse alterTableMetadata(IList< string > table_names, IDictionary< string, string > metadata_map, IDictionary< string, string > options=null)
Updates (adds or changes) metadata for tables.
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< ShowSystemPropertiesResponse > ShowSystemPropertiesAsync(ShowSystemPropertiesRequest request_, System.Threading.CancellationToken cancellationToken=default)
Returns server configuration and version related information to the caller.
A set of results returned by Kinetica.downloadFiles.
DeleteProcResponse deleteProc(DeleteProcRequest request_)
Deletes a proc.
A set of results returned by Kinetica.createMaterializedView.
async System.Threading.Tasks.Task< DropCatalogResponse > DropCatalogAsync(string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Drops an existing catalog.
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.
A set of parameters for Kinetica.filterByRange.
string type_id
An identifier representing the created type.
Definition: CreateType.cs:939
A set of parameters for Kinetica.createType.
Definition: CreateType.cs:57
A set of results returned by Kinetica.alterTableMetadata.
ExportRecordsToFilesResponse exportRecordsToFiles(string table_name, string filepath, IDictionary< string, string > options=null)
Export records from a table to files.
ShowCredentialResponse showCredential(string credential_name, IDictionary< string, string > options=null)
Shows information about a specified credential or all credentials.
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.
async System.Threading.Tasks.Task< GrantPermissionDatasourceResponse > GrantPermissionDatasourceAsync(string name, string permission, string datasource_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Grants a data source permission to a user or role.
A set of parameters for Kinetica.showSecurity.
Definition: ShowSecurity.cs:17
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 ...
A set of results returned by Kinetica.executeProc.
Definition: ExecuteProc.cs:344
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 ta...
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.
string table_name
Name of table to which the records are to be added, in [schema_name.
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.
A set of results returned by Kinetica.uploadFiles.
Definition: UploadFiles.cs:418
IList< string > type_schemas
The type schemas (one per series/track) of the returned series/tracks.
IDictionary< string, string > info
Additional information.
Definition: ExecuteSql.cs:1737
A set of parameters for Kinetica.deleteGraph.
Definition: DeleteGraph.cs:16
CreateEnvironmentResponse createEnvironment(string environment_name, IDictionary< string, string > options=null)
Creates a new environment which can be used by user-defined functions (UDF).
ShowDirectoriesResponse showDirectories(ShowDirectoriesRequest request_)
Shows information about directories in KiFS.
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.
A set of parameters for Kinetica.showDatasource.
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.
long total_number_of_records
Total/Filtered number of records.
Definition: GetRecords.cs:458
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_na...
CreateBackupResponse createBackup(CreateBackupRequest request_)
Creates a database backup, containing a snapshot of existing objects, at the remote file store access...
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.
AlterCredentialResponse alterCredential(string credential_name, IDictionary< string, string > credential_updates_map, IDictionary< string, string > options)
Alter the properties of an existing credential.
A set of parameters for Kinetica.getGraphEntities.
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.
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.
A set of parameters for Kinetica.adminOffline.
Definition: AdminOffline.cs:17
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.
GrantPermissionDatasourceResponse grantPermissionDatasource(string name, string permission, string datasource_name, IDictionary< string, string > options=null)
Grants a data source permission to a user or role.
A set of results returned by Kinetica.showDatasource.
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.
long total_number_of_records
Total/Filtered number of records.
CreateMaterializedViewResponse createMaterializedView(CreateMaterializedViewRequest request_)
Initiates the process of creating a materialized view, reserving the view's name to prevent other vie...
InsertRecordsFromFilesResponse insertRecordsFromFiles(InsertRecordsFromFilesRequest request_)
Reads from one or more files and inserts the data into a new or existing table.
ShowResourceStatisticsResponse showResourceStatistics(IDictionary< string, string > options=null)
Requests various statistics for storage/memory tiers and resource groups.Returns statistics on a per-...
async System.Threading.Tasks.Task< AlterTableMetadataResponse > AlterTableMetadataAsync(AlterTableMetadataRequest request_, System.Threading.CancellationToken cancellationToken=default)
Updates (adds or changes) metadata for tables.
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...
CreateRoleResponse createRole(string name, IDictionary< string, string > options=null)
Creates a new role.
A set of parameters for Kinetica.showDatasink.
Definition: ShowDatasink.cs:17
AlterTableMetadataResponse alterTableMetadata(AlterTableMetadataRequest request_)
Updates (adds or changes) metadata for tables.
A set of results returned by Kinetica.createTable.
A set of parameters for Kinetica.adminBackupBegin.
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.
CreateSchemaResponse createSchema(CreateSchemaRequest request_)
Creates a SQL-style schema.
CreateTableResponse createTable(string table_name, string type_id, IDictionary< string, string > options=null)
Creates a new table with the given type (definition of columns).
byte [] binary_encoded_response
Avro binary encoded response.
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.
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 i...
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.
FilterByRangeResponse filterByRange(FilterByRangeRequest request_)
Calculates which objects from a table have a column that is within the given bounds.
A set of parameters for Kinetica.lockTable.
Definition: LockTable.cs:26
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.
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.
UpdateRecordsResponse updateRecordsRaw(RawUpdateRecordsRequest request_)
Runs multiple predicate-based updates in a single call.
A set of results returned by Kinetica.modifyGraph.
Definition: ModifyGraph.cs:810
GrantPermissionDatasourceResponse grantPermissionDatasource(GrantPermissionDatasourceRequest request_)
Grants a data source permission to a user or role.
A set of parameters for Kinetica.deleteRole.
Definition: DeleteRole.cs:15
AlterUserResponse alterUser(string name, string action, string _value, IDictionary< string, string > options=null)
Alters a user.
IList< string > record_ids
If the 'return_record_ids' option of the request was 'true', then this list contains the internal ID ...
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).
ClearTableMonitorResponse clearTableMonitor(ClearTableMonitorRequest request_)
Deactivates a table monitor previously created with createTableMonitor.
A set of results returned by Kinetica.getRecordsByColumn.
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 geomet...
RevokeRoleResponse revokeRole(string role, string member, IDictionary< string, string > options=null)
Revokes membership in a role from a user or role.
DropSchemaResponse dropSchema(DropSchemaRequest request_)
Drops an existing SQL-style schema, specified in schema_name.
A set of results returned by Kinetica.filterBySeries.
DeleteProcResponse deleteProc(string proc_name, IDictionary< string, string > options=null)
Deletes a proc.
A set of parameters for Kinetica.createProc.
Definition: CreateProc.cs:18
A set of parameters for Kinetica.filterByBox.
Definition: FilterByBox.cs:21
IList< string > type_names
The type IDs of the corresponding records in records_binary or records_json.
bool has_more_records
Too many records.
Definition: GetRecords.cs:429
A set of parameters for Kinetica.alterRole.
Definition: AlterRole.cs:15
async System.Threading.Tasks.Task< ExportRecordsToFilesResponse > ExportRecordsToFilesAsync(ExportRecordsToFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
Export records from a table to files.
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.
IList< string > type_schemas
Definition: ShowTypes.cs:129
A set of parameters for Kinetica.hasPermission.
async System.Threading.Tasks.Task< ClearTableResponse > ClearTableAsync(ClearTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
Clears (drops) one or all tables in the database cluster.
A set of parameters for Kinetica.filterByBoxGeometry.
async System.Threading.Tasks.Task< AdminShutdownResponse > AdminShutdownAsync(AdminShutdownRequest request_, System.Threading.CancellationToken cancellationToken=default)
Exits the database server application.
A set of string constants for the parameter execution_mode.
Definition: CreateProc.cs:23
UploadFilesFromurlResponse uploadFilesFromurl(IList< string > file_names, IList< string > urls, IDictionary< string, string > options=null)
Uploads one or more files to KiFS.
long total_number_of_records
Total/Filtered number of records.
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.
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< 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 clusteri...
CreateProjectionResponse createProjection(CreateProjectionRequest request_)
Creates a new projection of an existing table.
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.
ShowVideoResponse showVideo(IList< string > paths, IDictionary< string, string > options=null)
Retrieves information about rendered videos.
InsertRecordsRandomResponse insertRecordsRandom(InsertRecordsRandomRequest request_)
Generates a specified number of random records and adds them to the given table.
AdminRebalanceResponse adminRebalance(IDictionary< string, string > options=null)
Rebalance the data in the cluster so that all nodes contain an equal number of records approximately ...
A set of results returned by Kinetica.alterUser.
Definition: AlterUser.cs:182
async System.Threading.Tasks.Task< VisualizeImageChartResponse > VisualizeImageChartAsync(VisualizeImageChartRequest request_, System.Threading.CancellationToken cancellationToken=default)
Scatter plot is the only plot type currently supported.
async System.Threading.Tasks.Task< ShowFilesResponse > ShowFilesAsync(ShowFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
Shows information about files in KiFS.
GrantPermissionSystemResponse grantPermissionSystem(string name, string permission, IDictionary< string, string > options=null)
Grants a system-level permission to a user or role.
A set of parameters for Kinetica.executeProc.
Definition: ExecuteProc.cs:23
A set of results returned by Kinetica.appendRecords.
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.
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.
A set of parameters for Kinetica.alterTier.
Definition: AlterTier.cs:22
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.
A set of results returned by Kinetica.adminHaRefresh.
A set of results returned by Kinetica.adminRemoveRanks.
A set of results returned by Kinetica.alterDatasource.
CreateDatasinkResponse createDatasink(CreateDatasinkRequest request_)
Creates a data sink, which contains the destination information for a data sink that is external to t...
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 tha...
DeleteGraphResponse deleteGraph(DeleteGraphRequest request_)
Deletes an existing graph from the graph server and/or persist.
AlterTableColumnsResponse alterTableColumns(AlterTableColumnsRequest request_)
Apply various modifications to columns in a table, view.
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.
A set of parameters for Kinetica.uploadFilesFromurl.
ShowDatasourceResponse showDatasource(string name, IDictionary< string, string > options=null)
Shows information about a specified data source or all data sources.
IList< string > expressions
A list of the actual predicates, one for each update; format should follow the guidelines here.
A set of parameters for Kinetica.alterCredential.
IList< KineticaRecord > data
Avro binary encoded response.
ShowDatasourceResponse showDatasource(ShowDatasourceRequest request_)
Shows information about a specified data source or all data sources.
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....
ShowSystemTimingResponse showSystemTiming(IDictionary< string, string > options=null)
Returns the last 100 database requests along with the request timing and internal job ID.
A set of parameters for Kinetica.repartitionGraph.
AdminAlterHostResponse adminAlterHost(AdminAlterHostRequest request_)
Alter properties on an existing host in the cluster.
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 .
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.
UploadFilesResponse uploadFiles(IList< string > file_names, IList< byte[]> file_data, IDictionary< string, string > options=null)
Uploads one or more files to KiFS.
AlterBackupResponse alterBackup(AlterBackupRequest request_)
Alters an existing database backup, accessible via the data sink specified by datasink_name.
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.
A set of results returned by Kinetica.showSystemProperties.
A set of parameters for Kinetica.insertRecordsFromFiles.
async System.Threading.Tasks.Task< AlterDatasourceResponse > AlterDatasourceAsync(AlterDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alters the properties of an existing data source.
AlterTierResponse alterTier(AlterTierRequest request_)
Alters properties of an existing tier to facilitate resource management.
ShowTableResponse showTable(string table_name, IDictionary< string, string > options=null)
Retrieves detailed information about a table, view, or schema, specified in table_name .
AdminShowClusterOperationsResponse adminShowClusterOperations(AdminShowClusterOperationsRequest request_)
Requests the detailed status of the current operation (by default) or a prior cluster operation speci...
A set of results returned by Kinetica.clearTableMonitor.
A set of parameters for Kinetica.insertRecordsRaw.
A set of results returned by Kinetica.hasType.
Definition: HasType.cs:48
A set of parameters for Kinetica.killProc.
Definition: KillProc.cs:15
A set of results returned by Kinetica.deleteRecords.
AlterResourceGroupResponse alterResourceGroup(AlterResourceGroupRequest request_)
Alters the properties of an existing resource group to facilitate resource management.
AdminShowJobsResponse adminShowJobs(AdminShowJobsRequest request_)
Get a list of the current jobs in GPUdb.
InsertRecordsResponse insertRecordsRaw(RawInsertRecordsRequest request_)
Adds multiple records to the specified table.
DropBackupResponse dropBackup(DropBackupRequest request_)
Deletes one or more existing database backups and contained snapshots, accessible via the data sink s...
A set of parameters for Kinetica.createTriggerByRange.
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 speci...
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 adjace...
string response_schema_str
Avro schema of binary_encoded_response or json_encoded_response.
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 access...
A set of parameters for Kinetica.createTableMonitor.
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.
const string STATUS
Show locked status.
Definition: LockTable.cs:36
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.
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< ShowDirectoriesResponse > ShowDirectoriesAsync(ShowDirectoriesRequest request_, System.Threading.CancellationToken cancellationToken=default)
Shows information about directories in KiFS.
byte [] binary_encoded_response
Avro binary encoded response.
byte [] binary_encoded_response
Avro binary encoded response.
A set of results returned by Kinetica.filterByAreaGeometry.
CreateRoleResponse createRole(CreateRoleRequest request_)
Creates a new role.
HasTableResponse hasTable(HasTableRequest request_)
Checks for the existence of a table with the given name.
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.
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...
CreateProcResponse createProc(CreateProcRequest request_)
Creates an instance (proc) of the user-defined functions (UDF) specified by the given command,...
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 ...
CreateEnvironmentResponse createEnvironment(CreateEnvironmentRequest request_)
Creates a new environment which can be used by user-defined functions (UDF).
A set of parameters for Kinetica.alterResourceGroup.
IList< string > type_ids
Type IDs of the respective tables in table_names.
Definition: ShowTable.cs:1185
async System.Threading.Tasks.Task< RevokePermissionDirectoryResponse > RevokePermissionDirectoryAsync(RevokePermissionDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
Revokes a KiFS directory-level permission from a user or role.
AdminSendAlertResponse adminSendAlert(string message, string label, string log_level, IDictionary< string, string > options=null)
Sends a user generated alert to the monitoring system.
ShowWalResponse showWal(ShowWalRequest request_)
Requests table write-ahead log (WAL) properties.Returns information about the requested table WAL ent...
string table_name
The same table name as was passed in the parameter list.
FilterByStringResponse filterByString(FilterByStringRequest request_)
Calculates which objects from a table or view match a string expression for the given string columns.
FilterByRadiusGeometryResponse filterByRadiusGeometry(FilterByRadiusGeometryRequest request_)
Calculates which geospatial geometry objects from a table intersect a circle with the given radius an...
async System.Threading.Tasks.Task< AdminAddHostResponse > AdminAddHostAsync(AdminAddHostRequest request_, System.Threading.CancellationToken cancellationToken=default)
Adds a host to an existing cluster.
long total_number_of_records
Total/Filtered number of records.
DeleteUserResponse deleteUser(string name, IDictionary< string, string > options=null)
Deletes an existing user.
A set of results returned by Kinetica.adminRepairTable.
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 modific...
AlterRoleResponse alterRole(AlterRoleRequest request_)
Alters a Role.
async System.Threading.Tasks.Task< DropCredentialResponse > DropCredentialAsync(string credential_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Drop an existing credential.
ShowProcStatusResponse showProcStatus(string run_id="", IDictionary< string, string > options=null)
Shows the statuses of running or completed proc instances.
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....
async System.Threading.Tasks.Task< AdminSendAlertResponse > AdminSendAlertAsync(AdminSendAlertRequest request_, System.Threading.CancellationToken cancellationToken=default)
Sends a user generated alert to the monitoring system.
A set of results returned by Kinetica.createGraph.
Definition: CreateGraph.cs:721
A set of results returned by Kinetica.insertRecordsFromQuery.
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.
long total_number_of_records
Total/Filtered number of records.
IList< string > expressions
A list of the actual predicates, one for each update; format should follow the guidelines here.
A set of results returned by Kinetica.repartitionGraph.
AggregateUniqueResponse aggregateUnique(AggregateUniqueRequest request_)
Returns all the unique values from a particular column (specified by column_name) of a particular tab...
FilterByBoxGeometryResponse filterByBoxGeometry(FilterByBoxGeometryRequest request_)
Calculates which geospatial geometry objects from a table intersect a rectangular box.
AlterDatasinkResponse alterDatasink(AlterDatasinkRequest request_)
Alters the properties of an existing data sink.
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.
CreateResourceGroupResponse createResourceGroup(CreateResourceGroupRequest request_)
Creates a new resource group to facilitate resource management.
A set of results returned by Kinetica.insertSymbol.
async System.Threading.Tasks.Task< RevokePermissionDatasourceResponse > RevokePermissionDatasourceAsync(RevokePermissionDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
Revokes a data source permission from a user or role.
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< ShowSystemTimingResponse > ShowSystemTimingAsync(ShowSystemTimingRequest request_, System.Threading.CancellationToken cancellationToken=default)
Returns the last 100 database requests along with the request timing and internal job ID.
ShowProcResponse showProc(string proc_name="", IDictionary< string, string > options=null)
Shows information about a proc.
A set of parameters for Kinetica.adminShutdown.
string table_name
Typically shows the result-table name if provided in the request (Ignore otherwise).
async System.Threading.Tasks.Task< AdminSwitchoverResponse > AdminSwitchoverAsync(AdminSwitchoverRequest request_, System.Threading.CancellationToken cancellationToken=default)
Manually switch over one or more processes to another host.
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< GrantPermissionProcResponse > GrantPermissionProcAsync(GrantPermissionProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
Grants a proc-level permission to a user or role.
IList< IList< T > > data
If the encoding parameter of the request was 'binary' then this list-of-lists contains the binary enc...
FilterByAreaResponse filterByArea(FilterByAreaRequest request_)
Calculates which objects from a table are within a named area of interest (NAI/polygon).
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.
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/pol...
ShowTableResponse showTable(ShowTableRequest request_)
Retrieves detailed information about a table, view, or schema, specified in table_name.
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.
A set of results returned by Kinetica.showFiles.
Definition: ShowFiles.cs:60
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).
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 t...
async System.Threading.Tasks.Task< ShowSystemStatusResponse > ShowSystemStatusAsync(ShowSystemStatusRequest request_, System.Threading.CancellationToken cancellationToken=default)
Provides server configuration and health related status to the caller.
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 speci...
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 speci...
A set of results returned by Kinetica.createResourceGroup.
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.
CreateJobResponse createJob(string endpoint, string request_encoding, byte[] data, string data_str, IDictionary< string, string > options=null)
Create a job which will run asynchronously.
A set of results returned by Kinetica.clearTrigger.
Definition: ClearTrigger.cs:48
A set of parameters for Kinetica.checkTable.
Definition: CheckTable.cs:22
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 ...
IDictionary< string, string > info
Additional information.
Definition: GetRecords.cs:432
async System.Threading.Tasks.Task< UpdateRecordsResponse > UpdateRecordsRawAsync(RawUpdateRecordsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Runs multiple predicate-based updates in a single call.
A set of parameters for Kinetica.insertSymbol.
Definition: InsertSymbol.cs:24
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/pol...
A set of results returned by Kinetica.aggregateUnpivot.
A set of results returned by Kinetica.createJoinTable.
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.
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.
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< AdminOfflineResponse > AdminOfflineAsync(bool offline, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Take the system offline.
A set of results returned by Kinetica.alterResourceGroup.
RevokePermissionDirectoryResponse revokePermissionDirectory(RevokePermissionDirectoryRequest request_)
Revokes a KiFS directory-level permission from a user or role.
AdminAddHostResponse adminAddHost(string host_address, IDictionary< string, string > options=null)
Adds a host to an existing cluster.
async System.Threading.Tasks.Task< CreateCredentialResponse > CreateCredentialAsync(CreateCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
Create a new credential.
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< DropCredentialResponse > DropCredentialAsync(DropCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
Drop an existing credential.
A set of results returned by Kinetica.alterRole.
Definition: AlterRole.cs:110
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 .
VisualizeImageChartResponse visualizeImageChart(VisualizeImageChartRequest request_)
Scatter plot is the only plot type currently supported.
async System.Threading.Tasks.Task< DropDatasinkResponse > DropDatasinkAsync(DropDatasinkRequest request_, System.Threading.CancellationToken cancellationToken=default)
Drops an existing data sink.
A set of parameters for Kinetica.createJoinTable.
const string API_VERSION
A set of parameters for Kinetica.dropCatalog.
Definition: DropCatalog.cs:16
A set of parameters for Kinetica.showGraph.
Definition: ShowGraph.cs:16
A set of parameters for Kinetica.showBackup.
Definition: ShowBackup.cs:19
A set of parameters for Kinetica.insertRecordsRandom.
A set of parameters for Kinetica.showEnvironment.
A set of parameters for Kinetica.alterDirectory.
IDictionary< string, string > info
Additional information.
IList< KineticaRecord > data
Avro binary encoded response.
Convenience class for using Avro.Generic.GenericRecord objects.
A set of results returned by Kinetica.createDirectory.
A set of parameters for Kinetica.matchGraph.
Definition: MatchGraph.cs:24
ExportQueryMetricsResponse exportQueryMetrics(ExportQueryMetricsRequest request_)
Export query metrics to a given destination.Returns query metrics.
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.
DeleteGraphResponse deleteGraph(string graph_name, IDictionary< string, string > options=null)
Deletes an existing graph from the graph server and/or persist.
AlterSchemaResponse alterSchema(AlterSchemaRequest request_)
Used to change the name of a SQL-style schema, specified in schema_name.
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.
A set of results returned by Kinetica.adminHaOffline.
A set of parameters for Kinetica.updateRecords.
AggregateHistogramResponse aggregateHistogram(AggregateHistogramRequest request_)
Performs a histogram calculation given a table, a column, and an interval function.
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< 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.
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< GrantPermissionTableResponse > GrantPermissionTableAsync(string name, string permission, string table_name, string filter_expression="", IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Grants a table-level permission to a user or role.
DropEnvironmentResponse dropEnvironment(string environment_name, IDictionary< string, string > options=null)
Drop an existing user-defined function (UDF) environment.
GetJobResponse getJob(long job_id, IDictionary< string, string > options=null)
Get the status and result of asynchronously running job.
A set of parameters for Kinetica.showTriggers.
Definition: ShowTriggers.cs:16
ShowSecurityResponse showSecurity(IList< string > names, IDictionary< string, string > options=null)
Shows security information relating to users and/or roles.
A set of results returned by Kinetica.dropCredential.
A set of parameters for Kinetica.adminAddHost.
Definition: AdminAddHost.cs:15
async System.Threading.Tasks.Task< DropSchemaResponse > DropSchemaAsync(DropSchemaRequest request_, System.Threading.CancellationToken cancellationToken=default)
Drops an existing SQL-style schema, specified in schema_name.
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< 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.
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.
GrantPermissionSystemResponse grantPermissionSystem(GrantPermissionSystemRequest request_)
Grants a system-level permission to a user or role.
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.
A set of results returned by Kinetica.showTablesByType.
long count_affected
The number of objects/records affected.
Definition: ExecuteSql.cs:1604
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 .
IList< string > type_ids
Definition: ShowTypes.cs:127
KillProcResponse killProc(string run_id="", IDictionary< string, string > options=null)
Kills a running proc instance.
ShowTableMonitorsResponse showTableMonitors(ShowTableMonitorsRequest request_)
Show table monitors and their properties.
FilterByRadiusResponse filterByRadius(FilterByRadiusRequest request_)
Calculates which objects from a table lie within a circle with the given radius and center point (i....
A set of results returned by Kinetica.grantPermissionDirectory.
async System.Threading.Tasks.Task< DropCatalogResponse > DropCatalogAsync(DropCatalogRequest request_, System.Threading.CancellationToken cancellationToken=default)
Drops an existing catalog.
A set of parameters for Kinetica.adminRemoveHost.
A set of parameters for Kinetica.filterByValue.
DeleteRoleResponse deleteRole(DeleteRoleRequest request_)
Deletes an existing role.
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< RevokePermissionProcResponse > RevokePermissionProcAsync(string name, string permission, string proc_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Revokes a proc-level permission from a user or role.
A set of parameters for Kinetica.grantPermissionSystem.
A set of results returned by Kinetica.uploadFilesFromurl.
A set of results returned by Kinetica.filterByBoxGeometry.
async System.Threading.Tasks.Task< GrantPermissionSystemResponse > GrantPermissionSystemAsync(string name, string permission, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Grants a system-level permission to a user or role.
A set of results returned by Kinetica.solveGraph.
Definition: SolveGraph.cs:1107
async System.Threading.Tasks.Task< GetJobResponse > GetJobAsync(GetJobRequest request_, System.Threading.CancellationToken cancellationToken=default)
Get the status and result of asynchronously running job.
AdminBackupEndResponse adminBackupEnd(IDictionary< string, string > options=null)
Restores the system to normal operating mode after a backup has completed, allowing any queries that ...
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< 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.
async System.Threading.Tasks.Task< RevokePermissionSystemResponse > RevokePermissionSystemAsync(string name, string permission, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Revokes a system-level permission from a user or role.
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.
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.
A set of results returned by Kinetica.executeSql.
Definition: ExecuteSql.cs:1576
async System.Threading.Tasks.Task< ShowProcResponse > ShowProcAsync(ShowProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
Shows information about a proc.
async System.Threading.Tasks.Task< CreateProjectionResponse > CreateProjectionAsync(CreateProjectionRequest request_, System.Threading.CancellationToken cancellationToken=default)
Creates a new projection of an existing table.
A set of parameters for Kinetica.filterByRadius.
A set of results returned by Kinetica.showDatasink.
Definition: ShowDatasink.cs:55
A set of results returned by Kinetica.filterByGeometry.
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 vie...
A set of parameters for Kinetica.aggregateMinMax.
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,...
AlterTierResponse alterTier(string name, IDictionary< string, string > options=null)
Alters properties of an existing tier to facilitate resource management.
IList< string > type_names
The type IDs (one per series/track) of the returned series/tracks.
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.
A set of parameters for Kinetica.aggregateStatistics.
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).
A set of results returned by Kinetica.adminRebalance.
A set of parameters for Kinetica.filterBySeries.
GrantPermissionCredentialResponse grantPermissionCredential(GrantPermissionCredentialRequest request_)
Grants a credential-level permission to a user or role.
A set of parameters for Kinetica.deleteProc.
Definition: DeleteProc.cs:16
IList< IList< byte[]> > list_records_binary
If the encoding parameter of the request was 'binary' then this list-of-lists contains the binary enc...
GrantPermissionTableResponse grantPermissionTable(GrantPermissionTableRequest request_)
Grants a table-level permission to a user or role.
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.
A set of parameters for Kinetica.clearTable.
Definition: ClearTable.cs:19
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).
A set of results returned by Kinetica.aggregateConvexHull.
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).
CreateTriggerByRangeResponse createTriggerByRange(CreateTriggerByRangeRequest request_)
Sets up a simple range trigger for a column_name for one or more tables.
A set of parameters for Kinetica.createCredential.
A set of results returned by Kinetica.dropCatalog.
Definition: DropCatalog.cs:49
A set of results returned by Kinetica.createUserExternal.
A set of results returned by Kinetica.adminVerifyDb.
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 .
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.
A set of results returned by Kinetica.aggregateStatisticsByRange.
DeleteResourceGroupResponse deleteResourceGroup(DeleteResourceGroupRequest request_)
Deletes a resource group.
A set of parameters for Kinetica.alterTableMonitor.
A set of parameters for Kinetica.visualizeIsochrone.
async System.Threading.Tasks.Task< UploadFilesResponse > UploadFilesAsync(UploadFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
Uploads one or more files to KiFS.
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.
A set of parameters for Kinetica.createUnion.
Definition: CreateUnion.cs:31
A set of results returned by Kinetica.visualizeImageChart.
VisualizeIsochroneResponse visualizeIsochrone(VisualizeIsochroneRequest request_)
Generate an image containing isolines for travel results using an existing graph.
A set of parameters for Kinetica.hasRole.
Definition: HasRole.cs:15
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.
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 underlyin...
ShowDatasinkResponse showDatasink(string name, IDictionary< string, string > options=null)
Shows information about a specified data sink or all data sinks.
A set of results returned by Kinetica.aggregateHistogram.
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 externall...
AlterRoleResponse alterRole(string name, string action, string _value, IDictionary< string, string > options=null)
Alters a 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)
Revokes a data source permission from a user or role.
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.
A set of parameters for Kinetica.hasTable.
Definition: HasTable.cs:16
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.
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).
A set of results returned by Kinetica.filterByArea.
ModifyGraphResponse modifyGraph(ModifyGraphRequest request_)
Update an existing graph network using given nodes, edges, weights, restrictions, and options.
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< ShowResourceGroupsResponse > ShowResourceGroupsAsync(ShowResourceGroupsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Requests resource group properties.Returns detailed information about the requested resource groups.
IList< IDictionary< string, IList< string > > > properties
Property maps of the respective tables in table_names.
Definition: ShowTable.cs:1197
RevokePermissionTableResponse revokePermissionTable(RevokePermissionTableRequest request_)
Revokes a table-level permission from a user or role.
HasPermissionResponse hasPermission(HasPermissionRequest request_)
Checks if the specified user has the specified permission on the specified object.
KillProcResponse killProc(KillProcRequest request_)
Kills a running proc instance.
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.
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,...
ShowSystemTimingResponse showSystemTiming(ShowSystemTimingRequest request_)
Returns the last 100 database requests along with the request timing and internal job ID.
long total_number_of_records
Total/Filtered number of records.
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.
ShowCredentialResponse showCredential(ShowCredentialRequest request_)
Shows information about a specified credential or all credentials.
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.
InsertRecordsFromQueryResponse insertRecordsFromQuery(InsertRecordsFromQueryRequest request_)
Computes remote query result and inserts the result data into a new or existing table.
A set of results returned by Kinetica.revokePermissionDatasource.
A set of results returned by Kinetica.getJob.
Definition: GetJob.cs:72
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.
A set of parameters for Kinetica.createEnvironment.
string response_schema_str
Avro schema of binary_encoded_response or json_encoded_response.
A set of parameters for Kinetica.deleteRecords.
async System.Threading.Tasks.Task< AdminAddRanksResponse > AdminAddRanksAsync(AdminAddRanksRequest request_, System.Threading.CancellationToken cancellationToken=default)
Add one or more ranks to an existing Kinetica cluster.
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.
A set of parameters for Kinetica.adminAlterJobs.
AlterTableMonitorResponse alterTableMonitor(AlterTableMonitorRequest request_)
Alters a table monitor previously created with createTableMonitor.
A set of parameters for Kinetica.exportQueryMetrics.
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 ...
A set of results returned by Kinetica.showTypes.
Definition: ShowTypes.cs:125
async System.Threading.Tasks.Task< AdminVerifyDbResponse > AdminVerifyDbAsync(AdminVerifyDbRequest request_, System.Threading.CancellationToken cancellationToken=default)
Verify database is in a consistent state.
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.
A set of results returned by Kinetica.insertRecords.
A set of parameters for Kinetica.showStatistics.
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.
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.
IList< string > record_ids
If the 'return_record_ids' option of the request was 'true', then this list contains the internal ID ...
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).
A set of results returned by Kinetica.getGraphEntities.
RevokePermissionCredentialResponse revokePermissionCredential(RevokePermissionCredentialRequest request_)
Revokes a credential-level permission from a user or role.
A set of parameters for Kinetica.createJob.
Definition: CreateJob.cs:19
async System.Threading.Tasks.Task< ExecuteSqlResponse > ExecuteSqlAsync(ExecuteSqlRequest request_, System.Threading.CancellationToken cancellationToken=default)
Execute a SQL statement (query, DML, or DDL).
async System.Threading.Tasks.Task< ClearTablesResponse > ClearTablesAsync(ClearTablesRequest request_, System.Threading.CancellationToken cancellationToken=default)
Clears (drops) tables in the database cluster.
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.
async System.Threading.Tasks.Task< ShowTableMonitorsResponse > ShowTableMonitorsAsync(ShowTableMonitorsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Show table monitors and their properties.
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 .
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.
A set of results returned by Kinetica.showBackup.
Definition: ShowBackup.cs:332
LockTableResponse lockTable(string table_name, string lock_type=LockTableRequest.LockType.STATUS, IDictionary< string, string > options=null)
Manages global access to a table's data.
A set of results returned by Kinetica.grantPermissionCredential.
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.
IList< byte[]> records_binary
If the encoding parameter of the request was 'binary' then this list contains the binary encoded reco...
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).
ShowResourceGroupsResponse showResourceGroups(ShowResourceGroupsRequest request_)
Requests resource group properties.Returns detailed information about the requested resource groups.
GrantPermissionResponse grantPermission(GrantPermissionRequest request_)
Grant user or role the specified permission on the specified object.
IList< IDictionary< string, string > > new_values_maps
List of new values for the matching records.
bool has_more_records
Too many records.
Definition: ExecuteSql.cs:1709
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< 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 t...
A set of results returned by Kinetica.hasSchema.
Definition: HasSchema.cs:52
A set of results returned by Kinetica.clearTables.
Definition: ClearTables.cs:133
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.
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 .
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< CreateTableMonitorResponse > CreateTableMonitorAsync(CreateTableMonitorRequest request_, System.Threading.CancellationToken cancellationToken=default)
Creates a monitor that watches for a single table modification event type (insert,...
A set of results returned by Kinetica.aggregateKMeans.
A set of results returned by Kinetica.adminShowClusterOperations.
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< ShowVideoResponse > ShowVideoAsync(ShowVideoRequest request_, System.Threading.CancellationToken cancellationToken=default)
Retrieves information about rendered videos.
A set of results returned by Kinetica.createEnvironment.
A set of results returned by Kinetica.adminOffline.
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.
A set of results returned by Kinetica.clearStatistics.
ShowProcStatusResponse showProcStatus(ShowProcStatusRequest request_)
Shows the statuses of running or completed proc instances.
DeleteDirectoryResponse deleteDirectory(DeleteDirectoryRequest request_)
Deletes a directory from KiFS.
async System.Threading.Tasks.Task< LockTableResponse > LockTableAsync(LockTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
Manages global access to a table's data.
A set of results returned by Kinetica.exportQueryMetrics.
A set of parameters for Kinetica.showFiles.
Definition: ShowFiles.cs:18
ShowStatisticsResponse showStatistics(ShowStatisticsRequest request_)
Retrieves the collected column statistics for the specified table(s).
A set of results returned by Kinetica.grantPermissionDatasource.
ShowSqlProcResponse showSqlProc(string procedure_name="", IDictionary< string, string > options=null)
Shows information about SQL procedures, including the full definition of each requested procedure.
A set of results returned by Kinetica.grantPermissionTable.
AdminBackupEndResponse adminBackupEnd(AdminBackupEndRequest request_)
Restores the system to normal operating mode after a backup has completed, allowing any queries that ...
A set of results returned by Kinetica.aggregateGroupBy.
RevokeRoleResponse revokeRole(RevokeRoleRequest request_)
Revokes membership in a role from a user or role.
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.
IList< string > type_schemas
Type schemas of the respective tables in table_names.
Definition: ShowTable.cs:1189
async System.Threading.Tasks.Task< CreateResourceGroupResponse > CreateResourceGroupAsync(CreateResourceGroupRequest request_, System.Threading.CancellationToken cancellationToken=default)
Creates a new resource group to facilitate resource management.
A set of parameters for Kinetica.alterSchema.
Definition: AlterSchema.cs:17
AppendRecordsResponse appendRecords(AppendRecordsRequest request_)
Append (or insert) all records from a source table (specified by source_table_name) to a particular t...
async System.Threading.Tasks.Task< ShowStatisticsResponse > ShowStatisticsAsync(ShowStatisticsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Retrieves the collected column statistics for the specified table(s).
AggregateGroupByResponse aggregateGroupBy(AggregateGroupByRequest request_)
Calculates unique combinations (groups) of values for the given columns in a given table or view and ...
A set of results returned by Kinetica.showSchema.
Definition: ShowSchema.cs:122
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< 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...
A set of parameters for Kinetica.alterEnvironment.
A set of parameters for Kinetica.verifyBackup.
Definition: VerifyBackup.cs:23
A set of parameters for Kinetica.createTable.
Definition: CreateTable.cs:53
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.
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.
async System.Threading.Tasks.Task< GrantPermissionSystemResponse > GrantPermissionSystemAsync(GrantPermissionSystemRequest request_, System.Threading.CancellationToken cancellationToken=default)
Grants a system-level permission to a user or role.
A set of results returned by Kinetica.updateRecords.
async System.Threading.Tasks.Task< AlterCredentialResponse > AlterCredentialAsync(AlterCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alter the properties of an existing credential.
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.
A set of results returned by Kinetica.deleteDirectory.
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.
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.
A set of results returned by Kinetica.aggregateMinMax.
AggregateConvexHullResponse aggregateConvexHull(AggregateConvexHullRequest request_)
Calculates and returns the convex hull for the values in a table specified by table_name.
A set of parameters for Kinetica.filterByString.
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 ent...
const string MARKOV_CHAIN
Matches sample_points to the graph using the Hidden Markov Model (HMM)-based method,...
Definition: MatchGraph.cs:45
A set of results returned by Kinetica.alterCredential.
A set of parameters for Kinetica.showTable.
Definition: ShowTable.cs:41
async System.Threading.Tasks.Task< RevokePermissionSystemResponse > RevokePermissionSystemAsync(RevokePermissionSystemRequest request_, System.Threading.CancellationToken cancellationToken=default)
Revokes a system-level permission from a user or role.
A set of parameters for Kinetica.showSystemProperties.
A set of parameters for Kinetica.deleteFiles.
Definition: DeleteFiles.cs:16
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.
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 s...
AdminRemoveHostResponse adminRemoveHost(string host, IDictionary< string, string > options=null)
Removes a host from an existing cluster.
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.
InsertRecordsFromPayloadResponse insertRecordsFromPayload(InsertRecordsFromPayloadRequest request_)
Reads from the given text-based or binary payload and inserts the data into a new or existing table.
A set of results returned by Kinetica.revokePermissionProc.
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.
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 ...
A set of results returned by Kinetica.showGraph.
Definition: ShowGraph.cs:189
UploadFilesFromurlResponse uploadFilesFromurl(UploadFilesFromurlRequest request_)
Uploads one or more files to KiFS.
HasRoleResponse hasRole(HasRoleRequest request_)
Checks if the specified user has the specified role.
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 .
CreateUnionResponse createUnion(CreateUnionRequest request_)
Merges data from one or more tables with comparable data types into a new 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.
async System.Threading.Tasks.Task< AlterVideoResponse > AlterVideoAsync(string path, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Alters a video.
ShowProcResponse showProc(ShowProcRequest request_)
Shows information about a proc.
ShowSqlProcResponse showSqlProc(ShowSqlProcRequest request_)
Shows information about SQL procedures, including the full definition of each requested procedure.
async System.Threading.Tasks.Task< DropDatasourceResponse > DropDatasourceAsync(DropDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
Drops an existing data source.
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.
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 (object...
Definition: Kinetica.cs:747
A set of results returned by Kinetica.showSystemStatus.
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 an...
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.
bool has_more_records
Too many records.
string table_name
Name of table to be updated, 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 .
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.
async System.Threading.Tasks.Task< DropEnvironmentResponse > DropEnvironmentAsync(DropEnvironmentRequest request_, System.Threading.CancellationToken cancellationToken=default)
Drop an existing user-defined function (UDF) environment.
A set of results returned by Kinetica.showSqlProc.
Definition: ShowSqlProc.cs:119
A set of parameters for Kinetica.createBackup.
Definition: CreateBackup.cs:20
ShowSystemPropertiesResponse showSystemProperties(ShowSystemPropertiesRequest request_)
Returns server configuration and version related information to the caller.
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.
A set of parameters for Kinetica.revokePermissionCredential.
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< 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.
GrantPermissionProcResponse grantPermissionProc(string name, string permission, string proc_name, IDictionary< string, string > options=null)
Grants a proc-level permission to a user or role.
AdminRepairTableResponse adminRepairTable(AdminRepairTableRequest request_)
Manually repair a corrupted table.Returns information about affected tables.
A set of parameters for Kinetica.showTypes.
Definition: ShowTypes.cs:18
FilterByValueResponse filterByValue(FilterByValueRequest request_)
Calculates which objects from a table has a particular value for a particular column.
FilterByAreaGeometryResponse filterByAreaGeometry(FilterByAreaGeometryRequest request_)
Calculates which geospatial geometry objects from a table intersect a named area of interest (NAI/pol...
AggregateStatisticsResponse aggregateStatistics(AggregateStatisticsRequest request_)
Calculates the requested statistics of the given column(s) in a given table.
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< CreateUserInternalResponse > CreateUserInternalAsync(CreateUserInternalRequest request_, System.Threading.CancellationToken cancellationToken=default)
Creates a new internal user (a user whose credentials are managed by the database system).
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,...
A set of results returned by Kinetica.getRecordsFromCollection.
LockTableResponse lockTable(LockTableRequest request_)
Manages global access to a table's data.
async System.Threading.Tasks.Task< DeleteRoleResponse > DeleteRoleAsync(DeleteRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
Deletes an existing role.
async System.Threading.Tasks.Task< DeleteUserResponse > DeleteUserAsync(DeleteUserRequest request_, System.Threading.CancellationToken cancellationToken=default)
Deletes an existing user.
DropDatasinkResponse dropDatasink(DropDatasinkRequest request_)
Drops an existing data sink.
async System.Threading.Tasks.Task< GrantPermissionDatasourceResponse > GrantPermissionDatasourceAsync(GrantPermissionDatasourceRequest request_, System.Threading.CancellationToken cancellationToken=default)
Grants a data source permission to a user or role.
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).
byte [] binary_encoded_response
Avro binary encoded response.
IDictionary< string, string > info
Additional information.
async System.Threading.Tasks.Task< DeleteDirectoryResponse > DeleteDirectoryAsync(DeleteDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
Deletes a directory from KiFS.
IDictionary< string, string > info
Additional information.
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 tab...
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 i...
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....
async System.Threading.Tasks.Task< CreateRoleResponse > CreateRoleAsync(string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Creates a new role.
A set of results returned by Kinetica.createTableExternal.
ShowResourceStatisticsResponse showResourceStatistics(ShowResourceStatisticsRequest request_)
Requests various statistics for storage/memory tiers and resource groups.Returns statistics on a per-...
A set of string constants for the parameter solve_method.
Definition: MatchGraph.cs:30
RevokePermissionDatasourceResponse revokePermissionDatasource(RevokePermissionDatasourceRequest request_)
Revokes a data source permission from a user or role.
A set of results returned by Kinetica.createTableMonitor.
A set of results returned by Kinetica.createCatalog.
A set of results returned by Kinetica.adminShutdown.
IDictionary< string, string > info
Additional information.
RestoreBackupResponse restoreBackup(RestoreBackupRequest request_)
Restores database objects from a backup accessible via the data source specified by datasource_name.
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...
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.
DropCredentialResponse dropCredential(string credential_name, IDictionary< string, string > options=null)
Drop an existing credential.
ShowDatasinkResponse showDatasink(ShowDatasinkRequest request_)
Shows information about a specified data sink or all data sinks.
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.
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).
A set of results returned by Kinetica.createProjection.
ShowTypesResponse showTypes(string type_id, string label, IDictionary< string, string > options=null)
Retrieves information for the specified data type ID or type label.
A set of parameters for Kinetica.grantPermissionProc.
RevokePermissionTableResponse revokePermissionTable(string name, string permission, string table_name, IDictionary< string, string > options=null)
Revokes a table-level permission from a user or role.
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.
ShowStatisticsResponse showStatistics(IList< string > table_names, IDictionary< string, string > options=null)
Retrieves the collected column statistics for the specified table(s).
A set of results returned by Kinetica.alterTable.
Definition: AlterTable.cs:1681
ShowResourceObjectsResponse showResourceObjects(IDictionary< string, string > options=null)
Returns information about the internal sub-components (tiered objects) which use resources of the sys...
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< 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 ent...
A set of parameters for Kinetica.showSqlProc.
Definition: ShowSqlProc.cs:16
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.
A set of results returned by Kinetica.alterTableMonitor.
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.
GetRecordsBySeriesResponse< T > getRecordsBySeries< T >(GetRecordsBySeriesRequest request_)
Retrieves the complete series/track records from the given world_table_name based on the partial trac...
CollectStatisticsResponse collectStatistics(CollectStatisticsRequest request_)
Collect statistics for a column(s) in a specified table.
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,...
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< 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.
ShowSystemStatusResponse showSystemStatus(IDictionary< string, string > options=null)
Provides server configuration and health related status to the caller.
RevokePermissionSystemResponse revokePermissionSystem(string name, string permission, IDictionary< string, string > options=null)
Revokes a system-level permission from a user or role.
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/pol...
A set of parameters for Kinetica.aggregateStatisticsByRange.
A set of results returned by Kinetica.alterBackup.
Definition: AlterBackup.cs:235
A set of results returned by Kinetica.showEnvironment.
string table_name
Value of table_name.
Definition: GetRecords.cs:401
A set of results returned by Kinetica.adminAddHost.
ExecuteSqlResponse executeSql(ExecuteSqlRequest request_)
Execute a SQL statement (query, DML, or DDL).
A set of parameters for Kinetica.hasSchema.
Definition: HasSchema.cs:16
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.
A set of parameters for Kinetica.createResourceGroup.
A set of parameters for Kinetica.adminShowAlerts.
AdminVerifyDbResponse adminVerifyDb(AdminVerifyDbRequest request_)
Verify database is in a consistent state.
A set of results returned by Kinetica.showResourceObjects.
AdminOfflineResponse adminOffline(AdminOfflineRequest request_)
Take the system offline.
async System.Threading.Tasks.Task< ShowCredentialResponse > ShowCredentialAsync(ShowCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
Shows information about a specified credential or all credentials.
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).
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.
RevokePermissionProcResponse revokePermissionProc(RevokePermissionProcRequest request_)
Revokes a proc-level permission from a user or role.
A set of string constants for the parameter lock_type.
Definition: LockTable.cs:33
A set of results returned by Kinetica.showVideo.
Definition: ShowVideo.cs:51
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,...
DeleteDirectoryResponse deleteDirectory(string directory_name, IDictionary< string, string > options=null)
Deletes a directory from KiFS.
long count_affected
The number of objects/records affected.
Definition: ExecuteSql.cs:1691
IList< T > data
If the encoding was 'binary', then this list contains the binary encoded records retrieved from the t...
Definition: GetRecords.cs:455
A set of parameters for Kinetica.revokePermissionProc.
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.
A set of results returned by Kinetica.adminAlterHost.
AdminAddHostResponse adminAddHost(AdminAddHostRequest request_)
Adds a host to an existing cluster.
DownloadFilesResponse downloadFiles(DownloadFilesRequest request_)
Downloads one or more files from KiFS.
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.
A set of parameters for Kinetica.getJob.
Definition: GetJob.cs:18
ShowSystemPropertiesResponse showSystemProperties(IDictionary< string, string > options=null)
Returns server configuration and version related information to the caller.
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 t...
IList< T > data
If the encoding parameter of the request was 'binary' then this list contains the binary encoded reco...
A set of results returned by Kinetica.alterDatasink.
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).
long total_number_of_records
Total/Filtered number of records.
Definition: ExecuteSql.cs:1697
A set of results returned by Kinetica.dropEnvironment.
IList< string > type_names
The type IDs of the corresponding records in data or records_json.
async System.Threading.Tasks.Task< CreateDirectoryResponse > CreateDirectoryAsync(CreateDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
Creates a new directory in KiFS.
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.
A set of parameters for Kinetica.insertRecordsFromPayload.
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.
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 ...
A set of parameters for Kinetica.alterWal.
Definition: AlterWal.cs:17
long total_number_of_records
Total/Filtered number of records.
Definition: GetRecords.cs:425
A set of results returned by Kinetica.showCredential.
A set of results returned by Kinetica.aggregateStatistics.
GetRecordsFromCollectionResponse< T > getRecordsFromCollection< T >(GetRecordsFromCollectionRequest request_)
Retrieves records from a collection.
AlterTableResponse alterTable(AlterTableRequest request_)
Apply various modifications to a table or view.
A set of parameters for Kinetica.revokeRole.
Definition: RevokeRole.cs:16
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< DeleteRecordsResponse > DeleteRecordsAsync(DeleteRecordsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Deletes record(s) matching the provided criteria from the given table.
A set of parameters for Kinetica.adminHaOffline.
A set of results returned by Kinetica.showTable.
Definition: ShowTable.cs:676
A set of parameters for Kinetica.adminRepairTable.
FilterResponse filter(string table_name, string view_name, string expression, IDictionary< string, string > options=null)
Filters data based on the specified expression.
ShowFilesResponse showFiles(ShowFilesRequest request_)
Shows information about files in KiFS.
IDictionary< string, string > info
Additional information.
A set of results returned by Kinetica.deleteFiles.
Definition: DeleteFiles.cs:120
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.
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.
IList< string > type_schemas
The type schemas (one per series/track) of the returned series/tracks.
A set of parameters for Kinetica.showTablesByType.
async System.Threading.Tasks.Task< DeleteResourceGroupResponse > DeleteResourceGroupAsync(string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Deletes a resource group.
async System.Threading.Tasks.Task< ClearTableMonitorResponse > ClearTableMonitorAsync(ClearTableMonitorRequest request_, System.Threading.CancellationToken cancellationToken=default)
Deactivates a table monitor previously created with createTableMonitor.
string paging_table
Name of the table that has the result records of the query.
Definition: ExecuteSql.cs:1638
A set of results returned by Kinetica.createDatasource.
async System.Threading.Tasks.Task< ShowProcStatusResponse > ShowProcStatusAsync(ShowProcStatusRequest request_, System.Threading.CancellationToken cancellationToken=default)
Shows the statuses of running or completed proc instances.
CreateCredentialResponse createCredential(CreateCredentialRequest request_)
Create a new credential.
A set of parameters for Kinetica.dropCredential.
CreateSchemaResponse createSchema(string schema_name, IDictionary< string, string > options=null)
Creates a SQL-style schema.
ClearTriggerResponse clearTrigger(string trigger_id, IDictionary< string, string > options=null)
Clears or cancels the trigger identified by the specified handle.
AlterSystemPropertiesResponse alterSystemProperties(AlterSystemPropertiesRequest request_)
The alterSystemProperties endpoint is primarily used to simplify the testing of the system and is not...
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 ...
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.
ShowDirectoriesResponse showDirectories(string directory_name="", IDictionary< string, string > options=null)
Shows information about directories in KiFS.
A set of parameters for Kinetica.aggregateMinMaxGeometry.
A set of parameters for Kinetica.alterTable.
Definition: AlterTable.cs:54
A set of parameters for Kinetica.createUserInternal.
bool has_more_records
Too many records.
A set of string constants for the parameter ranking.
DeleteUserResponse deleteUser(DeleteUserRequest request_)
Deletes an existing user.
GrantPermissionDirectoryResponse grantPermissionDirectory(string name, string permission, string directory_name, IDictionary< string, string > options=null)
Grants a KiFS directory-level permission to a user or role.
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.
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).
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.
A set of parameters for Kinetica.showTableMetadata.
DeleteRecordsResponse deleteRecords(string table_name, IList< string > expressions, IDictionary< string, string > options=null)
Deletes record(s) matching the provided criteria from the given table.
HasTypeResponse hasType(HasTypeRequest request_)
Check for the existence of a type.
ClearTableMonitorResponse clearTableMonitor(string topic_id, IDictionary< string, string > options=null)
Deactivates a table monitor previously created with createTableMonitor.
HasProcResponse hasProc(HasProcRequest request_)
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< AdminAlterHostResponse > AdminAlterHostAsync(AdminAlterHostRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alter properties on an existing host in the cluster.
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.
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< 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).
async System.Threading.Tasks.Task< DeleteUserResponse > DeleteUserAsync(string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Deletes an existing user.
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_na...
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).
A set of results returned by Kinetica.insertRecordsFromFiles.
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 geomet...
IDictionary< string, string > info
Additional information.
AdminShowShardsResponse adminShowShards(IDictionary< string, string > options=null)
Show the mapping of shards to the corresponding rank and tom.
A set of parameters for Kinetica.filterByList.
Definition: FilterByList.cs:28
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.
A set of parameters for Kinetica.createTriggerByArea.
A set of parameters for Kinetica.revokePermissionDatasource.
DropCredentialResponse dropCredential(DropCredentialRequest request_)
Drop an existing credential.
async System.Threading.Tasks.Task< AlterUserResponse > AlterUserAsync(AlterUserRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alters a user.
A set of parameters for Kinetica.exportRecordsToFiles.
string table_name
The same table name as was passed in the parameter list.
async System.Threading.Tasks.Task< ShowTableMetadataResponse > ShowTableMetadataAsync(ShowTableMetadataRequest request_, System.Threading.CancellationToken cancellationToken=default)
Retrieves the user provided metadata for the specified tables.
DropSchemaResponse dropSchema(string schema_name, IDictionary< string, string > options=null)
Drops an existing SQL-style schema, specified in schema_name .
A set of results returned by Kinetica.createJob.
Definition: CreateJob.cs:165
DropCatalogResponse dropCatalog(DropCatalogRequest request_)
Drops an existing catalog.
HasRoleResponse hasRole(string principal, string role, IDictionary< string, string > options=null)
Checks if the specified user has the specified role.
A set of parameters for Kinetica.grantPermissionTable.
A set of results returned by Kinetica.deleteRole.
Definition: DeleteRole.cs:48
ShowSchemaResponse showSchema(ShowSchemaRequest request_)
Retrieves information about a schema (or all schemas), as specified in schema_name.
A set of parameters for Kinetica.insertRecords.
async System.Threading.Tasks.Task< GrantRoleResponse > GrantRoleAsync(GrantRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
Grants membership in a role to a user or role.
GrantPermissionProcResponse grantPermissionProc(GrantPermissionProcRequest request_)
Grants a proc-level permission to a user or role.
async System.Threading.Tasks.Task< CreateJobResponse > CreateJobAsync(CreateJobRequest request_, System.Threading.CancellationToken cancellationToken=default)
Create a job which will run asynchronously.
IList< byte[]> records_binary
If the encoding was 'binary', then this list contains the binary encoded records retrieved from the t...
Definition: GetRecords.cs:412
async System.Threading.Tasks.Task< DownloadFilesResponse > DownloadFilesAsync(DownloadFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
Downloads one or more files from KiFS.
A set of string constants for the parameter solver_type.
Definition: SolveGraph.cs:31
A set of parameters for Kinetica.modifyGraph.
Definition: ModifyGraph.cs:21
AlterVideoResponse alterVideo(AlterVideoRequest request_)
Alters a video.
A set of results returned by Kinetica.filterByRadius.
A set of parameters for Kinetica.dropEnvironment.
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.
AdminHaOfflineResponse adminHaOffline(bool offline, IDictionary< string, string > options=null)
Pauses consumption of messages from other HA clusters to support data repair/recovery scenarios.
A set of parameters for Kinetica.alterDatasink.
A set of parameters for Kinetica.showVideo.
Definition: ShowVideo.cs:16
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).
A set of results returned by Kinetica.exportRecordsToTable.
AggregateStatisticsByRangeResponse aggregateStatisticsByRange(AggregateStatisticsByRangeRequest request_)
Divides the given set into bins and calculates statistics of the values of a value-column in each bin...
A set of parameters for Kinetica.restoreBackup.
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 clusteri...
DropEnvironmentResponse dropEnvironment(DropEnvironmentRequest request_)
Drop an existing user-defined function (UDF) environment.
const string SHORTEST_PATH
Solves for the optimal (shortest) path based on weights and restrictions from one source to destinati...
Definition: SolveGraph.cs:36
A set of parameters for Kinetica.showCredential.
string table_name
The same table name as was passed in the parameter list.
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< 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.
A set of results returned by Kinetica.aggregateMinMaxGeometry.
string type_schema
Avro schema of records_binary or records_json.
Definition: GetRecords.cs:407
GrantPermissionTableResponse grantPermissionTable(string name, string permission, string table_name, string filter_expression="", IDictionary< string, string > options=null)
Grants a table-level permission to a user or role.
A set of parameters for Kinetica.adminSwitchover.
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.
A set of parameters for Kinetica.alterTableMetadata.
A set of results returned by Kinetica.filterByRange.
A set of results returned by Kinetica.hasRole.
Definition: HasRole.cs:182
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< 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).
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.
HasTableResponse hasTable(string table_name, IDictionary< string, string > options=null)
Checks for the existence of a table with the given name.
FilterByBoxResponse filterByBox(FilterByBoxRequest request_)
Calculates how many objects within the given table lie in a rectangular box.
IDictionary< string, string > info
Additional information.
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 geomet...
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.
A set of results returned by Kinetica.getRecordsBySeries.
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 adjace...
A set of parameters for Kinetica.showResourceObjects.
A set of results returned by Kinetica.insertRecordsFromPayload.
IList< KineticaRecord > data
Avro binary encoded response.
A set of parameters for Kinetica.getRecordsFromCollection.
A set of results returned by Kinetica.dropDatasource.
GrantPermissionCredentialResponse grantPermissionCredential(string name, string permission, string credential_name, IDictionary< string, string > options=null)
Grants a credential-level permission to a user or role.
AdminAlterHostResponse adminAlterHost(string host, IDictionary< string, string > options=null)
Alter properties on an existing host in the cluster.
A set of parameters for Kinetica.appendRecords.
bool has_more_records
Too many records.
A set of results returned by Kinetica.alterVideo.
Definition: AlterVideo.cs:71
A set of parameters for Kinetica.dropBackup.
Definition: DropBackup.cs:19
A set of results returned by Kinetica.createSchema.
ShowSecurityResponse showSecurity(ShowSecurityRequest request_)
Shows security information relating to users and/or roles.
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 externall...
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.
bool has_more_records
Too many records.
Definition: GetRecords.cs:462
UpdateRecordsResponse updateRecords< T >(UpdateRecordsRequest< T > request_)
Runs multiple predicate-based updates in a single call.
InsertRecordsResponse insertRecords< T >(InsertRecordsRequest< T > request_)
Adds multiple records to the specified table.
GetRecordsByColumnResponse getRecordsByColumn(GetRecordsByColumnRequest request_)
For a given table, retrieves the values from the requested column(s).
A set of results returned by Kinetica.getRecords.
Definition: GetRecords.cs:397
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.
A set of parameters for Kinetica.dropDatasink.
Definition: DropDatasink.cs:21
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.
CreateDirectoryResponse createDirectory(CreateDirectoryRequest request_)
Creates a new directory in KiFS.
async System.Threading.Tasks.Task< HasProcResponse > HasProcAsync(HasProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
Checks the existence of a proc with the given name.
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....
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 tha...
A set of results returned by Kinetica.getRecordsFromCollection.
async System.Threading.Tasks.Task< GrantPermissionProcResponse > GrantPermissionProcAsync(string name, string permission, string proc_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Grants a proc-level permission to a user or role.
A set of results returned by Kinetica.dropDatasink.
CreateUserExternalResponse createUserExternal(CreateUserExternalRequest request_)
Creates a new external user (a user whose credentials are managed by an external LDAP).
A set of results returned by Kinetica.killProc.
Definition: KillProc.cs:160
A set of results returned by Kinetica.adminShowJobs.
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.
A set of results returned by Kinetica.alterWal.
Definition: AlterWal.cs:422
CreateTableMonitorResponse createTableMonitor(CreateTableMonitorRequest request_)
Creates a monitor that watches for a single table modification event type (insert,...
A set of results returned by Kinetica.hasProc.
Definition: HasProc.cs:46
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 underlyin...
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).
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.
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 access...
A set of results returned by Kinetica.createProc.
Definition: CreateProc.cs:240
A set of parameters for Kinetica.adminAlterHost.
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.
A set of parameters for Kinetica.filterByArea.
Definition: FilterByArea.cs:21
async System.Threading.Tasks.Task< AlterTableResponse > AlterTableAsync(AlterTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
Apply various modifications to a table or view.
IList< string > type_names
The type IDs (one per series/track) of the returned series/tracks.
ExportRecordsToTableResponse exportRecordsToTable(ExportRecordsToTableRequest request_)
Exports records from source table to the specified target table in an external database.
AdminAddRanksResponse adminAddRanks(AdminAddRanksRequest request_)
Add one or more ranks to an existing Kinetica cluster.
A set of parameters for Kinetica.adminBackupEnd.
AdminVerifyDbResponse adminVerifyDb(IDictionary< string, string > options=null)
Verify database is in a consistent state.
A set of results returned by Kinetica.createRole.
Definition: CreateRole.cs:76
A set of results returned by Kinetica.verifyBackup.
Definition: VerifyBackup.cs:96
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.
A set of parameters for Kinetica.dropSchema.
Definition: DropSchema.cs:17
A set of results returned by Kinetica.createDatasink.
async System.Threading.Tasks.Task< HasTypeResponse > HasTypeAsync(HasTypeRequest request_, System.Threading.CancellationToken cancellationToken=default)
Check for the existence of a type.
IDictionary< string, IList< string > > properties
Value of properties.
Definition: CreateType.cs:952
AdminOfflineResponse adminOffline(bool offline, IDictionary< string, string > options=null)
Take the system offline.
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.
A set of results returned by Kinetica.alterSystemProperties.
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.
A set of parameters for Kinetica.revokePermissionDirectory.
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< CreateSchemaResponse > CreateSchemaAsync(CreateSchemaRequest request_, System.Threading.CancellationToken cancellationToken=default)
Creates a SQL-style schema.
RevokePermissionDirectoryResponse revokePermissionDirectory(string name, string permission, string directory_name, IDictionary< string, string > options=null)
Revokes a KiFS directory-level permission from a user or role.
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 an...
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.
A set of parameters for Kinetica.hasProc.
Definition: HasProc.cs:15
ShowVideoResponse showVideo(ShowVideoRequest request_)
Retrieves information about rendered videos.
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).
A set of results returned by Kinetica.deleteUser.
Definition: DeleteUser.cs:48
AdminSwitchoverResponse adminSwitchover(IList< string > processes, IList< string > destinations, IDictionary< string, string > options=null)
Manually switch over one or more processes to another host.
A set of parameters for Kinetica.clearTableMonitor.
A set of results returned by Kinetica.revokePermissionSystem.
A set of parameters for Kinetica.adminAddRanks.
A set of results returned by Kinetica.dropBackup.
Definition: DropBackup.cs:231
bool has_more_records
Too many records.
AlterEnvironmentResponse alterEnvironment(AlterEnvironmentRequest request_)
Alters an existing environment which can be referenced by a user-defined function (UDF).
ShowTablesByTypeResponse showTablesByType(ShowTablesByTypeRequest request_)
Gets names of the tables whose type matches the given criteria.
DeleteFilesResponse deleteFiles(IList< string > file_names, IDictionary< string, string > options=null)
Deletes one or more files from KiFS.
string table_name
The same table name as was passed in the parameter list.
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.
A set of results returned by Kinetica.revokePermissionDirectory.
A set of parameters for Kinetica.adminRebalance.
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.
async System.Threading.Tasks.Task< RevokePermissionTableResponse > RevokePermissionTableAsync(string name, string permission, string table_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Revokes a table-level permission from a user or role.
AlterDirectoryResponse alterDirectory(string directory_name, IDictionary< string, string > directory_updates_map, IDictionary< string, string > options=null)
Alters an existing directory in KiFS.
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 ta...
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.
string table_name
Name of table to which the records are to be added, in [schema_name.
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.
A set of parameters for Kinetica.aggregateKMeans.
async System.Threading.Tasks.Task< RevokePermissionProcResponse > RevokePermissionProcAsync(RevokePermissionProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
Revokes a proc-level permission from a user or role.
CreateTableMonitorResponse createTableMonitor(string table_name, IDictionary< string, string > options=null)
Creates a monitor that watches for a single table modification event type (insert,...
A set of parameters for Kinetica.showSystemTiming.
async System.Threading.Tasks.Task< GrantPermissionCredentialResponse > GrantPermissionCredentialAsync(string name, string permission, string credential_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Grants a credential-level permission to a user or role.
A set of results returned by Kinetica.grantPermissionSystem.
IDictionary< string, string > info
Additional information.
Definition: ExecuteSql.cs:1657
A set of results returned by Kinetica.createCredential.
A set of parameters for Kinetica.insertRecordsFromQuery.
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.
async System.Threading.Tasks.Task< AdminRepairTableResponse > AdminRepairTableAsync(AdminRepairTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
Manually repair a corrupted table.Returns information about affected tables.
string response_schema_str
Avro schema of binary_encoded_response or json_encoded_response.
Definition: ExecuteSql.cs:1608
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.
A set of parameters for Kinetica.aggregateConvexHull.
A set of results returned by Kinetica.grantPermission.
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 t...
CreateVideoResponse createVideo(CreateVideoRequest request_)
Creates a job to generate a sequence of raster images that visualize data over a specified time.
ClearTriggerResponse clearTrigger(ClearTriggerRequest request_)
Clears or cancels the trigger identified by the specified handle.
async System.Threading.Tasks.Task< AlterTierResponse > AlterTierAsync(AlterTierRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alters properties of an existing tier to facilitate resource management.
A set of parameters for Kinetica.queryGraph.
Definition: QueryGraph.cs:36
A set of parameters for Kinetica.adminHaRefresh.
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 vie...
ClearStatisticsResponse clearStatistics(ClearStatisticsRequest request_)
Clears statistics (cardinality, mean value, etc.) for a column in a specified table.
A set of results returned by Kinetica.hasTable.
Definition: HasTable.cs:53
string response_schema_str
Avro schema of binary_encoded_response or json_encoded_response.
async System.Threading.Tasks.Task< AdminShowJobsResponse > AdminShowJobsAsync(AdminShowJobsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Get a list of the current jobs in GPUdb.
A set of parameters for Kinetica.getRecordsByColumn.
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.
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 ...
A set of results returned by Kinetica.getRecordsByColumn.
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.
AdminSendAlertResponse adminSendAlert(AdminSendAlertRequest request_)
Sends a user generated alert to the monitoring system.
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.
A set of parameters for Kinetica.revokePermission.
string table_name
Value of table_name.
Definition: GetRecords.cs:444
A set of parameters for Kinetica.adminSendAlert.
A set of results returned by Kinetica.adminAddRanks.
A set of parameters for Kinetica.executeSql.
Definition: ExecuteSql.cs:37
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).
Definition: Kinetica.cs:683
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.
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,...
AdminShutdownResponse adminShutdown(AdminShutdownRequest request_)
Exits the database server application.
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 externall...
HasTypeResponse hasType(string type_id, IDictionary< string, string > options=null)
Check for the existence of a type.
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.
A set of parameters for Kinetica.solveGraph.
Definition: SolveGraph.cs:25
A set of parameters for Kinetica.showTableMonitors.
A set of results returned by Kinetica.filterByValue.
A set of results returned by Kinetica.adminBackupEnd.
FilterResponse filter(FilterRequest request_)
Filters data based on the specified expression.
async System.Threading.Tasks.Task< RevokePermissionTableResponse > RevokePermissionTableAsync(RevokePermissionTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
Revokes a table-level permission from a user or role.
A set of results returned by Kinetica.checkTable.
Definition: CheckTable.cs:161
IDictionary< string, string > info
Additional information.
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.
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.
A set of parameters for Kinetica.aggregateGroupBy.
A set of parameters for Kinetica.adminRemoveRanks.
async System.Threading.Tasks.Task< RevokePermissionDirectoryResponse > RevokePermissionDirectoryAsync(string name, string permission, string directory_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Revokes a KiFS directory-level permission from a user or role.
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.
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...
CreateTypeResponse createType(CreateTypeRequest request_)
Creates a new type describing the columns of a table.
bool has_more_records
Too many records.
Definition: ExecuteSql.cs:1629
A set of parameters for Kinetica.filter.
Definition: Filter.cs:22
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).
A set of parameters for Kinetica.getRecords.
Definition: GetRecords.cs:24
async System.Threading.Tasks.Task< DeleteResourceGroupResponse > DeleteResourceGroupAsync(DeleteResourceGroupRequest request_, System.Threading.CancellationToken cancellationToken=default)
Deletes a resource group.
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_na...
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 s...
A set of results returned by Kinetica.createBackup.
RevokePermissionSystemResponse revokePermissionSystem(RevokePermissionSystemRequest request_)
Revokes a system-level permission from a user or role.
RepartitionGraphResponse repartitionGraph(string graph_name, IDictionary< string, string > options=null)
Rebalances an existing partitioned graph.
ShowBackupResponse showBackup(ShowBackupRequest request_)
Shows information about one or more backups accessible via the data source specified by datasource_na...
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.
long total_number_of_records
Total/Filtered number of records.
A set of results returned by Kinetica.showSystemTiming.
A set of parameters for Kinetica.revokePermissionSystem.
A set of results returned by Kinetica.hasPermission.
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).
async System.Threading.Tasks.Task< RevokePermissionCredentialResponse > RevokePermissionCredentialAsync(string name, string permission, string credential_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Revokes a credential-level permission from a user or role.
ShowTriggersResponse showTriggers(IList< string > trigger_ids, IDictionary< string, string > options=null)
Retrieves information regarding the specified triggers or all existing triggers currently active.
A set of results returned by Kinetica.alterDirectory.
SolveGraphResponse solveGraph(SolveGraphRequest request_)
Solves an existing graph for a type of problem (e.g., shortest path, page rank, traveling salesman,...
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 access...
async System.Threading.Tasks.Task< ExportQueryMetricsResponse > ExportQueryMetricsAsync(ExportQueryMetricsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Export query metrics to a given destination.Returns query metrics.
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 ...
A set of parameters for Kinetica.showResourceStatistics.
DropDatasourceResponse dropDatasource(string name, IDictionary< string, string > options=null)
Drops an existing data source.
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 modific...
async System.Threading.Tasks.Task< KillProcResponse > KillProcAsync(KillProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
Kills a running proc instance.
A set of parameters for Kinetica.hasType.
Definition: HasType.cs:14
RevokePermissionCredentialResponse revokePermissionCredential(string name, string permission, string credential_name, IDictionary< string, string > options=null)
Revokes a credential-level permission from a user or role.
A set of results returned by Kinetica.insertRecordsRandom.
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 an...
async System.Threading.Tasks.Task< DeleteFilesResponse > DeleteFilesAsync(DeleteFilesRequest request_, System.Threading.CancellationToken cancellationToken=default)
Deletes one or more files from KiFS.
A set of results returned by Kinetica.matchGraph.
Definition: MatchGraph.cs:2588
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 ...
IDictionary< string, string > info
Additional information.
RevokePermissionProcResponse revokePermissionProc(string name, string permission, string proc_name, IDictionary< string, string > options=null)
Revokes a proc-level permission from a user or role.
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.
string response_schema_str
Avro schema of binary_encoded_response or json_encoded_response.
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 ...
AlterWalResponse alterWal(AlterWalRequest request_)
Alters table write-ahead log (WAL) settings.Returns information about the requested table WAL modific...
A set of parameters for Kinetica.aggregateHistogram.
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).
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.
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 ...
async System.Threading.Tasks.Task< GrantPermissionDirectoryResponse > GrantPermissionDirectoryAsync(string name, string permission, string directory_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Grants a KiFS directory-level permission to a user or role.
A set of results returned by Kinetica.restoreBackup.
async System.Threading.Tasks.Task< AdminRemoveHostResponse > AdminRemoveHostAsync(AdminRemoveHostRequest request_, System.Threading.CancellationToken cancellationToken=default)
Removes a host from an existing cluster.
A set of results returned by Kinetica.aggregateUnique.
A set of results returned by Kinetica.queryGraph.
Definition: QueryGraph.cs:474
ClearTablesResponse clearTables(ClearTablesRequest request_)
Clears (drops) tables in the database cluster.
A set of results returned by Kinetica.getRecords.
Definition: GetRecords.cs:440
AlterTableMonitorResponse alterTableMonitor(string topic_id, IDictionary< string, string > monitor_updates_map, IDictionary< string, string > options=null)
Alters a table monitor previously created with createTableMonitor.
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 i...
async System.Threading.Tasks.Task< ClearTriggerResponse > ClearTriggerAsync(ClearTriggerRequest request_, System.Threading.CancellationToken cancellationToken=default)
Clears or cancels the trigger identified by the specified handle.
A set of results returned by Kinetica.grantPermissionProc.
A set of parameters for Kinetica.createDatasink.
static IList< KineticaRecord > DecodeDynamicTableRecords(string dynamic_table_schema_string, byte[] encoded_data)
Decodes binary encoded data of a dynamically created table returned by the server.
A set of results returned by Kinetica.showTriggers.
Definition: ShowTriggers.cs:52
async System.Threading.Tasks.Task< GrantPermissionCredentialResponse > GrantPermissionCredentialAsync(GrantPermissionCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
Grants a credential-level permission to a user or role.
A set of parameters for Kinetica.showWal.
Definition: ShowWal.cs:15
A set of parameters for Kinetica.filterByGeometry.
A set of results returned by Kinetica.getRecordsBySeries.
async System.Threading.Tasks.Task< AlterTableColumnsResponse > AlterTableColumnsAsync(AlterTableColumnsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Apply various modifications to columns in a table, view.
A set of parameters for Kinetica.uploadFiles.
Definition: UploadFiles.cs:63
A set of parameters for Kinetica.exportRecordsToTable.
A set of parameters for Kinetica.alterDatasource.
ShowFilesResponse showFiles(IList< string > paths, IDictionary< string, string > options=null)
Shows information about files in KiFS.
IDictionary< string, string > info
Additional information.
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 .
A set of parameters for Kinetica.showResourceGroups.
AlterDirectoryResponse alterDirectory(AlterDirectoryRequest request_)
Alters an existing directory in KiFS.
CreateUserInternalResponse createUserInternal(CreateUserInternalRequest request_)
Creates a new internal user (a user whose credentials are managed by the database system).
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< RestoreBackupResponse > RestoreBackupAsync(RestoreBackupRequest request_, System.Threading.CancellationToken cancellationToken=default)
Restores database objects from a backup accessible via the data source specified by datasource_name.
FilterByListResponse filterByList(FilterByListRequest request_)
Calculates which records from a table have values in the given list for the corresponding column.
A set of parameters for Kinetica.createCatalog.
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.
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.
A set of parameters for Kinetica.alterTableColumns.
A set of parameters for Kinetica.alterBackup.
Definition: AlterBackup.cs:19
async System.Threading.Tasks.Task< AdminVerifyDbResponse > AdminVerifyDbAsync(IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Verify database is in a consistent state.
async System.Threading.Tasks.Task< CreateRoleResponse > CreateRoleAsync(CreateRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
Creates a new role.
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 tha...
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 .
GetGraphEntitiesResponse getGraphEntities(GetGraphEntitiesRequest request_)
Retrieves node or edge entities from an existing graph, with pagination support via offset and limit.
ShowGraphResponse showGraph(ShowGraphRequest request_)
Shows information and characteristics of graphs that exist on the graph server.
bool has_more_records
Too many records.
async System.Threading.Tasks.Task< DeleteProcResponse > DeleteProcAsync(DeleteProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
Deletes a proc.
A set of parameters for Kinetica.createDatasource.
async System.Threading.Tasks.Task< AlterVideoResponse > AlterVideoAsync(AlterVideoRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alters a video.
CreateDatasourceResponse createDatasource(CreateDatasourceRequest request_)
Creates a data source, which contains the location and connection information for a data store that i...
VerifyBackupResponse verifyBackup(VerifyBackupRequest request_)
Inspects the requested database backup(s) for conformity at the remote file store accessible via the ...
IList< IDictionary< string, string > > new_values_maps
List of new values for the matching records.
CreateDirectoryResponse createDirectory(string directory_name, IDictionary< string, string > options=null)
Creates a new directory in KiFS.
A set of parameters for Kinetica.visualizeImageChart.
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.
ShowTableMonitorsResponse showTableMonitors(IList< string > monitor_ids, IDictionary< string, string > options=null)
Show table monitors and their properties.
AdminBackupBeginResponse adminBackupBegin(IDictionary< string, string > options=null)
Prepares the system for a backup by closing all open file handles after allowing current active jobs ...
A set of results returned by Kinetica.alterSchema.
Definition: AlterSchema.cs:114
async System.Threading.Tasks.Task< InsertSymbolResponse > InsertSymbolAsync(InsertSymbolRequest request_, System.Threading.CancellationToken cancellationToken=default)
Adds a symbol or icon (i.e.
long total_number_of_records
Total/Filtered number of records.
Definition: ExecuteSql.cs:1617
FilterByTableResponse filterByTable(FilterByTableRequest request_)
Filters objects in one table based on objects in another table.
AlterVideoResponse alterVideo(string path, IDictionary< string, string > options=null)
Alters a video.
AggregateKMeansResponse aggregateKMeans(AggregateKMeansRequest request_)
This endpoint runs the k-means algorithm - a heuristic algorithm that attempts to do k-means clusteri...
string type_definition
Value of type_definition.
Definition: CreateType.cs:944
A set of parameters for Kinetica.clearTrigger.
Definition: ClearTrigger.cs:17
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.
A set of parameters for Kinetica.createGraph.
Definition: CreateGraph.cs:23
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.
A set of results returned by Kinetica.exportRecordsToFiles.
A set of parameters for Kinetica.clearTables.
Definition: ClearTables.cs:18
async System.Threading.Tasks.Task< InsertRecordsResponse > InsertRecordsAsync< T >(InsertRecordsRequest< T > request_, System.Threading.CancellationToken cancellationToken=default)
Adds multiple records to the specified table.
async System.Threading.Tasks.Task< AdminRemoveRanksResponse > AdminRemoveRanksAsync(AdminRemoveRanksRequest request_, System.Threading.CancellationToken cancellationToken=default)
Remove one or more ranks from an existing Kinetica cluster.
A set of results returned by Kinetica.adminAlterJobs.
A set of parameters for Kinetica.adminShowJobs.
IList< KineticaRecord > data
Avro binary encoded response.
A set of parameters for Kinetica.filterByAreaGeometry.
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 modific...
AdminShowJobsResponse adminShowJobs(IDictionary< string, string > options=null)
Get a list of the current jobs in GPUdb.
ShowSchemaResponse showSchema(string schema_name, IDictionary< string, string > options=null)
Retrieves information about a schema (or all schemas), as specified in schema_name .
QueryGraphResponse queryGraph(QueryGraphRequest request_)
Employs a topological query on a graph generated a-priori by createGraph and returns a list of adjace...
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.
ExportRecordsToFilesResponse exportRecordsToFiles(ExportRecordsToFilesRequest request_)
Export records from a table to files.
A set of results returned by Kinetica.alterTier.
Definition: AlterTier.cs:220
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.
ShowResourceObjectsResponse showResourceObjects(ShowResourceObjectsRequest request_)
Returns information about the internal sub-components (tiered objects) which use resources of the sys...
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< DeleteProcResponse > DeleteProcAsync(string proc_name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Deletes a proc.
ShowEnvironmentResponse showEnvironment(ShowEnvironmentRequest request_)
Shows information about a specified user-defined function (UDF) environment or all environments....
async System.Threading.Tasks.Task< UploadFilesFromurlResponse > UploadFilesFromurlAsync(UploadFilesFromurlRequest request_, System.Threading.CancellationToken cancellationToken=default)
Uploads one or more files to KiFS.
A set of parameters for Kinetica.getRecordsBySeries.
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.
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-...
async System.Threading.Tasks.Task< DropDatasourceResponse > DropDatasourceAsync(string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Drops an existing data source.
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 underlyin...
A set of parameters for Kinetica.showProc.
Definition: ShowProc.cs:15
A set of results returned by Kinetica.dropSchema.
Definition: DropSchema.cs:172
A set of parameters for Kinetica.filterByTable.
A set of results returned by Kinetica.adminBackupBegin.
string label
Value of label.
Definition: CreateType.cs:948
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...
string table_name
Typically shows the result-table name if provided in the request (Ignore otherwise).
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 sys...
AdminBackupBeginResponse adminBackupBegin(AdminBackupBeginRequest request_)
Prepares the system for a backup by closing all open file handles after allowing current active jobs ...
AdminRebalanceResponse adminRebalance(AdminRebalanceRequest request_)
Rebalance the data in the cluster so that all nodes contain an equal number of records approximately ...
A set of results returned by Kinetica.revokeRole.
Definition: RevokeRole.cs:60
async System.Threading.Tasks.Task< FilterResponse > FilterAsync(FilterRequest request_, System.Threading.CancellationToken cancellationToken=default)
Filters data based on the specified expression.
ShowSystemStatusResponse showSystemStatus(ShowSystemStatusRequest request_)
Provides server configuration and health related status to the caller.
DeleteFilesResponse deleteFiles(DeleteFilesRequest request_)
Deletes one or more files from KiFS.
A set of results returned by Kinetica.adminRemoveHost.
A set of parameters for Kinetica.showDirectories.
ExecuteProcResponse executeProc(ExecuteProcRequest request_)
Executes a proc.
A set of results returned by Kinetica.createTriggerByRange.
A set of parameters for Kinetica.clearStatistics.
AlterTableResponse alterTable(string table_name, string action, string _value, IDictionary< string, string > options=null)
Apply various modifications to a table or view.
MatchGraphResponse matchGraph(MatchGraphRequest request_)
Matches a directed route implied by a given set of latitude/longitude points to an existing underlyin...
A set of parameters for Kinetica.createUserExternal.
A set of parameters for Kinetica.updateRecordsRaw.
A set of results returned by Kinetica.revokePermissionCredential.
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.
A set of results returned by Kinetica.alterEnvironment.
ShowEnvironmentResponse showEnvironment(string environment_name="", IDictionary< string, string > options=null)
Shows information about a specified user-defined function (UDF) environment or all environments....
async System.Threading.Tasks.Task< DeleteRoleResponse > DeleteRoleAsync(string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Deletes an existing role.
A set of parameters for Kinetica.showSystemStatus.
IList< string > table_names
The table name (one per series/track) of the returned series/tracks.
A set of results returned by Kinetica.filterByTable.
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.
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.
A set of parameters for Kinetica.deleteDirectory.
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.
A set of parameters for Kinetica.createProjection.
CreateTableResponse createTable(CreateTableRequest request_)
Creates a new table with the given type (definition of columns).
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 sys...
AlterDatasourceResponse alterDatasource(AlterDatasourceRequest request_)
Alters the properties of an existing data source.
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.
A set of results returned by Kinetica.showResourceStatistics.
async System.Threading.Tasks.Task< AlterRoleResponse > AlterRoleAsync(AlterRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alters a Role.
A set of results returned by Kinetica.collectStatistics.
CheckTableResponse checkTable(IList< string > table_names, IDictionary< string, string > options=null)
Scans the requested tables as specified in table_names for integrity.
IList< string > table_names
The table name (one per series/track) of the returned series/tracks.
ClearTablesResponse clearTables(IList< string > table_names=null, IDictionary< string, string > options=null)
Clears (drops) tables in the database cluster.
RevokePermissionDatasourceResponse revokePermissionDatasource(string name, string permission, string datasource_name, IDictionary< string, string > options=null)
Revokes a data source permission from a user or role.
A set of parameters for Kinetica.createRole.
Definition: CreateRole.cs:15
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.
A set of parameters for Kinetica.deleteUser.
Definition: DeleteUser.cs:15
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.
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.
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.
A set of parameters for Kinetica.alterUser.
Definition: AlterUser.cs:15
RepartitionGraphResponse repartitionGraph(RepartitionGraphRequest request_)
Rebalances an existing partitioned graph.
A set of parameters for Kinetica.alterSystemProperties.
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.
InsertSymbolResponse insertSymbol(string symbol_id, string symbol_format, byte[] symbol_data, IDictionary< string, string > options=null)
Adds a symbol or icon (i.e.
A set of results returned by Kinetica.revokePermission.
AlterUserResponse alterUser(AlterUserRequest request_)
Alters a user.
A set of parameters for Kinetica.revokePermissionTable.
A set of results returned by Kinetica.showTableMonitors.
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.
AdminShowShardsResponse adminShowShards(AdminShowShardsRequest request_)
Show the mapping of shards to the corresponding rank and tom.
async System.Threading.Tasks.Task< AlterDatasinkResponse > AlterDatasinkAsync(AlterDatasinkRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alters the properties of an existing data sink.
AggregateMinMaxGeometryResponse aggregateMinMaxGeometry(AggregateMinMaxGeometryRequest request_)
Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geomet...
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 ...
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.
A set of parameters for Kinetica.aggregateUnique.
async System.Threading.Tasks.Task< CreateTypeResponse > CreateTypeAsync(CreateTypeRequest request_, System.Threading.CancellationToken cancellationToken=default)
Creates a new type describing the columns of a table.
A set of parameters for Kinetica.createDirectory.
async System.Threading.Tasks.Task< ExecuteProcResponse > ExecuteProcAsync(ExecuteProcRequest request_, System.Threading.CancellationToken cancellationToken=default)
Executes a proc.
A set of results returned by Kinetica.showResourceGroups.
AggregateMinMaxResponse aggregateMinMax(AggregateMinMaxRequest request_)
Calculates and returns the minimum and maximum values of a particular column in a table.
async System.Threading.Tasks.Task< HasRoleResponse > HasRoleAsync(HasRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
Checks if the specified user has the specified role.
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.
FilterBySeriesResponse filterBySeries(FilterBySeriesRequest request_)
Filters objects matching all points of the given track (works only on track type data).
A set of parameters for Kinetica.createMaterializedView.
AdminRemoveRanksResponse adminRemoveRanks(AdminRemoveRanksRequest request_)
Remove one or more ranks from an existing Kinetica cluster.
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).
A set of parameters for Kinetica.grantPermissionDatasource.
A set of results returned by Kinetica.showStatistics.
async System.Threading.Tasks.Task< RevokeRoleResponse > RevokeRoleAsync(RevokeRoleRequest request_, System.Threading.CancellationToken cancellationToken=default)
Revokes membership in a role from a user or role.
A set of results returned by Kinetica.visualizeIsochrone.
A set of results returned by Kinetica.aggregateUnpivot.
ExportQueryMetricsResponse exportQueryMetrics(IDictionary< string, string > options=null)
Export query metrics to a given destination.Returns query metrics.
UploadFilesResponse uploadFiles(UploadFilesRequest request_)
Uploads one or more files to KiFS.
A set of results returned by Kinetica.createVideo.
Definition: CreateVideo.cs:346
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.
A set of results returned by Kinetica.alterTableColumns.
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.
A set of parameters for Kinetica.collectStatistics.
async System.Threading.Tasks.Task< InsertRecordsResponse > InsertRecordsRawAsync(RawInsertRecordsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Adds multiple records to the specified table.
A set of results returned by Kinetica.deleteResourceGroup.
A set of results returned by Kinetica.filterByString.
IDictionary< string, string > info
Additional information.
A set of results returned by Kinetica.deleteProc.
Definition: DeleteProc.cs:50
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.
GrantPermissionDirectoryResponse grantPermissionDirectory(GrantPermissionDirectoryRequest request_)
Grants a KiFS directory-level permission to a user or role.
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.
async System.Threading.Tasks.Task< CollectStatisticsResponse > CollectStatisticsAsync(CollectStatisticsRequest request_, System.Threading.CancellationToken cancellationToken=default)
Collect statistics for a column(s) in a specified table.
GrantRoleResponse grantRole(GrantRoleRequest request_)
Grants membership in a role to a user or role.
A set of results returned by Kinetica.showSecurity.
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.
GetJobResponse getJob(GetJobRequest request_)
Get the status and result of asynchronously running job.
A set of parameters for Kinetica.adminVerifyDb.
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< 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.
async System.Threading.Tasks.Task< GrantPermissionTableResponse > GrantPermissionTableAsync(GrantPermissionTableRequest request_, System.Threading.CancellationToken cancellationToken=default)
Grants a table-level permission to a user or role.
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 vie...
GrantRoleResponse grantRole(string role, string member, IDictionary< string, string > options=null)
Grants membership in a role to a user or role.
A set of results returned by Kinetica.adminSendAlert.
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.
CreateJobResponse createJob(CreateJobRequest request_)
Create a job which will run asynchronously.
A set of results returned by Kinetica.revokePermissionTable.
async System.Threading.Tasks.Task< AlterTableMonitorResponse > AlterTableMonitorAsync(AlterTableMonitorRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alters a table monitor previously created with createTableMonitor.
A set of results returned by Kinetica.filterByList.
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.
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.
A set of parameters for Kinetica.dropDatasource.
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< 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.
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.
A set of results returned by Kinetica.showDirectories.
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.
ShowTablesByTypeResponse showTablesByType(string type_id, string label, IDictionary< string, string > options=null)
Gets names of the tables whose type matches the given criteria.
ShowTableMetadataResponse showTableMetadata(ShowTableMetadataRequest request_)
Retrieves the user provided metadata for the specified tables.
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,...
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.
DropDatasinkResponse dropDatasink(string name, IDictionary< string, string > options=null)
Drops an existing data sink.
A set of parameters for Kinetica.grantPermission.
const string EMPTY_STRING
Don't change the ranking.
AlterCredentialResponse alterCredential(AlterCredentialRequest request_)
Alter the properties of an existing credential.
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.
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.
ShowTypesResponse showTypes(ShowTypesRequest request_)
Retrieves information for the specified data type ID or type label.
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< DropDatasinkResponse > DropDatasinkAsync(string name, IDictionary< string, string > options=null, System.Threading.CancellationToken cancellationToken=default)
Drops an existing data sink.
A set of results returned by Kinetica.aggregateUnique.
A set of results returned by Kinetica.filterByRadiusGeometry.
A set of parameters for Kinetica.grantRole.
Definition: GrantRole.cs:16
A set of parameters for Kinetica.filterByRadiusGeometry.
CollectStatisticsResponse collectStatistics(string table_name, IList< string > column_names, IDictionary< string, string > options=null)
Collect statistics for a column(s) in a specified table.
DropCatalogResponse dropCatalog(string name, IDictionary< string, string > options=null)
Drops an existing catalog.
RevokePermissionResponse revokePermission(RevokePermissionRequest request_)
Revoke user or role the specified permission on the specified object.
DeleteRecordsResponse deleteRecords(DeleteRecordsRequest request_)
Deletes record(s) matching the provided criteria from the given table.
async System.Threading.Tasks.Task< RevokePermissionCredentialResponse > RevokePermissionCredentialAsync(RevokePermissionCredentialRequest request_, System.Threading.CancellationToken cancellationToken=default)
Revokes a credential-level permission from a user or role.
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.
async System.Threading.Tasks.Task< AlterDirectoryResponse > AlterDirectoryAsync(AlterDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
Alters an existing directory in KiFS.
A set of results returned by Kinetica.clearTable.
Definition: ClearTable.cs:143
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.
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 adjace...
bool has_more_records
Too many records.
A set of results returned by Kinetica.showWal.
Definition: ShowWal.cs:108
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< 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.
string type_schema
Avro schema of data or records_json.
Definition: GetRecords.cs:450
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.
IList< string > labels
Definition: ShowTypes.cs:131
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 ent...
A set of results returned by Kinetica.aggregateGroupBy.
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 clusteri...
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.
HasSchemaResponse hasSchema(HasSchemaRequest request_)
Checks for the existence of a schema with the given name.
A set of results returned by Kinetica.adminShowAlerts.
bool has_more_records
Too many records.
InsertSymbolResponse insertSymbol(InsertSymbolRequest request_)
Adds a symbol or icon (i.e.
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-...
DeleteRoleResponse deleteRole(string name, IDictionary< string, string > options=null)
Deletes an existing role.
A set of results returned by Kinetica.createTriggerByArea.
async System.Threading.Tasks.Task< ShowSecurityResponse > ShowSecurityAsync(ShowSecurityRequest request_, System.Threading.CancellationToken cancellationToken=default)
Shows security information relating to users and/or roles.
A set of results returned by Kinetica.adminSwitchover.
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.
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.
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.
A set of parameters for Kinetica.createSchema.
Definition: CreateSchema.cs:18
async System.Threading.Tasks.Task< AdminOfflineResponse > AdminOfflineAsync(AdminOfflineRequest request_, System.Threading.CancellationToken cancellationToken=default)
Take the system offline.
ShowTriggersResponse showTriggers(ShowTriggersRequest request_)
Retrieves information regarding the specified triggers or all existing triggers currently active.
CheckTableResponse checkTable(CheckTableRequest request_)
Scans the requested tables as specified in table_names for integrity.
A set of results returned by Kinetica.showProc.
Definition: ShowProc.cs:117
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.
ClearTableResponse clearTable(ClearTableRequest request_)
Clears (drops) one or all tables in the database cluster.
A set of parameters for Kinetica.adminShowClusterOperations.
A set of parameters for Kinetica.deleteResourceGroup.
A set of parameters for Kinetica.adminShowShards.
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.
byte [] binary_encoded_response
Avro binary encoded response.
Definition: ExecuteSql.cs:1611
CreateTableExternalResponse createTableExternal(CreateTableExternalRequest request_)
Creates a new external table, which is a local database object whose source data is located externall...
A set of parameters for Kinetica.grantPermissionCredential.
AdminRemoveHostResponse adminRemoveHost(AdminRemoveHostRequest request_)
Removes a host from an existing cluster.
CreateTriggerByAreaResponse createTriggerByArea(CreateTriggerByAreaRequest request_)
Sets up an area trigger mechanism for two column_names for one or more tables.
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 ...
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.
DropDatasourceResponse dropDatasource(DropDatasourceRequest request_)
Drops an existing data source.
CreateJoinTableResponse createJoinTable(CreateJoinTableRequest request_)
Creates a table that is the result of a SQL JOIN.
A set of parameters for Kinetica.createTableExternal.
IList< string > type_labels
Type labels of the respective tables in table_names.
Definition: ShowTable.cs:1193
A set of parameters for Kinetica.alterVideo.
Definition: AlterVideo.cs:15
IDictionary< string, string > info
Additional information.
Definition: GetRecords.cs:465
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 s...
DeleteResourceGroupResponse deleteResourceGroup(string name, IDictionary< string, string > options=null)
Deletes a resource group.
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).
const string DISTRIBUTED
Input table data will be divided into data segments that are distributed across all nodes in the clus...
Definition: CreateProc.cs:31
AdminSwitchoverResponse adminSwitchover(AdminSwitchoverRequest request_)
Manually switch over one or more processes to another host.
AdminAlterJobsResponse adminAlterJobs(AdminAlterJobsRequest request_)
Perform the requested action on a list of one or more job(s).
bool has_more_records
Too many records.
A set of results returned by Kinetica.createType.
Definition: CreateType.cs:933
GetRecordsResponse< T > getRecords< T >(GetRecordsRequest request_)
Retrieves records from a given table, optionally filtered by an expression and/or sorted by a column.
string table_name
Name of table to be updated, in [schema_name.
A set of results returned by Kinetica.grantRole.
Definition: GrantRole.cs:60
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.
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.
A set of parameters for Kinetica.downloadFiles.
A set of results returned by Kinetica.filterByBox.
Definition: FilterByBox.cs:237
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.
IDictionary< string, string > info
Additional information.
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).
A set of results returned by Kinetica.showProcStatus.
A set of parameters for Kinetica.grantPermissionDirectory.
A set of parameters for Kinetica.aggregateUnpivot.
A set of results returned by Kinetica.lockTable.
Definition: LockTable.cs:146
string paging_table
Name of the table that has the result records of the query.
Definition: ExecuteSql.cs:1718
A set of results returned by Kinetica.deleteGraph.
Definition: DeleteGraph.cs:132
async System.Threading.Tasks.Task< AggregateUnpivotResponse > AggregateUnpivotAsync(AggregateUnpivotRequest request_, System.Threading.CancellationToken cancellationToken=default)
Rotate the column values into rows values.
A set of parameters for Kinetica.showSchema.
Definition: ShowSchema.cs:17
A set of results returned by Kinetica.createUserInternal.
A set of parameters for Kinetica.showProcStatus.
CreateGraphResponse createGraph(CreateGraphRequest request_)
Creates a new graph network using given nodes, edges, weights, and restrictions.
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.
A set of parameters for Kinetica.createVideo.
Definition: CreateVideo.cs:16
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.
IList< IDictionary< string, IList< string > > > properties
Definition: ShowTypes.cs:133
A set of results returned by Kinetica.showTableMetadata.
A set of results returned by Kinetica.filter.
Definition: Filter.cs:224
FilterByGeometryResponse filterByGeometry(FilterByGeometryRequest request_)
Applies a geometry filter against a geospatial geometry column in a given table or view.
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.
AdminShutdownResponse adminShutdown(string exit_type, string authorization, IDictionary< string, string > options=null)
Exits the database server application.
IList< KineticaRecord > data
Avro binary encoded response.
Definition: ExecuteSql.cs:1694
AggregateUnpivotResponse aggregateUnpivot(AggregateUnpivotRequest request_)
Rotate the column values into rows values.
async System.Threading.Tasks.Task< GrantPermissionDirectoryResponse > GrantPermissionDirectoryAsync(GrantPermissionDirectoryRequest request_, System.Threading.CancellationToken cancellationToken=default)
Grants a KiFS directory-level permission to a user or role.
A set of results returned by Kinetica.adminShowShards.
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.
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< 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.
A set of results returned by Kinetica.createUnion.
Definition: CreateUnion.cs:974
async System.Threading.Tasks.Task< RepartitionGraphResponse > RepartitionGraphAsync(RepartitionGraphRequest request_, System.Threading.CancellationToken cancellationToken=default)
Rebalances an existing partitioned graph.
AdminRemoveRanksResponse adminRemoveRanks(IList< string > ranks, IDictionary< string, string > options=null)
Remove one or more ranks from an existing Kinetica cluster.
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.
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< 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 trac...
A set of results returned by Kinetica.executeSql.
Definition: ExecuteSql.cs:1663
AdminHaOfflineResponse adminHaOffline(AdminHaOfflineRequest request_)
Pauses consumption of messages from other HA clusters to support data repair/recovery scenarios.