windmill-api 1.558.1

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
# Rust API client for windmill-api

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

For more information, please visit [https://windmill.dev](https://windmill.dev)

## Overview

This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project.  By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client.

- API version: 1.558.1
- Package version: 1.558.1
- Generator version: 7.10.0
- Build package: `org.openapitools.codegen.languages.RustClientCodegen`

## Installation

Put the package under your project folder in a directory named `windmill-api` and add the following to `Cargo.toml` under `[dependencies]`:

```
windmill-api = { path = "./windmill-api" }
```

## Documentation for API Endpoints

All URIs are relative to */api*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AdminApi* | [**convert_user_to_group**]docs/AdminApi.md#convert_user_to_group | **POST** /w/{workspace}/users/convert_to_group/{username} | convert manual user to group user (require admin privilege)
*AdminApi* | [**delete_user**]docs/AdminApi.md#delete_user | **DELETE** /w/{workspace}/users/delete/{username} | delete user (require admin privilege)
*AdminApi* | [**get_user**]docs/AdminApi.md#get_user | **GET** /w/{workspace}/users/get/{username} | get user (require admin privilege)
*AdminApi* | [**update_user**]docs/AdminApi.md#update_user | **POST** /w/{workspace}/users/update/{username} | update user (require admin privilege)
*AgentWorkersApi* | [**blacklist_agent_token**]docs/AgentWorkersApi.md#blacklist_agent_token | **POST** /agent_workers/blacklist_token | blacklist agent token (requires super admin)
*AgentWorkersApi* | [**create_agent_token**]docs/AgentWorkersApi.md#create_agent_token | **POST** /agent_workers/create_agent_token | create agent token
*AgentWorkersApi* | [**list_blacklisted_agent_tokens**]docs/AgentWorkersApi.md#list_blacklisted_agent_tokens | **GET** /agent_workers/list_blacklisted_tokens | list blacklisted agent tokens (requires super admin)
*AgentWorkersApi* | [**remove_blacklist_agent_token**]docs/AgentWorkersApi.md#remove_blacklist_agent_token | **POST** /agent_workers/remove_blacklist_token | remove agent token from blacklist (requires super admin)
*AppApi* | [**create_app**]docs/AppApi.md#create_app | **POST** /w/{workspace}/apps/create | create app
*AppApi* | [**custom_path_exists**]docs/AppApi.md#custom_path_exists | **GET** /w/{workspace}/apps/custom_path_exists/{custom_path} | check if custom path exists
*AppApi* | [**delete_app**]docs/AppApi.md#delete_app | **DELETE** /w/{workspace}/apps/delete/{path} | delete app
*AppApi* | [**delete_s3_file_from_app**]docs/AppApi.md#delete_s3_file_from_app | **DELETE** /w/{workspace}/apps_u/delete_s3_file | delete s3 file from app
*AppApi* | [**execute_component**]docs/AppApi.md#execute_component | **POST** /w/{workspace}/apps_u/execute_component/{path} | executeComponent
*AppApi* | [**exists_app**]docs/AppApi.md#exists_app | **GET** /w/{workspace}/apps/exists/{path} | does an app exisst at path
*AppApi* | [**get_app_by_path**]docs/AppApi.md#get_app_by_path | **GET** /w/{workspace}/apps/get/p/{path} | get app by path
*AppApi* | [**get_app_by_path_with_draft**]docs/AppApi.md#get_app_by_path_with_draft | **GET** /w/{workspace}/apps/get/draft/{path} | get app by path with draft
*AppApi* | [**get_app_by_version**]docs/AppApi.md#get_app_by_version | **GET** /w/{workspace}/apps/get/v/{id} | get app by version
*AppApi* | [**get_app_history_by_path**]docs/AppApi.md#get_app_history_by_path | **GET** /w/{workspace}/apps/history/p/{path} | get app history by path
*AppApi* | [**get_app_latest_version**]docs/AppApi.md#get_app_latest_version | **GET** /w/{workspace}/apps/get_latest_version/{path} | get apps's latest version
*AppApi* | [**get_app_lite_by_path**]docs/AppApi.md#get_app_lite_by_path | **GET** /w/{workspace}/apps/get/lite/{path} | get app lite by path
*AppApi* | [**get_hub_app_by_id**]docs/AppApi.md#get_hub_app_by_id | **GET** /apps/hub/get/{id} | get hub app by id
*AppApi* | [**get_public_app_by_custom_path**]docs/AppApi.md#get_public_app_by_custom_path | **GET** /apps_u/public_app_by_custom_path/{custom_path} | get public app by custom path
*AppApi* | [**get_public_app_by_secret**]docs/AppApi.md#get_public_app_by_secret | **GET** /w/{workspace}/apps_u/public_app/{path} | get public app by secret
*AppApi* | [**get_public_resource**]docs/AppApi.md#get_public_resource | **GET** /w/{workspace}/apps_u/public_resource/{path} | get public resource
*AppApi* | [**get_public_secret_of_app**]docs/AppApi.md#get_public_secret_of_app | **GET** /w/{workspace}/apps/secret_of/{path} | get public secret of app
*AppApi* | [**get_public_secret_of_latest_version_of_app**]docs/AppApi.md#get_public_secret_of_latest_version_of_app | **GET** /w/{workspace}/apps/secret_of_latest_version/{path} | get public secret of latest version of an app bundle
*AppApi* | [**list_app_paths_from_workspace_runnable**]docs/AppApi.md#list_app_paths_from_workspace_runnable | **GET** /w/{workspace}/apps/list_paths_from_workspace_runnable/{runnable_kind}/{path} | list app paths from workspace runnable
*AppApi* | [**list_apps**]docs/AppApi.md#list_apps | **GET** /w/{workspace}/apps/list | list all apps
*AppApi* | [**list_hub_apps**]docs/AppApi.md#list_hub_apps | **GET** /apps/hub/list | list all hub apps
*AppApi* | [**list_search_app**]docs/AppApi.md#list_search_app | **GET** /w/{workspace}/apps/list_search | list apps for search
*AppApi* | [**sign_s3_objects**]docs/AppApi.md#sign_s3_objects | **POST** /w/{workspace}/apps/sign_s3_objects | sign s3 objects, to be used by anonymous users in public apps
*AppApi* | [**update_app**]docs/AppApi.md#update_app | **POST** /w/{workspace}/apps/update/{path} | update app
*AppApi* | [**update_app_history**]docs/AppApi.md#update_app_history | **POST** /w/{workspace}/apps/history_update/a/{id}/v/{version} | update app history
*AppApi* | [**upload_s3_file_from_app**]docs/AppApi.md#upload_s3_file_from_app | **POST** /w/{workspace}/apps_u/upload_s3_file/{path} | upload s3 file from app
*AssetApi* | [**list_assets**]docs/AssetApi.md#list_assets | **GET** /w/{workspace}/assets/list | List all assets in the workspace
*AssetApi* | [**list_assets_by_usage**]docs/AssetApi.md#list_assets_by_usage | **POST** /w/{workspace}/assets/list_by_usages | List all assets used by given usages paths
*AuditApi* | [**get_audit_log**]docs/AuditApi.md#get_audit_log | **GET** /w/{workspace}/audit/get/{id} | get audit log (requires admin privilege)
*AuditApi* | [**list_audit_logs**]docs/AuditApi.md#list_audit_logs | **GET** /w/{workspace}/audit/list | list audit logs (requires admin privilege)
*CaptureApi* | [**delete_capture**]docs/CaptureApi.md#delete_capture | **DELETE** /w/{workspace}/capture/{id} | delete a capture
*CaptureApi* | [**get_capture**]docs/CaptureApi.md#get_capture | **GET** /w/{workspace}/capture/{id} | get a capture
*CaptureApi* | [**get_capture_configs**]docs/CaptureApi.md#get_capture_configs | **GET** /w/{workspace}/capture/get_configs/{runnable_kind}/{path} | get capture configs for a script or flow
*CaptureApi* | [**list_captures**]docs/CaptureApi.md#list_captures | **GET** /w/{workspace}/capture/list/{runnable_kind}/{path} | list captures for a script or flow
*CaptureApi* | [**move_captures_and_configs**]docs/CaptureApi.md#move_captures_and_configs | **POST** /w/{workspace}/capture/move/{runnable_kind}/{path} | move captures and configs for a script or flow
*CaptureApi* | [**ping_capture_config**]docs/CaptureApi.md#ping_capture_config | **POST** /w/{workspace}/capture/ping_config/{trigger_kind}/{runnable_kind}/{path} | ping capture config
*CaptureApi* | [**set_capture_config**]docs/CaptureApi.md#set_capture_config | **POST** /w/{workspace}/capture/set_config | set capture config
*ConcurrencyGroupsApi* | [**delete_concurrency_group**]docs/ConcurrencyGroupsApi.md#delete_concurrency_group | **DELETE** /concurrency_groups/prune/{concurrency_id} | Delete concurrency group
*ConcurrencyGroupsApi* | [**get_concurrency_key**]docs/ConcurrencyGroupsApi.md#get_concurrency_key | **GET** /concurrency_groups/{id}/key | Get the concurrency key for a job that has concurrency limits enabled
*ConcurrencyGroupsApi* | [**list_concurrency_groups**]docs/ConcurrencyGroupsApi.md#list_concurrency_groups | **GET** /concurrency_groups/list | List all concurrency groups
*ConcurrencyGroupsApi* | [**list_extended_jobs**]docs/ConcurrencyGroupsApi.md#list_extended_jobs | **GET** /w/{workspace}/concurrency_groups/list_jobs | Get intervals of job runtime concurrency
*ConfigApi* | [**delete_config**]docs/ConfigApi.md#delete_config | **DELETE** /configs/update/{name} | Delete Config
*ConfigApi* | [**get_config**]docs/ConfigApi.md#get_config | **GET** /configs/get/{name} | get config
*ConfigApi* | [**list_autoscaling_events**]docs/ConfigApi.md#list_autoscaling_events | **GET** /configs/list_autoscaling_events/{worker_group} | List autoscaling events
*ConfigApi* | [**list_available_python_versions**]docs/ConfigApi.md#list_available_python_versions | **GET** /configs/list_available_python_versions | Get currently available python versions provided by UV.
*ConfigApi* | [**list_configs**]docs/ConfigApi.md#list_configs | **GET** /configs/list | list configs
*ConfigApi* | [**list_worker_groups**]docs/ConfigApi.md#list_worker_groups | **GET** /configs/list_worker_groups | list worker groups
*ConfigApi* | [**native_kubernetes_autoscaling_healthcheck**]docs/ConfigApi.md#native_kubernetes_autoscaling_healthcheck | **GET** /configs/native_kubernetes_autoscaling_healthcheck | Check Kubernetes autoscaling health for a worker group
*ConfigApi* | [**update_config**]docs/ConfigApi.md#update_config | **POST** /configs/update/{name} | Update config
*DraftApi* | [**create_draft**]docs/DraftApi.md#create_draft | **POST** /w/{workspace}/drafts/create | create draft
*DraftApi* | [**delete_draft**]docs/DraftApi.md#delete_draft | **DELETE** /w/{workspace}/drafts/delete/{kind}/{path} | delete draft
*EmailTriggerApi* | [**create_email_trigger**]docs/EmailTriggerApi.md#create_email_trigger | **POST** /w/{workspace}/email_triggers/create | create email trigger
*EmailTriggerApi* | [**delete_email_trigger**]docs/EmailTriggerApi.md#delete_email_trigger | **DELETE** /w/{workspace}/email_triggers/delete/{path} | delete email trigger
*EmailTriggerApi* | [**exists_email_local_part**]docs/EmailTriggerApi.md#exists_email_local_part | **POST** /w/{workspace}/email_triggers/local_part_exists | does email local part exists
*EmailTriggerApi* | [**exists_email_trigger**]docs/EmailTriggerApi.md#exists_email_trigger | **GET** /w/{workspace}/email_triggers/exists/{path} | does email trigger exists
*EmailTriggerApi* | [**get_email_trigger**]docs/EmailTriggerApi.md#get_email_trigger | **GET** /w/{workspace}/email_triggers/get/{path} | get email trigger
*EmailTriggerApi* | [**list_email_triggers**]docs/EmailTriggerApi.md#list_email_triggers | **GET** /w/{workspace}/email_triggers/list | list email triggers
*EmailTriggerApi* | [**update_email_trigger**]docs/EmailTriggerApi.md#update_email_trigger | **POST** /w/{workspace}/email_triggers/update/{path} | update email trigger
*FavoriteApi* | [**star**]docs/FavoriteApi.md#star | **POST** /w/{workspace}/favorites/star | star item
*FavoriteApi* | [**unstar**]docs/FavoriteApi.md#unstar | **POST** /w/{workspace}/favorites/unstar | unstar item
*FlowApi* | [**archive_flow_by_path**]docs/FlowApi.md#archive_flow_by_path | **POST** /w/{workspace}/flows/archive/{path} | archive flow by path
*FlowApi* | [**create_flow**]docs/FlowApi.md#create_flow | **POST** /w/{workspace}/flows/create | create flow
*FlowApi* | [**delete_flow_by_path**]docs/FlowApi.md#delete_flow_by_path | **DELETE** /w/{workspace}/flows/delete/{path} | delete flow by path
*FlowApi* | [**exists_flow_by_path**]docs/FlowApi.md#exists_flow_by_path | **GET** /w/{workspace}/flows/exists/{path} | exists flow by path
*FlowApi* | [**get_flow_by_path**]docs/FlowApi.md#get_flow_by_path | **GET** /w/{workspace}/flows/get/{path} | get flow by path
*FlowApi* | [**get_flow_by_path_with_draft**]docs/FlowApi.md#get_flow_by_path_with_draft | **GET** /w/{workspace}/flows/get/draft/{path} | get flow by path with draft
*FlowApi* | [**get_flow_deployment_status**]docs/FlowApi.md#get_flow_deployment_status | **GET** /w/{workspace}/flows/deployment_status/p/{path} | get flow deployment status
*FlowApi* | [**get_flow_history**]docs/FlowApi.md#get_flow_history | **GET** /w/{workspace}/flows/history/p/{path} | get flow history by path
*FlowApi* | [**get_flow_latest_version**]docs/FlowApi.md#get_flow_latest_version | **GET** /w/{workspace}/flows/get_latest_version/{path} | get flow's latest version
*FlowApi* | [**get_flow_version**]docs/FlowApi.md#get_flow_version | **GET** /w/{workspace}/flows/get/v/{version}/p/{path} | get flow version
*FlowApi* | [**get_hub_flow_by_id**]docs/FlowApi.md#get_hub_flow_by_id | **GET** /flows/hub/get/{id} | get hub flow by id
*FlowApi* | [**get_triggers_count_of_flow**]docs/FlowApi.md#get_triggers_count_of_flow | **GET** /w/{workspace}/flows/get_triggers_count/{path} | get triggers count of flow
*FlowApi* | [**list_flow_paths**]docs/FlowApi.md#list_flow_paths | **GET** /w/{workspace}/flows/list_paths | list all flow paths
*FlowApi* | [**list_flow_paths_from_workspace_runnable**]docs/FlowApi.md#list_flow_paths_from_workspace_runnable | **GET** /w/{workspace}/flows/list_paths_from_workspace_runnable/{runnable_kind}/{path} | list flow paths from workspace runnable
*FlowApi* | [**list_flows**]docs/FlowApi.md#list_flows | **GET** /w/{workspace}/flows/list | list all flows
*FlowApi* | [**list_hub_flows**]docs/FlowApi.md#list_hub_flows | **GET** /flows/hub/list | list all hub flows
*FlowApi* | [**list_search_flow**]docs/FlowApi.md#list_search_flow | **GET** /w/{workspace}/flows/list_search | list flows for search
*FlowApi* | [**list_tokens_of_flow**]docs/FlowApi.md#list_tokens_of_flow | **GET** /w/{workspace}/flows/list_tokens/{path} | get tokens with flow scope
*FlowApi* | [**toggle_workspace_error_handler_for_flow**]docs/FlowApi.md#toggle_workspace_error_handler_for_flow | **POST** /w/{workspace}/flows/toggle_workspace_error_handler/{path} | Toggle ON and OFF the workspace error handler for a given flow
*FlowApi* | [**update_flow**]docs/FlowApi.md#update_flow | **POST** /w/{workspace}/flows/update/{path} | update flow
*FlowApi* | [**update_flow_history**]docs/FlowApi.md#update_flow_history | **POST** /w/{workspace}/flows/history_update/v/{version}/p/{path} | update flow history
*FlowConversationApi* | [**delete_flow_conversation**]docs/FlowConversationApi.md#delete_flow_conversation | **DELETE** /w/{workspace}/flow_conversations/delete/{conversation_id} | delete flow conversation
*FlowConversationApi* | [**list_conversation_messages**]docs/FlowConversationApi.md#list_conversation_messages | **GET** /w/{workspace}/flow_conversations/{conversation_id}/messages | list conversation messages
*FlowConversationApi* | [**list_flow_conversations**]docs/FlowConversationApi.md#list_flow_conversations | **GET** /w/{workspace}/flow_conversations/list | list flow conversations
*FolderApi* | [**add_owner_to_folder**]docs/FolderApi.md#add_owner_to_folder | **POST** /w/{workspace}/folders/addowner/{name} | add owner to folder
*FolderApi* | [**create_folder**]docs/FolderApi.md#create_folder | **POST** /w/{workspace}/folders/create | create folder
*FolderApi* | [**delete_folder**]docs/FolderApi.md#delete_folder | **DELETE** /w/{workspace}/folders/delete/{name} | delete folder
*FolderApi* | [**exists_folder**]docs/FolderApi.md#exists_folder | **GET** /w/{workspace}/folders/exists/{name} | exists folder
*FolderApi* | [**get_folder**]docs/FolderApi.md#get_folder | **GET** /w/{workspace}/folders/get/{name} | get folder
*FolderApi* | [**get_folder_usage**]docs/FolderApi.md#get_folder_usage | **GET** /w/{workspace}/folders/getusage/{name} | get folder usage
*FolderApi* | [**list_folder_names**]docs/FolderApi.md#list_folder_names | **GET** /w/{workspace}/folders/listnames | list folder names
*FolderApi* | [**list_folders**]docs/FolderApi.md#list_folders | **GET** /w/{workspace}/folders/list | list folders
*FolderApi* | [**remove_owner_to_folder**]docs/FolderApi.md#remove_owner_to_folder | **POST** /w/{workspace}/folders/removeowner/{name} | remove owner to folder
*FolderApi* | [**update_folder**]docs/FolderApi.md#update_folder | **POST** /w/{workspace}/folders/update/{name} | update folder
*GcpTriggerApi* | [**create_gcp_trigger**]docs/GcpTriggerApi.md#create_gcp_trigger | **POST** /w/{workspace}/gcp_triggers/create | create gcp trigger
*GcpTriggerApi* | [**delete_gcp_subscription**]docs/GcpTriggerApi.md#delete_gcp_subscription | **DELETE** /w/{workspace}/gcp_triggers/subscriptions/delete/{path} | delete gcp trigger
*GcpTriggerApi* | [**delete_gcp_trigger**]docs/GcpTriggerApi.md#delete_gcp_trigger | **DELETE** /w/{workspace}/gcp_triggers/delete/{path} | delete gcp trigger
*GcpTriggerApi* | [**exists_gcp_trigger**]docs/GcpTriggerApi.md#exists_gcp_trigger | **GET** /w/{workspace}/gcp_triggers/exists/{path} | does gcp trigger exists
*GcpTriggerApi* | [**get_gcp_trigger**]docs/GcpTriggerApi.md#get_gcp_trigger | **GET** /w/{workspace}/gcp_triggers/get/{path} | get gcp trigger
*GcpTriggerApi* | [**list_all_t_google_topic_subscriptions**]docs/GcpTriggerApi.md#list_all_t_google_topic_subscriptions | **POST** /w/{workspace}/gcp_triggers/subscriptions/list/{path} | list all subscription of a give topic from google cloud service
*GcpTriggerApi* | [**list_gcp_triggers**]docs/GcpTriggerApi.md#list_gcp_triggers | **GET** /w/{workspace}/gcp_triggers/list | list gcp triggers
*GcpTriggerApi* | [**list_google_topics**]docs/GcpTriggerApi.md#list_google_topics | **GET** /w/{workspace}/gcp_triggers/topics/list/{path} | list all topics of google cloud service
*GcpTriggerApi* | [**set_gcp_trigger_enabled**]docs/GcpTriggerApi.md#set_gcp_trigger_enabled | **POST** /w/{workspace}/gcp_triggers/setenabled/{path} | set enabled gcp trigger
*GcpTriggerApi* | [**test_gcp_connection**]docs/GcpTriggerApi.md#test_gcp_connection | **POST** /w/{workspace}/gcp_triggers/test | test gcp connection
*GcpTriggerApi* | [**update_gcp_trigger**]docs/GcpTriggerApi.md#update_gcp_trigger | **POST** /w/{workspace}/gcp_triggers/update/{path} | update gcp trigger
*GitSyncApi* | [**delete_from_workspace**]docs/GitSyncApi.md#delete_from_workspace | **DELETE** /w/{workspace}/github_app/installation/{installation_id} | Delete a GitHub installation from a workspace
*GitSyncApi* | [**export_installation**]docs/GitSyncApi.md#export_installation | **GET** /w/{workspace}/github_app/export/{installationId} | Export GitHub installation JWT token
*GitSyncApi* | [**get_global_connected_repositories**]docs/GitSyncApi.md#get_global_connected_repositories | **GET** /github_app/connected_repositories | get connected repositories
*GitSyncApi* | [**import_installation**]docs/GitSyncApi.md#import_installation | **POST** /w/{workspace}/github_app/import | Import GitHub installation from JWT token
*GitSyncApi* | [**install_from_workspace**]docs/GitSyncApi.md#install_from_workspace | **POST** /w/{workspace}/github_app/install_from_workspace | Install a GitHub installation from another workspace
*GranularAclApi* | [**add_granular_acls**]docs/GranularAclApi.md#add_granular_acls | **POST** /w/{workspace}/acls/add/{kind}/{path} | add granular acls
*GranularAclApi* | [**get_granular_acls**]docs/GranularAclApi.md#get_granular_acls | **GET** /w/{workspace}/acls/get/{kind}/{path} | get granular acls
*GranularAclApi* | [**remove_granular_acls**]docs/GranularAclApi.md#remove_granular_acls | **POST** /w/{workspace}/acls/remove/{kind}/{path} | remove granular acls
*GroupApi* | [**add_user_to_group**]docs/GroupApi.md#add_user_to_group | **POST** /w/{workspace}/groups/adduser/{name} | add user to group
*GroupApi* | [**add_user_to_instance_group**]docs/GroupApi.md#add_user_to_instance_group | **POST** /groups/adduser/{name} | add user to instance group
*GroupApi* | [**create_group**]docs/GroupApi.md#create_group | **POST** /w/{workspace}/groups/create | create group
*GroupApi* | [**create_instance_group**]docs/GroupApi.md#create_instance_group | **POST** /groups/create | create instance group
*GroupApi* | [**delete_group**]docs/GroupApi.md#delete_group | **DELETE** /w/{workspace}/groups/delete/{name} | delete group
*GroupApi* | [**delete_instance_group**]docs/GroupApi.md#delete_instance_group | **DELETE** /groups/delete/{name} | delete instance group
*GroupApi* | [**export_instance_groups**]docs/GroupApi.md#export_instance_groups | **GET** /groups/export | export instance groups
*GroupApi* | [**get_group**]docs/GroupApi.md#get_group | **GET** /w/{workspace}/groups/get/{name} | get group
*GroupApi* | [**get_instance_group**]docs/GroupApi.md#get_instance_group | **GET** /groups/get/{name} | get instance group
*GroupApi* | [**list_group_names**]docs/GroupApi.md#list_group_names | **GET** /w/{workspace}/groups/listnames | list group names
*GroupApi* | [**list_groups**]docs/GroupApi.md#list_groups | **GET** /w/{workspace}/groups/list | list groups
*GroupApi* | [**list_instance_groups**]docs/GroupApi.md#list_instance_groups | **GET** /groups/list | list instance groups
*GroupApi* | [**list_instance_groups_with_workspaces**]docs/GroupApi.md#list_instance_groups_with_workspaces | **GET** /groups/list_with_workspaces | list instance groups with workspace information
*GroupApi* | [**overwrite_instance_groups**]docs/GroupApi.md#overwrite_instance_groups | **POST** /groups/overwrite | overwrite instance groups
*GroupApi* | [**remove_user_from_instance_group**]docs/GroupApi.md#remove_user_from_instance_group | **POST** /groups/removeuser/{name} | remove user from instance group
*GroupApi* | [**remove_user_to_group**]docs/GroupApi.md#remove_user_to_group | **POST** /w/{workspace}/groups/removeuser/{name} | remove user to group
*GroupApi* | [**update_group**]docs/GroupApi.md#update_group | **POST** /w/{workspace}/groups/update/{name} | update group
*GroupApi* | [**update_instance_group**]docs/GroupApi.md#update_instance_group | **POST** /groups/update/{name} | update instance group
*HelpersApi* | [**dataset_storage_test_connection**]docs/HelpersApi.md#dataset_storage_test_connection | **GET** /w/{workspace}/job_helpers/test_connection | Test connection to the workspace object storage
*HelpersApi* | [**delete_s3_file**]docs/HelpersApi.md#delete_s3_file | **DELETE** /w/{workspace}/job_helpers/delete_s3_file | Permanently delete file from S3
*HelpersApi* | [**duckdb_connection_settings**]docs/HelpersApi.md#duckdb_connection_settings | **POST** /w/{workspace}/job_helpers/duckdb_connection_settings | Converts an S3 resource to the set of instructions necessary to connect DuckDB to an S3 bucket
*HelpersApi* | [**duckdb_connection_settings_v2**]docs/HelpersApi.md#duckdb_connection_settings_v2 | **POST** /w/{workspace}/job_helpers/v2/duckdb_connection_settings | Converts an S3 resource to the set of instructions necessary to connect DuckDB to an S3 bucket
*HelpersApi* | [**file_download**]docs/HelpersApi.md#file_download | **GET** /w/{workspace}/job_helpers/download_s3_file | Download file from S3 bucket
*HelpersApi* | [**file_download_parquet_as_csv**]docs/HelpersApi.md#file_download_parquet_as_csv | **GET** /w/{workspace}/job_helpers/download_s3_parquet_file_as_csv | Download file to S3 bucket
*HelpersApi* | [**file_upload**]docs/HelpersApi.md#file_upload | **POST** /w/{workspace}/job_helpers/upload_s3_file | Upload file to S3 bucket
*HelpersApi* | [**list_stored_files**]docs/HelpersApi.md#list_stored_files | **GET** /w/{workspace}/job_helpers/list_stored_files | List the file keys available in a workspace object storage
*HelpersApi* | [**load_csv_preview**]docs/HelpersApi.md#load_csv_preview | **GET** /w/{workspace}/job_helpers/load_csv_preview/{path} | Load a preview of a csv file
*HelpersApi* | [**load_file_metadata**]docs/HelpersApi.md#load_file_metadata | **GET** /w/{workspace}/job_helpers/load_file_metadata | Load metadata of the file
*HelpersApi* | [**load_file_preview**]docs/HelpersApi.md#load_file_preview | **GET** /w/{workspace}/job_helpers/load_file_preview | Load a preview of the file
*HelpersApi* | [**load_parquet_preview**]docs/HelpersApi.md#load_parquet_preview | **GET** /w/{workspace}/job_helpers/load_parquet_preview/{path} | Load a preview of a parquet file
*HelpersApi* | [**load_table_row_count**]docs/HelpersApi.md#load_table_row_count | **GET** /w/{workspace}/job_helpers/load_table_count/{path} | Load the table row count
*HelpersApi* | [**move_s3_file**]docs/HelpersApi.md#move_s3_file | **GET** /w/{workspace}/job_helpers/move_s3_file | Move a S3 file from one path to the other within the same bucket
*HelpersApi* | [**polars_connection_settings**]docs/HelpersApi.md#polars_connection_settings | **POST** /w/{workspace}/job_helpers/polars_connection_settings | Converts an S3 resource to the set of arguments necessary to connect Polars to an S3 bucket
*HelpersApi* | [**polars_connection_settings_v2**]docs/HelpersApi.md#polars_connection_settings_v2 | **POST** /w/{workspace}/job_helpers/v2/polars_connection_settings | Converts an S3 resource to the set of arguments necessary to connect Polars to an S3 bucket
*HelpersApi* | [**s3_resource_info**]docs/HelpersApi.md#s3_resource_info | **POST** /w/{workspace}/job_helpers/v2/s3_resource_info | Returns the s3 resource associated to the provided path, or the workspace default S3 resource
*HttpTriggerApi* | [**create_http_trigger**]docs/HttpTriggerApi.md#create_http_trigger | **POST** /w/{workspace}/http_triggers/create | create http trigger
*HttpTriggerApi* | [**create_http_triggers**]docs/HttpTriggerApi.md#create_http_triggers | **POST** /w/{workspace}/http_triggers/create_many | create many HTTP triggers
*HttpTriggerApi* | [**delete_http_trigger**]docs/HttpTriggerApi.md#delete_http_trigger | **DELETE** /w/{workspace}/http_triggers/delete/{path} | delete http trigger
*HttpTriggerApi* | [**exists_http_trigger**]docs/HttpTriggerApi.md#exists_http_trigger | **GET** /w/{workspace}/http_triggers/exists/{path} | does http trigger exists
*HttpTriggerApi* | [**exists_route**]docs/HttpTriggerApi.md#exists_route | **POST** /w/{workspace}/http_triggers/route_exists | does route exists
*HttpTriggerApi* | [**get_http_trigger**]docs/HttpTriggerApi.md#get_http_trigger | **GET** /w/{workspace}/http_triggers/get/{path} | get http trigger
*HttpTriggerApi* | [**list_http_triggers**]docs/HttpTriggerApi.md#list_http_triggers | **GET** /w/{workspace}/http_triggers/list | list http triggers
*HttpTriggerApi* | [**update_http_trigger**]docs/HttpTriggerApi.md#update_http_trigger | **POST** /w/{workspace}/http_triggers/update/{path} | update http trigger
*IndexSearchApi* | [**clear_index**]docs/IndexSearchApi.md#clear_index | **DELETE** /srch/index/delete/{idx_name} | Restart container and delete the index to recreate it.
*IndexSearchApi* | [**count_search_logs_index**]docs/IndexSearchApi.md#count_search_logs_index | **GET** /srch/index/search/count_service_logs | Search and count the log line hits on every provided host
*IndexSearchApi* | [**search_jobs_index**]docs/IndexSearchApi.md#search_jobs_index | **GET** /srch/w/{workspace}/index/search/job | Search through jobs with a string query
*IndexSearchApi* | [**search_logs_index**]docs/IndexSearchApi.md#search_logs_index | **GET** /srch/index/search/service_logs | Search through service logs with a string query
*InputApi* | [**create_input**]docs/InputApi.md#create_input | **POST** /w/{workspace}/inputs/create | Create an Input for future use in a script or flow
*InputApi* | [**delete_input**]docs/InputApi.md#delete_input | **POST** /w/{workspace}/inputs/delete/{input} | Delete a Saved Input
*InputApi* | [**get_args_from_history_or_saved_input**]docs/InputApi.md#get_args_from_history_or_saved_input | **GET** /w/{workspace}/inputs/{jobOrInputId}/args | Get args from history or saved input
*InputApi* | [**get_input_history**]docs/InputApi.md#get_input_history | **GET** /w/{workspace}/inputs/history | List Inputs used in previously completed jobs
*InputApi* | [**list_inputs**]docs/InputApi.md#list_inputs | **GET** /w/{workspace}/inputs/list | List saved Inputs for a Runnable
*InputApi* | [**update_input**]docs/InputApi.md#update_input | **POST** /w/{workspace}/inputs/update | Update an Input
*IntegrationApi* | [**list_hub_integrations**]docs/IntegrationApi.md#list_hub_integrations | **GET** /integrations/hub/list | list hub integrations
*JobApi* | [**batch_re_run_jobs**]docs/JobApi.md#batch_re_run_jobs | **POST** /w/{workspace}/jobs/run/batch_rerun_jobs | re-run multiple jobs
*JobApi* | [**cancel_persistent_queued_jobs**]docs/JobApi.md#cancel_persistent_queued_jobs | **POST** /w/{workspace}/jobs_u/queue/cancel_persistent/{path} | cancel all queued jobs for persistent script
*JobApi* | [**cancel_queued_job**]docs/JobApi.md#cancel_queued_job | **POST** /w/{workspace}/jobs_u/queue/cancel/{id} | cancel queued or running job
*JobApi* | [**cancel_selection**]docs/JobApi.md#cancel_selection | **POST** /w/{workspace}/jobs/queue/cancel_selection | cancel jobs based on the given uuids
*JobApi* | [**cancel_suspended_job_get**]docs/JobApi.md#cancel_suspended_job_get | **GET** /w/{workspace}/jobs_u/cancel/{id}/{resume_id}/{signature} | cancel a job for a suspended flow
*JobApi* | [**cancel_suspended_job_post**]docs/JobApi.md#cancel_suspended_job_post | **POST** /w/{workspace}/jobs_u/cancel/{id}/{resume_id}/{signature} | cancel a job for a suspended flow
*JobApi* | [**count_completed_jobs**]docs/JobApi.md#count_completed_jobs | **GET** /w/{workspace}/jobs/completed/count_jobs | count number of completed jobs with filter
*JobApi* | [**count_jobs_by_tag**]docs/JobApi.md#count_jobs_by_tag | **GET** /jobs/completed/count_by_tag | Count jobs by tag
*JobApi* | [**create_job_signature**]docs/JobApi.md#create_job_signature | **GET** /w/{workspace}/jobs/job_signature/{id}/{resume_id} | create an HMac signature given a job id and a resume id
*JobApi* | [**delete_completed_job**]docs/JobApi.md#delete_completed_job | **POST** /w/{workspace}/jobs/completed/delete/{id} | delete completed job (erase content but keep run id)
*JobApi* | [**force_cancel_queued_job**]docs/JobApi.md#force_cancel_queued_job | **POST** /w/{workspace}/jobs_u/queue/force_cancel/{id} | force cancel queued job
*JobApi* | [**get_completed_count**]docs/JobApi.md#get_completed_count | **GET** /w/{workspace}/jobs/completed/count | get completed count
*JobApi* | [**get_completed_job**]docs/JobApi.md#get_completed_job | **GET** /w/{workspace}/jobs_u/completed/get/{id} | get completed job
*JobApi* | [**get_completed_job_logs_tail**]docs/JobApi.md#get_completed_job_logs_tail | **GET** /w/{workspace}/jobs_u/get_completed_logs_tail/{id} | get completed job logs tail
*JobApi* | [**get_completed_job_result**]docs/JobApi.md#get_completed_job_result | **GET** /w/{workspace}/jobs_u/completed/get_result/{id} | get completed job result
*JobApi* | [**get_completed_job_result_maybe**]docs/JobApi.md#get_completed_job_result_maybe | **GET** /w/{workspace}/jobs_u/completed/get_result_maybe/{id} | get completed job result if job is completed
*JobApi* | [**get_db_clock**]docs/JobApi.md#get_db_clock | **GET** /jobs/db_clock | get db clock
*JobApi* | [**get_flow_debug_info**]docs/JobApi.md#get_flow_debug_info | **GET** /w/{workspace}/jobs_u/get_flow_debug_info/{id} | get flow debug info
*JobApi* | [**get_flow_user_state**]docs/JobApi.md#get_flow_user_state | **GET** /w/{workspace}/jobs/flow/user_states/{id}/{key} | get flow user state at a given key
*JobApi* | [**get_job**]docs/JobApi.md#get_job | **GET** /w/{workspace}/jobs_u/get/{id} | get job
*JobApi* | [**get_job_args**]docs/JobApi.md#get_job_args | **GET** /w/{workspace}/jobs_u/get_args/{id} | get job args
*JobApi* | [**get_job_logs**]docs/JobApi.md#get_job_logs | **GET** /w/{workspace}/jobs_u/get_logs/{id} | get job logs
*JobApi* | [**get_job_updates**]docs/JobApi.md#get_job_updates | **GET** /w/{workspace}/jobs_u/getupdate/{id} | get job updates
*JobApi* | [**get_job_updates_sse**]docs/JobApi.md#get_job_updates_sse | **GET** /w/{workspace}/jobs_u/getupdate_sse/{id} | get job updates via server-sent events
*JobApi* | [**get_log_file_from_store**]docs/JobApi.md#get_log_file_from_store | **GET** /w/{workspace}/jobs_u/get_log_file/{path} | get log file from object store
*JobApi* | [**get_queue_count**]docs/JobApi.md#get_queue_count | **GET** /w/{workspace}/jobs/queue/count | get queue count
*JobApi* | [**get_queue_position**]docs/JobApi.md#get_queue_position | **GET** /w/{workspace}/jobs/queue/position/{scheduled_for} | get queue position for a job
*JobApi* | [**get_resume_urls**]docs/JobApi.md#get_resume_urls | **GET** /w/{workspace}/jobs/resume_urls/{id}/{resume_id} | get resume urls given a job_id, resume_id and a nonce to resume a flow
*JobApi* | [**get_root_job_id**]docs/JobApi.md#get_root_job_id | **GET** /w/{workspace}/jobs_u/get_root_job_id/{id} | get root job id
*JobApi* | [**get_scheduled_for**]docs/JobApi.md#get_scheduled_for | **GET** /w/{workspace}/jobs/queue/scheduled_for/{id} | get scheduled for timestamp for a job
*JobApi* | [**get_slack_approval_payload**]docs/JobApi.md#get_slack_approval_payload | **GET** /w/{workspace}/jobs/slack_approval/{id} | generate interactive slack approval for suspended job
*JobApi* | [**get_started_at_by_ids**]docs/JobApi.md#get_started_at_by_ids | **POST** /w/{workspace}/jobs_u/queue/get_started_at_by_ids | get started at by ids
*JobApi* | [**get_suspended_job_flow**]docs/JobApi.md#get_suspended_job_flow | **GET** /w/{workspace}/jobs_u/get_flow/{id}/{resume_id}/{signature} | get parent flow job of suspended job
*JobApi* | [**get_teams_approval_payload**]docs/JobApi.md#get_teams_approval_payload | **GET** /w/{workspace}/jobs/teams_approval/{id} | generate interactive teams approval for suspended job
*JobApi* | [**list_completed_jobs**]docs/JobApi.md#list_completed_jobs | **GET** /w/{workspace}/jobs/completed/list | list all completed jobs
*JobApi* | [**list_extended_jobs**]docs/JobApi.md#list_extended_jobs | **GET** /w/{workspace}/concurrency_groups/list_jobs | Get intervals of job runtime concurrency
*JobApi* | [**list_filtered_jobs_uuids**]docs/JobApi.md#list_filtered_jobs_uuids | **GET** /w/{workspace}/jobs/list_filtered_uuids | get the ids of all jobs matching the given filters
*JobApi* | [**list_filtered_queue_uuids**]docs/JobApi.md#list_filtered_queue_uuids | **GET** /w/{workspace}/jobs/queue/list_filtered_uuids | get the ids of all queued jobs matching the given filters
*JobApi* | [**list_jobs**]docs/JobApi.md#list_jobs | **GET** /w/{workspace}/jobs/list | list all jobs
*JobApi* | [**list_queue**]docs/JobApi.md#list_queue | **GET** /w/{workspace}/jobs/queue/list | list all queued jobs
*JobApi* | [**list_selected_job_groups**]docs/JobApi.md#list_selected_job_groups | **POST** /w/{workspace}/jobs/list_selected_job_groups | list selected jobs script/flow schemas grouped by (kind, path)
*JobApi* | [**restart_flow_at_step**]docs/JobApi.md#restart_flow_at_step | **POST** /w/{workspace}/jobs/restart/f/{id}/from/{step_id}/{branch_or_iteration_n} | restart a completed flow at a given step
*JobApi* | [**result_by_id**]docs/JobApi.md#result_by_id | **GET** /w/{workspace}/jobs/result_by_id/{flow_job_id}/{node_id} | get job result by id
*JobApi* | [**resume_suspended_flow_as_owner**]docs/JobApi.md#resume_suspended_flow_as_owner | **POST** /w/{workspace}/jobs/flow/resume/{id} | resume a job for a suspended flow as an owner
*JobApi* | [**resume_suspended_job_get**]docs/JobApi.md#resume_suspended_job_get | **GET** /w/{workspace}/jobs_u/resume/{id}/{resume_id}/{signature} | resume a job for a suspended flow
*JobApi* | [**resume_suspended_job_post**]docs/JobApi.md#resume_suspended_job_post | **POST** /w/{workspace}/jobs_u/resume/{id}/{resume_id}/{signature} | resume a job for a suspended flow
*JobApi* | [**run_and_stream_flow_by_path**]docs/JobApi.md#run_and_stream_flow_by_path | **POST** /w/{workspace}/jobs/run_and_stream/f/{path} | run flow by path and stream updates via SSE
*JobApi* | [**run_and_stream_flow_by_path_get**]docs/JobApi.md#run_and_stream_flow_by_path_get | **GET** /w/{workspace}/jobs/run_and_stream/f/{path} | run flow by path with GET and stream updates via SSE
*JobApi* | [**run_and_stream_script_by_hash**]docs/JobApi.md#run_and_stream_script_by_hash | **POST** /w/{workspace}/jobs/run_and_stream/h/{hash} | run script by hash and stream updates via SSE
*JobApi* | [**run_and_stream_script_by_hash_get**]docs/JobApi.md#run_and_stream_script_by_hash_get | **GET** /w/{workspace}/jobs/run_and_stream/h/{hash} | run script by hash with GET and stream updates via SSE
*JobApi* | [**run_and_stream_script_by_path**]docs/JobApi.md#run_and_stream_script_by_path | **POST** /w/{workspace}/jobs/run_and_stream/p/{path} | run script by path and stream updates via SSE
*JobApi* | [**run_and_stream_script_by_path_get**]docs/JobApi.md#run_and_stream_script_by_path_get | **GET** /w/{workspace}/jobs/run_and_stream/p/{path} | run script by path with GET and stream updates via SSE
*JobApi* | [**run_code_workflow_task**]docs/JobApi.md#run_code_workflow_task | **POST** /w/{workspace}/jobs/workflow_as_code/{job_id}/{entrypoint} | run code-workflow task
*JobApi* | [**run_dynamic_select**]docs/JobApi.md#run_dynamic_select | **POST** /w/{workspace}/jobs/run/dynamic_select | run dynamic select helper function
*JobApi* | [**run_flow_by_path**]docs/JobApi.md#run_flow_by_path | **POST** /w/{workspace}/jobs/run/f/{path} | run flow by path
*JobApi* | [**run_flow_preview**]docs/JobApi.md#run_flow_preview | **POST** /w/{workspace}/jobs/run/preview_flow | run flow preview
*JobApi* | [**run_flow_preview_and_wait_result**]docs/JobApi.md#run_flow_preview_and_wait_result | **POST** /w/{workspace}/jobs/run_wait_result/preview_flow | run flow preview and wait for result
*JobApi* | [**run_raw_script_dependencies**]docs/JobApi.md#run_raw_script_dependencies | **POST** /w/{workspace}/jobs/run/dependencies | run a one-off dependencies job
*JobApi* | [**run_script_by_hash**]docs/JobApi.md#run_script_by_hash | **POST** /w/{workspace}/jobs/run/h/{hash} | run script by hash
*JobApi* | [**run_script_by_path**]docs/JobApi.md#run_script_by_path | **POST** /w/{workspace}/jobs/run/p/{path} | run script by path
*JobApi* | [**run_script_preview**]docs/JobApi.md#run_script_preview | **POST** /w/{workspace}/jobs/run/preview | run script preview
*JobApi* | [**run_script_preview_and_wait_result**]docs/JobApi.md#run_script_preview_and_wait_result | **POST** /w/{workspace}/jobs/run_wait_result/preview | run script preview and wait for result
*JobApi* | [**run_wait_result_flow_by_path**]docs/JobApi.md#run_wait_result_flow_by_path | **POST** /w/{workspace}/jobs/run_wait_result/f/{path} | run flow by path and wait until completion
*JobApi* | [**run_wait_result_script_by_path**]docs/JobApi.md#run_wait_result_script_by_path | **POST** /w/{workspace}/jobs/run_wait_result/p/{path} | run script by path
*JobApi* | [**run_wait_result_script_by_path_get**]docs/JobApi.md#run_wait_result_script_by_path_get | **GET** /w/{workspace}/jobs/run_wait_result/p/{path} | run script by path with get
*JobApi* | [**set_flow_user_state**]docs/JobApi.md#set_flow_user_state | **POST** /w/{workspace}/jobs/flow/user_states/{id}/{key} | set flow user state at a given key
*KafkaTriggerApi* | [**create_kafka_trigger**]docs/KafkaTriggerApi.md#create_kafka_trigger | **POST** /w/{workspace}/kafka_triggers/create | create kafka trigger
*KafkaTriggerApi* | [**delete_kafka_trigger**]docs/KafkaTriggerApi.md#delete_kafka_trigger | **DELETE** /w/{workspace}/kafka_triggers/delete/{path} | delete kafka trigger
*KafkaTriggerApi* | [**exists_kafka_trigger**]docs/KafkaTriggerApi.md#exists_kafka_trigger | **GET** /w/{workspace}/kafka_triggers/exists/{path} | does kafka trigger exists
*KafkaTriggerApi* | [**get_kafka_trigger**]docs/KafkaTriggerApi.md#get_kafka_trigger | **GET** /w/{workspace}/kafka_triggers/get/{path} | get kafka trigger
*KafkaTriggerApi* | [**list_kafka_triggers**]docs/KafkaTriggerApi.md#list_kafka_triggers | **GET** /w/{workspace}/kafka_triggers/list | list kafka triggers
*KafkaTriggerApi* | [**set_kafka_trigger_enabled**]docs/KafkaTriggerApi.md#set_kafka_trigger_enabled | **POST** /w/{workspace}/kafka_triggers/setenabled/{path} | set enabled kafka trigger
*KafkaTriggerApi* | [**test_kafka_connection**]docs/KafkaTriggerApi.md#test_kafka_connection | **POST** /w/{workspace}/kafka_triggers/test | test kafka connection
*KafkaTriggerApi* | [**update_kafka_trigger**]docs/KafkaTriggerApi.md#update_kafka_trigger | **POST** /w/{workspace}/kafka_triggers/update/{path} | update kafka trigger
*McpApi* | [**list_mcp_tools**]docs/McpApi.md#list_mcp_tools | **GET** /mcp/w/{workspace}/list_tools | list available MCP tools
*MetricsApi* | [**get_job_metrics**]docs/MetricsApi.md#get_job_metrics | **POST** /w/{workspace}/job_metrics/get/{id} | get job metrics
*MetricsApi* | [**get_job_progress**]docs/MetricsApi.md#get_job_progress | **GET** /w/{workspace}/job_metrics/get_progress/{id} | get job progress
*MetricsApi* | [**set_job_progress**]docs/MetricsApi.md#set_job_progress | **POST** /w/{workspace}/job_metrics/set_progress/{id} | set job metrics
*MqttTriggerApi* | [**create_mqtt_trigger**]docs/MqttTriggerApi.md#create_mqtt_trigger | **POST** /w/{workspace}/mqtt_triggers/create | create mqtt trigger
*MqttTriggerApi* | [**delete_mqtt_trigger**]docs/MqttTriggerApi.md#delete_mqtt_trigger | **DELETE** /w/{workspace}/mqtt_triggers/delete/{path} | delete mqtt trigger
*MqttTriggerApi* | [**exists_mqtt_trigger**]docs/MqttTriggerApi.md#exists_mqtt_trigger | **GET** /w/{workspace}/mqtt_triggers/exists/{path} | does mqtt trigger exists
*MqttTriggerApi* | [**get_mqtt_trigger**]docs/MqttTriggerApi.md#get_mqtt_trigger | **GET** /w/{workspace}/mqtt_triggers/get/{path} | get mqtt trigger
*MqttTriggerApi* | [**list_mqtt_triggers**]docs/MqttTriggerApi.md#list_mqtt_triggers | **GET** /w/{workspace}/mqtt_triggers/list | list mqtt triggers
*MqttTriggerApi* | [**set_mqtt_trigger_enabled**]docs/MqttTriggerApi.md#set_mqtt_trigger_enabled | **POST** /w/{workspace}/mqtt_triggers/setenabled/{path} | set enabled mqtt trigger
*MqttTriggerApi* | [**test_mqtt_connection**]docs/MqttTriggerApi.md#test_mqtt_connection | **POST** /w/{workspace}/mqtt_triggers/test | test mqtt connection
*MqttTriggerApi* | [**update_mqtt_trigger**]docs/MqttTriggerApi.md#update_mqtt_trigger | **POST** /w/{workspace}/mqtt_triggers/update/{path} | update mqtt trigger
*NatsTriggerApi* | [**create_nats_trigger**]docs/NatsTriggerApi.md#create_nats_trigger | **POST** /w/{workspace}/nats_triggers/create | create nats trigger
*NatsTriggerApi* | [**delete_nats_trigger**]docs/NatsTriggerApi.md#delete_nats_trigger | **DELETE** /w/{workspace}/nats_triggers/delete/{path} | delete nats trigger
*NatsTriggerApi* | [**exists_nats_trigger**]docs/NatsTriggerApi.md#exists_nats_trigger | **GET** /w/{workspace}/nats_triggers/exists/{path} | does nats trigger exists
*NatsTriggerApi* | [**get_nats_trigger**]docs/NatsTriggerApi.md#get_nats_trigger | **GET** /w/{workspace}/nats_triggers/get/{path} | get nats trigger
*NatsTriggerApi* | [**list_nats_triggers**]docs/NatsTriggerApi.md#list_nats_triggers | **GET** /w/{workspace}/nats_triggers/list | list nats triggers
*NatsTriggerApi* | [**set_nats_trigger_enabled**]docs/NatsTriggerApi.md#set_nats_trigger_enabled | **POST** /w/{workspace}/nats_triggers/setenabled/{path} | set enabled nats trigger
*NatsTriggerApi* | [**test_nats_connection**]docs/NatsTriggerApi.md#test_nats_connection | **POST** /w/{workspace}/nats_triggers/test | test NATS connection
*NatsTriggerApi* | [**update_nats_trigger**]docs/NatsTriggerApi.md#update_nats_trigger | **POST** /w/{workspace}/nats_triggers/update/{path} | update nats trigger
*OauthApi* | [**connect_callback**]docs/OauthApi.md#connect_callback | **POST** /oauth/connect_callback/{client_name} | connect callback
*OauthApi* | [**connect_client_credentials**]docs/OauthApi.md#connect_client_credentials | **POST** /oauth/connect_client_credentials/{client} | connect OAuth using client credentials
*OauthApi* | [**connect_slack_callback**]docs/OauthApi.md#connect_slack_callback | **POST** /w/{workspace}/oauth/connect_slack_callback | connect slack callback
*OauthApi* | [**connect_slack_callback_instance**]docs/OauthApi.md#connect_slack_callback_instance | **POST** /oauth/connect_slack_callback | connect slack callback instance
*OauthApi* | [**create_account**]docs/OauthApi.md#create_account | **POST** /w/{workspace}/oauth/create_account | create OAuth account
*OauthApi* | [**disconnect_account**]docs/OauthApi.md#disconnect_account | **POST** /w/{workspace}/oauth/disconnect/{id} | disconnect account
*OauthApi* | [**disconnect_slack**]docs/OauthApi.md#disconnect_slack | **POST** /w/{workspace}/oauth/disconnect_slack | disconnect slack
*OauthApi* | [**disconnect_teams**]docs/OauthApi.md#disconnect_teams | **POST** /w/{workspace}/oauth/disconnect_teams | disconnect teams
*OauthApi* | [**get_o_auth_connect**]docs/OauthApi.md#get_o_auth_connect | **GET** /oauth/get_connect/{client} | get oauth connect
*OauthApi* | [**list_o_auth_connects**]docs/OauthApi.md#list_o_auth_connects | **GET** /oauth/list_connects | list oauth connects
*OauthApi* | [**list_o_auth_logins**]docs/OauthApi.md#list_o_auth_logins | **GET** /oauth/list_logins | list oauth logins
*OauthApi* | [**refresh_token**]docs/OauthApi.md#refresh_token | **POST** /w/{workspace}/oauth/refresh_token/{id} | refresh token
*OidcApi* | [**get_oidc_token**]docs/OidcApi.md#get_oidc_token | **POST** /w/{workspace}/oidc/token/{audience} | get OIDC token (ee only)
*OpenapiApi* | [**download_openapi_spec**]docs/OpenapiApi.md#download_openapi_spec | **POST** /w/{workspace}/openapi/download | Download the OpenAPI v3.1 spec as a file
*OpenapiApi* | [**generate_openapi_spec**]docs/OpenapiApi.md#generate_openapi_spec | **POST** /w/{workspace}/openapi/generate | generate openapi spec from http routes/webhook
*PostgresTriggerApi* | [**create_postgres_publication**]docs/PostgresTriggerApi.md#create_postgres_publication | **POST** /w/{workspace}/postgres_triggers/publication/create/{publication}/{path} | create publication for postgres
*PostgresTriggerApi* | [**create_postgres_replication_slot**]docs/PostgresTriggerApi.md#create_postgres_replication_slot | **POST** /w/{workspace}/postgres_triggers/slot/create/{path} | create replication slot for postgres
*PostgresTriggerApi* | [**create_postgres_trigger**]docs/PostgresTriggerApi.md#create_postgres_trigger | **POST** /w/{workspace}/postgres_triggers/create | create postgres trigger
*PostgresTriggerApi* | [**create_template_script**]docs/PostgresTriggerApi.md#create_template_script | **POST** /w/{workspace}/postgres_triggers/create_template_script | create template script
*PostgresTriggerApi* | [**delete_postgres_publication**]docs/PostgresTriggerApi.md#delete_postgres_publication | **DELETE** /w/{workspace}/postgres_triggers/publication/delete/{publication}/{path} | delete postgres publication
*PostgresTriggerApi* | [**delete_postgres_replication_slot**]docs/PostgresTriggerApi.md#delete_postgres_replication_slot | **DELETE** /w/{workspace}/postgres_triggers/slot/delete/{path} | delete postgres replication slot
*PostgresTriggerApi* | [**delete_postgres_trigger**]docs/PostgresTriggerApi.md#delete_postgres_trigger | **DELETE** /w/{workspace}/postgres_triggers/delete/{path} | delete postgres trigger
*PostgresTriggerApi* | [**exists_postgres_trigger**]docs/PostgresTriggerApi.md#exists_postgres_trigger | **GET** /w/{workspace}/postgres_triggers/exists/{path} | does postgres trigger exists
*PostgresTriggerApi* | [**get_postgres_publication**]docs/PostgresTriggerApi.md#get_postgres_publication | **GET** /w/{workspace}/postgres_triggers/publication/get/{publication}/{path} | get postgres publication
*PostgresTriggerApi* | [**get_postgres_trigger**]docs/PostgresTriggerApi.md#get_postgres_trigger | **GET** /w/{workspace}/postgres_triggers/get/{path} | get postgres trigger
*PostgresTriggerApi* | [**get_postgres_version**]docs/PostgresTriggerApi.md#get_postgres_version | **GET** /w/{workspace}/postgres_triggers/postgres/version/{path} | get postgres version
*PostgresTriggerApi* | [**get_template_script**]docs/PostgresTriggerApi.md#get_template_script | **GET** /w/{workspace}/postgres_triggers/get_template_script/{id} | get template script
*PostgresTriggerApi* | [**is_valid_postgres_configuration**]docs/PostgresTriggerApi.md#is_valid_postgres_configuration | **GET** /w/{workspace}/postgres_triggers/is_valid_postgres_configuration/{path} | check if postgres configuration is set to logical
*PostgresTriggerApi* | [**list_postgres_publication**]docs/PostgresTriggerApi.md#list_postgres_publication | **GET** /w/{workspace}/postgres_triggers/publication/list/{path} | list postgres publication
*PostgresTriggerApi* | [**list_postgres_replication_slot**]docs/PostgresTriggerApi.md#list_postgres_replication_slot | **GET** /w/{workspace}/postgres_triggers/slot/list/{path} | list postgres replication slot
*PostgresTriggerApi* | [**list_postgres_triggers**]docs/PostgresTriggerApi.md#list_postgres_triggers | **GET** /w/{workspace}/postgres_triggers/list | list postgres triggers
*PostgresTriggerApi* | [**set_postgres_trigger_enabled**]docs/PostgresTriggerApi.md#set_postgres_trigger_enabled | **POST** /w/{workspace}/postgres_triggers/setenabled/{path} | set enabled postgres trigger
*PostgresTriggerApi* | [**test_postgres_connection**]docs/PostgresTriggerApi.md#test_postgres_connection | **POST** /w/{workspace}/postgres_triggers/test | test postgres connection
*PostgresTriggerApi* | [**update_postgres_publication**]docs/PostgresTriggerApi.md#update_postgres_publication | **POST** /w/{workspace}/postgres_triggers/publication/update/{publication}/{path} | update publication for postgres
*PostgresTriggerApi* | [**update_postgres_trigger**]docs/PostgresTriggerApi.md#update_postgres_trigger | **POST** /w/{workspace}/postgres_triggers/update/{path} | update postgres trigger
*RawAppApi* | [**create_raw_app**]docs/RawAppApi.md#create_raw_app | **POST** /w/{workspace}/raw_apps/create | create raw app
*RawAppApi* | [**delete_raw_app**]docs/RawAppApi.md#delete_raw_app | **DELETE** /w/{workspace}/raw_apps/delete/{path} | delete raw app
*RawAppApi* | [**exists_raw_app**]docs/RawAppApi.md#exists_raw_app | **GET** /w/{workspace}/raw_apps/exists/{path} | does an app exisst at path
*RawAppApi* | [**get_raw_app_data**]docs/RawAppApi.md#get_raw_app_data | **GET** /w/{workspace}/apps/get_data/{version}/{path} | get app by path
*RawAppApi* | [**list_raw_apps**]docs/RawAppApi.md#list_raw_apps | **GET** /w/{workspace}/raw_apps/list | list all raw apps
*RawAppApi* | [**update_raw_app**]docs/RawAppApi.md#update_raw_app | **POST** /w/{workspace}/raw_apps/update/{path} | update app
*ResourceApi* | [**create_resource**]docs/ResourceApi.md#create_resource | **POST** /w/{workspace}/resources/create | create resource
*ResourceApi* | [**create_resource_type**]docs/ResourceApi.md#create_resource_type | **POST** /w/{workspace}/resources/type/create | create resource_type
*ResourceApi* | [**delete_resource**]docs/ResourceApi.md#delete_resource | **DELETE** /w/{workspace}/resources/delete/{path} | delete resource
*ResourceApi* | [**delete_resource_type**]docs/ResourceApi.md#delete_resource_type | **DELETE** /w/{workspace}/resources/type/delete/{path} | delete resource_type
*ResourceApi* | [**delete_resources_bulk**]docs/ResourceApi.md#delete_resources_bulk | **DELETE** /w/{workspace}/resources/delete_bulk | delete resources in bulk
*ResourceApi* | [**exists_resource**]docs/ResourceApi.md#exists_resource | **GET** /w/{workspace}/resources/exists/{path} | does resource exists
*ResourceApi* | [**exists_resource_type**]docs/ResourceApi.md#exists_resource_type | **GET** /w/{workspace}/resources/type/exists/{path} | does resource_type exists
*ResourceApi* | [**file_resource_type_to_file_ext_map**]docs/ResourceApi.md#file_resource_type_to_file_ext_map | **GET** /w/{workspace}/resources/file_resource_type_to_file_ext_map | get map from resource type to format extension
*ResourceApi* | [**get_resource**]docs/ResourceApi.md#get_resource | **GET** /w/{workspace}/resources/get/{path} | get resource
*ResourceApi* | [**get_resource_type**]docs/ResourceApi.md#get_resource_type | **GET** /w/{workspace}/resources/type/get/{path} | get resource_type
*ResourceApi* | [**get_resource_value**]docs/ResourceApi.md#get_resource_value | **GET** /w/{workspace}/resources/get_value/{path} | get resource value
*ResourceApi* | [**get_resource_value_interpolated**]docs/ResourceApi.md#get_resource_value_interpolated | **GET** /w/{workspace}/resources/get_value_interpolated/{path} | get resource interpolated (variables and resources are fully unrolled)
*ResourceApi* | [**list_resource**]docs/ResourceApi.md#list_resource | **GET** /w/{workspace}/resources/list | list resources
*ResourceApi* | [**list_resource_names**]docs/ResourceApi.md#list_resource_names | **GET** /w/{workspace}/resources/list_names/{name} | list resource names
*ResourceApi* | [**list_resource_type**]docs/ResourceApi.md#list_resource_type | **GET** /w/{workspace}/resources/type/list | list resource_types
*ResourceApi* | [**list_resource_type_names**]docs/ResourceApi.md#list_resource_type_names | **GET** /w/{workspace}/resources/type/listnames | list resource_types names
*ResourceApi* | [**list_search_resource**]docs/ResourceApi.md#list_search_resource | **GET** /w/{workspace}/resources/list_search | list resources for search
*ResourceApi* | [**query_resource_types**]docs/ResourceApi.md#query_resource_types | **GET** /w/{workspace}/embeddings/query_resource_types | query resource types by similarity
*ResourceApi* | [**update_resource**]docs/ResourceApi.md#update_resource | **POST** /w/{workspace}/resources/update/{path} | update resource
*ResourceApi* | [**update_resource_type**]docs/ResourceApi.md#update_resource_type | **POST** /w/{workspace}/resources/type/update/{path} | update resource_type
*ResourceApi* | [**update_resource_value**]docs/ResourceApi.md#update_resource_value | **POST** /w/{workspace}/resources/update_value/{path} | update resource value
*ScheduleApi* | [**create_schedule**]docs/ScheduleApi.md#create_schedule | **POST** /w/{workspace}/schedules/create | create schedule
*ScheduleApi* | [**delete_schedule**]docs/ScheduleApi.md#delete_schedule | **DELETE** /w/{workspace}/schedules/delete/{path} | delete schedule
*ScheduleApi* | [**exists_schedule**]docs/ScheduleApi.md#exists_schedule | **GET** /w/{workspace}/schedules/exists/{path} | does schedule exists
*ScheduleApi* | [**get_schedule**]docs/ScheduleApi.md#get_schedule | **GET** /w/{workspace}/schedules/get/{path} | get schedule
*ScheduleApi* | [**list_schedules**]docs/ScheduleApi.md#list_schedules | **GET** /w/{workspace}/schedules/list | list schedules
*ScheduleApi* | [**list_schedules_with_jobs**]docs/ScheduleApi.md#list_schedules_with_jobs | **GET** /w/{workspace}/schedules/list_with_jobs | list schedules with last 20 jobs
*ScheduleApi* | [**preview_schedule**]docs/ScheduleApi.md#preview_schedule | **POST** /schedules/preview | preview schedule
*ScheduleApi* | [**set_default_error_or_recovery_handler**]docs/ScheduleApi.md#set_default_error_or_recovery_handler | **POST** /w/{workspace}/schedules/setdefaulthandler | Set default error or recoevery handler
*ScheduleApi* | [**set_schedule_enabled**]docs/ScheduleApi.md#set_schedule_enabled | **POST** /w/{workspace}/schedules/setenabled/{path} | set enabled schedule
*ScheduleApi* | [**update_schedule**]docs/ScheduleApi.md#update_schedule | **POST** /w/{workspace}/schedules/update/{path} | update schedule
*ScriptApi* | [**archive_script_by_hash**]docs/ScriptApi.md#archive_script_by_hash | **POST** /w/{workspace}/scripts/archive/h/{hash} | archive script by hash
*ScriptApi* | [**archive_script_by_path**]docs/ScriptApi.md#archive_script_by_path | **POST** /w/{workspace}/scripts/archive/p/{path} | archive script by path
*ScriptApi* | [**create_script**]docs/ScriptApi.md#create_script | **POST** /w/{workspace}/scripts/create | create script
*ScriptApi* | [**delete_script_by_hash**]docs/ScriptApi.md#delete_script_by_hash | **POST** /w/{workspace}/scripts/delete/h/{hash} | delete script by hash (erase content but keep hash, require admin)
*ScriptApi* | [**delete_script_by_path**]docs/ScriptApi.md#delete_script_by_path | **POST** /w/{workspace}/scripts/delete/p/{path} | delete script at a given path (require admin)
*ScriptApi* | [**delete_scripts_bulk**]docs/ScriptApi.md#delete_scripts_bulk | **DELETE** /w/{workspace}/scripts/delete_bulk | delete scripts in bulk
*ScriptApi* | [**exists_script_by_path**]docs/ScriptApi.md#exists_script_by_path | **GET** /w/{workspace}/scripts/exists/p/{path} | exists script by path
*ScriptApi* | [**get_hub_script_by_path**]docs/ScriptApi.md#get_hub_script_by_path | **GET** /scripts/hub/get_full/{path} | get full hub script by path
*ScriptApi* | [**get_hub_script_content_by_path**]docs/ScriptApi.md#get_hub_script_content_by_path | **GET** /scripts/hub/get/{path} | get hub script content by path
*ScriptApi* | [**get_script_by_hash**]docs/ScriptApi.md#get_script_by_hash | **GET** /w/{workspace}/scripts/get/h/{hash} | get script by hash
*ScriptApi* | [**get_script_by_path**]docs/ScriptApi.md#get_script_by_path | **GET** /w/{workspace}/scripts/get/p/{path} | get script by path
*ScriptApi* | [**get_script_by_path_with_draft**]docs/ScriptApi.md#get_script_by_path_with_draft | **GET** /w/{workspace}/scripts/get/draft/{path} | get script by path with draft
*ScriptApi* | [**get_script_deployment_status**]docs/ScriptApi.md#get_script_deployment_status | **GET** /w/{workspace}/scripts/deployment_status/h/{hash} | get script deployment status
*ScriptApi* | [**get_script_history_by_path**]docs/ScriptApi.md#get_script_history_by_path | **GET** /w/{workspace}/scripts/history/p/{path} | get history of a script by path
*ScriptApi* | [**get_script_latest_version**]docs/ScriptApi.md#get_script_latest_version | **GET** /w/{workspace}/scripts/get_latest_version/{path} | get scripts's latest version (hash)
*ScriptApi* | [**get_top_hub_scripts**]docs/ScriptApi.md#get_top_hub_scripts | **GET** /scripts/hub/top | get top hub scripts
*ScriptApi* | [**get_triggers_count_of_script**]docs/ScriptApi.md#get_triggers_count_of_script | **GET** /w/{workspace}/scripts/get_triggers_count/{path} | get triggers count of script
*ScriptApi* | [**list_script_paths**]docs/ScriptApi.md#list_script_paths | **GET** /w/{workspace}/scripts/list_paths | list all scripts paths
*ScriptApi* | [**list_script_paths_from_workspace_runnable**]docs/ScriptApi.md#list_script_paths_from_workspace_runnable | **GET** /w/{workspace}/scripts/list_paths_from_workspace_runnable/{path} | list script paths using provided script as a relative import
*ScriptApi* | [**list_scripts**]docs/ScriptApi.md#list_scripts | **GET** /w/{workspace}/scripts/list | list all scripts
*ScriptApi* | [**list_search_script**]docs/ScriptApi.md#list_search_script | **GET** /w/{workspace}/scripts/list_search | list scripts for search
*ScriptApi* | [**list_tokens_of_script**]docs/ScriptApi.md#list_tokens_of_script | **GET** /w/{workspace}/scripts/list_tokens/{path} | get tokens with script scope
*ScriptApi* | [**query_hub_scripts**]docs/ScriptApi.md#query_hub_scripts | **GET** /embeddings/query_hub_scripts | query hub scripts by similarity
*ScriptApi* | [**raw_script_by_hash**]docs/ScriptApi.md#raw_script_by_hash | **GET** /w/{workspace}/scripts/raw/h/{path} | raw script by hash
*ScriptApi* | [**raw_script_by_path**]docs/ScriptApi.md#raw_script_by_path | **GET** /w/{workspace}/scripts/raw/p/{path} | raw script by path
*ScriptApi* | [**raw_script_by_path_tokened**]docs/ScriptApi.md#raw_script_by_path_tokened | **GET** /scripts_u/tokened_raw/{workspace}/{token}/{path} | raw script by path with a token (mostly used by lsp to be used with import maps to resolve scripts)
*ScriptApi* | [**toggle_workspace_error_handler_for_script**]docs/ScriptApi.md#toggle_workspace_error_handler_for_script | **POST** /w/{workspace}/scripts/toggle_workspace_error_handler/p/{path} | Toggle ON and OFF the workspace error handler for a given script
*ScriptApi* | [**update_script_history**]docs/ScriptApi.md#update_script_history | **POST** /w/{workspace}/scripts/history_update/h/{hash}/p/{path} | update history of a script
*ServiceLogsApi* | [**get_log_file**]docs/ServiceLogsApi.md#get_log_file | **GET** /service_logs/get_log_file/{path} | get log file by path
*ServiceLogsApi* | [**list_log_files**]docs/ServiceLogsApi.md#list_log_files | **GET** /service_logs/list_files | list log files ordered by timestamp
*SettingApi* | [**acknowledge_all_critical_alerts**]docs/SettingApi.md#acknowledge_all_critical_alerts | **POST** /settings/critical_alerts/acknowledge_all | Acknowledge all unacknowledged critical alerts
*SettingApi* | [**acknowledge_critical_alert**]docs/SettingApi.md#acknowledge_critical_alert | **POST** /settings/critical_alerts/{id}/acknowledge | Acknowledge a critical alert
*SettingApi* | [**create_customer_portal_session**]docs/SettingApi.md#create_customer_portal_session | **POST** /settings/customer_portal | create customer portal session
*SettingApi* | [**get_critical_alerts**]docs/SettingApi.md#get_critical_alerts | **GET** /settings/critical_alerts | Get all critical alerts
*SettingApi* | [**get_ducklake_instance_catalog_db_status**]docs/SettingApi.md#get_ducklake_instance_catalog_db_status | **POST** /settings/get_ducklake_instance_catalog_db_status | Returns the set-up statuses of ducklake instance catalog dbs
*SettingApi* | [**get_global**]docs/SettingApi.md#get_global | **GET** /settings/global/{key} | get global settings
*SettingApi* | [**get_latest_key_renewal_attempt**]docs/SettingApi.md#get_latest_key_renewal_attempt | **GET** /settings/latest_key_renewal_attempt | get latest key renewal attempt
*SettingApi* | [**get_local**]docs/SettingApi.md#get_local | **GET** /settings/local | get local settings
*SettingApi* | [**get_secondary_storage_names**]docs/SettingApi.md#get_secondary_storage_names | **GET** /w/{workspace}/workspaces/get_secondary_storage_names | get secondary storage names
*SettingApi* | [**list_global_settings**]docs/SettingApi.md#list_global_settings | **GET** /settings/list_global | list global settings
*SettingApi* | [**renew_license_key**]docs/SettingApi.md#renew_license_key | **POST** /settings/renew_license_key | renew license key
*SettingApi* | [**send_stats**]docs/SettingApi.md#send_stats | **POST** /settings/send_stats | send stats
*SettingApi* | [**set_global**]docs/SettingApi.md#set_global | **POST** /settings/global/{key} | post global settings
*SettingApi* | [**setup_ducklake_catalog_db**]docs/SettingApi.md#setup_ducklake_catalog_db | **POST** /settings/setup_ducklake_catalog_db/{name} | Runs CREATE DATABASE on the Windmill Postgres and grants access to the ducklake_user
*SettingApi* | [**test_critical_channels**]docs/SettingApi.md#test_critical_channels | **POST** /settings/test_critical_channels | test critical channels
*SettingApi* | [**test_license_key**]docs/SettingApi.md#test_license_key | **POST** /settings/test_license_key | test license key
*SettingApi* | [**test_metadata**]docs/SettingApi.md#test_metadata | **POST** /saml/test_metadata | test metadata
*SettingApi* | [**test_object_storage_config**]docs/SettingApi.md#test_object_storage_config | **POST** /settings/test_object_storage_config | test object storage config
*SettingApi* | [**test_smtp**]docs/SettingApi.md#test_smtp | **POST** /settings/test_smtp | test smtp
*SettingApi* | [**workspace_acknowledge_all_critical_alerts**]docs/SettingApi.md#workspace_acknowledge_all_critical_alerts | **POST** /w/{workspace}/workspaces/critical_alerts/acknowledge_all | Acknowledge all unacknowledged critical alerts for this workspace
*SettingApi* | [**workspace_acknowledge_critical_alert**]docs/SettingApi.md#workspace_acknowledge_critical_alert | **POST** /w/{workspace}/workspaces/critical_alerts/{id}/acknowledge | Acknowledge a critical alert for this workspace
*SettingApi* | [**workspace_get_critical_alerts**]docs/SettingApi.md#workspace_get_critical_alerts | **GET** /w/{workspace}/workspaces/critical_alerts | Get all critical alerts for this workspace
*SettingApi* | [**workspace_mute_critical_alerts_ui**]docs/SettingApi.md#workspace_mute_critical_alerts_ui | **POST** /w/{workspace}/workspaces/critical_alerts/mute | Mute critical alert UI for this workspace
*SettingsApi* | [**backend_uptodate**]docs/SettingsApi.md#backend_uptodate | **GET** /uptodate | is backend up to date
*SettingsApi* | [**backend_version**]docs/SettingsApi.md#backend_version | **GET** /version | get backend version
*SettingsApi* | [**get_license_id**]docs/SettingsApi.md#get_license_id | **GET** /ee_license | get license id
*SettingsApi* | [**get_open_api_yaml**]docs/SettingsApi.md#get_open_api_yaml | **GET** /openapi.yaml | get openapi yaml spec
*SqsTriggerApi* | [**create_sqs_trigger**]docs/SqsTriggerApi.md#create_sqs_trigger | **POST** /w/{workspace}/sqs_triggers/create | create sqs trigger
*SqsTriggerApi* | [**delete_sqs_trigger**]docs/SqsTriggerApi.md#delete_sqs_trigger | **DELETE** /w/{workspace}/sqs_triggers/delete/{path} | delete sqs trigger
*SqsTriggerApi* | [**exists_sqs_trigger**]docs/SqsTriggerApi.md#exists_sqs_trigger | **GET** /w/{workspace}/sqs_triggers/exists/{path} | does sqs trigger exists
*SqsTriggerApi* | [**get_sqs_trigger**]docs/SqsTriggerApi.md#get_sqs_trigger | **GET** /w/{workspace}/sqs_triggers/get/{path} | get sqs trigger
*SqsTriggerApi* | [**list_sqs_triggers**]docs/SqsTriggerApi.md#list_sqs_triggers | **GET** /w/{workspace}/sqs_triggers/list | list sqs triggers
*SqsTriggerApi* | [**set_sqs_trigger_enabled**]docs/SqsTriggerApi.md#set_sqs_trigger_enabled | **POST** /w/{workspace}/sqs_triggers/setenabled/{path} | set enabled sqs trigger
*SqsTriggerApi* | [**test_sqs_connection**]docs/SqsTriggerApi.md#test_sqs_connection | **POST** /w/{workspace}/sqs_triggers/test | test sqs connection
*SqsTriggerApi* | [**update_sqs_trigger**]docs/SqsTriggerApi.md#update_sqs_trigger | **POST** /w/{workspace}/sqs_triggers/update/{path} | update sqs trigger
*TeamsApi* | [**send_message_to_conversation**]docs/TeamsApi.md#send_message_to_conversation | **POST** /teams/activities | send update to Microsoft Teams activity
*TokenApi* | [**list_available_scopes**]docs/TokenApi.md#list_available_scopes | **GET** /tokens/list/scopes | list of available scopes
*UserApi* | [**accept_invite**]docs/UserApi.md#accept_invite | **POST** /users/accept_invite | accept invite to workspace
*UserApi* | [**convert_user_to_group**]docs/UserApi.md#convert_user_to_group | **POST** /w/{workspace}/users/convert_to_group/{username} | convert manual user to group user (require admin privilege)
*UserApi* | [**create_token**]docs/UserApi.md#create_token | **POST** /users/tokens/create | create token
*UserApi* | [**create_token_impersonate**]docs/UserApi.md#create_token_impersonate | **POST** /users/tokens/impersonate | create token to impersonate a user (require superadmin)
*UserApi* | [**create_user_globally**]docs/UserApi.md#create_user_globally | **POST** /users/create | create user
*UserApi* | [**decline_invite**]docs/UserApi.md#decline_invite | **POST** /users/decline_invite | decline invite to workspace
*UserApi* | [**delete_token**]docs/UserApi.md#delete_token | **DELETE** /users/tokens/delete/{token_prefix} | delete token
*UserApi* | [**delete_user**]docs/UserApi.md#delete_user | **DELETE** /w/{workspace}/users/delete/{username} | delete user (require admin privilege)
*UserApi* | [**exists_email**]docs/UserApi.md#exists_email | **GET** /users/exists/{email} | exists email
*UserApi* | [**get_current_email**]docs/UserApi.md#get_current_email | **GET** /users/email | get current user email (if logged in)
*UserApi* | [**get_runnable**]docs/UserApi.md#get_runnable | **GET** /users/all_runnables | get all runnables in every workspace
*UserApi* | [**get_tutorial_progress**]docs/UserApi.md#get_tutorial_progress | **GET** /users/tutorial_progress | get tutorial progress
*UserApi* | [**get_usage**]docs/UserApi.md#get_usage | **GET** /users/usage | get current usage outside of premium workspaces
*UserApi* | [**get_user**]docs/UserApi.md#get_user | **GET** /w/{workspace}/users/get/{username} | get user (require admin privilege)
*UserApi* | [**global_user_delete**]docs/UserApi.md#global_user_delete | **DELETE** /users/delete/{email} | global delete user (require super admin)
*UserApi* | [**global_user_rename**]docs/UserApi.md#global_user_rename | **POST** /users/rename/{email} | global rename user (require super admin)
*UserApi* | [**global_user_update**]docs/UserApi.md#global_user_update | **POST** /users/update/{email} | global update user (require super admin)
*UserApi* | [**global_username_info**]docs/UserApi.md#global_username_info | **GET** /users/username_info/{email} | global username info (require super admin)
*UserApi* | [**global_users_export**]docs/UserApi.md#global_users_export | **GET** /users/export | global export users (require super admin and EE)
*UserApi* | [**global_users_overwrite**]docs/UserApi.md#global_users_overwrite | **POST** /users/overwrite | global overwrite users (require super admin and EE)
*UserApi* | [**global_whoami**]docs/UserApi.md#global_whoami | **GET** /users/whoami | get current global whoami (if logged in)
*UserApi* | [**is_owner_of_path**]docs/UserApi.md#is_owner_of_path | **GET** /w/{workspace}/users/is_owner/{path} | is owner of path
*UserApi* | [**leave_instance**]docs/UserApi.md#leave_instance | **POST** /users/leave_instance | leave instance
*UserApi* | [**list_tokens**]docs/UserApi.md#list_tokens | **GET** /users/tokens/list | list token
*UserApi* | [**list_usernames**]docs/UserApi.md#list_usernames | **GET** /w/{workspace}/users/list_usernames | list usernames
*UserApi* | [**list_users**]docs/UserApi.md#list_users | **GET** /w/{workspace}/users/list | list users
*UserApi* | [**list_users_as_super_admin**]docs/UserApi.md#list_users_as_super_admin | **GET** /users/list_as_super_admin | list all users as super admin (require to be super amdin)
*UserApi* | [**list_users_usage**]docs/UserApi.md#list_users_usage | **GET** /w/{workspace}/users/list_usage | list users usage
*UserApi* | [**list_workspace_invites**]docs/UserApi.md#list_workspace_invites | **GET** /users/list_invites | list all workspace invites
*UserApi* | [**login**]docs/UserApi.md#login | **POST** /auth/login | login with password
*UserApi* | [**login_with_oauth**]docs/UserApi.md#login_with_oauth | **POST** /oauth/login_callback/{client_name} | login with oauth authorization flow
*UserApi* | [**logout**]docs/UserApi.md#logout | **POST** /auth/logout | logout
*UserApi* | [**refresh_user_token**]docs/UserApi.md#refresh_user_token | **GET** /users/refresh_token | refresh the current token
*UserApi* | [**set_login_type_for_user**]docs/UserApi.md#set_login_type_for_user | **POST** /users/set_login_type/{user} | set login type for a specific user (require super admin)
*UserApi* | [**set_password**]docs/UserApi.md#set_password | **POST** /users/setpassword | set password
*UserApi* | [**set_password_for_user**]docs/UserApi.md#set_password_for_user | **POST** /users/set_password_of/{user} | set password for a specific user (require super admin)
*UserApi* | [**update_tutorial_progress**]docs/UserApi.md#update_tutorial_progress | **POST** /users/tutorial_progress | update tutorial progress
*UserApi* | [**update_user**]docs/UserApi.md#update_user | **POST** /w/{workspace}/users/update/{username} | update user (require admin privilege)
*UserApi* | [**username_to_email**]docs/UserApi.md#username_to_email | **GET** /w/{workspace}/users/username_to_email/{username} | get email from username
*UserApi* | [**whoami**]docs/UserApi.md#whoami | **GET** /w/{workspace}/users/whoami | whoami
*UserApi* | [**whois**]docs/UserApi.md#whois | **GET** /w/{workspace}/users/whois/{username} | whois
*VariableApi* | [**create_variable**]docs/VariableApi.md#create_variable | **POST** /w/{workspace}/variables/create | create variable
*VariableApi* | [**delete_variable**]docs/VariableApi.md#delete_variable | **DELETE** /w/{workspace}/variables/delete/{path} | delete variable
*VariableApi* | [**delete_variables_bulk**]docs/VariableApi.md#delete_variables_bulk | **DELETE** /w/{workspace}/variables/delete_bulk | delete variables in bulk
*VariableApi* | [**encrypt_value**]docs/VariableApi.md#encrypt_value | **POST** /w/{workspace}/variables/encrypt | encrypt value
*VariableApi* | [**exists_variable**]docs/VariableApi.md#exists_variable | **GET** /w/{workspace}/variables/exists/{path} | does variable exists at path
*VariableApi* | [**get_variable**]docs/VariableApi.md#get_variable | **GET** /w/{workspace}/variables/get/{path} | get variable
*VariableApi* | [**get_variable_value**]docs/VariableApi.md#get_variable_value | **GET** /w/{workspace}/variables/get_value/{path} | get variable value
*VariableApi* | [**list_contextual_variables**]docs/VariableApi.md#list_contextual_variables | **GET** /w/{workspace}/variables/list_contextual | list contextual variables
*VariableApi* | [**list_variable**]docs/VariableApi.md#list_variable | **GET** /w/{workspace}/variables/list | list variables
*VariableApi* | [**update_variable**]docs/VariableApi.md#update_variable | **POST** /w/{workspace}/variables/update/{path} | update variable
*WebsocketTriggerApi* | [**create_websocket_trigger**]docs/WebsocketTriggerApi.md#create_websocket_trigger | **POST** /w/{workspace}/websocket_triggers/create | create websocket trigger
*WebsocketTriggerApi* | [**delete_websocket_trigger**]docs/WebsocketTriggerApi.md#delete_websocket_trigger | **DELETE** /w/{workspace}/websocket_triggers/delete/{path} | delete websocket trigger
*WebsocketTriggerApi* | [**exists_websocket_trigger**]docs/WebsocketTriggerApi.md#exists_websocket_trigger | **GET** /w/{workspace}/websocket_triggers/exists/{path} | does websocket trigger exists
*WebsocketTriggerApi* | [**get_websocket_trigger**]docs/WebsocketTriggerApi.md#get_websocket_trigger | **GET** /w/{workspace}/websocket_triggers/get/{path} | get websocket trigger
*WebsocketTriggerApi* | [**list_websocket_triggers**]docs/WebsocketTriggerApi.md#list_websocket_triggers | **GET** /w/{workspace}/websocket_triggers/list | list websocket triggers
*WebsocketTriggerApi* | [**set_websocket_trigger_enabled**]docs/WebsocketTriggerApi.md#set_websocket_trigger_enabled | **POST** /w/{workspace}/websocket_triggers/setenabled/{path} | set enabled websocket trigger
*WebsocketTriggerApi* | [**test_websocket_connection**]docs/WebsocketTriggerApi.md#test_websocket_connection | **POST** /w/{workspace}/websocket_triggers/test | test websocket connection
*WebsocketTriggerApi* | [**update_websocket_trigger**]docs/WebsocketTriggerApi.md#update_websocket_trigger | **POST** /w/{workspace}/websocket_triggers/update/{path} | update websocket trigger
*WorkerApi* | [**exists_workers_with_tags**]docs/WorkerApi.md#exists_workers_with_tags | **GET** /workers/exists_workers_with_tags | exists workers with tags
*WorkerApi* | [**ge_default_tags**]docs/WorkerApi.md#ge_default_tags | **GET** /workers/get_default_tags | get all instance default tags
*WorkerApi* | [**get_counts_of_jobs_waiting_per_tag**]docs/WorkerApi.md#get_counts_of_jobs_waiting_per_tag | **GET** /workers/queue_counts | get counts of jobs waiting for an executor per tag
*WorkerApi* | [**get_counts_of_running_jobs_per_tag**]docs/WorkerApi.md#get_counts_of_running_jobs_per_tag | **GET** /workers/queue_running_counts | get counts of currently running jobs per tag
*WorkerApi* | [**get_custom_tags**]docs/WorkerApi.md#get_custom_tags | **GET** /workers/custom_tags | get all instance custom tags (tags are used to dispatch jobs to different worker groups)
*WorkerApi* | [**get_queue_metrics**]docs/WorkerApi.md#get_queue_metrics | **GET** /workers/queue_metrics | get queue metrics
*WorkerApi* | [**is_default_tags_per_workspace**]docs/WorkerApi.md#is_default_tags_per_workspace | **GET** /workers/is_default_tags_per_workspace | is default tags per workspace
*WorkerApi* | [**list_workers**]docs/WorkerApi.md#list_workers | **GET** /workers/list | list workers
*WorkspaceApi* | [**add_user**]docs/WorkspaceApi.md#add_user | **POST** /w/{workspace}/workspaces/add_user | add user to workspace
*WorkspaceApi* | [**archive_workspace**]docs/WorkspaceApi.md#archive_workspace | **POST** /w/{workspace}/workspaces/archive | archive workspace
*WorkspaceApi* | [**change_workspace_color**]docs/WorkspaceApi.md#change_workspace_color | **POST** /w/{workspace}/workspaces/change_workspace_color | change workspace id
*WorkspaceApi* | [**change_workspace_id**]docs/WorkspaceApi.md#change_workspace_id | **POST** /w/{workspace}/workspaces/change_workspace_id | change workspace id
*WorkspaceApi* | [**change_workspace_name**]docs/WorkspaceApi.md#change_workspace_name | **POST** /w/{workspace}/workspaces/change_workspace_name | change workspace name
*WorkspaceApi* | [**connect_teams**]docs/WorkspaceApi.md#connect_teams | **POST** /w/{workspace}/workspaces/connect_teams | connect teams
*WorkspaceApi* | [**create_workspace**]docs/WorkspaceApi.md#create_workspace | **POST** /workspaces/create | create workspace
*WorkspaceApi* | [**create_workspace_fork**]docs/WorkspaceApi.md#create_workspace_fork | **POST** /workspaces/create_fork | create forked workspace
*WorkspaceApi* | [**delete_git_sync_repository**]docs/WorkspaceApi.md#delete_git_sync_repository | **DELETE** /w/{workspace}/workspaces/delete_git_sync_repository | delete individual git sync repository
*WorkspaceApi* | [**delete_invite**]docs/WorkspaceApi.md#delete_invite | **POST** /w/{workspace}/workspaces/delete_invite | delete user invite
*WorkspaceApi* | [**delete_workspace**]docs/WorkspaceApi.md#delete_workspace | **DELETE** /workspaces/delete/{workspace} | delete workspace (require super admin)
*WorkspaceApi* | [**edit_auto_invite**]docs/WorkspaceApi.md#edit_auto_invite | **POST** /w/{workspace}/workspaces/edit_auto_invite | edit auto invite
*WorkspaceApi* | [**edit_copilot_config**]docs/WorkspaceApi.md#edit_copilot_config | **POST** /w/{workspace}/workspaces/edit_copilot_config | edit copilot config
*WorkspaceApi* | [**edit_default_scripts**]docs/WorkspaceApi.md#edit_default_scripts | **POST** /w/{workspace}/workspaces/default_scripts | edit default scripts for workspace
*WorkspaceApi* | [**edit_deploy_to**]docs/WorkspaceApi.md#edit_deploy_to | **POST** /w/{workspace}/workspaces/edit_deploy_to | edit deploy to
*WorkspaceApi* | [**edit_ducklake_config**]docs/WorkspaceApi.md#edit_ducklake_config | **POST** /w/{workspace}/workspaces/edit_ducklake_config | edit ducklake settings
*WorkspaceApi* | [**edit_error_handler**]docs/WorkspaceApi.md#edit_error_handler | **POST** /w/{workspace}/workspaces/edit_error_handler | edit error handler
*WorkspaceApi* | [**edit_git_sync_repository**]docs/WorkspaceApi.md#edit_git_sync_repository | **POST** /w/{workspace}/workspaces/edit_git_sync_repository | add or update individual git sync repository
*WorkspaceApi* | [**edit_instance_groups**]docs/WorkspaceApi.md#edit_instance_groups | **POST** /w/{workspace}/workspaces/edit_instance_groups | edit instance groups
*WorkspaceApi* | [**edit_large_file_storage_config**]docs/WorkspaceApi.md#edit_large_file_storage_config | **POST** /w/{workspace}/workspaces/edit_large_file_storage_config | edit large file storage settings
*WorkspaceApi* | [**edit_slack_command**]docs/WorkspaceApi.md#edit_slack_command | **POST** /w/{workspace}/workspaces/edit_slack_command | edit slack command
*WorkspaceApi* | [**edit_teams_command**]docs/WorkspaceApi.md#edit_teams_command | **POST** /w/{workspace}/workspaces/edit_teams_command | edit teams command
*WorkspaceApi* | [**edit_webhook**]docs/WorkspaceApi.md#edit_webhook | **POST** /w/{workspace}/workspaces/edit_webhook | edit webhook
*WorkspaceApi* | [**edit_workspace_default_app**]docs/WorkspaceApi.md#edit_workspace_default_app | **POST** /w/{workspace}/workspaces/edit_default_app | edit default app for workspace
*WorkspaceApi* | [**edit_workspace_deploy_ui_settings**]docs/WorkspaceApi.md#edit_workspace_deploy_ui_settings | **POST** /w/{workspace}/workspaces/edit_deploy_ui_config | edit workspace deploy ui settings
*WorkspaceApi* | [**edit_workspace_git_sync_config**]docs/WorkspaceApi.md#edit_workspace_git_sync_config | **POST** /w/{workspace}/workspaces/edit_git_sync_config | edit workspace git sync settings
*WorkspaceApi* | [**exists_username**]docs/WorkspaceApi.md#exists_username | **POST** /workspaces/exists_username | exists username
*WorkspaceApi* | [**exists_workspace**]docs/WorkspaceApi.md#exists_workspace | **POST** /workspaces/exists | exists workspace
*WorkspaceApi* | [**get_copilot_info**]docs/WorkspaceApi.md#get_copilot_info | **GET** /w/{workspace}/workspaces/get_copilot_info | get copilot info
*WorkspaceApi* | [**get_default_scripts**]docs/WorkspaceApi.md#get_default_scripts | **GET** /w/{workspace}/workspaces/default_scripts | get default scripts for workspace
*WorkspaceApi* | [**get_dependency_map**]docs/WorkspaceApi.md#get_dependency_map | **GET** /w/{workspace}/workspaces/get_dependency_map | get dependency map
*WorkspaceApi* | [**get_deploy_to**]docs/WorkspaceApi.md#get_deploy_to | **GET** /w/{workspace}/workspaces/get_deploy_to | get deploy to
*WorkspaceApi* | [**get_github_app_token**]docs/WorkspaceApi.md#get_github_app_token | **POST** /w/{workspace}/github_app/token | get github app token
*WorkspaceApi* | [**get_is_premium**]docs/WorkspaceApi.md#get_is_premium | **GET** /w/{workspace}/workspaces/is_premium | get if workspace is premium
*WorkspaceApi* | [**get_large_file_storage_config**]docs/WorkspaceApi.md#get_large_file_storage_config | **GET** /w/{workspace}/workspaces/get_large_file_storage_config | get large file storage config
*WorkspaceApi* | [**get_premium_info**]docs/WorkspaceApi.md#get_premium_info | **GET** /w/{workspace}/workspaces/premium_info | get premium info
*WorkspaceApi* | [**get_settings**]docs/WorkspaceApi.md#get_settings | **GET** /w/{workspace}/workspaces/get_settings | get settings
*WorkspaceApi* | [**get_threshold_alert**]docs/WorkspaceApi.md#get_threshold_alert | **GET** /w/{workspace}/workspaces/threshold_alert | get threshold alert info
*WorkspaceApi* | [**get_used_triggers**]docs/WorkspaceApi.md#get_used_triggers | **GET** /w/{workspace}/workspaces/used_triggers | get used triggers
*WorkspaceApi* | [**get_workspace_default_app**]docs/WorkspaceApi.md#get_workspace_default_app | **GET** /w/{workspace}/workspaces/default_app | get default app for workspace
*WorkspaceApi* | [**get_workspace_encryption_key**]docs/WorkspaceApi.md#get_workspace_encryption_key | **GET** /w/{workspace}/workspaces/encryption_key | retrieves the encryption key for this workspace
*WorkspaceApi* | [**get_workspace_name**]docs/WorkspaceApi.md#get_workspace_name | **GET** /w/{workspace}/workspaces/get_workspace_name | get workspace name
*WorkspaceApi* | [**get_workspace_usage**]docs/WorkspaceApi.md#get_workspace_usage | **GET** /w/{workspace}/workspaces/usage | get usage
*WorkspaceApi* | [**invite_user**]docs/WorkspaceApi.md#invite_user | **POST** /w/{workspace}/workspaces/invite_user | invite user to workspace
*WorkspaceApi* | [**is_domain_allowed**]docs/WorkspaceApi.md#is_domain_allowed | **GET** /workspaces/allowed_domain_auto_invite | is domain allowed for auto invi
*WorkspaceApi* | [**leave_workspace**]docs/WorkspaceApi.md#leave_workspace | **POST** /w/{workspace}/workspaces/leave | leave workspace
*WorkspaceApi* | [**list_available_teams_channels**]docs/WorkspaceApi.md#list_available_teams_channels | **GET** /w/{workspace}/workspaces/available_teams_channels | list available channels for a specific team
*WorkspaceApi* | [**list_available_teams_ids**]docs/WorkspaceApi.md#list_available_teams_ids | **GET** /w/{workspace}/workspaces/available_teams_ids | list available teams ids
*WorkspaceApi* | [**list_ducklakes**]docs/WorkspaceApi.md#list_ducklakes | **GET** /w/{workspace}/workspaces/list_ducklakes | list ducklakes
*WorkspaceApi* | [**list_pending_invites**]docs/WorkspaceApi.md#list_pending_invites | **GET** /w/{workspace}/workspaces/list_pending_invites | list pending invites for a workspace
*WorkspaceApi* | [**list_user_workspaces**]docs/WorkspaceApi.md#list_user_workspaces | **GET** /workspaces/users | list all workspaces visible to me with user info
*WorkspaceApi* | [**list_workspaces**]docs/WorkspaceApi.md#list_workspaces | **GET** /workspaces/list | list all workspaces visible to me
*WorkspaceApi* | [**list_workspaces_as_super_admin**]docs/WorkspaceApi.md#list_workspaces_as_super_admin | **GET** /workspaces/list_as_superadmin | list all workspaces as super admin (require to be super admin)
*WorkspaceApi* | [**rebuild_dependency_map**]docs/WorkspaceApi.md#rebuild_dependency_map | **POST** /w/{workspace}/workspaces/rebuild_dependency_map | rebuild dependency map
*WorkspaceApi* | [**run_slack_message_test_job**]docs/WorkspaceApi.md#run_slack_message_test_job | **POST** /w/{workspace}/workspaces/run_slack_message_test_job | run a job that sends a message to Slack
*WorkspaceApi* | [**run_teams_message_test_job**]docs/WorkspaceApi.md#run_teams_message_test_job | **POST** /w/{workspace}/workspaces/run_teams_message_test_job | run a job that sends a message to Teams
*WorkspaceApi* | [**set_environment_variable**]docs/WorkspaceApi.md#set_environment_variable | **POST** /w/{workspace}/workspaces/set_environment_variable | set environment variable
*WorkspaceApi* | [**set_threshold_alert**]docs/WorkspaceApi.md#set_threshold_alert | **POST** /w/{workspace}/workspaces/threshold_alert | set threshold alert info
*WorkspaceApi* | [**set_workspace_encryption_key**]docs/WorkspaceApi.md#set_workspace_encryption_key | **POST** /w/{workspace}/workspaces/encryption_key | update the encryption key for this workspace
*WorkspaceApi* | [**unarchive_workspace**]docs/WorkspaceApi.md#unarchive_workspace | **POST** /workspaces/unarchive/{workspace} | unarchive workspace
*WorkspaceApi* | [**update_operator_settings**]docs/WorkspaceApi.md#update_operator_settings | **POST** /w/{workspace}/workspaces/operator_settings | Update operator settings for a workspace


## Documentation For Models

 - [AcceptInviteRequest]docs/AcceptInviteRequest.md
 - [AddOwnerToFolderRequest]docs/AddOwnerToFolderRequest.md
 - [AddUserRequest]docs/AddUserRequest.md
 - [AddUserToGroupRequest]docs/AddUserToGroupRequest.md
 - [AddUserToInstanceGroupRequest]docs/AddUserToInstanceGroupRequest.md
 - [AiAgent]docs/AiAgent.md
 - [AiConfig]docs/AiConfig.md
 - [AiProvider]docs/AiProvider.md
 - [AiProviderConfig]docs/AiProviderConfig.md
 - [AiProviderModel]docs/AiProviderModel.md
 - [Alert]docs/Alert.md
 - [AppHistory]docs/AppHistory.md
 - [AppWithLastVersion]docs/AppWithLastVersion.md
 - [AppWithLastVersionWDraft]docs/AppWithLastVersionWDraft.md
 - [ArchiveFlowByPathRequest]docs/ArchiveFlowByPathRequest.md
 - [Asset]docs/Asset.md
 - [AssetKind]docs/AssetKind.md
 - [AssetUsageAccessType]docs/AssetUsageAccessType.md
 - [AssetUsageKind]docs/AssetUsageKind.md
 - [AuditLog]docs/AuditLog.md
 - [AuthenticationMethod]docs/AuthenticationMethod.md
 - [AutoscalingEvent]docs/AutoscalingEvent.md
 - [AwsAuthResourceType]docs/AwsAuthResourceType.md
 - [BatchReRunJobsRequest]docs/BatchReRunJobsRequest.md
 - [BatchReRunJobsRequestScriptOptionsByPathValue]docs/BatchReRunJobsRequestScriptOptionsByPathValue.md
 - [BlacklistAgentTokenRequest]docs/BlacklistAgentTokenRequest.md
 - [BranchAll]docs/BranchAll.md
 - [BranchAllBranchesInner]docs/BranchAllBranchesInner.md
 - [BranchOne]docs/BranchOne.md
 - [BranchOneBranchesInner]docs/BranchOneBranchesInner.md
 - [CancelQueuedJobRequest]docs/CancelQueuedJobRequest.md
 - [Capture]docs/Capture.md
 - [CaptureConfig]docs/CaptureConfig.md
 - [CaptureTriggerKind]docs/CaptureTriggerKind.md
 - [ChangeWorkspaceColorRequest]docs/ChangeWorkspaceColorRequest.md
 - [ChangeWorkspaceIdRequest]docs/ChangeWorkspaceIdRequest.md
 - [ChangeWorkspaceNameRequest]docs/ChangeWorkspaceNameRequest.md
 - [ChannelInfo]docs/ChannelInfo.md
 - [CompletedJob]docs/CompletedJob.md
 - [ConcurrencyGroup]docs/ConcurrencyGroup.md
 - [Config]docs/Config.md
 - [Configs]docs/Configs.md
 - [ConnectClientCredentialsRequest]docs/ConnectClientCredentialsRequest.md
 - [ConnectSlackCallbackRequest]docs/ConnectSlackCallbackRequest.md
 - [ConnectTeamsRequest]docs/ConnectTeamsRequest.md
 - [ContextualVariable]docs/ContextualVariable.md
 - [CountJobsByTag200ResponseInner]docs/CountJobsByTag200ResponseInner.md
 - [CountSearchLogsIndex200Response]docs/CountSearchLogsIndex200Response.md
 - [CreateAccountRequest]docs/CreateAccountRequest.md
 - [CreateAgentTokenRequest]docs/CreateAgentTokenRequest.md
 - [CreateAppRequest]docs/CreateAppRequest.md
 - [CreateDraftRequest]docs/CreateDraftRequest.md
 - [CreateFlowRequest]docs/CreateFlowRequest.md
 - [CreateFolderRequest]docs/CreateFolderRequest.md
 - [CreateInput]docs/CreateInput.md
 - [CreateInstanceGroupRequest]docs/CreateInstanceGroupRequest.md
 - [CreateRawAppRequest]docs/CreateRawAppRequest.md
 - [CreateResource]docs/CreateResource.md
 - [CreateUserGloballyRequest]docs/CreateUserGloballyRequest.md
 - [CreateVariable]docs/CreateVariable.md
 - [CreateWorkspace]docs/CreateWorkspace.md
 - [CreateWorkspaceFork]docs/CreateWorkspaceFork.md
 - [CriticalAlert]docs/CriticalAlert.md
 - [DeclineInviteRequest]docs/DeclineInviteRequest.md
 - [DeleteGcpSubscription]docs/DeleteGcpSubscription.md
 - [DeleteGitSyncRepositoryRequest]docs/DeleteGitSyncRepositoryRequest.md
 - [DeleteInviteRequest]docs/DeleteInviteRequest.md
 - [DeleteVariablesBulkRequest]docs/DeleteVariablesBulkRequest.md
 - [DeliveryType]docs/DeliveryType.md
 - [DependencyMap]docs/DependencyMap.md
 - [DuckdbConnectionSettings200Response]docs/DuckdbConnectionSettings200Response.md
 - [DuckdbConnectionSettingsRequest]docs/DuckdbConnectionSettingsRequest.md
 - [DuckdbConnectionSettingsV2200Response]docs/DuckdbConnectionSettingsV2200Response.md
 - [DuckdbConnectionSettingsV2Request]docs/DuckdbConnectionSettingsV2Request.md
 - [DucklakeInstanceCatalogDbStatus]docs/DucklakeInstanceCatalogDbStatus.md
 - [DucklakeInstanceCatalogDbStatusLogs]docs/DucklakeInstanceCatalogDbStatusLogs.md
 - [DucklakeSettings]docs/DucklakeSettings.md
 - [DucklakeSettingsDucklakesValue]docs/DucklakeSettingsDucklakesValue.md
 - [DucklakeSettingsDucklakesValueCatalog]docs/DucklakeSettingsDucklakesValueCatalog.md
 - [DucklakeSettingsDucklakesValueStorage]docs/DucklakeSettingsDucklakesValueStorage.md
 - [DynamicInputData]docs/DynamicInputData.md
 - [DynamicInputDataRunnableRef]docs/DynamicInputDataRunnableRef.md
 - [DynamicInputDataRunnableRefOneOf]docs/DynamicInputDataRunnableRefOneOf.md
 - [DynamicInputDataRunnableRefOneOf1]docs/DynamicInputDataRunnableRefOneOf1.md
 - [EditAutoInviteRequest]docs/EditAutoInviteRequest.md
 - [EditDucklakeConfigRequest]docs/EditDucklakeConfigRequest.md
 - [EditEmailTrigger]docs/EditEmailTrigger.md
 - [EditErrorHandlerRequest]docs/EditErrorHandlerRequest.md
 - [EditGitSyncRepositoryRequest]docs/EditGitSyncRepositoryRequest.md
 - [EditHttpTrigger]docs/EditHttpTrigger.md
 - [EditInstanceGroupsRequest]docs/EditInstanceGroupsRequest.md
 - [EditKafkaTrigger]docs/EditKafkaTrigger.md
 - [EditLargeFileStorageConfigRequest]docs/EditLargeFileStorageConfigRequest.md
 - [EditMqttTrigger]docs/EditMqttTrigger.md
 - [EditNatsTrigger]docs/EditNatsTrigger.md
 - [EditPostgresTrigger]docs/EditPostgresTrigger.md
 - [EditResource]docs/EditResource.md
 - [EditResourceType]docs/EditResourceType.md
 - [EditSchedule]docs/EditSchedule.md
 - [EditSlackCommandRequest]docs/EditSlackCommandRequest.md
 - [EditSqsTrigger]docs/EditSqsTrigger.md
 - [EditVariable]docs/EditVariable.md
 - [EditWebhookRequest]docs/EditWebhookRequest.md
 - [EditWebsocketTrigger]docs/EditWebsocketTrigger.md
 - [EditWorkspaceDefaultAppRequest]docs/EditWorkspaceDefaultAppRequest.md
 - [EditWorkspaceDeployUiSettingsRequest]docs/EditWorkspaceDeployUiSettingsRequest.md
 - [EditWorkspaceGitSyncConfigRequest]docs/EditWorkspaceGitSyncConfigRequest.md
 - [EditWorkspaceUser]docs/EditWorkspaceUser.md
 - [EmailTrigger]docs/EmailTrigger.md
 - [EndpointTool]docs/EndpointTool.md
 - [ErrorHandler]docs/ErrorHandler.md
 - [ExecuteComponentRequest]docs/ExecuteComponentRequest.md
 - [ExecuteComponentRequestRawCode]docs/ExecuteComponentRequestRawCode.md
 - [ExistsEmailLocalPartRequest]docs/ExistsEmailLocalPartRequest.md
 - [ExistsRouteRequest]docs/ExistsRouteRequest.md
 - [ExistsUsernameRequest]docs/ExistsUsernameRequest.md
 - [ExistsWorkspaceRequest]docs/ExistsWorkspaceRequest.md
 - [ExportInstallation200Response]docs/ExportInstallation200Response.md
 - [ExportedInstanceGroup]docs/ExportedInstanceGroup.md
 - [ExportedUser]docs/ExportedUser.md
 - [ExtendedJobs]docs/ExtendedJobs.md
 - [FileUpload200Response]docs/FileUpload200Response.md
 - [Flow]docs/Flow.md
 - [FlowConversation]docs/FlowConversation.md
 - [FlowConversationMessage]docs/FlowConversationMessage.md
 - [FlowMetadata]docs/FlowMetadata.md
 - [FlowModule]docs/FlowModule.md
 - [FlowModuleMock]docs/FlowModuleMock.md
 - [FlowModuleSkipIf]docs/FlowModuleSkipIf.md
 - [FlowModuleSuspend]docs/FlowModuleSuspend.md
 - [FlowModuleSuspendResumeForm]docs/FlowModuleSuspendResumeForm.md
 - [FlowModuleValue]docs/FlowModuleValue.md
 - [FlowPreview]docs/FlowPreview.md
 - [FlowStatus]docs/FlowStatus.md
 - [FlowStatusFailureModule]docs/FlowStatusFailureModule.md
 - [FlowStatusModule]docs/FlowStatusModule.md
 - [FlowStatusModuleAgentActionsInner]docs/FlowStatusModuleAgentActionsInner.md
 - [FlowStatusModuleAgentActionsInnerOneOf]docs/FlowStatusModuleAgentActionsInnerOneOf.md
 - [FlowStatusModuleAgentActionsInnerOneOf1]docs/FlowStatusModuleAgentActionsInnerOneOf1.md
 - [FlowStatusModuleBranchChosen]docs/FlowStatusModuleBranchChosen.md
 - [FlowStatusModuleBranchall]docs/FlowStatusModuleBranchall.md
 - [FlowStatusModuleFlowJobsDuration]docs/FlowStatusModuleFlowJobsDuration.md
 - [FlowStatusModuleIterator]docs/FlowStatusModuleIterator.md
 - [FlowStatusRetry]docs/FlowStatusRetry.md
 - [FlowValue]docs/FlowValue.md
 - [FlowVersion]docs/FlowVersion.md
 - [Folder]docs/Folder.md
 - [ForloopFlow]docs/ForloopFlow.md
 - [GcpTrigger]docs/GcpTrigger.md
 - [GcpTriggerData]docs/GcpTriggerData.md
 - [GenerateOpenapiSpec]docs/GenerateOpenapiSpec.md
 - [GetAllTopicSubscription]docs/GetAllTopicSubscription.md
 - [GetCompletedCount200Response]docs/GetCompletedCount200Response.md
 - [GetCompletedJobResultMaybe200Response]docs/GetCompletedJobResultMaybe200Response.md
 - [GetCriticalAlerts200Response]docs/GetCriticalAlerts200Response.md
 - [GetDeployTo200Response]docs/GetDeployTo200Response.md
 - [GetFlowByPathWithDraft200Response]docs/GetFlowByPathWithDraft200Response.md
 - [GetFlowDeploymentStatus200Response]docs/GetFlowDeploymentStatus200Response.md
 - [GetFolderUsage200Response]docs/GetFolderUsage200Response.md
 - [GetGithubAppToken200Response]docs/GetGithubAppToken200Response.md
 - [GetGithubAppTokenRequest]docs/GetGithubAppTokenRequest.md
 - [GetHubAppById200Response]docs/GetHubAppById200Response.md
 - [GetHubAppById200ResponseApp]docs/GetHubAppById200ResponseApp.md
 - [GetHubFlowById200Response]docs/GetHubFlowById200Response.md
 - [GetHubScriptByPath200Response]docs/GetHubScriptByPath200Response.md
 - [GetJobMetrics200Response]docs/GetJobMetrics200Response.md
 - [GetJobMetricsRequest]docs/GetJobMetricsRequest.md
 - [GetJobUpdates200Response]docs/GetJobUpdates200Response.md
 - [GetLatestKeyRenewalAttempt200Response]docs/GetLatestKeyRenewalAttempt200Response.md
 - [GetOAuthConnect200Response]docs/GetOAuthConnect200Response.md
 - [GetPremiumInfo200Response]docs/GetPremiumInfo200Response.md
 - [GetPublicAppByCustomPath200Response]docs/GetPublicAppByCustomPath200Response.md
 - [GetQueueCount200Response]docs/GetQueueCount200Response.md
 - [GetQueueMetrics200ResponseInner]docs/GetQueueMetrics200ResponseInner.md
 - [GetQueueMetrics200ResponseInnerValuesInner]docs/GetQueueMetrics200ResponseInnerValuesInner.md
 - [GetQueuePosition200Response]docs/GetQueuePosition200Response.md
 - [GetResumeUrls200Response]docs/GetResumeUrls200Response.md
 - [GetRunnable200Response]docs/GetRunnable200Response.md
 - [GetScriptDeploymentStatus200Response]docs/GetScriptDeploymentStatus200Response.md
 - [GetSettings200Response]docs/GetSettings200Response.md
 - [GetSuspendedJobFlow200Response]docs/GetSuspendedJobFlow200Response.md
 - [GetSuspendedJobFlow200ResponseApproversInner]docs/GetSuspendedJobFlow200ResponseApproversInner.md
 - [GetThresholdAlert200Response]docs/GetThresholdAlert200Response.md
 - [GetTopHubScripts200Response]docs/GetTopHubScripts200Response.md
 - [GetTopHubScripts200ResponseAsksInner]docs/GetTopHubScripts200ResponseAsksInner.md
 - [GetTutorialProgress200Response]docs/GetTutorialProgress200Response.md
 - [GetUsedTriggers200Response]docs/GetUsedTriggers200Response.md
 - [GetWorkspaceEncryptionKey200Response]docs/GetWorkspaceEncryptionKey200Response.md
 - [GitRepositorySettings]docs/GitRepositorySettings.md
 - [GitRepositorySettingsSettings]docs/GitRepositorySettingsSettings.md
 - [GitSyncObjectType]docs/GitSyncObjectType.md
 - [GithubInstallationsInner]docs/GithubInstallationsInner.md
 - [GithubInstallationsInnerRepositoriesInner]docs/GithubInstallationsInnerRepositoriesInner.md
 - [GlobalSetting]docs/GlobalSetting.md
 - [GlobalUserInfo]docs/GlobalUserInfo.md
 - [GlobalUserRenameRequest]docs/GlobalUserRenameRequest.md
 - [GlobalUserUpdateRequest]docs/GlobalUserUpdateRequest.md
 - [GlobalUsernameInfo200Response]docs/GlobalUsernameInfo200Response.md
 - [GlobalUsernameInfo200ResponseWorkspaceUsernamesInner]docs/GlobalUsernameInfo200ResponseWorkspaceUsernamesInner.md
 - [Group]docs/Group.md
 - [HttpMethod]docs/HttpMethod.md
 - [HttpTrigger]docs/HttpTrigger.md
 - [HubScriptKind]docs/HubScriptKind.md
 - [Identity]docs/Identity.md
 - [ImportInstallationRequest]docs/ImportInstallationRequest.md
 - [Input]docs/Input.md
 - [InputTransform]docs/InputTransform.md
 - [InstallFromWorkspaceRequest]docs/InstallFromWorkspaceRequest.md
 - [InstanceGroup]docs/InstanceGroup.md
 - [InstanceGroupWithWorkspaces]docs/InstanceGroupWithWorkspaces.md
 - [InviteUserRequest]docs/InviteUserRequest.md
 - [JavascriptTransform]docs/JavascriptTransform.md
 - [Job]docs/Job.md
 - [JobOneOf]docs/JobOneOf.md
 - [JobOneOf1]docs/JobOneOf1.md
 - [JobSearchHit]docs/JobSearchHit.md
 - [KafkaTrigger]docs/KafkaTrigger.md
 - [Language]docs/Language.md
 - [LargeFileStorage]docs/LargeFileStorage.md
 - [LargeFileStorageSecondaryStorageValue]docs/LargeFileStorageSecondaryStorageValue.md
 - [ListAssets200ResponseInner]docs/ListAssets200ResponseInner.md
 - [ListAssets200ResponseInnerMetadata]docs/ListAssets200ResponseInnerMetadata.md
 - [ListAssets200ResponseInnerUsagesInner]docs/ListAssets200ResponseInnerUsagesInner.md
 - [ListAssetsByUsage200ResponseInnerInner]docs/ListAssetsByUsage200ResponseInnerInner.md
 - [ListAssetsByUsageRequest]docs/ListAssetsByUsageRequest.md
 - [ListAssetsByUsageRequestUsagesInner]docs/ListAssetsByUsageRequestUsagesInner.md
 - [ListAvailableTeamsChannels200ResponseInner]docs/ListAvailableTeamsChannels200ResponseInner.md
 - [ListAvailableTeamsIds200ResponseInner]docs/ListAvailableTeamsIds200ResponseInner.md
 - [ListBlacklistedAgentTokens200ResponseInner]docs/ListBlacklistedAgentTokens200ResponseInner.md
 - [ListFlows200ResponseInner]docs/ListFlows200ResponseInner.md
 - [ListHubApps200Response]docs/ListHubApps200Response.md
 - [ListHubApps200ResponseAppsInner]docs/ListHubApps200ResponseAppsInner.md
 - [ListHubFlows200Response]docs/ListHubFlows200Response.md
 - [ListHubFlows200ResponseFlowsInner]docs/ListHubFlows200ResponseFlowsInner.md
 - [ListHubIntegrations200ResponseInner]docs/ListHubIntegrations200ResponseInner.md
 - [ListLogFiles200ResponseInner]docs/ListLogFiles200ResponseInner.md
 - [ListOAuthLogins200Response]docs/ListOAuthLogins200Response.md
 - [ListOAuthLogins200ResponseOauthInner]docs/ListOAuthLogins200ResponseOauthInner.md
 - [ListResourceNames200ResponseInner]docs/ListResourceNames200ResponseInner.md
 - [ListSearchResource200ResponseInner]docs/ListSearchResource200ResponseInner.md
 - [ListSearchScript200ResponseInner]docs/ListSearchScript200ResponseInner.md
 - [ListSelectedJobGroups200ResponseInner]docs/ListSelectedJobGroups200ResponseInner.md
 - [ListSelectedJobGroups200ResponseInnerSchemasInner]docs/ListSelectedJobGroups200ResponseInnerSchemasInner.md
 - [ListStoredFiles200Response]docs/ListStoredFiles200Response.md
 - [ListWorkerGroups200ResponseInner]docs/ListWorkerGroups200ResponseInner.md
 - [ListableApp]docs/ListableApp.md
 - [ListableRawApp]docs/ListableRawApp.md
 - [ListableResource]docs/ListableResource.md
 - [ListableVariable]docs/ListableVariable.md
 - [LoadTableRowCount200Response]docs/LoadTableRowCount200Response.md
 - [LogSearchHit]docs/LogSearchHit.md
 - [LoggedWizardStatus]docs/LoggedWizardStatus.md
 - [Login]docs/Login.md
 - [LoginWithOauthRequest]docs/LoginWithOauthRequest.md
 - [MainArgSignature]docs/MainArgSignature.md
 - [MainArgSignatureArgsInner]docs/MainArgSignatureArgsInner.md
 - [MainArgSignatureArgsInnerTyp]docs/MainArgSignatureArgsInnerTyp.md
 - [MainArgSignatureArgsInnerTypOneOf]docs/MainArgSignatureArgsInnerTypOneOf.md
 - [MainArgSignatureArgsInnerTypOneOf1]docs/MainArgSignatureArgsInnerTypOneOf1.md
 - [MainArgSignatureArgsInnerTypOneOf2]docs/MainArgSignatureArgsInnerTypOneOf2.md
 - [MainArgSignatureArgsInnerTypOneOf2Object]docs/MainArgSignatureArgsInnerTypOneOf2Object.md
 - [MainArgSignatureArgsInnerTypOneOf2ObjectPropsInner]docs/MainArgSignatureArgsInnerTypOneOf2ObjectPropsInner.md
 - [MainArgSignatureArgsInnerTypOneOf2ObjectPropsInnerTyp]docs/MainArgSignatureArgsInnerTypOneOf2ObjectPropsInnerTyp.md
 - [MainArgSignatureArgsInnerTypOneOf2ObjectPropsInnerTypOneOf]docs/MainArgSignatureArgsInnerTypOneOf2ObjectPropsInnerTypOneOf.md
 - [MainArgSignatureArgsInnerTypOneOf3]docs/MainArgSignatureArgsInnerTypOneOf3.md
 - [MainArgSignatureArgsInnerTypOneOf3List]docs/MainArgSignatureArgsInnerTypOneOf3List.md
 - [MetricDataPoint]docs/MetricDataPoint.md
 - [MetricMetadata]docs/MetricMetadata.md
 - [MoveCapturesAndConfigsRequest]docs/MoveCapturesAndConfigsRequest.md
 - [MqttClientVersion]docs/MqttClientVersion.md
 - [MqttQoS]docs/MqttQoS.md
 - [MqttSubscribeTopic]docs/MqttSubscribeTopic.md
 - [MqttTrigger]docs/MqttTrigger.md
 - [MqttV3Config]docs/MqttV3Config.md
 - [MqttV5Config]docs/MqttV5Config.md
 - [NatsTrigger]docs/NatsTrigger.md
 - [NewEmailTrigger]docs/NewEmailTrigger.md
 - [NewHttpTrigger]docs/NewHttpTrigger.md
 - [NewHttpTriggerStaticAssetConfig]docs/NewHttpTriggerStaticAssetConfig.md
 - [NewKafkaTrigger]docs/NewKafkaTrigger.md
 - [NewMqttTrigger]docs/NewMqttTrigger.md
 - [NewNatsTrigger]docs/NewNatsTrigger.md
 - [NewPostgresTrigger]docs/NewPostgresTrigger.md
 - [NewSchedule]docs/NewSchedule.md
 - [NewScript]docs/NewScript.md
 - [NewScriptAssetsInner]docs/NewScriptAssetsInner.md
 - [NewScriptWithDraft]docs/NewScriptWithDraft.md
 - [NewSqsTrigger]docs/NewSqsTrigger.md
 - [NewToken]docs/NewToken.md
 - [NewTokenImpersonate]docs/NewTokenImpersonate.md
 - [NewWebsocketTrigger]docs/NewWebsocketTrigger.md
 - [NewWebsocketTriggerFiltersInner]docs/NewWebsocketTriggerFiltersInner.md
 - [ObscuredJob]docs/ObscuredJob.md
 - [OpenFlow]docs/OpenFlow.md
 - [OpenFlowWPath]docs/OpenFlowWPath.md
 - [OpenapiHttpRouteFilters]docs/OpenapiHttpRouteFilters.md
 - [OpenapiSpecFormat]docs/OpenapiSpecFormat.md
 - [OpenapiV3Info]docs/OpenapiV3Info.md
 - [OpenapiV3InfoContact]docs/OpenapiV3InfoContact.md
 - [OpenapiV3InfoLicense]docs/OpenapiV3InfoLicense.md
 - [OperatorSettings]docs/OperatorSettings.md
 - [PathFlow]docs/PathFlow.md
 - [PathScript]docs/PathScript.md
 - [PolarsClientKwargs]docs/PolarsClientKwargs.md
 - [PolarsConnectionSettings200Response]docs/PolarsConnectionSettings200Response.md
 - [PolarsConnectionSettingsV2200Response]docs/PolarsConnectionSettingsV2200Response.md
 - [PolarsConnectionSettingsV2200ResponseStorageOptions]docs/PolarsConnectionSettingsV2200ResponseStorageOptions.md
 - [Policy]docs/Policy.md
 - [PolicyAllowedS3KeysInner]docs/PolicyAllowedS3KeysInner.md
 - [PostgresTrigger]docs/PostgresTrigger.md
 - [Preview]docs/Preview.md
 - [PreviewScheduleRequest]docs/PreviewScheduleRequest.md
 - [PublicationData]docs/PublicationData.md
 - [PushConfig]docs/PushConfig.md
 - [QueryHubScripts200ResponseInner]docs/QueryHubScripts200ResponseInner.md
 - [QueryResourceTypes200ResponseInner]docs/QueryResourceTypes200ResponseInner.md
 - [QueuedJob]docs/QueuedJob.md
 - [RawScript]docs/RawScript.md
 - [RawScriptAssetsInner]docs/RawScriptAssetsInner.md
 - [RawScriptForDependencies]docs/RawScriptForDependencies.md
 - [RefreshTokenRequest]docs/RefreshTokenRequest.md
 - [Relations]docs/Relations.md
 - [RemoveBlacklistAgentTokenRequest]docs/RemoveBlacklistAgentTokenRequest.md
 - [RemoveOwnerToFolderRequest]docs/RemoveOwnerToFolderRequest.md
 - [Resource]docs/Resource.md
 - [ResourceType]docs/ResourceType.md
 - [RestartedFrom]docs/RestartedFrom.md
 - [Retry]docs/Retry.md
 - [RetryConstant]docs/RetryConstant.md
 - [RetryExponential]docs/RetryExponential.md
 - [RetryIf]docs/RetryIf.md
 - [RunRawScriptDependencies201Response]docs/RunRawScriptDependencies201Response.md
 - [RunRawScriptDependenciesRequest]docs/RunRawScriptDependenciesRequest.md
 - [RunSlackMessageTestJob200Response]docs/RunSlackMessageTestJob200Response.md
 - [RunSlackMessageTestJobRequest]docs/RunSlackMessageTestJobRequest.md
 - [RunnableKind]docs/RunnableKind.md
 - [RunnableType]docs/RunnableType.md
 - [S3Object]docs/S3Object.md
 - [S3PermissionRule]docs/S3PermissionRule.md
 - [S3Resource]docs/S3Resource.md
 - [ScalarMetric]docs/ScalarMetric.md
 - [Schedule]docs/Schedule.md
 - [ScheduleWJobs]docs/ScheduleWJobs.md
 - [ScheduleWJobsAllOfJobs]docs/ScheduleWJobsAllOfJobs.md
 - [ScopeDefinition]docs/ScopeDefinition.md
 - [ScopeDomain]docs/ScopeDomain.md
 - [Script]docs/Script.md
 - [ScriptHistory]docs/ScriptHistory.md
 - [ScriptLang]docs/ScriptLang.md
 - [SearchJobsIndex200Response]docs/SearchJobsIndex200Response.md
 - [SearchJobsIndex200ResponseIndexMetadata]docs/SearchJobsIndex200ResponseIndexMetadata.md
 - [SearchLogsIndex200Response]docs/SearchLogsIndex200Response.md
 - [SendMessageToConversationRequest]docs/SendMessageToConversationRequest.md
 - [SetCaptureConfigRequest]docs/SetCaptureConfigRequest.md
 - [SetDefaultErrorOrRecoveryHandlerRequest]docs/SetDefaultErrorOrRecoveryHandlerRequest.md
 - [SetEnvironmentVariableRequest]docs/SetEnvironmentVariableRequest.md
 - [SetGlobalRequest]docs/SetGlobalRequest.md
 - [SetJobProgressRequest]docs/SetJobProgressRequest.md
 - [SetLoginTypeForUserRequest]docs/SetLoginTypeForUserRequest.md
 - [SetPasswordRequest]docs/SetPasswordRequest.md
 - [SetScheduleEnabledRequest]docs/SetScheduleEnabledRequest.md
 - [SetThresholdAlertRequest]docs/SetThresholdAlertRequest.md
 - [SetWorkspaceEncryptionKeyRequest]docs/SetWorkspaceEncryptionKeyRequest.md
 - [SignS3ObjectsRequest]docs/SignS3ObjectsRequest.md
 - [SlackToken]docs/SlackToken.md
 - [SlackTokenBot]docs/SlackTokenBot.md
 - [Slot]docs/Slot.md
 - [SlotList]docs/SlotList.md
 - [SqsTrigger]docs/SqsTrigger.md
 - [StarRequest]docs/StarRequest.md
 - [StaticTransform]docs/StaticTransform.md
 - [StopAfterIf]docs/StopAfterIf.md
 - [SubscriptionMode]docs/SubscriptionMode.md
 - [TableToTrackInner]docs/TableToTrackInner.md
 - [TeamInfo]docs/TeamInfo.md
 - [TeamsChannel]docs/TeamsChannel.md
 - [TemplateScript]docs/TemplateScript.md
 - [TestCriticalChannelsRequestInner]docs/TestCriticalChannelsRequestInner.md
 - [TestKafkaConnectionRequest]docs/TestKafkaConnectionRequest.md
 - [TestLicenseKeyRequest]docs/TestLicenseKeyRequest.md
 - [TestPostgresConnectionRequest]docs/TestPostgresConnectionRequest.md
 - [TestSmtpRequest]docs/TestSmtpRequest.md
 - [TestSmtpRequestSmtp]docs/TestSmtpRequestSmtp.md
 - [TestWebsocketConnectionRequest]docs/TestWebsocketConnectionRequest.md
 - [TimeseriesMetric]docs/TimeseriesMetric.md
 - [ToggleWorkspaceErrorHandlerForScriptRequest]docs/ToggleWorkspaceErrorHandlerForScriptRequest.md
 - [TokenResponse]docs/TokenResponse.md
 - [TriggerExtraProperty]docs/TriggerExtraProperty.md
 - [TriggersCount]docs/TriggersCount.md
 - [TriggersCountPrimarySchedule]docs/TriggersCountPrimarySchedule.md
 - [TruncatedToken]docs/TruncatedToken.md
 - [UpdateAppRequest]docs/UpdateAppRequest.md
 - [UpdateFlowHistoryRequest]docs/UpdateFlowHistoryRequest.md
 - [UpdateFlowRequest]docs/UpdateFlowRequest.md
 - [UpdateFolderRequest]docs/UpdateFolderRequest.md
 - [UpdateGroupRequest]docs/UpdateGroupRequest.md
 - [UpdateInput]docs/UpdateInput.md
 - [UpdateInstanceGroupRequest]docs/UpdateInstanceGroupRequest.md
 - [UpdateRawAppRequest]docs/UpdateRawAppRequest.md
 - [UpdateScriptHistoryRequest]docs/UpdateScriptHistoryRequest.md
 - [UploadS3FileFromApp200Response]docs/UploadS3FileFromApp200Response.md
 - [User]docs/User.md
 - [UserSource]docs/UserSource.md
 - [UserUsage]docs/UserUsage.md
 - [UserWorkspaceList]docs/UserWorkspaceList.md
 - [UserWorkspaceListWorkspacesInner]docs/UserWorkspaceListWorkspacesInner.md
 - [WebhookFilters]docs/WebhookFilters.md
 - [WebsocketTrigger]docs/WebsocketTrigger.md
 - [WebsocketTriggerInitialMessage]docs/WebsocketTriggerInitialMessage.md
 - [WebsocketTriggerInitialMessageAnyOf]docs/WebsocketTriggerInitialMessageAnyOf.md
 - [WebsocketTriggerInitialMessageAnyOf1]docs/WebsocketTriggerInitialMessageAnyOf1.md
 - [WebsocketTriggerInitialMessageAnyOf1RunnableResult]docs/WebsocketTriggerInitialMessageAnyOf1RunnableResult.md
 - [WhileloopFlow]docs/WhileloopFlow.md
 - [WindmillFileMetadata]docs/WindmillFileMetadata.md
 - [WindmillFilePreview]docs/WindmillFilePreview.md
 - [WindmillLargeFile]docs/WindmillLargeFile.md
 - [WorkerPing]docs/WorkerPing.md
 - [WorkflowStatus]docs/WorkflowStatus.md
 - [WorkflowTask]docs/WorkflowTask.md
 - [Workspace]docs/Workspace.md
 - [WorkspaceDefaultScripts]docs/WorkspaceDefaultScripts.md
 - [WorkspaceDeployUiSettings]docs/WorkspaceDeployUiSettings.md
 - [WorkspaceGitSyncSettings]docs/WorkspaceGitSyncSettings.md
 - [WorkspaceGithubInstallation]docs/WorkspaceGithubInstallation.md
 - [WorkspaceInfo]docs/WorkspaceInfo.md
 - [WorkspaceInvite]docs/WorkspaceInvite.md
 - [WorkspaceMuteCriticalAlertsUiRequest]docs/WorkspaceMuteCriticalAlertsUiRequest.md


To get access to the crate's generated documentation, use:

```
cargo doc --open
```

## Author

contact@windmill.dev