@galaxyproject/galaxy-api-client 25.0.0-dev.0 → 25.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +3231 -346
- package/dist/index.d.ts +3231 -346
- package/package.json +1 -1
- package/src/dist/api-types.js +0 -46
- package/src/dist/example.js +0 -258
package/dist/index.d.cts
CHANGED
|
@@ -485,6 +485,23 @@ interface paths {
|
|
|
485
485
|
patch?: never;
|
|
486
486
|
trace?: never;
|
|
487
487
|
};
|
|
488
|
+
"/api/datasets/{dataset_id}/extra_files/raw/{filename}": {
|
|
489
|
+
parameters: {
|
|
490
|
+
query?: never;
|
|
491
|
+
header?: never;
|
|
492
|
+
path?: never;
|
|
493
|
+
cookie?: never;
|
|
494
|
+
};
|
|
495
|
+
/** Downloads a raw extra file associated with a dataset. */
|
|
496
|
+
get: operations["extra_file_raw_api_datasets__dataset_id__extra_files_raw__filename__get"];
|
|
497
|
+
put?: never;
|
|
498
|
+
post?: never;
|
|
499
|
+
delete?: never;
|
|
500
|
+
options?: never;
|
|
501
|
+
head?: never;
|
|
502
|
+
patch?: never;
|
|
503
|
+
trace?: never;
|
|
504
|
+
};
|
|
488
505
|
"/api/datasets/{dataset_id}/get_content_as_text": {
|
|
489
506
|
parameters: {
|
|
490
507
|
query?: never;
|
|
@@ -876,6 +893,54 @@ interface paths {
|
|
|
876
893
|
patch?: never;
|
|
877
894
|
trace?: never;
|
|
878
895
|
};
|
|
896
|
+
"/api/datatypes/{datatype}": {
|
|
897
|
+
parameters: {
|
|
898
|
+
query?: never;
|
|
899
|
+
header?: never;
|
|
900
|
+
path?: never;
|
|
901
|
+
cookie?: never;
|
|
902
|
+
};
|
|
903
|
+
/**
|
|
904
|
+
* Get details for a specific datatype
|
|
905
|
+
* @description Gets detailed information about a specific datatype.
|
|
906
|
+
*
|
|
907
|
+
* Includes information about:
|
|
908
|
+
* - Basic properties (description, mime type, etc.)
|
|
909
|
+
* - Available converters
|
|
910
|
+
* - EDAM mappings
|
|
911
|
+
* - Preferred visualization
|
|
912
|
+
*/
|
|
913
|
+
get: operations["show_api_datatypes__datatype__get"];
|
|
914
|
+
put?: never;
|
|
915
|
+
post?: never;
|
|
916
|
+
delete?: never;
|
|
917
|
+
options?: never;
|
|
918
|
+
head?: never;
|
|
919
|
+
patch?: never;
|
|
920
|
+
trace?: never;
|
|
921
|
+
};
|
|
922
|
+
"/api/datatypes/{datatype}/visualizations": {
|
|
923
|
+
parameters: {
|
|
924
|
+
query?: never;
|
|
925
|
+
header?: never;
|
|
926
|
+
path?: never;
|
|
927
|
+
cookie?: never;
|
|
928
|
+
};
|
|
929
|
+
/**
|
|
930
|
+
* Returns the visualization mapping for a specific datatype
|
|
931
|
+
* @description Gets the visualization mapping for a specific datatype.
|
|
932
|
+
*
|
|
933
|
+
* Mappings are defined in the datatypes_conf.xml configuration file.
|
|
934
|
+
*/
|
|
935
|
+
get: operations["visualization_for_datatype_api_datatypes__datatype__visualizations_get"];
|
|
936
|
+
put?: never;
|
|
937
|
+
post?: never;
|
|
938
|
+
delete?: never;
|
|
939
|
+
options?: never;
|
|
940
|
+
head?: never;
|
|
941
|
+
patch?: never;
|
|
942
|
+
trace?: never;
|
|
943
|
+
};
|
|
879
944
|
"/api/display_applications": {
|
|
880
945
|
parameters: {
|
|
881
946
|
query?: never;
|
|
@@ -933,6 +998,48 @@ interface paths {
|
|
|
933
998
|
patch?: never;
|
|
934
999
|
trace?: never;
|
|
935
1000
|
};
|
|
1001
|
+
"/api/dynamic_tools": {
|
|
1002
|
+
parameters: {
|
|
1003
|
+
query?: never;
|
|
1004
|
+
header?: never;
|
|
1005
|
+
path?: never;
|
|
1006
|
+
cookie?: never;
|
|
1007
|
+
};
|
|
1008
|
+
/** Index */
|
|
1009
|
+
get: operations["index_api_dynamic_tools_get"];
|
|
1010
|
+
put?: never;
|
|
1011
|
+
/** Create */
|
|
1012
|
+
post: operations["create_api_dynamic_tools_post"];
|
|
1013
|
+
delete?: never;
|
|
1014
|
+
options?: never;
|
|
1015
|
+
head?: never;
|
|
1016
|
+
patch?: never;
|
|
1017
|
+
trace?: never;
|
|
1018
|
+
};
|
|
1019
|
+
"/api/dynamic_tools/{dynamic_tool_id}": {
|
|
1020
|
+
parameters: {
|
|
1021
|
+
query?: never;
|
|
1022
|
+
header?: never;
|
|
1023
|
+
path?: never;
|
|
1024
|
+
cookie?: never;
|
|
1025
|
+
};
|
|
1026
|
+
/** Show */
|
|
1027
|
+
get: operations["show_api_dynamic_tools__dynamic_tool_id__get"];
|
|
1028
|
+
put?: never;
|
|
1029
|
+
post?: never;
|
|
1030
|
+
/**
|
|
1031
|
+
* Delete
|
|
1032
|
+
* @description DELETE /api/dynamic_tools/{encoded_dynamic_tool_id|tool_uuid}
|
|
1033
|
+
*
|
|
1034
|
+
* Deactivate the specified dynamic tool. Deactivated tools will not
|
|
1035
|
+
* be loaded into the toolbox.
|
|
1036
|
+
*/
|
|
1037
|
+
delete: operations["delete_api_dynamic_tools__dynamic_tool_id__delete"];
|
|
1038
|
+
options?: never;
|
|
1039
|
+
head?: never;
|
|
1040
|
+
patch?: never;
|
|
1041
|
+
trace?: never;
|
|
1042
|
+
};
|
|
936
1043
|
"/api/file_source_instances": {
|
|
937
1044
|
parameters: {
|
|
938
1045
|
query?: never;
|
|
@@ -4587,6 +4694,82 @@ interface paths {
|
|
|
4587
4694
|
patch?: never;
|
|
4588
4695
|
trace?: never;
|
|
4589
4696
|
};
|
|
4697
|
+
"/api/unprivileged_tools": {
|
|
4698
|
+
parameters: {
|
|
4699
|
+
query?: never;
|
|
4700
|
+
header?: never;
|
|
4701
|
+
path?: never;
|
|
4702
|
+
cookie?: never;
|
|
4703
|
+
};
|
|
4704
|
+
/** Index */
|
|
4705
|
+
get: operations["index_api_unprivileged_tools_get"];
|
|
4706
|
+
put?: never;
|
|
4707
|
+
/** Create */
|
|
4708
|
+
post: operations["create_api_unprivileged_tools_post"];
|
|
4709
|
+
delete?: never;
|
|
4710
|
+
options?: never;
|
|
4711
|
+
head?: never;
|
|
4712
|
+
patch?: never;
|
|
4713
|
+
trace?: never;
|
|
4714
|
+
};
|
|
4715
|
+
"/api/unprivileged_tools/build": {
|
|
4716
|
+
parameters: {
|
|
4717
|
+
query?: never;
|
|
4718
|
+
header?: never;
|
|
4719
|
+
path?: never;
|
|
4720
|
+
cookie?: never;
|
|
4721
|
+
};
|
|
4722
|
+
get?: never;
|
|
4723
|
+
put?: never;
|
|
4724
|
+
/** Build */
|
|
4725
|
+
post: operations["build_api_unprivileged_tools_build_post"];
|
|
4726
|
+
delete?: never;
|
|
4727
|
+
options?: never;
|
|
4728
|
+
head?: never;
|
|
4729
|
+
patch?: never;
|
|
4730
|
+
trace?: never;
|
|
4731
|
+
};
|
|
4732
|
+
"/api/unprivileged_tools/runtime_model": {
|
|
4733
|
+
parameters: {
|
|
4734
|
+
query?: never;
|
|
4735
|
+
header?: never;
|
|
4736
|
+
path?: never;
|
|
4737
|
+
cookie?: never;
|
|
4738
|
+
};
|
|
4739
|
+
get?: never;
|
|
4740
|
+
put?: never;
|
|
4741
|
+
/** Runtime Model */
|
|
4742
|
+
post: operations["runtime_model_api_unprivileged_tools_runtime_model_post"];
|
|
4743
|
+
delete?: never;
|
|
4744
|
+
options?: never;
|
|
4745
|
+
head?: never;
|
|
4746
|
+
patch?: never;
|
|
4747
|
+
trace?: never;
|
|
4748
|
+
};
|
|
4749
|
+
"/api/unprivileged_tools/{uuid}": {
|
|
4750
|
+
parameters: {
|
|
4751
|
+
query?: never;
|
|
4752
|
+
header?: never;
|
|
4753
|
+
path?: never;
|
|
4754
|
+
cookie?: never;
|
|
4755
|
+
};
|
|
4756
|
+
/** Show */
|
|
4757
|
+
get: operations["show_api_unprivileged_tools__uuid__get"];
|
|
4758
|
+
put?: never;
|
|
4759
|
+
post?: never;
|
|
4760
|
+
/**
|
|
4761
|
+
* Delete
|
|
4762
|
+
* @description DELETE /api/unprivileged_tools/{encoded_dynamic_tool_id|tool_uuid}
|
|
4763
|
+
*
|
|
4764
|
+
* Deactivate the specified dynamic tool. Deactivated tools will not
|
|
4765
|
+
* be loaded into the toolbox.
|
|
4766
|
+
*/
|
|
4767
|
+
delete: operations["delete_api_unprivileged_tools__uuid__delete"];
|
|
4768
|
+
options?: never;
|
|
4769
|
+
head?: never;
|
|
4770
|
+
patch?: never;
|
|
4771
|
+
trace?: never;
|
|
4772
|
+
};
|
|
4590
4773
|
"/api/users": {
|
|
4591
4774
|
parameters: {
|
|
4592
4775
|
query?: never;
|
|
@@ -6059,6 +6242,57 @@ interface components {
|
|
|
6059
6242
|
*/
|
|
6060
6243
|
type: string;
|
|
6061
6244
|
};
|
|
6245
|
+
/** AdminToolSource */
|
|
6246
|
+
AdminToolSource: {
|
|
6247
|
+
/** Citations */
|
|
6248
|
+
citations?: components["schemas"]["Citation"][] | null;
|
|
6249
|
+
/**
|
|
6250
|
+
* @description discriminator enum property added by openapi-typescript
|
|
6251
|
+
* @enum {string}
|
|
6252
|
+
*/
|
|
6253
|
+
class: "GalaxyTool";
|
|
6254
|
+
/** Command */
|
|
6255
|
+
command: string;
|
|
6256
|
+
/** Container */
|
|
6257
|
+
container?: string | null;
|
|
6258
|
+
/** Description */
|
|
6259
|
+
description?: string | null;
|
|
6260
|
+
/** Edam Operations */
|
|
6261
|
+
edam_operations?: string[] | null;
|
|
6262
|
+
/** Edam Topics */
|
|
6263
|
+
edam_topics?: string[] | null;
|
|
6264
|
+
help?: components["schemas"]["HelpContent"] | null;
|
|
6265
|
+
/** Id */
|
|
6266
|
+
id?: string | null;
|
|
6267
|
+
/**
|
|
6268
|
+
* Inputs
|
|
6269
|
+
* @default []
|
|
6270
|
+
*/
|
|
6271
|
+
inputs: components["schemas"]["GalaxyToolParameterModel-Input"][];
|
|
6272
|
+
/** License */
|
|
6273
|
+
license?: string | null;
|
|
6274
|
+
/** Name */
|
|
6275
|
+
name?: string | null;
|
|
6276
|
+
/**
|
|
6277
|
+
* Outputs
|
|
6278
|
+
* @default []
|
|
6279
|
+
*/
|
|
6280
|
+
outputs: (components["schemas"]["IncomingToolOutputDataset"] | components["schemas"]["IncomingToolOutputCollection-Input"] | components["schemas"]["ToolOutputText"] | components["schemas"]["ToolOutputInteger"] | components["schemas"]["ToolOutputFloat"] | components["schemas"]["ToolOutputBoolean"])[];
|
|
6281
|
+
/** Profile */
|
|
6282
|
+
profile?: number | null;
|
|
6283
|
+
/**
|
|
6284
|
+
* Requirements
|
|
6285
|
+
* @default []
|
|
6286
|
+
*/
|
|
6287
|
+
requirements: (components["schemas"]["JavascriptRequirement"] | components["schemas"]["ResourceRequirement"] | components["schemas"]["ContainerRequirement"])[] | null;
|
|
6288
|
+
/**
|
|
6289
|
+
* Version
|
|
6290
|
+
* @default 1.0
|
|
6291
|
+
*/
|
|
6292
|
+
version: string | null;
|
|
6293
|
+
/** Xrefs */
|
|
6294
|
+
xrefs?: components["schemas"]["XrefDict"][] | null;
|
|
6295
|
+
};
|
|
6062
6296
|
/** AnonUserModel */
|
|
6063
6297
|
AnonUserModel: {
|
|
6064
6298
|
/**
|
|
@@ -6357,6 +6591,47 @@ interface components {
|
|
|
6357
6591
|
/** Type */
|
|
6358
6592
|
type: ("faster" | "slower" | "short_term" | "backed_up" | "not_backed_up" | "more_secure" | "less_secure" | "more_stable" | "less_stable") | ("cloud" | "quota" | "no_quota" | "restricted" | "user_defined");
|
|
6359
6593
|
};
|
|
6594
|
+
/** BaseUrlParameterModel */
|
|
6595
|
+
BaseUrlParameterModel: {
|
|
6596
|
+
/** Argument */
|
|
6597
|
+
argument?: string | null;
|
|
6598
|
+
/** Help */
|
|
6599
|
+
help?: string | null;
|
|
6600
|
+
/**
|
|
6601
|
+
* Hidden
|
|
6602
|
+
* @default false
|
|
6603
|
+
*/
|
|
6604
|
+
hidden: boolean;
|
|
6605
|
+
/**
|
|
6606
|
+
* Is Dynamic
|
|
6607
|
+
* @default false
|
|
6608
|
+
*/
|
|
6609
|
+
is_dynamic: boolean;
|
|
6610
|
+
/** Label */
|
|
6611
|
+
label?: string | null;
|
|
6612
|
+
/**
|
|
6613
|
+
* Name
|
|
6614
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
6615
|
+
*/
|
|
6616
|
+
name: string;
|
|
6617
|
+
/**
|
|
6618
|
+
* Optional
|
|
6619
|
+
* @description If `false`, parameter must have a value.
|
|
6620
|
+
* @default false
|
|
6621
|
+
*/
|
|
6622
|
+
optional: boolean;
|
|
6623
|
+
/**
|
|
6624
|
+
* Parameter Type
|
|
6625
|
+
* @default gx_baseurl
|
|
6626
|
+
* @constant
|
|
6627
|
+
*/
|
|
6628
|
+
parameter_type: "gx_baseurl";
|
|
6629
|
+
/**
|
|
6630
|
+
* @description discriminator enum property added by openapi-typescript
|
|
6631
|
+
* @enum {string}
|
|
6632
|
+
*/
|
|
6633
|
+
type: "baseurl";
|
|
6634
|
+
};
|
|
6360
6635
|
/** BasicRoleModel */
|
|
6361
6636
|
BasicRoleModel: {
|
|
6362
6637
|
/**
|
|
@@ -6472,6 +6747,56 @@ interface components {
|
|
|
6472
6747
|
/** Targets */
|
|
6473
6748
|
targets: unknown;
|
|
6474
6749
|
};
|
|
6750
|
+
/** BooleanParameterModel */
|
|
6751
|
+
BooleanParameterModel: {
|
|
6752
|
+
/** Argument */
|
|
6753
|
+
argument?: string | null;
|
|
6754
|
+
/** Falsevalue */
|
|
6755
|
+
falsevalue?: string | null;
|
|
6756
|
+
/** Help */
|
|
6757
|
+
help?: string | null;
|
|
6758
|
+
/**
|
|
6759
|
+
* Hidden
|
|
6760
|
+
* @default false
|
|
6761
|
+
*/
|
|
6762
|
+
hidden: boolean;
|
|
6763
|
+
/**
|
|
6764
|
+
* Is Dynamic
|
|
6765
|
+
* @default false
|
|
6766
|
+
*/
|
|
6767
|
+
is_dynamic: boolean;
|
|
6768
|
+
/** Label */
|
|
6769
|
+
label?: string | null;
|
|
6770
|
+
/**
|
|
6771
|
+
* Name
|
|
6772
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
6773
|
+
*/
|
|
6774
|
+
name: string;
|
|
6775
|
+
/**
|
|
6776
|
+
* Optional
|
|
6777
|
+
* @description If `false`, parameter must have a value.
|
|
6778
|
+
* @default false
|
|
6779
|
+
*/
|
|
6780
|
+
optional: boolean;
|
|
6781
|
+
/**
|
|
6782
|
+
* Parameter Type
|
|
6783
|
+
* @default gx_boolean
|
|
6784
|
+
* @constant
|
|
6785
|
+
*/
|
|
6786
|
+
parameter_type: "gx_boolean";
|
|
6787
|
+
/** Truevalue */
|
|
6788
|
+
truevalue?: string | null;
|
|
6789
|
+
/**
|
|
6790
|
+
* @description discriminator enum property added by openapi-typescript
|
|
6791
|
+
* @enum {string}
|
|
6792
|
+
*/
|
|
6793
|
+
type: "boolean";
|
|
6794
|
+
/**
|
|
6795
|
+
* Value
|
|
6796
|
+
* @default false
|
|
6797
|
+
*/
|
|
6798
|
+
value: boolean | null;
|
|
6799
|
+
};
|
|
6475
6800
|
/** BroadcastNotificationContent */
|
|
6476
6801
|
BroadcastNotificationContent: {
|
|
6477
6802
|
/**
|
|
@@ -6738,6 +7063,13 @@ interface components {
|
|
|
6738
7063
|
*/
|
|
6739
7064
|
type: string;
|
|
6740
7065
|
};
|
|
7066
|
+
/** Citation */
|
|
7067
|
+
Citation: {
|
|
7068
|
+
/** Content */
|
|
7069
|
+
content: string;
|
|
7070
|
+
/** Type */
|
|
7071
|
+
type: string;
|
|
7072
|
+
};
|
|
6741
7073
|
/** ClaimLandingPayload */
|
|
6742
7074
|
ClaimLandingPayload: {
|
|
6743
7075
|
/** Client Secret */
|
|
@@ -6799,6 +7131,49 @@ interface components {
|
|
|
6799
7131
|
* @enum {string}
|
|
6800
7132
|
*/
|
|
6801
7133
|
ColletionSourceType: "hda" | "ldda" | "hdca" | "new_collection";
|
|
7134
|
+
/** ColorParameterModel */
|
|
7135
|
+
ColorParameterModel: {
|
|
7136
|
+
/** Argument */
|
|
7137
|
+
argument?: string | null;
|
|
7138
|
+
/** Help */
|
|
7139
|
+
help?: string | null;
|
|
7140
|
+
/**
|
|
7141
|
+
* Hidden
|
|
7142
|
+
* @default false
|
|
7143
|
+
*/
|
|
7144
|
+
hidden: boolean;
|
|
7145
|
+
/**
|
|
7146
|
+
* Is Dynamic
|
|
7147
|
+
* @default false
|
|
7148
|
+
*/
|
|
7149
|
+
is_dynamic: boolean;
|
|
7150
|
+
/** Label */
|
|
7151
|
+
label?: string | null;
|
|
7152
|
+
/**
|
|
7153
|
+
* Name
|
|
7154
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
7155
|
+
*/
|
|
7156
|
+
name: string;
|
|
7157
|
+
/**
|
|
7158
|
+
* Optional
|
|
7159
|
+
* @description If `false`, parameter must have a value.
|
|
7160
|
+
* @default false
|
|
7161
|
+
*/
|
|
7162
|
+
optional: boolean;
|
|
7163
|
+
/**
|
|
7164
|
+
* Parameter Type
|
|
7165
|
+
* @default gx_color
|
|
7166
|
+
* @constant
|
|
7167
|
+
*/
|
|
7168
|
+
parameter_type: "gx_color";
|
|
7169
|
+
/**
|
|
7170
|
+
* @description discriminator enum property added by openapi-typescript
|
|
7171
|
+
* @enum {string}
|
|
7172
|
+
*/
|
|
7173
|
+
type: "color";
|
|
7174
|
+
/** Value */
|
|
7175
|
+
value?: string | null;
|
|
7176
|
+
};
|
|
6802
7177
|
/** CompositeDataElement */
|
|
6803
7178
|
CompositeDataElement: {
|
|
6804
7179
|
/** Md5 */
|
|
@@ -6945,6 +7320,114 @@ interface components {
|
|
|
6945
7320
|
*/
|
|
6946
7321
|
source: string | null;
|
|
6947
7322
|
};
|
|
7323
|
+
/** ConditionalParameterModel */
|
|
7324
|
+
"ConditionalParameterModel-Input": {
|
|
7325
|
+
/** Argument */
|
|
7326
|
+
argument?: string | null;
|
|
7327
|
+
/** Help */
|
|
7328
|
+
help?: string | null;
|
|
7329
|
+
/**
|
|
7330
|
+
* Hidden
|
|
7331
|
+
* @default false
|
|
7332
|
+
*/
|
|
7333
|
+
hidden: boolean;
|
|
7334
|
+
/**
|
|
7335
|
+
* Is Dynamic
|
|
7336
|
+
* @default false
|
|
7337
|
+
*/
|
|
7338
|
+
is_dynamic: boolean;
|
|
7339
|
+
/** Label */
|
|
7340
|
+
label?: string | null;
|
|
7341
|
+
/**
|
|
7342
|
+
* Name
|
|
7343
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
7344
|
+
*/
|
|
7345
|
+
name: string;
|
|
7346
|
+
/**
|
|
7347
|
+
* Optional
|
|
7348
|
+
* @description If `false`, parameter must have a value.
|
|
7349
|
+
* @default false
|
|
7350
|
+
*/
|
|
7351
|
+
optional: boolean;
|
|
7352
|
+
/**
|
|
7353
|
+
* Parameter Type
|
|
7354
|
+
* @default gx_conditional
|
|
7355
|
+
* @constant
|
|
7356
|
+
*/
|
|
7357
|
+
parameter_type: "gx_conditional";
|
|
7358
|
+
/** Test Parameter */
|
|
7359
|
+
test_parameter: components["schemas"]["BooleanParameterModel"] | components["schemas"]["SelectParameterModel"];
|
|
7360
|
+
/**
|
|
7361
|
+
* @description discriminator enum property added by openapi-typescript
|
|
7362
|
+
* @enum {string}
|
|
7363
|
+
*/
|
|
7364
|
+
type: "conditional";
|
|
7365
|
+
/** Whens */
|
|
7366
|
+
whens: components["schemas"]["ConditionalWhen-Input"][];
|
|
7367
|
+
};
|
|
7368
|
+
/** ConditionalParameterModel */
|
|
7369
|
+
"ConditionalParameterModel-Output": {
|
|
7370
|
+
/** Argument */
|
|
7371
|
+
argument?: string | null;
|
|
7372
|
+
/** Help */
|
|
7373
|
+
help?: string | null;
|
|
7374
|
+
/**
|
|
7375
|
+
* Hidden
|
|
7376
|
+
* @default false
|
|
7377
|
+
*/
|
|
7378
|
+
hidden: boolean;
|
|
7379
|
+
/**
|
|
7380
|
+
* Is Dynamic
|
|
7381
|
+
* @default false
|
|
7382
|
+
*/
|
|
7383
|
+
is_dynamic: boolean;
|
|
7384
|
+
/** Label */
|
|
7385
|
+
label?: string | null;
|
|
7386
|
+
/**
|
|
7387
|
+
* Name
|
|
7388
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
7389
|
+
*/
|
|
7390
|
+
name: string;
|
|
7391
|
+
/**
|
|
7392
|
+
* Optional
|
|
7393
|
+
* @description If `false`, parameter must have a value.
|
|
7394
|
+
* @default false
|
|
7395
|
+
*/
|
|
7396
|
+
optional: boolean;
|
|
7397
|
+
/**
|
|
7398
|
+
* Parameter Type
|
|
7399
|
+
* @default gx_conditional
|
|
7400
|
+
* @constant
|
|
7401
|
+
*/
|
|
7402
|
+
parameter_type: "gx_conditional";
|
|
7403
|
+
/** Test Parameter */
|
|
7404
|
+
test_parameter: components["schemas"]["BooleanParameterModel"] | components["schemas"]["SelectParameterModel"];
|
|
7405
|
+
/**
|
|
7406
|
+
* @description discriminator enum property added by openapi-typescript
|
|
7407
|
+
* @enum {string}
|
|
7408
|
+
*/
|
|
7409
|
+
type: "conditional";
|
|
7410
|
+
/** Whens */
|
|
7411
|
+
whens: components["schemas"]["ConditionalWhen-Output"][];
|
|
7412
|
+
};
|
|
7413
|
+
/** ConditionalWhen */
|
|
7414
|
+
"ConditionalWhen-Input": {
|
|
7415
|
+
/** Discriminator */
|
|
7416
|
+
discriminator: boolean | string;
|
|
7417
|
+
/** Is Default When */
|
|
7418
|
+
is_default_when: boolean;
|
|
7419
|
+
/** Parameters */
|
|
7420
|
+
parameters: (components["schemas"]["CwlIntegerParameterModel"] | components["schemas"]["CwlFloatParameterModel"] | components["schemas"]["CwlStringParameterModel"] | components["schemas"]["CwlBooleanParameterModel"] | components["schemas"]["CwlNullParameterModel"] | components["schemas"]["CwlFileParameterModel"] | components["schemas"]["CwlDirectoryParameterModel"] | components["schemas"]["CwlUnionParameterModel-Input"] | components["schemas"]["TextParameterModel"] | components["schemas"]["IntegerParameterModel"] | components["schemas"]["FloatParameterModel"] | components["schemas"]["BooleanParameterModel"] | components["schemas"]["HiddenParameterModel"] | components["schemas"]["SelectParameterModel"] | components["schemas"]["DataParameterModel"] | components["schemas"]["DataCollectionParameterModel"] | components["schemas"]["DataColumnParameterModel"] | components["schemas"]["DirectoryUriParameterModel"] | components["schemas"]["RulesParameterModel"] | components["schemas"]["DrillDownParameterModel-Input"] | components["schemas"]["GroupTagParameterModel"] | components["schemas"]["BaseUrlParameterModel"] | components["schemas"]["GenomeBuildParameterModel"] | components["schemas"]["ColorParameterModel"] | components["schemas"]["ConditionalParameterModel-Input"] | components["schemas"]["RepeatParameterModel-Input"] | components["schemas"]["SectionParameterModel-Input"])[];
|
|
7421
|
+
};
|
|
7422
|
+
/** ConditionalWhen */
|
|
7423
|
+
"ConditionalWhen-Output": {
|
|
7424
|
+
/** Discriminator */
|
|
7425
|
+
discriminator: boolean | string;
|
|
7426
|
+
/** Is Default When */
|
|
7427
|
+
is_default_when: boolean;
|
|
7428
|
+
/** Parameters */
|
|
7429
|
+
parameters: (components["schemas"]["CwlIntegerParameterModel"] | components["schemas"]["CwlFloatParameterModel"] | components["schemas"]["CwlStringParameterModel"] | components["schemas"]["CwlBooleanParameterModel"] | components["schemas"]["CwlNullParameterModel"] | components["schemas"]["CwlFileParameterModel"] | components["schemas"]["CwlDirectoryParameterModel"] | components["schemas"]["CwlUnionParameterModel-Output"] | components["schemas"]["TextParameterModel"] | components["schemas"]["IntegerParameterModel"] | components["schemas"]["FloatParameterModel"] | components["schemas"]["BooleanParameterModel"] | components["schemas"]["HiddenParameterModel"] | components["schemas"]["SelectParameterModel"] | components["schemas"]["DataParameterModel"] | components["schemas"]["DataCollectionParameterModel"] | components["schemas"]["DataColumnParameterModel"] | components["schemas"]["DirectoryUriParameterModel"] | components["schemas"]["RulesParameterModel"] | components["schemas"]["DrillDownParameterModel-Output"] | components["schemas"]["GroupTagParameterModel"] | components["schemas"]["BaseUrlParameterModel"] | components["schemas"]["GenomeBuildParameterModel"] | components["schemas"]["ColorParameterModel"] | components["schemas"]["ConditionalParameterModel-Output"] | components["schemas"]["RepeatParameterModel-Output"] | components["schemas"]["SectionParameterModel-Output"])[];
|
|
7430
|
+
};
|
|
6948
7431
|
/** ConnectAction */
|
|
6949
7432
|
ConnectAction: {
|
|
6950
7433
|
/**
|
|
@@ -6957,6 +7440,25 @@ interface components {
|
|
|
6957
7440
|
/** Output */
|
|
6958
7441
|
output: components["schemas"]["OutputReferenceByOrderIndex"] | components["schemas"]["OutputReferenceByLabel"];
|
|
6959
7442
|
};
|
|
7443
|
+
/** Container */
|
|
7444
|
+
Container: {
|
|
7445
|
+
/** Container Id */
|
|
7446
|
+
container_id: string;
|
|
7447
|
+
/**
|
|
7448
|
+
* Type
|
|
7449
|
+
* @enum {string}
|
|
7450
|
+
*/
|
|
7451
|
+
type: "docker" | "singularity";
|
|
7452
|
+
};
|
|
7453
|
+
/** ContainerRequirement */
|
|
7454
|
+
ContainerRequirement: {
|
|
7455
|
+
container: components["schemas"]["Container"];
|
|
7456
|
+
/**
|
|
7457
|
+
* Type
|
|
7458
|
+
* @constant
|
|
7459
|
+
*/
|
|
7460
|
+
type: "container";
|
|
7461
|
+
};
|
|
6960
7462
|
/** ContentsObject */
|
|
6961
7463
|
ContentsObject: {
|
|
6962
7464
|
/**
|
|
@@ -7046,6 +7548,12 @@ interface components {
|
|
|
7046
7548
|
* @description List of elements that should be in the new collection.
|
|
7047
7549
|
*/
|
|
7048
7550
|
element_identifiers?: components["schemas"]["CollectionElementIdentifier"][] | null;
|
|
7551
|
+
/**
|
|
7552
|
+
* Fields
|
|
7553
|
+
* @description List of fields to create for this collection. Set to 'auto' to guess fields from identifiers.
|
|
7554
|
+
* @default []
|
|
7555
|
+
*/
|
|
7556
|
+
fields: string | components["schemas"]["FieldDict"][] | null;
|
|
7049
7557
|
/**
|
|
7050
7558
|
* Folder Id
|
|
7051
7559
|
* @description The ID of the library folder that will contain the collection. Required if `instance_type=library`.
|
|
@@ -7244,6 +7752,12 @@ interface components {
|
|
|
7244
7752
|
* @description List of elements that should be in the new collection.
|
|
7245
7753
|
*/
|
|
7246
7754
|
element_identifiers?: components["schemas"]["CollectionElementIdentifier"][] | null;
|
|
7755
|
+
/**
|
|
7756
|
+
* Fields
|
|
7757
|
+
* @description List of fields to create for this collection. Set to 'auto' to guess fields from identifiers.
|
|
7758
|
+
* @default []
|
|
7759
|
+
*/
|
|
7760
|
+
fields: string | components["schemas"]["FieldDict"][] | null;
|
|
7247
7761
|
/**
|
|
7248
7762
|
* Folder Id
|
|
7249
7763
|
* @description The ID of the library folder that will contain the collection. Required if `instance_type=library`.
|
|
@@ -7866,6 +8380,180 @@ interface components {
|
|
|
7866
8380
|
*/
|
|
7867
8381
|
username_and_slug?: string | null;
|
|
7868
8382
|
};
|
|
8383
|
+
/** CwlBooleanParameterModel */
|
|
8384
|
+
CwlBooleanParameterModel: {
|
|
8385
|
+
/**
|
|
8386
|
+
* Name
|
|
8387
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8388
|
+
*/
|
|
8389
|
+
name: string;
|
|
8390
|
+
/**
|
|
8391
|
+
* Parameter Type
|
|
8392
|
+
* @default cwl_boolean
|
|
8393
|
+
* @constant
|
|
8394
|
+
*/
|
|
8395
|
+
parameter_type: "cwl_boolean";
|
|
8396
|
+
};
|
|
8397
|
+
/** CwlDirectoryParameterModel */
|
|
8398
|
+
CwlDirectoryParameterModel: {
|
|
8399
|
+
/** Argument */
|
|
8400
|
+
argument?: string | null;
|
|
8401
|
+
/** Help */
|
|
8402
|
+
help?: string | null;
|
|
8403
|
+
/**
|
|
8404
|
+
* Hidden
|
|
8405
|
+
* @default false
|
|
8406
|
+
*/
|
|
8407
|
+
hidden: boolean;
|
|
8408
|
+
/**
|
|
8409
|
+
* Is Dynamic
|
|
8410
|
+
* @default false
|
|
8411
|
+
*/
|
|
8412
|
+
is_dynamic: boolean;
|
|
8413
|
+
/** Label */
|
|
8414
|
+
label?: string | null;
|
|
8415
|
+
/**
|
|
8416
|
+
* Name
|
|
8417
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8418
|
+
*/
|
|
8419
|
+
name: string;
|
|
8420
|
+
/**
|
|
8421
|
+
* Optional
|
|
8422
|
+
* @description If `false`, parameter must have a value.
|
|
8423
|
+
* @default false
|
|
8424
|
+
*/
|
|
8425
|
+
optional: boolean;
|
|
8426
|
+
/**
|
|
8427
|
+
* Parameter Type
|
|
8428
|
+
* @default cwl_directory
|
|
8429
|
+
* @constant
|
|
8430
|
+
*/
|
|
8431
|
+
parameter_type: "cwl_directory";
|
|
8432
|
+
};
|
|
8433
|
+
/** CwlFileParameterModel */
|
|
8434
|
+
CwlFileParameterModel: {
|
|
8435
|
+
/** Argument */
|
|
8436
|
+
argument?: string | null;
|
|
8437
|
+
/** Help */
|
|
8438
|
+
help?: string | null;
|
|
8439
|
+
/**
|
|
8440
|
+
* Hidden
|
|
8441
|
+
* @default false
|
|
8442
|
+
*/
|
|
8443
|
+
hidden: boolean;
|
|
8444
|
+
/**
|
|
8445
|
+
* Is Dynamic
|
|
8446
|
+
* @default false
|
|
8447
|
+
*/
|
|
8448
|
+
is_dynamic: boolean;
|
|
8449
|
+
/** Label */
|
|
8450
|
+
label?: string | null;
|
|
8451
|
+
/**
|
|
8452
|
+
* Name
|
|
8453
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8454
|
+
*/
|
|
8455
|
+
name: string;
|
|
8456
|
+
/**
|
|
8457
|
+
* Optional
|
|
8458
|
+
* @description If `false`, parameter must have a value.
|
|
8459
|
+
* @default false
|
|
8460
|
+
*/
|
|
8461
|
+
optional: boolean;
|
|
8462
|
+
/**
|
|
8463
|
+
* Parameter Type
|
|
8464
|
+
* @default cwl_file
|
|
8465
|
+
* @constant
|
|
8466
|
+
*/
|
|
8467
|
+
parameter_type: "cwl_file";
|
|
8468
|
+
};
|
|
8469
|
+
/** CwlFloatParameterModel */
|
|
8470
|
+
CwlFloatParameterModel: {
|
|
8471
|
+
/**
|
|
8472
|
+
* Name
|
|
8473
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8474
|
+
*/
|
|
8475
|
+
name: string;
|
|
8476
|
+
/**
|
|
8477
|
+
* Parameter Type
|
|
8478
|
+
* @default cwl_float
|
|
8479
|
+
* @constant
|
|
8480
|
+
*/
|
|
8481
|
+
parameter_type: "cwl_float";
|
|
8482
|
+
};
|
|
8483
|
+
/** CwlIntegerParameterModel */
|
|
8484
|
+
CwlIntegerParameterModel: {
|
|
8485
|
+
/**
|
|
8486
|
+
* Name
|
|
8487
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8488
|
+
*/
|
|
8489
|
+
name: string;
|
|
8490
|
+
/**
|
|
8491
|
+
* Parameter Type
|
|
8492
|
+
* @default cwl_integer
|
|
8493
|
+
* @constant
|
|
8494
|
+
*/
|
|
8495
|
+
parameter_type: "cwl_integer";
|
|
8496
|
+
};
|
|
8497
|
+
/** CwlNullParameterModel */
|
|
8498
|
+
CwlNullParameterModel: {
|
|
8499
|
+
/**
|
|
8500
|
+
* Name
|
|
8501
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8502
|
+
*/
|
|
8503
|
+
name: string;
|
|
8504
|
+
/**
|
|
8505
|
+
* Parameter Type
|
|
8506
|
+
* @default cwl_null
|
|
8507
|
+
* @constant
|
|
8508
|
+
*/
|
|
8509
|
+
parameter_type: "cwl_null";
|
|
8510
|
+
};
|
|
8511
|
+
/** CwlStringParameterModel */
|
|
8512
|
+
CwlStringParameterModel: {
|
|
8513
|
+
/**
|
|
8514
|
+
* Name
|
|
8515
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8516
|
+
*/
|
|
8517
|
+
name: string;
|
|
8518
|
+
/**
|
|
8519
|
+
* Parameter Type
|
|
8520
|
+
* @default cwl_string
|
|
8521
|
+
* @constant
|
|
8522
|
+
*/
|
|
8523
|
+
parameter_type: "cwl_string";
|
|
8524
|
+
};
|
|
8525
|
+
/** CwlUnionParameterModel */
|
|
8526
|
+
"CwlUnionParameterModel-Input": {
|
|
8527
|
+
/**
|
|
8528
|
+
* Name
|
|
8529
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8530
|
+
*/
|
|
8531
|
+
name: string;
|
|
8532
|
+
/**
|
|
8533
|
+
* Parameter Type
|
|
8534
|
+
* @default cwl_union
|
|
8535
|
+
* @constant
|
|
8536
|
+
*/
|
|
8537
|
+
parameter_type: "cwl_union";
|
|
8538
|
+
/** Parameters */
|
|
8539
|
+
parameters: (components["schemas"]["CwlIntegerParameterModel"] | components["schemas"]["CwlFloatParameterModel"] | components["schemas"]["CwlStringParameterModel"] | components["schemas"]["CwlBooleanParameterModel"] | components["schemas"]["CwlNullParameterModel"] | components["schemas"]["CwlFileParameterModel"] | components["schemas"]["CwlDirectoryParameterModel"] | components["schemas"]["CwlUnionParameterModel-Input"])[];
|
|
8540
|
+
};
|
|
8541
|
+
/** CwlUnionParameterModel */
|
|
8542
|
+
"CwlUnionParameterModel-Output": {
|
|
8543
|
+
/**
|
|
8544
|
+
* Name
|
|
8545
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8546
|
+
*/
|
|
8547
|
+
name: string;
|
|
8548
|
+
/**
|
|
8549
|
+
* Parameter Type
|
|
8550
|
+
* @default cwl_union
|
|
8551
|
+
* @constant
|
|
8552
|
+
*/
|
|
8553
|
+
parameter_type: "cwl_union";
|
|
8554
|
+
/** Parameters */
|
|
8555
|
+
parameters: (components["schemas"]["CwlIntegerParameterModel"] | components["schemas"]["CwlFloatParameterModel"] | components["schemas"]["CwlStringParameterModel"] | components["schemas"]["CwlBooleanParameterModel"] | components["schemas"]["CwlNullParameterModel"] | components["schemas"]["CwlFileParameterModel"] | components["schemas"]["CwlDirectoryParameterModel"] | components["schemas"]["CwlUnionParameterModel-Output"])[];
|
|
8556
|
+
};
|
|
7869
8557
|
/**
|
|
7870
8558
|
* DCESummary
|
|
7871
8559
|
* @description Dataset Collection Element summary information.
|
|
@@ -7949,6 +8637,105 @@ interface components {
|
|
|
7949
8637
|
*/
|
|
7950
8638
|
populated?: boolean;
|
|
7951
8639
|
};
|
|
8640
|
+
/** DataCollectionParameterModel */
|
|
8641
|
+
DataCollectionParameterModel: {
|
|
8642
|
+
/** Argument */
|
|
8643
|
+
argument?: string | null;
|
|
8644
|
+
/** Collection Type */
|
|
8645
|
+
collection_type?: string | null;
|
|
8646
|
+
/**
|
|
8647
|
+
* Extensions
|
|
8648
|
+
* @default [
|
|
8649
|
+
* "data"
|
|
8650
|
+
* ]
|
|
8651
|
+
*/
|
|
8652
|
+
extensions: string[];
|
|
8653
|
+
/** Help */
|
|
8654
|
+
help?: string | null;
|
|
8655
|
+
/**
|
|
8656
|
+
* Hidden
|
|
8657
|
+
* @default false
|
|
8658
|
+
*/
|
|
8659
|
+
hidden: boolean;
|
|
8660
|
+
/**
|
|
8661
|
+
* Is Dynamic
|
|
8662
|
+
* @default false
|
|
8663
|
+
*/
|
|
8664
|
+
is_dynamic: boolean;
|
|
8665
|
+
/** Label */
|
|
8666
|
+
label?: string | null;
|
|
8667
|
+
/**
|
|
8668
|
+
* Name
|
|
8669
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8670
|
+
*/
|
|
8671
|
+
name: string;
|
|
8672
|
+
/**
|
|
8673
|
+
* Optional
|
|
8674
|
+
* @description If `false`, parameter must have a value.
|
|
8675
|
+
* @default false
|
|
8676
|
+
*/
|
|
8677
|
+
optional: boolean;
|
|
8678
|
+
/**
|
|
8679
|
+
* Parameter Type
|
|
8680
|
+
* @default gx_data_collection
|
|
8681
|
+
* @constant
|
|
8682
|
+
*/
|
|
8683
|
+
parameter_type: "gx_data_collection";
|
|
8684
|
+
/**
|
|
8685
|
+
* @description discriminator enum property added by openapi-typescript
|
|
8686
|
+
* @enum {string}
|
|
8687
|
+
*/
|
|
8688
|
+
type: "data_collection";
|
|
8689
|
+
/** Value */
|
|
8690
|
+
value: {
|
|
8691
|
+
[key: string]: unknown;
|
|
8692
|
+
} | null;
|
|
8693
|
+
};
|
|
8694
|
+
/** DataColumnParameterModel */
|
|
8695
|
+
DataColumnParameterModel: {
|
|
8696
|
+
/** Argument */
|
|
8697
|
+
argument?: string | null;
|
|
8698
|
+
/** Help */
|
|
8699
|
+
help?: string | null;
|
|
8700
|
+
/**
|
|
8701
|
+
* Hidden
|
|
8702
|
+
* @default false
|
|
8703
|
+
*/
|
|
8704
|
+
hidden: boolean;
|
|
8705
|
+
/**
|
|
8706
|
+
* Is Dynamic
|
|
8707
|
+
* @default false
|
|
8708
|
+
*/
|
|
8709
|
+
is_dynamic: boolean;
|
|
8710
|
+
/** Label */
|
|
8711
|
+
label?: string | null;
|
|
8712
|
+
/** Multiple */
|
|
8713
|
+
multiple: boolean;
|
|
8714
|
+
/**
|
|
8715
|
+
* Name
|
|
8716
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8717
|
+
*/
|
|
8718
|
+
name: string;
|
|
8719
|
+
/**
|
|
8720
|
+
* Optional
|
|
8721
|
+
* @description If `false`, parameter must have a value.
|
|
8722
|
+
* @default false
|
|
8723
|
+
*/
|
|
8724
|
+
optional: boolean;
|
|
8725
|
+
/**
|
|
8726
|
+
* Parameter Type
|
|
8727
|
+
* @default gx_data_column
|
|
8728
|
+
* @constant
|
|
8729
|
+
*/
|
|
8730
|
+
parameter_type: "gx_data_column";
|
|
8731
|
+
/**
|
|
8732
|
+
* @description discriminator enum property added by openapi-typescript
|
|
8733
|
+
* @enum {string}
|
|
8734
|
+
*/
|
|
8735
|
+
type: "data_column";
|
|
8736
|
+
/** Value */
|
|
8737
|
+
value?: number | number[] | null;
|
|
8738
|
+
};
|
|
7952
8739
|
/** DataElementsFromTarget */
|
|
7953
8740
|
DataElementsFromTarget: {
|
|
7954
8741
|
/**
|
|
@@ -7988,6 +8775,65 @@ interface components {
|
|
|
7988
8775
|
* @enum {string}
|
|
7989
8776
|
*/
|
|
7990
8777
|
DataItemSourceType: "hda" | "ldda" | "hdca" | "dce" | "dc";
|
|
8778
|
+
/** DataParameterModel */
|
|
8779
|
+
DataParameterModel: {
|
|
8780
|
+
/** Argument */
|
|
8781
|
+
argument?: string | null;
|
|
8782
|
+
/**
|
|
8783
|
+
* Extensions
|
|
8784
|
+
* @description Limit inputs to datasets with these extensions. Use 'data' to allow all input datasets.
|
|
8785
|
+
* @default [
|
|
8786
|
+
* "data"
|
|
8787
|
+
* ]
|
|
8788
|
+
*/
|
|
8789
|
+
extensions: string[];
|
|
8790
|
+
/** Help */
|
|
8791
|
+
help?: string | null;
|
|
8792
|
+
/**
|
|
8793
|
+
* Hidden
|
|
8794
|
+
* @default false
|
|
8795
|
+
*/
|
|
8796
|
+
hidden: boolean;
|
|
8797
|
+
/**
|
|
8798
|
+
* Is Dynamic
|
|
8799
|
+
* @default false
|
|
8800
|
+
*/
|
|
8801
|
+
is_dynamic: boolean;
|
|
8802
|
+
/** Label */
|
|
8803
|
+
label?: string | null;
|
|
8804
|
+
/** Max */
|
|
8805
|
+
max?: number | null;
|
|
8806
|
+
/** Min */
|
|
8807
|
+
min?: number | null;
|
|
8808
|
+
/**
|
|
8809
|
+
* Multiple
|
|
8810
|
+
* @description Allow multiple values to be selected.
|
|
8811
|
+
* @default false
|
|
8812
|
+
*/
|
|
8813
|
+
multiple: boolean;
|
|
8814
|
+
/**
|
|
8815
|
+
* Name
|
|
8816
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
8817
|
+
*/
|
|
8818
|
+
name: string;
|
|
8819
|
+
/**
|
|
8820
|
+
* Optional
|
|
8821
|
+
* @description If `false`, parameter must have a value.
|
|
8822
|
+
* @default false
|
|
8823
|
+
*/
|
|
8824
|
+
optional: boolean;
|
|
8825
|
+
/**
|
|
8826
|
+
* Parameter Type
|
|
8827
|
+
* @default gx_data
|
|
8828
|
+
* @constant
|
|
8829
|
+
*/
|
|
8830
|
+
parameter_type: "gx_data";
|
|
8831
|
+
/**
|
|
8832
|
+
* @description discriminator enum property added by openapi-typescript
|
|
8833
|
+
* @enum {string}
|
|
8834
|
+
*/
|
|
8835
|
+
type: "data";
|
|
8836
|
+
};
|
|
7991
8837
|
/** DatasetAssociationRoles */
|
|
7992
8838
|
DatasetAssociationRoles: {
|
|
7993
8839
|
/**
|
|
@@ -8327,6 +9173,11 @@ interface components {
|
|
|
8327
9173
|
* @description The URL to a detailed description for this datatype
|
|
8328
9174
|
*/
|
|
8329
9175
|
description_url: string | null;
|
|
9176
|
+
/**
|
|
9177
|
+
* Display behavior
|
|
9178
|
+
* @description How this datatype behaves when displayed with preview=True: 'inline' (can be displayed in browser) or 'download' (triggers download)
|
|
9179
|
+
*/
|
|
9180
|
+
display_behavior?: string | null;
|
|
8330
9181
|
/**
|
|
8331
9182
|
* Display in upload
|
|
8332
9183
|
* @description If True, the associated file extension will be displayed in the `File Format` select list in the `Upload File from your computer` tool in the `Get Data` tool section of the tool panel
|
|
@@ -8362,6 +9213,24 @@ interface components {
|
|
|
8362
9213
|
*/
|
|
8363
9214
|
prefix_IRI: string;
|
|
8364
9215
|
};
|
|
9216
|
+
/** DatatypeVisualizationMapping */
|
|
9217
|
+
DatatypeVisualizationMapping: {
|
|
9218
|
+
/**
|
|
9219
|
+
* Datatype
|
|
9220
|
+
* @description The datatype extension this visualization applies to
|
|
9221
|
+
*/
|
|
9222
|
+
datatype: string;
|
|
9223
|
+
/**
|
|
9224
|
+
* Visualization
|
|
9225
|
+
* @description The visualization plugin to use
|
|
9226
|
+
*/
|
|
9227
|
+
visualization: string;
|
|
9228
|
+
};
|
|
9229
|
+
/**
|
|
9230
|
+
* DatatypeVisualizationMappingsList
|
|
9231
|
+
* @default []
|
|
9232
|
+
*/
|
|
9233
|
+
DatatypeVisualizationMappingsList: components["schemas"]["DatatypeVisualizationMapping"][];
|
|
8365
9234
|
/** DatatypesCombinedMap */
|
|
8366
9235
|
DatatypesCombinedMap: {
|
|
8367
9236
|
/**
|
|
@@ -8627,6 +9496,52 @@ interface components {
|
|
|
8627
9496
|
*/
|
|
8628
9497
|
username: string;
|
|
8629
9498
|
};
|
|
9499
|
+
/** DirectoryUriParameterModel */
|
|
9500
|
+
DirectoryUriParameterModel: {
|
|
9501
|
+
/** Argument */
|
|
9502
|
+
argument?: string | null;
|
|
9503
|
+
/** Help */
|
|
9504
|
+
help?: string | null;
|
|
9505
|
+
/**
|
|
9506
|
+
* Hidden
|
|
9507
|
+
* @default false
|
|
9508
|
+
*/
|
|
9509
|
+
hidden: boolean;
|
|
9510
|
+
/**
|
|
9511
|
+
* Is Dynamic
|
|
9512
|
+
* @default false
|
|
9513
|
+
*/
|
|
9514
|
+
is_dynamic: boolean;
|
|
9515
|
+
/** Label */
|
|
9516
|
+
label?: string | null;
|
|
9517
|
+
/**
|
|
9518
|
+
* Name
|
|
9519
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
9520
|
+
*/
|
|
9521
|
+
name: string;
|
|
9522
|
+
/**
|
|
9523
|
+
* Optional
|
|
9524
|
+
* @description If `false`, parameter must have a value.
|
|
9525
|
+
* @default false
|
|
9526
|
+
*/
|
|
9527
|
+
optional: boolean;
|
|
9528
|
+
/**
|
|
9529
|
+
* Parameter Type
|
|
9530
|
+
* @default gx_directory_uri
|
|
9531
|
+
* @constant
|
|
9532
|
+
*/
|
|
9533
|
+
parameter_type: "gx_directory_uri";
|
|
9534
|
+
/**
|
|
9535
|
+
* @description discriminator enum property added by openapi-typescript
|
|
9536
|
+
* @enum {string}
|
|
9537
|
+
*/
|
|
9538
|
+
type: "directory";
|
|
9539
|
+
/**
|
|
9540
|
+
* Validators
|
|
9541
|
+
* @default []
|
|
9542
|
+
*/
|
|
9543
|
+
validators: (components["schemas"]["LengthParameterValidatorModel"] | components["schemas"]["RegexParameterValidatorModel"] | components["schemas"]["ExpressionParameterValidatorModel"] | components["schemas"]["EmptyFieldParameterValidatorModel"])[];
|
|
9544
|
+
};
|
|
8630
9545
|
/** DisconnectAction */
|
|
8631
9546
|
DisconnectAction: {
|
|
8632
9547
|
/**
|
|
@@ -8668,6 +9583,128 @@ interface components {
|
|
|
8668
9583
|
/** Version */
|
|
8669
9584
|
version: string;
|
|
8670
9585
|
};
|
|
9586
|
+
/** DrillDownOptionsDict */
|
|
9587
|
+
"DrillDownOptionsDict-Input": {
|
|
9588
|
+
/** Name */
|
|
9589
|
+
name: string | null;
|
|
9590
|
+
/** Options */
|
|
9591
|
+
options: components["schemas"]["DrillDownOptionsDict-Input"][];
|
|
9592
|
+
/** Selected */
|
|
9593
|
+
selected: boolean;
|
|
9594
|
+
/** Value */
|
|
9595
|
+
value: string;
|
|
9596
|
+
};
|
|
9597
|
+
/** DrillDownOptionsDict */
|
|
9598
|
+
"DrillDownOptionsDict-Output": {
|
|
9599
|
+
/** Name */
|
|
9600
|
+
name: string | null;
|
|
9601
|
+
/** Options */
|
|
9602
|
+
options: components["schemas"]["DrillDownOptionsDict-Output"][];
|
|
9603
|
+
/** Selected */
|
|
9604
|
+
selected: boolean;
|
|
9605
|
+
/** Value */
|
|
9606
|
+
value: string;
|
|
9607
|
+
};
|
|
9608
|
+
/** DrillDownParameterModel */
|
|
9609
|
+
"DrillDownParameterModel-Input": {
|
|
9610
|
+
/** Argument */
|
|
9611
|
+
argument?: string | null;
|
|
9612
|
+
/** Help */
|
|
9613
|
+
help?: string | null;
|
|
9614
|
+
/**
|
|
9615
|
+
* Hidden
|
|
9616
|
+
* @default false
|
|
9617
|
+
*/
|
|
9618
|
+
hidden: boolean;
|
|
9619
|
+
/**
|
|
9620
|
+
* Hierarchy
|
|
9621
|
+
* @enum {string}
|
|
9622
|
+
*/
|
|
9623
|
+
hierarchy: "recurse" | "exact";
|
|
9624
|
+
/**
|
|
9625
|
+
* Is Dynamic
|
|
9626
|
+
* @default false
|
|
9627
|
+
*/
|
|
9628
|
+
is_dynamic: boolean;
|
|
9629
|
+
/** Label */
|
|
9630
|
+
label?: string | null;
|
|
9631
|
+
/** Multiple */
|
|
9632
|
+
multiple: boolean;
|
|
9633
|
+
/**
|
|
9634
|
+
* Name
|
|
9635
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
9636
|
+
*/
|
|
9637
|
+
name: string;
|
|
9638
|
+
/**
|
|
9639
|
+
* Optional
|
|
9640
|
+
* @description If `false`, parameter must have a value.
|
|
9641
|
+
* @default false
|
|
9642
|
+
*/
|
|
9643
|
+
optional: boolean;
|
|
9644
|
+
/** Options */
|
|
9645
|
+
options?: components["schemas"]["DrillDownOptionsDict-Input"][] | null;
|
|
9646
|
+
/**
|
|
9647
|
+
* Parameter Type
|
|
9648
|
+
* @default gx_drill_down
|
|
9649
|
+
* @constant
|
|
9650
|
+
*/
|
|
9651
|
+
parameter_type: "gx_drill_down";
|
|
9652
|
+
/**
|
|
9653
|
+
* @description discriminator enum property added by openapi-typescript
|
|
9654
|
+
* @enum {string}
|
|
9655
|
+
*/
|
|
9656
|
+
type: "drill_down";
|
|
9657
|
+
};
|
|
9658
|
+
/** DrillDownParameterModel */
|
|
9659
|
+
"DrillDownParameterModel-Output": {
|
|
9660
|
+
/** Argument */
|
|
9661
|
+
argument?: string | null;
|
|
9662
|
+
/** Help */
|
|
9663
|
+
help?: string | null;
|
|
9664
|
+
/**
|
|
9665
|
+
* Hidden
|
|
9666
|
+
* @default false
|
|
9667
|
+
*/
|
|
9668
|
+
hidden: boolean;
|
|
9669
|
+
/**
|
|
9670
|
+
* Hierarchy
|
|
9671
|
+
* @enum {string}
|
|
9672
|
+
*/
|
|
9673
|
+
hierarchy: "recurse" | "exact";
|
|
9674
|
+
/**
|
|
9675
|
+
* Is Dynamic
|
|
9676
|
+
* @default false
|
|
9677
|
+
*/
|
|
9678
|
+
is_dynamic: boolean;
|
|
9679
|
+
/** Label */
|
|
9680
|
+
label?: string | null;
|
|
9681
|
+
/** Multiple */
|
|
9682
|
+
multiple: boolean;
|
|
9683
|
+
/**
|
|
9684
|
+
* Name
|
|
9685
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
9686
|
+
*/
|
|
9687
|
+
name: string;
|
|
9688
|
+
/**
|
|
9689
|
+
* Optional
|
|
9690
|
+
* @description If `false`, parameter must have a value.
|
|
9691
|
+
* @default false
|
|
9692
|
+
*/
|
|
9693
|
+
optional: boolean;
|
|
9694
|
+
/** Options */
|
|
9695
|
+
options?: components["schemas"]["DrillDownOptionsDict-Output"][] | null;
|
|
9696
|
+
/**
|
|
9697
|
+
* Parameter Type
|
|
9698
|
+
* @default gx_drill_down
|
|
9699
|
+
* @constant
|
|
9700
|
+
*/
|
|
9701
|
+
parameter_type: "gx_drill_down";
|
|
9702
|
+
/**
|
|
9703
|
+
* @description discriminator enum property added by openapi-typescript
|
|
9704
|
+
* @enum {string}
|
|
9705
|
+
*/
|
|
9706
|
+
type: "drill_down";
|
|
9707
|
+
};
|
|
8671
9708
|
/** DrsObject */
|
|
8672
9709
|
DrsObject: {
|
|
8673
9710
|
/**
|
|
@@ -8755,11 +9792,87 @@ interface components {
|
|
|
8755
9792
|
*/
|
|
8756
9793
|
version?: string | null;
|
|
8757
9794
|
};
|
|
9795
|
+
/** DynamicToolCreatePayload */
|
|
9796
|
+
DynamicToolCreatePayload: {
|
|
9797
|
+
/**
|
|
9798
|
+
* Active
|
|
9799
|
+
* @default true
|
|
9800
|
+
*/
|
|
9801
|
+
active: boolean | null;
|
|
9802
|
+
/**
|
|
9803
|
+
* Allow Load
|
|
9804
|
+
* @default true
|
|
9805
|
+
*/
|
|
9806
|
+
allow_load: boolean | null;
|
|
9807
|
+
/**
|
|
9808
|
+
* Hidden
|
|
9809
|
+
* @default false
|
|
9810
|
+
*/
|
|
9811
|
+
hidden: boolean | null;
|
|
9812
|
+
/** Representation */
|
|
9813
|
+
representation: components["schemas"]["UserToolSource-Input"] | components["schemas"]["AdminToolSource"];
|
|
9814
|
+
/**
|
|
9815
|
+
* Src
|
|
9816
|
+
* @default representation
|
|
9817
|
+
* @constant
|
|
9818
|
+
*/
|
|
9819
|
+
src: "representation";
|
|
9820
|
+
/** Uuid */
|
|
9821
|
+
uuid?: string | null;
|
|
9822
|
+
};
|
|
9823
|
+
/** DynamicUnprivilegedToolCreatePayload */
|
|
9824
|
+
DynamicUnprivilegedToolCreatePayload: {
|
|
9825
|
+
/**
|
|
9826
|
+
* Active
|
|
9827
|
+
* @default true
|
|
9828
|
+
*/
|
|
9829
|
+
active: boolean | null;
|
|
9830
|
+
/**
|
|
9831
|
+
* Allow Load
|
|
9832
|
+
* @default true
|
|
9833
|
+
*/
|
|
9834
|
+
allow_load: boolean | null;
|
|
9835
|
+
/**
|
|
9836
|
+
* Hidden
|
|
9837
|
+
* @default false
|
|
9838
|
+
*/
|
|
9839
|
+
hidden: boolean | null;
|
|
9840
|
+
representation: components["schemas"]["UserToolSource-Input"];
|
|
9841
|
+
/**
|
|
9842
|
+
* Src
|
|
9843
|
+
* @default representation
|
|
9844
|
+
* @constant
|
|
9845
|
+
*/
|
|
9846
|
+
src: "representation";
|
|
9847
|
+
/** Uuid */
|
|
9848
|
+
uuid?: string | null;
|
|
9849
|
+
};
|
|
8758
9850
|
/**
|
|
8759
9851
|
* ElementsFromType
|
|
8760
9852
|
* @enum {string}
|
|
8761
9853
|
*/
|
|
8762
9854
|
ElementsFromType: "archive" | "bagit" | "bagit_archive" | "directory";
|
|
9855
|
+
/** EmptyFieldParameterValidatorModel */
|
|
9856
|
+
EmptyFieldParameterValidatorModel: {
|
|
9857
|
+
/**
|
|
9858
|
+
* Implicit
|
|
9859
|
+
* @default false
|
|
9860
|
+
*/
|
|
9861
|
+
implicit: boolean;
|
|
9862
|
+
/** Message */
|
|
9863
|
+
message?: string | null;
|
|
9864
|
+
/**
|
|
9865
|
+
* Negate
|
|
9866
|
+
* @default false
|
|
9867
|
+
*/
|
|
9868
|
+
negate: boolean;
|
|
9869
|
+
/**
|
|
9870
|
+
* Type
|
|
9871
|
+
* @default empty_field
|
|
9872
|
+
* @constant
|
|
9873
|
+
*/
|
|
9874
|
+
type: "empty_field";
|
|
9875
|
+
};
|
|
8763
9876
|
/** EncodedDataItemSourceId */
|
|
8764
9877
|
EncodedDataItemSourceId: {
|
|
8765
9878
|
/**
|
|
@@ -9089,6 +10202,34 @@ interface components {
|
|
|
9089
10202
|
};
|
|
9090
10203
|
/** ExportTaskListResponse */
|
|
9091
10204
|
ExportTaskListResponse: components["schemas"]["ObjectExportTaskResponse"][];
|
|
10205
|
+
/**
|
|
10206
|
+
* ExpressionParameterValidatorModel
|
|
10207
|
+
* @description Check if a one line python expression given expression evaluates to True.
|
|
10208
|
+
*
|
|
10209
|
+
* The expression is given is the content of the validator tag.
|
|
10210
|
+
*/
|
|
10211
|
+
ExpressionParameterValidatorModel: {
|
|
10212
|
+
/** Expression */
|
|
10213
|
+
expression: string;
|
|
10214
|
+
/**
|
|
10215
|
+
* Implicit
|
|
10216
|
+
* @default false
|
|
10217
|
+
*/
|
|
10218
|
+
implicit: boolean;
|
|
10219
|
+
/** Message */
|
|
10220
|
+
message?: string | null;
|
|
10221
|
+
/**
|
|
10222
|
+
* Negate
|
|
10223
|
+
* @default false
|
|
10224
|
+
*/
|
|
10225
|
+
negate: boolean;
|
|
10226
|
+
/**
|
|
10227
|
+
* Type
|
|
10228
|
+
* @default expression
|
|
10229
|
+
* @constant
|
|
10230
|
+
*/
|
|
10231
|
+
type: "expression";
|
|
10232
|
+
};
|
|
9092
10233
|
/** ExtraFileEntry */
|
|
9093
10234
|
ExtraFileEntry: {
|
|
9094
10235
|
/** @description The class of this entry, either File or Directory. */
|
|
@@ -9185,6 +10326,15 @@ interface components {
|
|
|
9185
10326
|
/** Hash Value */
|
|
9186
10327
|
hash_value: string;
|
|
9187
10328
|
};
|
|
10329
|
+
/** FieldDict */
|
|
10330
|
+
FieldDict: {
|
|
10331
|
+
/** Format */
|
|
10332
|
+
format?: string | null;
|
|
10333
|
+
/** Name */
|
|
10334
|
+
name: string;
|
|
10335
|
+
/** Type */
|
|
10336
|
+
type: ("File" | "null" | "boolean" | "int" | "float" | "string") | ("File" | "null" | "boolean" | "int" | "float" | "string")[];
|
|
10337
|
+
};
|
|
9188
10338
|
/** FileDataElement */
|
|
9189
10339
|
FileDataElement: {
|
|
9190
10340
|
/** Md5 */
|
|
@@ -9315,6 +10465,43 @@ interface components {
|
|
|
9315
10465
|
*/
|
|
9316
10466
|
update_time: string;
|
|
9317
10467
|
};
|
|
10468
|
+
/** FilePatternDatasetCollectionDescription */
|
|
10469
|
+
FilePatternDatasetCollectionDescription: {
|
|
10470
|
+
/** Assign Primary Output */
|
|
10471
|
+
assign_primary_output: boolean;
|
|
10472
|
+
/** Directory */
|
|
10473
|
+
directory: string | null;
|
|
10474
|
+
/**
|
|
10475
|
+
* Discover Via
|
|
10476
|
+
* @constant
|
|
10477
|
+
*/
|
|
10478
|
+
discover_via: "pattern";
|
|
10479
|
+
/** Format */
|
|
10480
|
+
format: string | null;
|
|
10481
|
+
/** Match Relative Path */
|
|
10482
|
+
match_relative_path: boolean;
|
|
10483
|
+
/** Pattern */
|
|
10484
|
+
pattern: string;
|
|
10485
|
+
/** Recurse */
|
|
10486
|
+
recurse: boolean;
|
|
10487
|
+
/**
|
|
10488
|
+
* Sort Comp
|
|
10489
|
+
* @enum {string}
|
|
10490
|
+
*/
|
|
10491
|
+
sort_comp: "lexical" | "numeric";
|
|
10492
|
+
/**
|
|
10493
|
+
* Sort Key
|
|
10494
|
+
* @enum {string}
|
|
10495
|
+
*/
|
|
10496
|
+
sort_key: "filename" | "name" | "designation" | "dbkey";
|
|
10497
|
+
/**
|
|
10498
|
+
* Sort Reverse
|
|
10499
|
+
* @default false
|
|
10500
|
+
*/
|
|
10501
|
+
sort_reverse: boolean;
|
|
10502
|
+
/** Visible */
|
|
10503
|
+
visible: boolean;
|
|
10504
|
+
};
|
|
9318
10505
|
/** FileSourceTemplateSummaries */
|
|
9319
10506
|
FileSourceTemplateSummaries: components["schemas"]["FileSourceTemplateSummary"][];
|
|
9320
10507
|
/** FileSourceTemplateSummary */
|
|
@@ -9438,6 +10625,58 @@ interface components {
|
|
|
9438
10625
|
/** Step */
|
|
9439
10626
|
step: components["schemas"]["StepReferenceByOrderIndex"] | components["schemas"]["StepReferenceByLabel"];
|
|
9440
10627
|
};
|
|
10628
|
+
/** FloatParameterModel */
|
|
10629
|
+
FloatParameterModel: {
|
|
10630
|
+
/** Argument */
|
|
10631
|
+
argument?: string | null;
|
|
10632
|
+
/** Help */
|
|
10633
|
+
help?: string | null;
|
|
10634
|
+
/**
|
|
10635
|
+
* Hidden
|
|
10636
|
+
* @default false
|
|
10637
|
+
*/
|
|
10638
|
+
hidden: boolean;
|
|
10639
|
+
/**
|
|
10640
|
+
* Is Dynamic
|
|
10641
|
+
* @default false
|
|
10642
|
+
*/
|
|
10643
|
+
is_dynamic: boolean;
|
|
10644
|
+
/** Label */
|
|
10645
|
+
label?: string | null;
|
|
10646
|
+
/** Max */
|
|
10647
|
+
max?: number | null;
|
|
10648
|
+
/** Min */
|
|
10649
|
+
min?: number | null;
|
|
10650
|
+
/**
|
|
10651
|
+
* Name
|
|
10652
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
10653
|
+
*/
|
|
10654
|
+
name: string;
|
|
10655
|
+
/**
|
|
10656
|
+
* Optional
|
|
10657
|
+
* @description If `false`, parameter must have a value.
|
|
10658
|
+
* @default false
|
|
10659
|
+
*/
|
|
10660
|
+
optional: boolean;
|
|
10661
|
+
/**
|
|
10662
|
+
* Parameter Type
|
|
10663
|
+
* @default gx_float
|
|
10664
|
+
* @constant
|
|
10665
|
+
*/
|
|
10666
|
+
parameter_type: "gx_float";
|
|
10667
|
+
/**
|
|
10668
|
+
* @description discriminator enum property added by openapi-typescript
|
|
10669
|
+
* @enum {string}
|
|
10670
|
+
*/
|
|
10671
|
+
type: "float";
|
|
10672
|
+
/**
|
|
10673
|
+
* Validators
|
|
10674
|
+
* @default []
|
|
10675
|
+
*/
|
|
10676
|
+
validators: components["schemas"]["InRangeParameterValidatorModel"][];
|
|
10677
|
+
/** Value */
|
|
10678
|
+
value?: number | null;
|
|
10679
|
+
};
|
|
9441
10680
|
/** FolderLibraryFolderItem */
|
|
9442
10681
|
FolderLibraryFolderItem: {
|
|
9443
10682
|
/** Can Manage */
|
|
@@ -9566,6 +10805,53 @@ interface components {
|
|
|
9566
10805
|
/** Tags */
|
|
9567
10806
|
tags?: string[] | null;
|
|
9568
10807
|
};
|
|
10808
|
+
/** GalaxyToolParameterModel */
|
|
10809
|
+
"GalaxyToolParameterModel-Input": components["schemas"]["TextParameterModel"] | components["schemas"]["IntegerParameterModel"] | components["schemas"]["FloatParameterModel"] | components["schemas"]["BooleanParameterModel"] | components["schemas"]["HiddenParameterModel"] | components["schemas"]["SelectParameterModel"] | components["schemas"]["DataParameterModel"] | components["schemas"]["DataCollectionParameterModel"] | components["schemas"]["DataColumnParameterModel"] | components["schemas"]["DirectoryUriParameterModel"] | components["schemas"]["RulesParameterModel"] | components["schemas"]["DrillDownParameterModel-Input"] | components["schemas"]["GroupTagParameterModel"] | components["schemas"]["BaseUrlParameterModel"] | components["schemas"]["GenomeBuildParameterModel"] | components["schemas"]["ColorParameterModel"] | components["schemas"]["ConditionalParameterModel-Input"] | components["schemas"]["RepeatParameterModel-Input"] | components["schemas"]["SectionParameterModel-Input"];
|
|
10810
|
+
/** GalaxyToolParameterModel */
|
|
10811
|
+
"GalaxyToolParameterModel-Output": components["schemas"]["TextParameterModel"] | components["schemas"]["IntegerParameterModel"] | components["schemas"]["FloatParameterModel"] | components["schemas"]["BooleanParameterModel"] | components["schemas"]["HiddenParameterModel"] | components["schemas"]["SelectParameterModel"] | components["schemas"]["DataParameterModel"] | components["schemas"]["DataCollectionParameterModel"] | components["schemas"]["DataColumnParameterModel"] | components["schemas"]["DirectoryUriParameterModel"] | components["schemas"]["RulesParameterModel"] | components["schemas"]["DrillDownParameterModel-Output"] | components["schemas"]["GroupTagParameterModel"] | components["schemas"]["BaseUrlParameterModel"] | components["schemas"]["GenomeBuildParameterModel"] | components["schemas"]["ColorParameterModel"] | components["schemas"]["ConditionalParameterModel-Output"] | components["schemas"]["RepeatParameterModel-Output"] | components["schemas"]["SectionParameterModel-Output"];
|
|
10812
|
+
/** GenomeBuildParameterModel */
|
|
10813
|
+
GenomeBuildParameterModel: {
|
|
10814
|
+
/** Argument */
|
|
10815
|
+
argument?: string | null;
|
|
10816
|
+
/** Help */
|
|
10817
|
+
help?: string | null;
|
|
10818
|
+
/**
|
|
10819
|
+
* Hidden
|
|
10820
|
+
* @default false
|
|
10821
|
+
*/
|
|
10822
|
+
hidden: boolean;
|
|
10823
|
+
/**
|
|
10824
|
+
* Is Dynamic
|
|
10825
|
+
* @default false
|
|
10826
|
+
*/
|
|
10827
|
+
is_dynamic: boolean;
|
|
10828
|
+
/** Label */
|
|
10829
|
+
label?: string | null;
|
|
10830
|
+
/** Multiple */
|
|
10831
|
+
multiple: boolean;
|
|
10832
|
+
/**
|
|
10833
|
+
* Name
|
|
10834
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
10835
|
+
*/
|
|
10836
|
+
name: string;
|
|
10837
|
+
/**
|
|
10838
|
+
* Optional
|
|
10839
|
+
* @description If `false`, parameter must have a value.
|
|
10840
|
+
* @default false
|
|
10841
|
+
*/
|
|
10842
|
+
optional: boolean;
|
|
10843
|
+
/**
|
|
10844
|
+
* Parameter Type
|
|
10845
|
+
* @default gx_genomebuild
|
|
10846
|
+
* @constant
|
|
10847
|
+
*/
|
|
10848
|
+
parameter_type: "gx_genomebuild";
|
|
10849
|
+
/**
|
|
10850
|
+
* @description discriminator enum property added by openapi-typescript
|
|
10851
|
+
* @enum {string}
|
|
10852
|
+
*/
|
|
10853
|
+
type: "genomebuild";
|
|
10854
|
+
};
|
|
9569
10855
|
/**
|
|
9570
10856
|
* GroupCreatePayload
|
|
9571
10857
|
* @description Payload schema for creating a group.
|
|
@@ -9673,6 +10959,49 @@ interface components {
|
|
|
9673
10959
|
*/
|
|
9674
10960
|
url: string;
|
|
9675
10961
|
};
|
|
10962
|
+
/** GroupTagParameterModel */
|
|
10963
|
+
GroupTagParameterModel: {
|
|
10964
|
+
/** Argument */
|
|
10965
|
+
argument?: string | null;
|
|
10966
|
+
/** Help */
|
|
10967
|
+
help?: string | null;
|
|
10968
|
+
/**
|
|
10969
|
+
* Hidden
|
|
10970
|
+
* @default false
|
|
10971
|
+
*/
|
|
10972
|
+
hidden: boolean;
|
|
10973
|
+
/**
|
|
10974
|
+
* Is Dynamic
|
|
10975
|
+
* @default false
|
|
10976
|
+
*/
|
|
10977
|
+
is_dynamic: boolean;
|
|
10978
|
+
/** Label */
|
|
10979
|
+
label?: string | null;
|
|
10980
|
+
/** Multiple */
|
|
10981
|
+
multiple: boolean;
|
|
10982
|
+
/**
|
|
10983
|
+
* Name
|
|
10984
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
10985
|
+
*/
|
|
10986
|
+
name: string;
|
|
10987
|
+
/**
|
|
10988
|
+
* Optional
|
|
10989
|
+
* @description If `false`, parameter must have a value.
|
|
10990
|
+
* @default false
|
|
10991
|
+
*/
|
|
10992
|
+
optional: boolean;
|
|
10993
|
+
/**
|
|
10994
|
+
* Parameter Type
|
|
10995
|
+
* @default gx_group_tag
|
|
10996
|
+
* @constant
|
|
10997
|
+
*/
|
|
10998
|
+
parameter_type: "gx_group_tag";
|
|
10999
|
+
/**
|
|
11000
|
+
* @description discriminator enum property added by openapi-typescript
|
|
11001
|
+
* @enum {string}
|
|
11002
|
+
*/
|
|
11003
|
+
type: "group_tag";
|
|
11004
|
+
};
|
|
9676
11005
|
/** GroupUpdatePayload */
|
|
9677
11006
|
GroupUpdatePayload: {
|
|
9678
11007
|
/** name of the group */
|
|
@@ -9738,6 +11067,11 @@ interface components {
|
|
|
9738
11067
|
copied_from_history_dataset_association_id?: string | null;
|
|
9739
11068
|
/** Copied From Ldda Id */
|
|
9740
11069
|
copied_from_ldda_id?: string | null;
|
|
11070
|
+
/**
|
|
11071
|
+
* Copied From Library Dataset Dataset Association Id
|
|
11072
|
+
* @description ID of LDDA this HDA was copied from.
|
|
11073
|
+
*/
|
|
11074
|
+
copied_from_library_dataset_dataset_association_id?: string | null;
|
|
9741
11075
|
/**
|
|
9742
11076
|
* Create Time
|
|
9743
11077
|
* @description The time and date this item was created.
|
|
@@ -9987,6 +11321,11 @@ interface components {
|
|
|
9987
11321
|
copied_from_history_dataset_association_id?: string | null;
|
|
9988
11322
|
/** Copied From Ldda Id */
|
|
9989
11323
|
copied_from_ldda_id?: string | null;
|
|
11324
|
+
/**
|
|
11325
|
+
* Copied From Library Dataset Dataset Association Id
|
|
11326
|
+
* @description ID of LDDA this HDA was copied from.
|
|
11327
|
+
*/
|
|
11328
|
+
copied_from_library_dataset_dataset_association_id?: string | null;
|
|
9990
11329
|
/**
|
|
9991
11330
|
* Create Time
|
|
9992
11331
|
* @description The time and date this item was created.
|
|
@@ -10992,6 +12331,16 @@ interface components {
|
|
|
10992
12331
|
*/
|
|
10993
12332
|
type: "hdca";
|
|
10994
12333
|
};
|
|
12334
|
+
/** HelpContent */
|
|
12335
|
+
HelpContent: {
|
|
12336
|
+
/** Content */
|
|
12337
|
+
content: string;
|
|
12338
|
+
/**
|
|
12339
|
+
* Format
|
|
12340
|
+
* @enum {string}
|
|
12341
|
+
*/
|
|
12342
|
+
format: "restructuredtext" | "plain_text" | "markdown";
|
|
12343
|
+
};
|
|
10995
12344
|
/**
|
|
10996
12345
|
* HelpForumCategory
|
|
10997
12346
|
* @description Model for a category in the help forum.
|
|
@@ -11246,6 +12595,54 @@ interface components {
|
|
|
11246
12595
|
HelpForumUser: {
|
|
11247
12596
|
[key: string]: unknown;
|
|
11248
12597
|
};
|
|
12598
|
+
/** HiddenParameterModel */
|
|
12599
|
+
HiddenParameterModel: {
|
|
12600
|
+
/** Argument */
|
|
12601
|
+
argument?: string | null;
|
|
12602
|
+
/** Help */
|
|
12603
|
+
help?: string | null;
|
|
12604
|
+
/**
|
|
12605
|
+
* Hidden
|
|
12606
|
+
* @default false
|
|
12607
|
+
*/
|
|
12608
|
+
hidden: boolean;
|
|
12609
|
+
/**
|
|
12610
|
+
* Is Dynamic
|
|
12611
|
+
* @default false
|
|
12612
|
+
*/
|
|
12613
|
+
is_dynamic: boolean;
|
|
12614
|
+
/** Label */
|
|
12615
|
+
label?: string | null;
|
|
12616
|
+
/**
|
|
12617
|
+
* Name
|
|
12618
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
12619
|
+
*/
|
|
12620
|
+
name: string;
|
|
12621
|
+
/**
|
|
12622
|
+
* Optional
|
|
12623
|
+
* @description If `false`, parameter must have a value.
|
|
12624
|
+
* @default false
|
|
12625
|
+
*/
|
|
12626
|
+
optional: boolean;
|
|
12627
|
+
/**
|
|
12628
|
+
* Parameter Type
|
|
12629
|
+
* @default gx_hidden
|
|
12630
|
+
* @constant
|
|
12631
|
+
*/
|
|
12632
|
+
parameter_type: "gx_hidden";
|
|
12633
|
+
/**
|
|
12634
|
+
* @description discriminator enum property added by openapi-typescript
|
|
12635
|
+
* @enum {string}
|
|
12636
|
+
*/
|
|
12637
|
+
type: "hidden";
|
|
12638
|
+
/**
|
|
12639
|
+
* Validators
|
|
12640
|
+
* @default []
|
|
12641
|
+
*/
|
|
12642
|
+
validators: (components["schemas"]["LengthParameterValidatorModel"] | components["schemas"]["RegexParameterValidatorModel"] | components["schemas"]["ExpressionParameterValidatorModel"] | components["schemas"]["EmptyFieldParameterValidatorModel"])[];
|
|
12643
|
+
/** Value */
|
|
12644
|
+
value: string | null;
|
|
12645
|
+
};
|
|
11249
12646
|
/**
|
|
11250
12647
|
* HistoryActiveContentCounts
|
|
11251
12648
|
* @description Contains the number of active, deleted or hidden items in a History.
|
|
@@ -11625,6 +13022,116 @@ interface components {
|
|
|
11625
13022
|
*/
|
|
11626
13023
|
uri: string;
|
|
11627
13024
|
};
|
|
13025
|
+
/** InRangeParameterValidatorModel */
|
|
13026
|
+
InRangeParameterValidatorModel: {
|
|
13027
|
+
/**
|
|
13028
|
+
* Exclude Max
|
|
13029
|
+
* @default false
|
|
13030
|
+
*/
|
|
13031
|
+
exclude_max: boolean;
|
|
13032
|
+
/**
|
|
13033
|
+
* Exclude Min
|
|
13034
|
+
* @default false
|
|
13035
|
+
*/
|
|
13036
|
+
exclude_min: boolean;
|
|
13037
|
+
/**
|
|
13038
|
+
* Implicit
|
|
13039
|
+
* @default false
|
|
13040
|
+
*/
|
|
13041
|
+
implicit: boolean;
|
|
13042
|
+
/** Max */
|
|
13043
|
+
max?: number | null;
|
|
13044
|
+
/** Message */
|
|
13045
|
+
message?: string | null;
|
|
13046
|
+
/** Min */
|
|
13047
|
+
min?: number | null;
|
|
13048
|
+
/**
|
|
13049
|
+
* Negate
|
|
13050
|
+
* @default false
|
|
13051
|
+
*/
|
|
13052
|
+
negate: boolean;
|
|
13053
|
+
/**
|
|
13054
|
+
* Type
|
|
13055
|
+
* @default in_range
|
|
13056
|
+
* @constant
|
|
13057
|
+
*/
|
|
13058
|
+
type: "in_range";
|
|
13059
|
+
};
|
|
13060
|
+
/** IncomingToolOutputCollection */
|
|
13061
|
+
"IncomingToolOutputCollection-Input": {
|
|
13062
|
+
/**
|
|
13063
|
+
* Hidden
|
|
13064
|
+
* @description If true, the output will not be shown in the history.
|
|
13065
|
+
*/
|
|
13066
|
+
hidden?: boolean | null;
|
|
13067
|
+
/** Label */
|
|
13068
|
+
label?: string | null;
|
|
13069
|
+
/**
|
|
13070
|
+
* Name
|
|
13071
|
+
* @description Parameter name. Used when referencing parameter in workflows.
|
|
13072
|
+
*/
|
|
13073
|
+
name?: string | null;
|
|
13074
|
+
structure: components["schemas"]["ToolOutputCollectionStructure"];
|
|
13075
|
+
/**
|
|
13076
|
+
* @description discriminator enum property added by openapi-typescript
|
|
13077
|
+
* @enum {string}
|
|
13078
|
+
*/
|
|
13079
|
+
type: "collection";
|
|
13080
|
+
};
|
|
13081
|
+
/** IncomingToolOutputCollection */
|
|
13082
|
+
"IncomingToolOutputCollection-Output": {
|
|
13083
|
+
/**
|
|
13084
|
+
* Hidden
|
|
13085
|
+
* @description If true, the output will not be shown in the history.
|
|
13086
|
+
*/
|
|
13087
|
+
hidden?: boolean | null;
|
|
13088
|
+
/** Label */
|
|
13089
|
+
label?: string | null;
|
|
13090
|
+
/**
|
|
13091
|
+
* Name
|
|
13092
|
+
* @description Parameter name. Used when referencing parameter in workflows.
|
|
13093
|
+
*/
|
|
13094
|
+
name?: string | null;
|
|
13095
|
+
structure: components["schemas"]["ToolOutputCollectionStructure"];
|
|
13096
|
+
/**
|
|
13097
|
+
* @description discriminator enum property added by openapi-typescript
|
|
13098
|
+
* @enum {string}
|
|
13099
|
+
*/
|
|
13100
|
+
type: "collection";
|
|
13101
|
+
};
|
|
13102
|
+
/** IncomingToolOutputDataset */
|
|
13103
|
+
IncomingToolOutputDataset: {
|
|
13104
|
+
/** Discover Datasets */
|
|
13105
|
+
discover_datasets?: (components["schemas"]["FilePatternDatasetCollectionDescription"] | components["schemas"]["ToolProvidedMetadataDatasetCollection"])[] | null;
|
|
13106
|
+
/**
|
|
13107
|
+
* Format
|
|
13108
|
+
* @description The short name for the output datatype.
|
|
13109
|
+
*/
|
|
13110
|
+
format?: string | null;
|
|
13111
|
+
/** Format Source */
|
|
13112
|
+
format_source?: string | null;
|
|
13113
|
+
/** From Work Dir */
|
|
13114
|
+
from_work_dir?: string | null;
|
|
13115
|
+
/**
|
|
13116
|
+
* Hidden
|
|
13117
|
+
* @description If true, the output will not be shown in the history.
|
|
13118
|
+
*/
|
|
13119
|
+
hidden?: boolean | null;
|
|
13120
|
+
/** Label */
|
|
13121
|
+
label?: string | null;
|
|
13122
|
+
/** Metadata Source */
|
|
13123
|
+
metadata_source?: string | null;
|
|
13124
|
+
/**
|
|
13125
|
+
* Name
|
|
13126
|
+
* @description Parameter name. Used when referencing parameter in workflows.
|
|
13127
|
+
*/
|
|
13128
|
+
name?: string | null;
|
|
13129
|
+
/**
|
|
13130
|
+
* @description discriminator enum property added by openapi-typescript
|
|
13131
|
+
* @enum {string}
|
|
13132
|
+
*/
|
|
13133
|
+
type: "data";
|
|
13134
|
+
};
|
|
11628
13135
|
/** InputDataCollectionStep */
|
|
11629
13136
|
InputDataCollectionStep: {
|
|
11630
13137
|
/**
|
|
@@ -11796,12 +13303,12 @@ interface components {
|
|
|
11796
13303
|
* Latest installed revision
|
|
11797
13304
|
* @description Most recent version available on the tool shed
|
|
11798
13305
|
*/
|
|
11799
|
-
latest_installable_revision
|
|
13306
|
+
latest_installable_revision?: string | null;
|
|
11800
13307
|
/**
|
|
11801
13308
|
* Repository deprecated
|
|
11802
13309
|
* @description Repository has been depreciated on the tool shed
|
|
11803
13310
|
*/
|
|
11804
|
-
repository_deprecated
|
|
13311
|
+
repository_deprecated?: string | null;
|
|
11805
13312
|
/** Revision Update */
|
|
11806
13313
|
revision_update: string;
|
|
11807
13314
|
/** Revision Upgrade */
|
|
@@ -11863,10 +13370,58 @@ interface components {
|
|
|
11863
13370
|
*/
|
|
11864
13371
|
tool_shed: string;
|
|
11865
13372
|
/** Latest updated status from the tool shed */
|
|
11866
|
-
tool_shed_status
|
|
13373
|
+
tool_shed_status?: components["schemas"]["InstalledRepositoryToolShedStatus"] | null;
|
|
11867
13374
|
/** Uninstalled */
|
|
11868
13375
|
uninstalled: boolean;
|
|
11869
13376
|
};
|
|
13377
|
+
/** IntegerParameterModel */
|
|
13378
|
+
IntegerParameterModel: {
|
|
13379
|
+
/** Argument */
|
|
13380
|
+
argument?: string | null;
|
|
13381
|
+
/** Help */
|
|
13382
|
+
help?: string | null;
|
|
13383
|
+
/**
|
|
13384
|
+
* Hidden
|
|
13385
|
+
* @default false
|
|
13386
|
+
*/
|
|
13387
|
+
hidden: boolean;
|
|
13388
|
+
/**
|
|
13389
|
+
* Is Dynamic
|
|
13390
|
+
* @default false
|
|
13391
|
+
*/
|
|
13392
|
+
is_dynamic: boolean;
|
|
13393
|
+
/** Label */
|
|
13394
|
+
label?: string | null;
|
|
13395
|
+
/** Max */
|
|
13396
|
+
max?: number | null;
|
|
13397
|
+
/** Min */
|
|
13398
|
+
min?: number | null;
|
|
13399
|
+
/**
|
|
13400
|
+
* Name
|
|
13401
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
13402
|
+
*/
|
|
13403
|
+
name: string;
|
|
13404
|
+
/** Optional */
|
|
13405
|
+
optional: boolean;
|
|
13406
|
+
/**
|
|
13407
|
+
* Parameter Type
|
|
13408
|
+
* @default gx_integer
|
|
13409
|
+
* @constant
|
|
13410
|
+
*/
|
|
13411
|
+
parameter_type: "gx_integer";
|
|
13412
|
+
/**
|
|
13413
|
+
* @description discriminator enum property added by openapi-typescript
|
|
13414
|
+
* @enum {string}
|
|
13415
|
+
*/
|
|
13416
|
+
type: "integer";
|
|
13417
|
+
/**
|
|
13418
|
+
* Validators
|
|
13419
|
+
* @default []
|
|
13420
|
+
*/
|
|
13421
|
+
validators: components["schemas"]["InRangeParameterValidatorModel"][];
|
|
13422
|
+
/** Value */
|
|
13423
|
+
value?: number | null;
|
|
13424
|
+
};
|
|
11870
13425
|
/** InvocationCancellationHistoryDeletedResponse */
|
|
11871
13426
|
InvocationCancellationHistoryDeletedResponse: {
|
|
11872
13427
|
/**
|
|
@@ -12181,7 +13736,7 @@ interface components {
|
|
|
12181
13736
|
*/
|
|
12182
13737
|
errors?: {
|
|
12183
13738
|
[key: string]: unknown;
|
|
12184
|
-
} | null;
|
|
13739
|
+
}[] | null;
|
|
12185
13740
|
/**
|
|
12186
13741
|
* Galaxy Version
|
|
12187
13742
|
* @description The version of Galaxy this object was generated with.
|
|
@@ -12714,6 +14269,16 @@ interface components {
|
|
|
12714
14269
|
* @enum {string}
|
|
12715
14270
|
*/
|
|
12716
14271
|
ItemsFromSrc: "url" | "files" | "path" | "ftp_import" | "server_dir";
|
|
14272
|
+
/** JavascriptRequirement */
|
|
14273
|
+
JavascriptRequirement: {
|
|
14274
|
+
/** Expression Lib */
|
|
14275
|
+
expression_lib: string[] | null;
|
|
14276
|
+
/**
|
|
14277
|
+
* Type
|
|
14278
|
+
* @constant
|
|
14279
|
+
*/
|
|
14280
|
+
type: "javascript";
|
|
14281
|
+
};
|
|
12717
14282
|
/** JobBaseModel */
|
|
12718
14283
|
JobBaseModel: {
|
|
12719
14284
|
/**
|
|
@@ -13204,6 +14769,15 @@ interface components {
|
|
|
13204
14769
|
*/
|
|
13205
14770
|
user_id?: string | null;
|
|
13206
14771
|
};
|
|
14772
|
+
/** LabelValue */
|
|
14773
|
+
LabelValue: {
|
|
14774
|
+
/** Label */
|
|
14775
|
+
label: string;
|
|
14776
|
+
/** Selected */
|
|
14777
|
+
selected: boolean;
|
|
14778
|
+
/** Value */
|
|
14779
|
+
value: string;
|
|
14780
|
+
};
|
|
13207
14781
|
/**
|
|
13208
14782
|
* LabelValuePair
|
|
13209
14783
|
* @description Generic Label/Value pair model.
|
|
@@ -13252,6 +14826,31 @@ interface components {
|
|
|
13252
14826
|
*/
|
|
13253
14827
|
LIBRARY_MODIFY_in: string[] | string | null;
|
|
13254
14828
|
};
|
|
14829
|
+
/** LengthParameterValidatorModel */
|
|
14830
|
+
LengthParameterValidatorModel: {
|
|
14831
|
+
/**
|
|
14832
|
+
* Implicit
|
|
14833
|
+
* @default false
|
|
14834
|
+
*/
|
|
14835
|
+
implicit: boolean;
|
|
14836
|
+
/** Max */
|
|
14837
|
+
max?: number | null;
|
|
14838
|
+
/** Message */
|
|
14839
|
+
message?: string | null;
|
|
14840
|
+
/** Min */
|
|
14841
|
+
min?: number | null;
|
|
14842
|
+
/**
|
|
14843
|
+
* Negate
|
|
14844
|
+
* @default false
|
|
14845
|
+
*/
|
|
14846
|
+
negate: boolean;
|
|
14847
|
+
/**
|
|
14848
|
+
* Type
|
|
14849
|
+
* @default length
|
|
14850
|
+
* @constant
|
|
14851
|
+
*/
|
|
14852
|
+
type: "length";
|
|
14853
|
+
};
|
|
13255
14854
|
/** LibraryAvailablePermissions */
|
|
13256
14855
|
LibraryAvailablePermissions: {
|
|
13257
14856
|
/**
|
|
@@ -14387,6 +15986,27 @@ interface components {
|
|
|
14387
15986
|
*/
|
|
14388
15987
|
slug: string;
|
|
14389
15988
|
};
|
|
15989
|
+
/** NoOptionsParameterValidatorModel */
|
|
15990
|
+
NoOptionsParameterValidatorModel: {
|
|
15991
|
+
/**
|
|
15992
|
+
* Implicit
|
|
15993
|
+
* @default false
|
|
15994
|
+
*/
|
|
15995
|
+
implicit: boolean;
|
|
15996
|
+
/** Message */
|
|
15997
|
+
message?: string | null;
|
|
15998
|
+
/**
|
|
15999
|
+
* Negate
|
|
16000
|
+
* @default false
|
|
16001
|
+
*/
|
|
16002
|
+
negate: boolean;
|
|
16003
|
+
/**
|
|
16004
|
+
* Type
|
|
16005
|
+
* @default no_options
|
|
16006
|
+
* @constant
|
|
16007
|
+
*/
|
|
16008
|
+
type: "no_options";
|
|
16009
|
+
};
|
|
14390
16010
|
/**
|
|
14391
16011
|
* NotificationBroadcastUpdateRequest
|
|
14392
16012
|
* @description A notification update request specific for broadcasting.
|
|
@@ -15008,6 +16628,29 @@ interface components {
|
|
|
15008
16628
|
*/
|
|
15009
16629
|
to_posix_lines: boolean;
|
|
15010
16630
|
};
|
|
16631
|
+
/** PathBasedDynamicToolCreatePayload */
|
|
16632
|
+
PathBasedDynamicToolCreatePayload: {
|
|
16633
|
+
/** Active */
|
|
16634
|
+
active?: boolean | null;
|
|
16635
|
+
/**
|
|
16636
|
+
* Allow Load
|
|
16637
|
+
* @default true
|
|
16638
|
+
*/
|
|
16639
|
+
allow_load: boolean;
|
|
16640
|
+
/** Hidden */
|
|
16641
|
+
hidden?: boolean | null;
|
|
16642
|
+
/** Path */
|
|
16643
|
+
path: string;
|
|
16644
|
+
/**
|
|
16645
|
+
* Src
|
|
16646
|
+
* @constant
|
|
16647
|
+
*/
|
|
16648
|
+
src: "from_path";
|
|
16649
|
+
/** Tool Directory */
|
|
16650
|
+
tool_directory?: string | null;
|
|
16651
|
+
/** Uuid */
|
|
16652
|
+
uuid?: string | null;
|
|
16653
|
+
};
|
|
15011
16654
|
/** PathDataElement */
|
|
15012
16655
|
PathDataElement: {
|
|
15013
16656
|
/** Md5 */
|
|
@@ -15491,6 +17134,36 @@ interface components {
|
|
|
15491
17134
|
*/
|
|
15492
17135
|
type: "regex";
|
|
15493
17136
|
};
|
|
17137
|
+
/**
|
|
17138
|
+
* RegexParameterValidatorModel
|
|
17139
|
+
* @description Check if a regular expression **matches** the value, i.e. appears
|
|
17140
|
+
* at the beginning of the value. To enforce a match of the complete value use
|
|
17141
|
+
* ``$`` at the end of the expression. The expression is given is the content
|
|
17142
|
+
* of the validator tag. Note that for ``selects`` each option is checked
|
|
17143
|
+
* separately.
|
|
17144
|
+
*/
|
|
17145
|
+
RegexParameterValidatorModel: {
|
|
17146
|
+
/** Expression */
|
|
17147
|
+
expression: string;
|
|
17148
|
+
/**
|
|
17149
|
+
* Implicit
|
|
17150
|
+
* @default false
|
|
17151
|
+
*/
|
|
17152
|
+
implicit: boolean;
|
|
17153
|
+
/** Message */
|
|
17154
|
+
message?: string | null;
|
|
17155
|
+
/**
|
|
17156
|
+
* Negate
|
|
17157
|
+
* @default false
|
|
17158
|
+
*/
|
|
17159
|
+
negate: boolean;
|
|
17160
|
+
/**
|
|
17161
|
+
* Type
|
|
17162
|
+
* @default regex
|
|
17163
|
+
* @constant
|
|
17164
|
+
*/
|
|
17165
|
+
type: "regex";
|
|
17166
|
+
};
|
|
15494
17167
|
/** ReloadFeedback */
|
|
15495
17168
|
ReloadFeedback: {
|
|
15496
17169
|
/** Failed */
|
|
@@ -15582,6 +17255,100 @@ interface components {
|
|
|
15582
17255
|
*/
|
|
15583
17256
|
action_type: "remove_unlabeled_workflow_outputs";
|
|
15584
17257
|
};
|
|
17258
|
+
/** RepeatParameterModel */
|
|
17259
|
+
"RepeatParameterModel-Input": {
|
|
17260
|
+
/** Argument */
|
|
17261
|
+
argument?: string | null;
|
|
17262
|
+
/** Help */
|
|
17263
|
+
help?: string | null;
|
|
17264
|
+
/**
|
|
17265
|
+
* Hidden
|
|
17266
|
+
* @default false
|
|
17267
|
+
*/
|
|
17268
|
+
hidden: boolean;
|
|
17269
|
+
/**
|
|
17270
|
+
* Is Dynamic
|
|
17271
|
+
* @default false
|
|
17272
|
+
*/
|
|
17273
|
+
is_dynamic: boolean;
|
|
17274
|
+
/** Label */
|
|
17275
|
+
label?: string | null;
|
|
17276
|
+
/** Max */
|
|
17277
|
+
max?: number | null;
|
|
17278
|
+
/** Min */
|
|
17279
|
+
min?: number | null;
|
|
17280
|
+
/**
|
|
17281
|
+
* Name
|
|
17282
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
17283
|
+
*/
|
|
17284
|
+
name: string;
|
|
17285
|
+
/**
|
|
17286
|
+
* Optional
|
|
17287
|
+
* @description If `false`, parameter must have a value.
|
|
17288
|
+
* @default false
|
|
17289
|
+
*/
|
|
17290
|
+
optional: boolean;
|
|
17291
|
+
/**
|
|
17292
|
+
* Parameter Type
|
|
17293
|
+
* @default gx_repeat
|
|
17294
|
+
* @constant
|
|
17295
|
+
*/
|
|
17296
|
+
parameter_type: "gx_repeat";
|
|
17297
|
+
/** Parameters */
|
|
17298
|
+
parameters: (components["schemas"]["CwlIntegerParameterModel"] | components["schemas"]["CwlFloatParameterModel"] | components["schemas"]["CwlStringParameterModel"] | components["schemas"]["CwlBooleanParameterModel"] | components["schemas"]["CwlNullParameterModel"] | components["schemas"]["CwlFileParameterModel"] | components["schemas"]["CwlDirectoryParameterModel"] | components["schemas"]["CwlUnionParameterModel-Input"] | components["schemas"]["TextParameterModel"] | components["schemas"]["IntegerParameterModel"] | components["schemas"]["FloatParameterModel"] | components["schemas"]["BooleanParameterModel"] | components["schemas"]["HiddenParameterModel"] | components["schemas"]["SelectParameterModel"] | components["schemas"]["DataParameterModel"] | components["schemas"]["DataCollectionParameterModel"] | components["schemas"]["DataColumnParameterModel"] | components["schemas"]["DirectoryUriParameterModel"] | components["schemas"]["RulesParameterModel"] | components["schemas"]["DrillDownParameterModel-Input"] | components["schemas"]["GroupTagParameterModel"] | components["schemas"]["BaseUrlParameterModel"] | components["schemas"]["GenomeBuildParameterModel"] | components["schemas"]["ColorParameterModel"] | components["schemas"]["ConditionalParameterModel-Input"] | components["schemas"]["RepeatParameterModel-Input"] | components["schemas"]["SectionParameterModel-Input"])[];
|
|
17299
|
+
/**
|
|
17300
|
+
* @description discriminator enum property added by openapi-typescript
|
|
17301
|
+
* @enum {string}
|
|
17302
|
+
*/
|
|
17303
|
+
type: "repeat";
|
|
17304
|
+
};
|
|
17305
|
+
/** RepeatParameterModel */
|
|
17306
|
+
"RepeatParameterModel-Output": {
|
|
17307
|
+
/** Argument */
|
|
17308
|
+
argument?: string | null;
|
|
17309
|
+
/** Help */
|
|
17310
|
+
help?: string | null;
|
|
17311
|
+
/**
|
|
17312
|
+
* Hidden
|
|
17313
|
+
* @default false
|
|
17314
|
+
*/
|
|
17315
|
+
hidden: boolean;
|
|
17316
|
+
/**
|
|
17317
|
+
* Is Dynamic
|
|
17318
|
+
* @default false
|
|
17319
|
+
*/
|
|
17320
|
+
is_dynamic: boolean;
|
|
17321
|
+
/** Label */
|
|
17322
|
+
label?: string | null;
|
|
17323
|
+
/** Max */
|
|
17324
|
+
max?: number | null;
|
|
17325
|
+
/** Min */
|
|
17326
|
+
min?: number | null;
|
|
17327
|
+
/**
|
|
17328
|
+
* Name
|
|
17329
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
17330
|
+
*/
|
|
17331
|
+
name: string;
|
|
17332
|
+
/**
|
|
17333
|
+
* Optional
|
|
17334
|
+
* @description If `false`, parameter must have a value.
|
|
17335
|
+
* @default false
|
|
17336
|
+
*/
|
|
17337
|
+
optional: boolean;
|
|
17338
|
+
/**
|
|
17339
|
+
* Parameter Type
|
|
17340
|
+
* @default gx_repeat
|
|
17341
|
+
* @constant
|
|
17342
|
+
*/
|
|
17343
|
+
parameter_type: "gx_repeat";
|
|
17344
|
+
/** Parameters */
|
|
17345
|
+
parameters: (components["schemas"]["CwlIntegerParameterModel"] | components["schemas"]["CwlFloatParameterModel"] | components["schemas"]["CwlStringParameterModel"] | components["schemas"]["CwlBooleanParameterModel"] | components["schemas"]["CwlNullParameterModel"] | components["schemas"]["CwlFileParameterModel"] | components["schemas"]["CwlDirectoryParameterModel"] | components["schemas"]["CwlUnionParameterModel-Output"] | components["schemas"]["TextParameterModel"] | components["schemas"]["IntegerParameterModel"] | components["schemas"]["FloatParameterModel"] | components["schemas"]["BooleanParameterModel"] | components["schemas"]["HiddenParameterModel"] | components["schemas"]["SelectParameterModel"] | components["schemas"]["DataParameterModel"] | components["schemas"]["DataCollectionParameterModel"] | components["schemas"]["DataColumnParameterModel"] | components["schemas"]["DirectoryUriParameterModel"] | components["schemas"]["RulesParameterModel"] | components["schemas"]["DrillDownParameterModel-Output"] | components["schemas"]["GroupTagParameterModel"] | components["schemas"]["BaseUrlParameterModel"] | components["schemas"]["GenomeBuildParameterModel"] | components["schemas"]["ColorParameterModel"] | components["schemas"]["ConditionalParameterModel-Output"] | components["schemas"]["RepeatParameterModel-Output"] | components["schemas"]["SectionParameterModel-Output"])[];
|
|
17346
|
+
/**
|
|
17347
|
+
* @description discriminator enum property added by openapi-typescript
|
|
17348
|
+
* @enum {string}
|
|
17349
|
+
*/
|
|
17350
|
+
type: "repeat";
|
|
17351
|
+
};
|
|
15585
17352
|
/** Report */
|
|
15586
17353
|
Report: {
|
|
15587
17354
|
/** Markdown */
|
|
@@ -15618,6 +17385,38 @@ interface components {
|
|
|
15618
17385
|
* @enum {string}
|
|
15619
17386
|
*/
|
|
15620
17387
|
Requirement: "logged_in" | "new_history" | "admin";
|
|
17388
|
+
/** ResourceRequirement */
|
|
17389
|
+
ResourceRequirement: {
|
|
17390
|
+
/** Cores Max */
|
|
17391
|
+
cores_max: number | null;
|
|
17392
|
+
/** Cores Min */
|
|
17393
|
+
cores_min: number | null;
|
|
17394
|
+
/** Cuda Compute Capability */
|
|
17395
|
+
cuda_compute_capability: number | null;
|
|
17396
|
+
/** Cuda Device Count Max */
|
|
17397
|
+
cuda_device_count_max: number | null;
|
|
17398
|
+
/** Cuda Device Count Min */
|
|
17399
|
+
cuda_device_count_min: number | null;
|
|
17400
|
+
/** Cuda Version Min */
|
|
17401
|
+
cuda_version_min: number | null;
|
|
17402
|
+
/** Gpu Memory Min */
|
|
17403
|
+
gpu_memory_min: number | null;
|
|
17404
|
+
/** Ram Max */
|
|
17405
|
+
ram_max: number | null;
|
|
17406
|
+
/** Ram Min */
|
|
17407
|
+
ram_min: number | null;
|
|
17408
|
+
/** Shm Size */
|
|
17409
|
+
shm_size: number | null;
|
|
17410
|
+
/** Tmpdir Max */
|
|
17411
|
+
tmpdir_max: number | null;
|
|
17412
|
+
/** Tmpdir Min */
|
|
17413
|
+
tmpdir_min: number | null;
|
|
17414
|
+
/**
|
|
17415
|
+
* Type
|
|
17416
|
+
* @constant
|
|
17417
|
+
*/
|
|
17418
|
+
type: "resource";
|
|
17419
|
+
};
|
|
15621
17420
|
/** RoleDefinitionModel */
|
|
15622
17421
|
RoleDefinitionModel: {
|
|
15623
17422
|
/**
|
|
@@ -15635,6 +17434,12 @@ interface components {
|
|
|
15635
17434
|
* @description Name of the role
|
|
15636
17435
|
*/
|
|
15637
17436
|
name: string;
|
|
17437
|
+
/**
|
|
17438
|
+
* Role Type
|
|
17439
|
+
* @default admin
|
|
17440
|
+
* @enum {string}
|
|
17441
|
+
*/
|
|
17442
|
+
role_type: "admin" | "user_tool_create" | "user_tool_execute";
|
|
15638
17443
|
/**
|
|
15639
17444
|
* User IDs
|
|
15640
17445
|
* @default []
|
|
@@ -15680,6 +17485,47 @@ interface components {
|
|
|
15680
17485
|
RootModel_Dict_str__int__: {
|
|
15681
17486
|
[key: string]: number;
|
|
15682
17487
|
};
|
|
17488
|
+
/** RulesParameterModel */
|
|
17489
|
+
RulesParameterModel: {
|
|
17490
|
+
/** Argument */
|
|
17491
|
+
argument?: string | null;
|
|
17492
|
+
/** Help */
|
|
17493
|
+
help?: string | null;
|
|
17494
|
+
/**
|
|
17495
|
+
* Hidden
|
|
17496
|
+
* @default false
|
|
17497
|
+
*/
|
|
17498
|
+
hidden: boolean;
|
|
17499
|
+
/**
|
|
17500
|
+
* Is Dynamic
|
|
17501
|
+
* @default false
|
|
17502
|
+
*/
|
|
17503
|
+
is_dynamic: boolean;
|
|
17504
|
+
/** Label */
|
|
17505
|
+
label?: string | null;
|
|
17506
|
+
/**
|
|
17507
|
+
* Name
|
|
17508
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
17509
|
+
*/
|
|
17510
|
+
name: string;
|
|
17511
|
+
/**
|
|
17512
|
+
* Optional
|
|
17513
|
+
* @description If `false`, parameter must have a value.
|
|
17514
|
+
* @default false
|
|
17515
|
+
*/
|
|
17516
|
+
optional: boolean;
|
|
17517
|
+
/**
|
|
17518
|
+
* Parameter Type
|
|
17519
|
+
* @default gx_rules
|
|
17520
|
+
* @constant
|
|
17521
|
+
*/
|
|
17522
|
+
parameter_type: "gx_rules";
|
|
17523
|
+
/**
|
|
17524
|
+
* @description discriminator enum property added by openapi-typescript
|
|
17525
|
+
* @enum {string}
|
|
17526
|
+
*/
|
|
17527
|
+
type: "rules";
|
|
17528
|
+
};
|
|
15683
17529
|
/** SearchJobsPayload */
|
|
15684
17530
|
SearchJobsPayload: {
|
|
15685
17531
|
/**
|
|
@@ -15702,6 +17548,145 @@ interface components {
|
|
|
15702
17548
|
} & {
|
|
15703
17549
|
[key: string]: unknown;
|
|
15704
17550
|
};
|
|
17551
|
+
/** SectionParameterModel */
|
|
17552
|
+
"SectionParameterModel-Input": {
|
|
17553
|
+
/** Argument */
|
|
17554
|
+
argument?: string | null;
|
|
17555
|
+
/** Help */
|
|
17556
|
+
help?: string | null;
|
|
17557
|
+
/**
|
|
17558
|
+
* Hidden
|
|
17559
|
+
* @default false
|
|
17560
|
+
*/
|
|
17561
|
+
hidden: boolean;
|
|
17562
|
+
/**
|
|
17563
|
+
* Is Dynamic
|
|
17564
|
+
* @default false
|
|
17565
|
+
*/
|
|
17566
|
+
is_dynamic: boolean;
|
|
17567
|
+
/** Label */
|
|
17568
|
+
label?: string | null;
|
|
17569
|
+
/**
|
|
17570
|
+
* Name
|
|
17571
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
17572
|
+
*/
|
|
17573
|
+
name: string;
|
|
17574
|
+
/**
|
|
17575
|
+
* Optional
|
|
17576
|
+
* @description If `false`, parameter must have a value.
|
|
17577
|
+
* @default false
|
|
17578
|
+
*/
|
|
17579
|
+
optional: boolean;
|
|
17580
|
+
/**
|
|
17581
|
+
* Parameter Type
|
|
17582
|
+
* @default gx_section
|
|
17583
|
+
* @constant
|
|
17584
|
+
*/
|
|
17585
|
+
parameter_type: "gx_section";
|
|
17586
|
+
/** Parameters */
|
|
17587
|
+
parameters: (components["schemas"]["CwlIntegerParameterModel"] | components["schemas"]["CwlFloatParameterModel"] | components["schemas"]["CwlStringParameterModel"] | components["schemas"]["CwlBooleanParameterModel"] | components["schemas"]["CwlNullParameterModel"] | components["schemas"]["CwlFileParameterModel"] | components["schemas"]["CwlDirectoryParameterModel"] | components["schemas"]["CwlUnionParameterModel-Input"] | components["schemas"]["TextParameterModel"] | components["schemas"]["IntegerParameterModel"] | components["schemas"]["FloatParameterModel"] | components["schemas"]["BooleanParameterModel"] | components["schemas"]["HiddenParameterModel"] | components["schemas"]["SelectParameterModel"] | components["schemas"]["DataParameterModel"] | components["schemas"]["DataCollectionParameterModel"] | components["schemas"]["DataColumnParameterModel"] | components["schemas"]["DirectoryUriParameterModel"] | components["schemas"]["RulesParameterModel"] | components["schemas"]["DrillDownParameterModel-Input"] | components["schemas"]["GroupTagParameterModel"] | components["schemas"]["BaseUrlParameterModel"] | components["schemas"]["GenomeBuildParameterModel"] | components["schemas"]["ColorParameterModel"] | components["schemas"]["ConditionalParameterModel-Input"] | components["schemas"]["RepeatParameterModel-Input"] | components["schemas"]["SectionParameterModel-Input"])[];
|
|
17588
|
+
/**
|
|
17589
|
+
* @description discriminator enum property added by openapi-typescript
|
|
17590
|
+
* @enum {string}
|
|
17591
|
+
*/
|
|
17592
|
+
type: "section";
|
|
17593
|
+
};
|
|
17594
|
+
/** SectionParameterModel */
|
|
17595
|
+
"SectionParameterModel-Output": {
|
|
17596
|
+
/** Argument */
|
|
17597
|
+
argument?: string | null;
|
|
17598
|
+
/** Help */
|
|
17599
|
+
help?: string | null;
|
|
17600
|
+
/**
|
|
17601
|
+
* Hidden
|
|
17602
|
+
* @default false
|
|
17603
|
+
*/
|
|
17604
|
+
hidden: boolean;
|
|
17605
|
+
/**
|
|
17606
|
+
* Is Dynamic
|
|
17607
|
+
* @default false
|
|
17608
|
+
*/
|
|
17609
|
+
is_dynamic: boolean;
|
|
17610
|
+
/** Label */
|
|
17611
|
+
label?: string | null;
|
|
17612
|
+
/**
|
|
17613
|
+
* Name
|
|
17614
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
17615
|
+
*/
|
|
17616
|
+
name: string;
|
|
17617
|
+
/**
|
|
17618
|
+
* Optional
|
|
17619
|
+
* @description If `false`, parameter must have a value.
|
|
17620
|
+
* @default false
|
|
17621
|
+
*/
|
|
17622
|
+
optional: boolean;
|
|
17623
|
+
/**
|
|
17624
|
+
* Parameter Type
|
|
17625
|
+
* @default gx_section
|
|
17626
|
+
* @constant
|
|
17627
|
+
*/
|
|
17628
|
+
parameter_type: "gx_section";
|
|
17629
|
+
/** Parameters */
|
|
17630
|
+
parameters: (components["schemas"]["CwlIntegerParameterModel"] | components["schemas"]["CwlFloatParameterModel"] | components["schemas"]["CwlStringParameterModel"] | components["schemas"]["CwlBooleanParameterModel"] | components["schemas"]["CwlNullParameterModel"] | components["schemas"]["CwlFileParameterModel"] | components["schemas"]["CwlDirectoryParameterModel"] | components["schemas"]["CwlUnionParameterModel-Output"] | components["schemas"]["TextParameterModel"] | components["schemas"]["IntegerParameterModel"] | components["schemas"]["FloatParameterModel"] | components["schemas"]["BooleanParameterModel"] | components["schemas"]["HiddenParameterModel"] | components["schemas"]["SelectParameterModel"] | components["schemas"]["DataParameterModel"] | components["schemas"]["DataCollectionParameterModel"] | components["schemas"]["DataColumnParameterModel"] | components["schemas"]["DirectoryUriParameterModel"] | components["schemas"]["RulesParameterModel"] | components["schemas"]["DrillDownParameterModel-Output"] | components["schemas"]["GroupTagParameterModel"] | components["schemas"]["BaseUrlParameterModel"] | components["schemas"]["GenomeBuildParameterModel"] | components["schemas"]["ColorParameterModel"] | components["schemas"]["ConditionalParameterModel-Output"] | components["schemas"]["RepeatParameterModel-Output"] | components["schemas"]["SectionParameterModel-Output"])[];
|
|
17631
|
+
/**
|
|
17632
|
+
* @description discriminator enum property added by openapi-typescript
|
|
17633
|
+
* @enum {string}
|
|
17634
|
+
*/
|
|
17635
|
+
type: "section";
|
|
17636
|
+
};
|
|
17637
|
+
/** SelectParameterModel */
|
|
17638
|
+
SelectParameterModel: {
|
|
17639
|
+
/** Argument */
|
|
17640
|
+
argument?: string | null;
|
|
17641
|
+
/** Help */
|
|
17642
|
+
help?: string | null;
|
|
17643
|
+
/**
|
|
17644
|
+
* Hidden
|
|
17645
|
+
* @default false
|
|
17646
|
+
*/
|
|
17647
|
+
hidden: boolean;
|
|
17648
|
+
/**
|
|
17649
|
+
* Is Dynamic
|
|
17650
|
+
* @default false
|
|
17651
|
+
*/
|
|
17652
|
+
is_dynamic: boolean;
|
|
17653
|
+
/** Label */
|
|
17654
|
+
label?: string | null;
|
|
17655
|
+
/**
|
|
17656
|
+
* Multiple
|
|
17657
|
+
* @default false
|
|
17658
|
+
*/
|
|
17659
|
+
multiple: boolean;
|
|
17660
|
+
/**
|
|
17661
|
+
* Name
|
|
17662
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
17663
|
+
*/
|
|
17664
|
+
name: string;
|
|
17665
|
+
/**
|
|
17666
|
+
* Optional
|
|
17667
|
+
* @description If `false`, parameter must have a value.
|
|
17668
|
+
* @default false
|
|
17669
|
+
*/
|
|
17670
|
+
optional: boolean;
|
|
17671
|
+
/** Options */
|
|
17672
|
+
options?: components["schemas"]["LabelValue"][] | null;
|
|
17673
|
+
/**
|
|
17674
|
+
* Parameter Type
|
|
17675
|
+
* @default gx_select
|
|
17676
|
+
* @constant
|
|
17677
|
+
*/
|
|
17678
|
+
parameter_type: "gx_select";
|
|
17679
|
+
/**
|
|
17680
|
+
* @description discriminator enum property added by openapi-typescript
|
|
17681
|
+
* @enum {string}
|
|
17682
|
+
*/
|
|
17683
|
+
type: "select";
|
|
17684
|
+
/**
|
|
17685
|
+
* Validators
|
|
17686
|
+
* @default []
|
|
17687
|
+
*/
|
|
17688
|
+
validators: components["schemas"]["NoOptionsParameterValidatorModel"][];
|
|
17689
|
+
};
|
|
15705
17690
|
/** ServerDirElement */
|
|
15706
17691
|
ServerDirElement: {
|
|
15707
17692
|
/** Md5 */
|
|
@@ -16732,6 +18717,64 @@ interface components {
|
|
|
16732
18717
|
[key: string]: string | boolean | number;
|
|
16733
18718
|
};
|
|
16734
18719
|
};
|
|
18720
|
+
/** TextParameterModel */
|
|
18721
|
+
TextParameterModel: {
|
|
18722
|
+
/**
|
|
18723
|
+
* Area
|
|
18724
|
+
* @default false
|
|
18725
|
+
*/
|
|
18726
|
+
area: boolean;
|
|
18727
|
+
/** Argument */
|
|
18728
|
+
argument?: string | null;
|
|
18729
|
+
/**
|
|
18730
|
+
* Default Options
|
|
18731
|
+
* @default []
|
|
18732
|
+
*/
|
|
18733
|
+
default_options: components["schemas"]["LabelValue"][];
|
|
18734
|
+
/** Help */
|
|
18735
|
+
help?: string | null;
|
|
18736
|
+
/**
|
|
18737
|
+
* Hidden
|
|
18738
|
+
* @default false
|
|
18739
|
+
*/
|
|
18740
|
+
hidden: boolean;
|
|
18741
|
+
/**
|
|
18742
|
+
* Is Dynamic
|
|
18743
|
+
* @default false
|
|
18744
|
+
*/
|
|
18745
|
+
is_dynamic: boolean;
|
|
18746
|
+
/** Label */
|
|
18747
|
+
label?: string | null;
|
|
18748
|
+
/**
|
|
18749
|
+
* Name
|
|
18750
|
+
* @description Parameter name. Used when referencing parameter in workflows or inside command templating.
|
|
18751
|
+
*/
|
|
18752
|
+
name: string;
|
|
18753
|
+
/**
|
|
18754
|
+
* Optional
|
|
18755
|
+
* @description If `false`, parameter must have a value.
|
|
18756
|
+
* @default false
|
|
18757
|
+
*/
|
|
18758
|
+
optional: boolean;
|
|
18759
|
+
/**
|
|
18760
|
+
* Parameter Type
|
|
18761
|
+
* @default gx_text
|
|
18762
|
+
* @constant
|
|
18763
|
+
*/
|
|
18764
|
+
parameter_type: "gx_text";
|
|
18765
|
+
/**
|
|
18766
|
+
* @description discriminator enum property added by openapi-typescript
|
|
18767
|
+
* @enum {string}
|
|
18768
|
+
*/
|
|
18769
|
+
type: "text";
|
|
18770
|
+
/**
|
|
18771
|
+
* Validators
|
|
18772
|
+
* @default []
|
|
18773
|
+
*/
|
|
18774
|
+
validators: (components["schemas"]["LengthParameterValidatorModel"] | components["schemas"]["RegexParameterValidatorModel"] | components["schemas"]["ExpressionParameterValidatorModel"] | components["schemas"]["EmptyFieldParameterValidatorModel"])[];
|
|
18775
|
+
/** Value */
|
|
18776
|
+
value?: string | null;
|
|
18777
|
+
};
|
|
16735
18778
|
/** ToolDataDetails */
|
|
16736
18779
|
ToolDataDetails: {
|
|
16737
18780
|
/**
|
|
@@ -16812,6 +18855,119 @@ interface components {
|
|
|
16812
18855
|
*/
|
|
16813
18856
|
values: string;
|
|
16814
18857
|
};
|
|
18858
|
+
/** ToolOutputBoolean */
|
|
18859
|
+
ToolOutputBoolean: {
|
|
18860
|
+
/**
|
|
18861
|
+
* Hidden
|
|
18862
|
+
* @description If true, the output will not be shown in the history.
|
|
18863
|
+
*/
|
|
18864
|
+
hidden: unknown;
|
|
18865
|
+
/** Label */
|
|
18866
|
+
label?: string | null;
|
|
18867
|
+
/**
|
|
18868
|
+
* Name
|
|
18869
|
+
* @description Parameter name. Used when referencing parameter in workflows.
|
|
18870
|
+
*/
|
|
18871
|
+
name: unknown;
|
|
18872
|
+
/**
|
|
18873
|
+
* @description discriminator enum property added by openapi-typescript
|
|
18874
|
+
* @enum {string}
|
|
18875
|
+
*/
|
|
18876
|
+
type: "boolean";
|
|
18877
|
+
};
|
|
18878
|
+
/** ToolOutputCollectionStructure */
|
|
18879
|
+
ToolOutputCollectionStructure: {
|
|
18880
|
+
/** Collection Type */
|
|
18881
|
+
collection_type?: string | null;
|
|
18882
|
+
/** Collection Type From Rules */
|
|
18883
|
+
collection_type_from_rules?: string | null;
|
|
18884
|
+
/** Collection Type Source */
|
|
18885
|
+
collection_type_source?: string | null;
|
|
18886
|
+
/** Discover Datasets */
|
|
18887
|
+
discover_datasets?: (components["schemas"]["FilePatternDatasetCollectionDescription"] | components["schemas"]["ToolProvidedMetadataDatasetCollection"])[] | null;
|
|
18888
|
+
/** Structured Like */
|
|
18889
|
+
structured_like?: string | null;
|
|
18890
|
+
};
|
|
18891
|
+
/** ToolOutputFloat */
|
|
18892
|
+
ToolOutputFloat: {
|
|
18893
|
+
/**
|
|
18894
|
+
* Hidden
|
|
18895
|
+
* @description If true, the output will not be shown in the history.
|
|
18896
|
+
*/
|
|
18897
|
+
hidden: unknown;
|
|
18898
|
+
/** Label */
|
|
18899
|
+
label?: string | null;
|
|
18900
|
+
/**
|
|
18901
|
+
* Name
|
|
18902
|
+
* @description Parameter name. Used when referencing parameter in workflows.
|
|
18903
|
+
*/
|
|
18904
|
+
name: unknown;
|
|
18905
|
+
/**
|
|
18906
|
+
* @description discriminator enum property added by openapi-typescript
|
|
18907
|
+
* @enum {string}
|
|
18908
|
+
*/
|
|
18909
|
+
type: "float";
|
|
18910
|
+
};
|
|
18911
|
+
/** ToolOutputInteger */
|
|
18912
|
+
ToolOutputInteger: {
|
|
18913
|
+
/**
|
|
18914
|
+
* Hidden
|
|
18915
|
+
* @description If true, the output will not be shown in the history.
|
|
18916
|
+
*/
|
|
18917
|
+
hidden: unknown;
|
|
18918
|
+
/** Label */
|
|
18919
|
+
label?: string | null;
|
|
18920
|
+
/**
|
|
18921
|
+
* Name
|
|
18922
|
+
* @description Parameter name. Used when referencing parameter in workflows.
|
|
18923
|
+
*/
|
|
18924
|
+
name: unknown;
|
|
18925
|
+
/**
|
|
18926
|
+
* @description discriminator enum property added by openapi-typescript
|
|
18927
|
+
* @enum {string}
|
|
18928
|
+
*/
|
|
18929
|
+
type: "integer";
|
|
18930
|
+
};
|
|
18931
|
+
/** ToolOutputText */
|
|
18932
|
+
ToolOutputText: {
|
|
18933
|
+
/**
|
|
18934
|
+
* Hidden
|
|
18935
|
+
* @description If true, the output will not be shown in the history.
|
|
18936
|
+
*/
|
|
18937
|
+
hidden: unknown;
|
|
18938
|
+
/** Label */
|
|
18939
|
+
label?: string | null;
|
|
18940
|
+
/**
|
|
18941
|
+
* Name
|
|
18942
|
+
* @description Parameter name. Used when referencing parameter in workflows.
|
|
18943
|
+
*/
|
|
18944
|
+
name: unknown;
|
|
18945
|
+
/**
|
|
18946
|
+
* @description discriminator enum property added by openapi-typescript
|
|
18947
|
+
* @enum {string}
|
|
18948
|
+
*/
|
|
18949
|
+
type: "text";
|
|
18950
|
+
};
|
|
18951
|
+
/** ToolProvidedMetadataDatasetCollection */
|
|
18952
|
+
ToolProvidedMetadataDatasetCollection: {
|
|
18953
|
+
/** Assign Primary Output */
|
|
18954
|
+
assign_primary_output: boolean;
|
|
18955
|
+
/** Directory */
|
|
18956
|
+
directory: string | null;
|
|
18957
|
+
/**
|
|
18958
|
+
* Discover Via
|
|
18959
|
+
* @constant
|
|
18960
|
+
*/
|
|
18961
|
+
discover_via: "tool_provided_metadata";
|
|
18962
|
+
/** Format */
|
|
18963
|
+
format: string | null;
|
|
18964
|
+
/** Match Relative Path */
|
|
18965
|
+
match_relative_path: boolean;
|
|
18966
|
+
/** Recurse */
|
|
18967
|
+
recurse: boolean;
|
|
18968
|
+
/** Visible */
|
|
18969
|
+
visible: boolean;
|
|
18970
|
+
};
|
|
16815
18971
|
/** ToolReportForDataset */
|
|
16816
18972
|
ToolReportForDataset: {
|
|
16817
18973
|
/**
|
|
@@ -16987,6 +19143,30 @@ interface components {
|
|
|
16987
19143
|
*/
|
|
16988
19144
|
ids: string[];
|
|
16989
19145
|
};
|
|
19146
|
+
/** UnprivilegedToolResponse */
|
|
19147
|
+
UnprivilegedToolResponse: {
|
|
19148
|
+
/** Active */
|
|
19149
|
+
active: boolean;
|
|
19150
|
+
/**
|
|
19151
|
+
* Create Time
|
|
19152
|
+
* Format: date-time
|
|
19153
|
+
*/
|
|
19154
|
+
create_time: string;
|
|
19155
|
+
/** Hidden */
|
|
19156
|
+
hidden: boolean;
|
|
19157
|
+
/**
|
|
19158
|
+
* Id
|
|
19159
|
+
* @example 0123456789ABCDEF
|
|
19160
|
+
*/
|
|
19161
|
+
id: string;
|
|
19162
|
+
representation: components["schemas"]["UserToolSource-Output"];
|
|
19163
|
+
/** Tool Format */
|
|
19164
|
+
tool_format: string | null;
|
|
19165
|
+
/** Tool Id */
|
|
19166
|
+
tool_id: string | null;
|
|
19167
|
+
/** Uuid */
|
|
19168
|
+
uuid: string;
|
|
19169
|
+
};
|
|
16990
19170
|
/** UpdateAnnotationAction */
|
|
16991
19171
|
UpdateAnnotationAction: {
|
|
16992
19172
|
/**
|
|
@@ -17822,6 +20002,144 @@ interface components {
|
|
|
17822
20002
|
/** Total Disk Usage */
|
|
17823
20003
|
total_disk_usage: number;
|
|
17824
20004
|
};
|
|
20005
|
+
/** UserToolSource */
|
|
20006
|
+
"UserToolSource-Input": {
|
|
20007
|
+
/** Citations */
|
|
20008
|
+
citations?: components["schemas"]["Citation"][] | null;
|
|
20009
|
+
/**
|
|
20010
|
+
* @description discriminator enum property added by openapi-typescript
|
|
20011
|
+
* @enum {string}
|
|
20012
|
+
*/
|
|
20013
|
+
class: "GalaxyUserTool";
|
|
20014
|
+
/**
|
|
20015
|
+
* Container
|
|
20016
|
+
* @description Container image to use for this tool.
|
|
20017
|
+
*/
|
|
20018
|
+
container: string;
|
|
20019
|
+
/**
|
|
20020
|
+
* Description
|
|
20021
|
+
* @description The description is displayed in the tool menu immediately following the hyperlink for the tool.
|
|
20022
|
+
*/
|
|
20023
|
+
description?: string | null;
|
|
20024
|
+
/** Edam Operations */
|
|
20025
|
+
edam_operations?: string[] | null;
|
|
20026
|
+
/** Edam Topics */
|
|
20027
|
+
edam_topics?: string[] | null;
|
|
20028
|
+
/** @description Help text shown below the tool interface. */
|
|
20029
|
+
help?: components["schemas"]["HelpContent"] | null;
|
|
20030
|
+
/**
|
|
20031
|
+
* Id
|
|
20032
|
+
* @description Unique identifier for the tool. Should be all lower-case and should not include whitespace.
|
|
20033
|
+
*/
|
|
20034
|
+
id: string;
|
|
20035
|
+
/**
|
|
20036
|
+
* Inputs
|
|
20037
|
+
* @default []
|
|
20038
|
+
*/
|
|
20039
|
+
inputs: components["schemas"]["GalaxyToolParameterModel-Input"][];
|
|
20040
|
+
/**
|
|
20041
|
+
* License
|
|
20042
|
+
* @description A full URI or a a short [SPDX](https://spdx.org/licenses/) identifier for a license for this tool wrapper. The tool wrapper license can be independent of the underlying tool license. This license covers the tool yaml and associated scripts shipped with the tool.
|
|
20043
|
+
*/
|
|
20044
|
+
license?: string | null;
|
|
20045
|
+
/**
|
|
20046
|
+
* Name
|
|
20047
|
+
* @description The name of the tool, displayed in the tool menu. This is not the same as the tool id, which is a unique identifier for the tool.
|
|
20048
|
+
*/
|
|
20049
|
+
name: string;
|
|
20050
|
+
/**
|
|
20051
|
+
* Outputs
|
|
20052
|
+
* @default []
|
|
20053
|
+
*/
|
|
20054
|
+
outputs: (components["schemas"]["IncomingToolOutputDataset"] | components["schemas"]["IncomingToolOutputCollection-Input"] | components["schemas"]["ToolOutputText"] | components["schemas"]["ToolOutputInteger"] | components["schemas"]["ToolOutputFloat"] | components["schemas"]["ToolOutputBoolean"])[];
|
|
20055
|
+
/**
|
|
20056
|
+
* Requirements
|
|
20057
|
+
* @description A list of requirements needed to execute this tool. These can be javascript expressions, resource requirements or container images.
|
|
20058
|
+
* @default []
|
|
20059
|
+
*/
|
|
20060
|
+
requirements: (components["schemas"]["JavascriptRequirement"] | components["schemas"]["ResourceRequirement"] | components["schemas"]["ContainerRequirement"])[] | null;
|
|
20061
|
+
/**
|
|
20062
|
+
* shell_command
|
|
20063
|
+
* @description A string that contains the command to be executed. Parameters can be referenced inside $().
|
|
20064
|
+
*/
|
|
20065
|
+
shell_command: string;
|
|
20066
|
+
/**
|
|
20067
|
+
* Version
|
|
20068
|
+
* @description Version for the tool.
|
|
20069
|
+
*/
|
|
20070
|
+
version: string;
|
|
20071
|
+
/** Xrefs */
|
|
20072
|
+
xrefs?: components["schemas"]["XrefDict"][] | null;
|
|
20073
|
+
};
|
|
20074
|
+
/** UserToolSource */
|
|
20075
|
+
"UserToolSource-Output": {
|
|
20076
|
+
/** Citations */
|
|
20077
|
+
citations?: components["schemas"]["Citation"][] | null;
|
|
20078
|
+
/**
|
|
20079
|
+
* Class
|
|
20080
|
+
* @constant
|
|
20081
|
+
*/
|
|
20082
|
+
class: "GalaxyUserTool";
|
|
20083
|
+
/**
|
|
20084
|
+
* Container
|
|
20085
|
+
* @description Container image to use for this tool.
|
|
20086
|
+
*/
|
|
20087
|
+
container: string;
|
|
20088
|
+
/**
|
|
20089
|
+
* Description
|
|
20090
|
+
* @description The description is displayed in the tool menu immediately following the hyperlink for the tool.
|
|
20091
|
+
*/
|
|
20092
|
+
description?: string | null;
|
|
20093
|
+
/** Edam Operations */
|
|
20094
|
+
edam_operations?: string[] | null;
|
|
20095
|
+
/** Edam Topics */
|
|
20096
|
+
edam_topics?: string[] | null;
|
|
20097
|
+
/** @description Help text shown below the tool interface. */
|
|
20098
|
+
help?: components["schemas"]["HelpContent"] | null;
|
|
20099
|
+
/**
|
|
20100
|
+
* Id
|
|
20101
|
+
* @description Unique identifier for the tool. Should be all lower-case and should not include whitespace.
|
|
20102
|
+
*/
|
|
20103
|
+
id: string;
|
|
20104
|
+
/**
|
|
20105
|
+
* Inputs
|
|
20106
|
+
* @default []
|
|
20107
|
+
*/
|
|
20108
|
+
inputs: components["schemas"]["GalaxyToolParameterModel-Output"][];
|
|
20109
|
+
/**
|
|
20110
|
+
* License
|
|
20111
|
+
* @description A full URI or a a short [SPDX](https://spdx.org/licenses/) identifier for a license for this tool wrapper. The tool wrapper license can be independent of the underlying tool license. This license covers the tool yaml and associated scripts shipped with the tool.
|
|
20112
|
+
*/
|
|
20113
|
+
license?: string | null;
|
|
20114
|
+
/**
|
|
20115
|
+
* Name
|
|
20116
|
+
* @description The name of the tool, displayed in the tool menu. This is not the same as the tool id, which is a unique identifier for the tool.
|
|
20117
|
+
*/
|
|
20118
|
+
name: string;
|
|
20119
|
+
/**
|
|
20120
|
+
* Outputs
|
|
20121
|
+
* @default []
|
|
20122
|
+
*/
|
|
20123
|
+
outputs: (components["schemas"]["IncomingToolOutputDataset"] | components["schemas"]["IncomingToolOutputCollection-Output"] | components["schemas"]["ToolOutputText"] | components["schemas"]["ToolOutputInteger"] | components["schemas"]["ToolOutputFloat"] | components["schemas"]["ToolOutputBoolean"])[];
|
|
20124
|
+
/**
|
|
20125
|
+
* Requirements
|
|
20126
|
+
* @description A list of requirements needed to execute this tool. These can be javascript expressions, resource requirements or container images.
|
|
20127
|
+
* @default []
|
|
20128
|
+
*/
|
|
20129
|
+
requirements: (components["schemas"]["JavascriptRequirement"] | components["schemas"]["ResourceRequirement"] | components["schemas"]["ContainerRequirement"])[] | null;
|
|
20130
|
+
/**
|
|
20131
|
+
* shell_command
|
|
20132
|
+
* @description A string that contains the command to be executed. Parameters can be referenced inside $().
|
|
20133
|
+
*/
|
|
20134
|
+
shell_command: string;
|
|
20135
|
+
/**
|
|
20136
|
+
* Version
|
|
20137
|
+
* @description Version for the tool.
|
|
20138
|
+
*/
|
|
20139
|
+
version: string;
|
|
20140
|
+
/** Xrefs */
|
|
20141
|
+
xrefs?: components["schemas"]["XrefDict"][] | null;
|
|
20142
|
+
};
|
|
17825
20143
|
/** UserUpdatePayload */
|
|
17826
20144
|
UserUpdatePayload: {
|
|
17827
20145
|
/**
|
|
@@ -17907,13 +20225,6 @@ interface components {
|
|
|
17907
20225
|
entry_point: {
|
|
17908
20226
|
[key: string]: unknown;
|
|
17909
20227
|
};
|
|
17910
|
-
/**
|
|
17911
|
-
* Groups
|
|
17912
|
-
* @description The groups of the plugin.
|
|
17913
|
-
*/
|
|
17914
|
-
groups?: {
|
|
17915
|
-
[key: string]: unknown;
|
|
17916
|
-
}[] | null;
|
|
17917
20228
|
/**
|
|
17918
20229
|
* Href
|
|
17919
20230
|
* @description The href of the plugin.
|
|
@@ -17938,9 +20249,9 @@ interface components {
|
|
|
17938
20249
|
* Settings
|
|
17939
20250
|
* @description The settings of the plugin.
|
|
17940
20251
|
*/
|
|
17941
|
-
settings
|
|
20252
|
+
settings?: {
|
|
17942
20253
|
[key: string]: unknown;
|
|
17943
|
-
}[];
|
|
20254
|
+
}[] | null;
|
|
17944
20255
|
/**
|
|
17945
20256
|
* Specs
|
|
17946
20257
|
* @description The specs of the plugin.
|
|
@@ -17958,6 +20269,13 @@ interface components {
|
|
|
17958
20269
|
* @description The title of the plugin.
|
|
17959
20270
|
*/
|
|
17960
20271
|
title?: string | null;
|
|
20272
|
+
/**
|
|
20273
|
+
* Tracks
|
|
20274
|
+
* @description The tracks of the plugin.
|
|
20275
|
+
*/
|
|
20276
|
+
tracks?: {
|
|
20277
|
+
[key: string]: unknown;
|
|
20278
|
+
}[] | null;
|
|
17961
20279
|
};
|
|
17962
20280
|
/** VisualizationRevisionResponse */
|
|
17963
20281
|
VisualizationRevisionResponse: {
|
|
@@ -18624,6 +20942,13 @@ interface components {
|
|
|
18624
20942
|
*/
|
|
18625
20943
|
target_uri: string;
|
|
18626
20944
|
};
|
|
20945
|
+
/** XrefDict */
|
|
20946
|
+
XrefDict: {
|
|
20947
|
+
/** Type */
|
|
20948
|
+
type: string;
|
|
20949
|
+
/** Value */
|
|
20950
|
+
value: string;
|
|
20951
|
+
};
|
|
18627
20952
|
/** XrefItem */
|
|
18628
20953
|
XrefItem: {
|
|
18629
20954
|
/**
|
|
@@ -19339,16 +21664,150 @@ interface operations {
|
|
|
19339
21664
|
};
|
|
19340
21665
|
};
|
|
19341
21666
|
};
|
|
19342
|
-
contents_dataset_collection_api_dataset_collections__hdca_id__contents__parent_id__get: {
|
|
21667
|
+
contents_dataset_collection_api_dataset_collections__hdca_id__contents__parent_id__get: {
|
|
21668
|
+
parameters: {
|
|
21669
|
+
query?: {
|
|
21670
|
+
/** @description The type of collection instance. Either `history` (default) or `library`. */
|
|
21671
|
+
instance_type?: "history" | "library";
|
|
21672
|
+
/** @description The maximum number of content elements to return. */
|
|
21673
|
+
limit?: number | null;
|
|
21674
|
+
/** @description The number of content elements that will be skipped before returning. */
|
|
21675
|
+
offset?: number | null;
|
|
21676
|
+
};
|
|
21677
|
+
header?: {
|
|
21678
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
21679
|
+
"run-as"?: string | null;
|
|
21680
|
+
};
|
|
21681
|
+
path: {
|
|
21682
|
+
/** @description The ID of the `HDCA`. */
|
|
21683
|
+
hdca_id: string;
|
|
21684
|
+
/** @description Parent collection ID describing what collection the contents belongs to. */
|
|
21685
|
+
parent_id: string;
|
|
21686
|
+
};
|
|
21687
|
+
cookie?: never;
|
|
21688
|
+
};
|
|
21689
|
+
requestBody?: never;
|
|
21690
|
+
responses: {
|
|
21691
|
+
/** @description Successful Response */
|
|
21692
|
+
200: {
|
|
21693
|
+
headers: {
|
|
21694
|
+
[name: string]: unknown;
|
|
21695
|
+
};
|
|
21696
|
+
content: {
|
|
21697
|
+
"application/json": components["schemas"]["DatasetCollectionContentElements"];
|
|
21698
|
+
};
|
|
21699
|
+
};
|
|
21700
|
+
/** @description Request Error */
|
|
21701
|
+
"4XX": {
|
|
21702
|
+
headers: {
|
|
21703
|
+
[name: string]: unknown;
|
|
21704
|
+
};
|
|
21705
|
+
content: {
|
|
21706
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
21707
|
+
};
|
|
21708
|
+
};
|
|
21709
|
+
/** @description Server Error */
|
|
21710
|
+
"5XX": {
|
|
21711
|
+
headers: {
|
|
21712
|
+
[name: string]: unknown;
|
|
21713
|
+
};
|
|
21714
|
+
content: {
|
|
21715
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
21716
|
+
};
|
|
21717
|
+
};
|
|
21718
|
+
};
|
|
21719
|
+
};
|
|
21720
|
+
copy_api_dataset_collections__hdca_id__copy_post: {
|
|
21721
|
+
parameters: {
|
|
21722
|
+
query?: never;
|
|
21723
|
+
header?: {
|
|
21724
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
21725
|
+
"run-as"?: string | null;
|
|
21726
|
+
};
|
|
21727
|
+
path: {
|
|
21728
|
+
/** @description The ID of the `HDCA`. */
|
|
21729
|
+
hdca_id: string;
|
|
21730
|
+
};
|
|
21731
|
+
cookie?: never;
|
|
21732
|
+
};
|
|
21733
|
+
requestBody: {
|
|
21734
|
+
content: {
|
|
21735
|
+
"application/json": components["schemas"]["UpdateCollectionAttributePayload"];
|
|
21736
|
+
};
|
|
21737
|
+
};
|
|
21738
|
+
responses: {
|
|
21739
|
+
/** @description Successful Response */
|
|
21740
|
+
204: {
|
|
21741
|
+
headers: {
|
|
21742
|
+
[name: string]: unknown;
|
|
21743
|
+
};
|
|
21744
|
+
content?: never;
|
|
21745
|
+
};
|
|
21746
|
+
/** @description Request Error */
|
|
21747
|
+
"4XX": {
|
|
21748
|
+
headers: {
|
|
21749
|
+
[name: string]: unknown;
|
|
21750
|
+
};
|
|
21751
|
+
content: {
|
|
21752
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
21753
|
+
};
|
|
21754
|
+
};
|
|
21755
|
+
/** @description Server Error */
|
|
21756
|
+
"5XX": {
|
|
21757
|
+
headers: {
|
|
21758
|
+
[name: string]: unknown;
|
|
21759
|
+
};
|
|
21760
|
+
content: {
|
|
21761
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
21762
|
+
};
|
|
21763
|
+
};
|
|
21764
|
+
};
|
|
21765
|
+
};
|
|
21766
|
+
dataset_collections__download: {
|
|
21767
|
+
parameters: {
|
|
21768
|
+
query?: never;
|
|
21769
|
+
header?: {
|
|
21770
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
21771
|
+
"run-as"?: string | null;
|
|
21772
|
+
};
|
|
21773
|
+
path: {
|
|
21774
|
+
/** @description The ID of the `HDCA`. */
|
|
21775
|
+
hdca_id: string;
|
|
21776
|
+
};
|
|
21777
|
+
cookie?: never;
|
|
21778
|
+
};
|
|
21779
|
+
requestBody?: never;
|
|
21780
|
+
responses: {
|
|
21781
|
+
/** @description Successful Response */
|
|
21782
|
+
200: {
|
|
21783
|
+
headers: {
|
|
21784
|
+
[name: string]: unknown;
|
|
21785
|
+
};
|
|
21786
|
+
content?: never;
|
|
21787
|
+
};
|
|
21788
|
+
/** @description Request Error */
|
|
21789
|
+
"4XX": {
|
|
21790
|
+
headers: {
|
|
21791
|
+
[name: string]: unknown;
|
|
21792
|
+
};
|
|
21793
|
+
content: {
|
|
21794
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
21795
|
+
};
|
|
21796
|
+
};
|
|
21797
|
+
/** @description Server Error */
|
|
21798
|
+
"5XX": {
|
|
21799
|
+
headers: {
|
|
21800
|
+
[name: string]: unknown;
|
|
21801
|
+
};
|
|
21802
|
+
content: {
|
|
21803
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
21804
|
+
};
|
|
21805
|
+
};
|
|
21806
|
+
};
|
|
21807
|
+
};
|
|
21808
|
+
prepare_collection_download_api_dataset_collections__hdca_id__prepare_download_post: {
|
|
19343
21809
|
parameters: {
|
|
19344
|
-
query?:
|
|
19345
|
-
/** @description The type of collection instance. Either `history` (default) or `library`. */
|
|
19346
|
-
instance_type?: "history" | "library";
|
|
19347
|
-
/** @description The maximum number of content elements to return. */
|
|
19348
|
-
limit?: number | null;
|
|
19349
|
-
/** @description The number of content elements that will be skipped before returning. */
|
|
19350
|
-
offset?: number | null;
|
|
19351
|
-
};
|
|
21810
|
+
query?: never;
|
|
19352
21811
|
header?: {
|
|
19353
21812
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
19354
21813
|
"run-as"?: string | null;
|
|
@@ -19356,22 +21815,27 @@ interface operations {
|
|
|
19356
21815
|
path: {
|
|
19357
21816
|
/** @description The ID of the `HDCA`. */
|
|
19358
21817
|
hdca_id: string;
|
|
19359
|
-
/** @description Parent collection ID describing what collection the contents belongs to. */
|
|
19360
|
-
parent_id: string;
|
|
19361
21818
|
};
|
|
19362
21819
|
cookie?: never;
|
|
19363
21820
|
};
|
|
19364
21821
|
requestBody?: never;
|
|
19365
21822
|
responses: {
|
|
19366
|
-
/** @description
|
|
21823
|
+
/** @description Short term storage reference for async monitoring of this download. */
|
|
19367
21824
|
200: {
|
|
19368
21825
|
headers: {
|
|
19369
21826
|
[name: string]: unknown;
|
|
19370
21827
|
};
|
|
19371
21828
|
content: {
|
|
19372
|
-
"application/json": components["schemas"]["
|
|
21829
|
+
"application/json": components["schemas"]["AsyncFile"];
|
|
19373
21830
|
};
|
|
19374
21831
|
};
|
|
21832
|
+
/** @description Required asynchronous tasks required for this operation not available. */
|
|
21833
|
+
501: {
|
|
21834
|
+
headers: {
|
|
21835
|
+
[name: string]: unknown;
|
|
21836
|
+
};
|
|
21837
|
+
content?: never;
|
|
21838
|
+
};
|
|
19375
21839
|
/** @description Request Error */
|
|
19376
21840
|
"4XX": {
|
|
19377
21841
|
headers: {
|
|
@@ -19392,9 +21856,12 @@ interface operations {
|
|
|
19392
21856
|
};
|
|
19393
21857
|
};
|
|
19394
21858
|
};
|
|
19395
|
-
|
|
21859
|
+
suitable_converters_api_dataset_collections__hdca_id__suitable_converters_get: {
|
|
19396
21860
|
parameters: {
|
|
19397
|
-
query?:
|
|
21861
|
+
query?: {
|
|
21862
|
+
/** @description The type of collection instance. Either `history` (default) or `library`. */
|
|
21863
|
+
instance_type?: "history" | "library";
|
|
21864
|
+
};
|
|
19398
21865
|
header?: {
|
|
19399
21866
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
19400
21867
|
"run-as"?: string | null;
|
|
@@ -19405,18 +21872,16 @@ interface operations {
|
|
|
19405
21872
|
};
|
|
19406
21873
|
cookie?: never;
|
|
19407
21874
|
};
|
|
19408
|
-
requestBody
|
|
19409
|
-
content: {
|
|
19410
|
-
"application/json": components["schemas"]["UpdateCollectionAttributePayload"];
|
|
19411
|
-
};
|
|
19412
|
-
};
|
|
21875
|
+
requestBody?: never;
|
|
19413
21876
|
responses: {
|
|
19414
21877
|
/** @description Successful Response */
|
|
19415
|
-
|
|
21878
|
+
200: {
|
|
19416
21879
|
headers: {
|
|
19417
21880
|
[name: string]: unknown;
|
|
19418
21881
|
};
|
|
19419
|
-
content
|
|
21882
|
+
content: {
|
|
21883
|
+
"application/json": components["schemas"]["SuitableConverters"];
|
|
21884
|
+
};
|
|
19420
21885
|
};
|
|
19421
21886
|
/** @description Request Error */
|
|
19422
21887
|
"4XX": {
|
|
@@ -19438,17 +21903,31 @@ interface operations {
|
|
|
19438
21903
|
};
|
|
19439
21904
|
};
|
|
19440
21905
|
};
|
|
19441
|
-
|
|
21906
|
+
index_api_datasets_get: {
|
|
19442
21907
|
parameters: {
|
|
19443
|
-
query?:
|
|
21908
|
+
query?: {
|
|
21909
|
+
/** @description Optional identifier of a History. Use it to restrict the search within a particular History. */
|
|
21910
|
+
history_id?: string | null;
|
|
21911
|
+
/** @description View to be passed to the serializer */
|
|
21912
|
+
view?: string | null;
|
|
21913
|
+
/** @description Comma-separated list of keys to be passed to the serializer */
|
|
21914
|
+
keys?: string | null;
|
|
21915
|
+
/** @description Generally a property name to filter by followed by an (often optional) hyphen and operator string. */
|
|
21916
|
+
q?: string[] | null;
|
|
21917
|
+
/** @description The value to filter by. */
|
|
21918
|
+
qv?: string[] | null;
|
|
21919
|
+
/** @description Starts at the beginning skip the first ( offset - 1 ) items and begin returning at the Nth item */
|
|
21920
|
+
offset?: number | null;
|
|
21921
|
+
/** @description The maximum number of items to return. */
|
|
21922
|
+
limit?: number | null;
|
|
21923
|
+
/** @description String containing one of the valid ordering attributes followed (optionally) by '-asc' or '-dsc' for ascending and descending order respectively. Orders can be stacked as a comma-separated list of values. */
|
|
21924
|
+
order?: string | null;
|
|
21925
|
+
};
|
|
19444
21926
|
header?: {
|
|
19445
21927
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
19446
21928
|
"run-as"?: string | null;
|
|
19447
21929
|
};
|
|
19448
|
-
path
|
|
19449
|
-
/** @description The ID of the `HDCA`. */
|
|
19450
|
-
hdca_id: string;
|
|
19451
|
-
};
|
|
21930
|
+
path?: never;
|
|
19452
21931
|
cookie?: never;
|
|
19453
21932
|
};
|
|
19454
21933
|
requestBody?: never;
|
|
@@ -19458,7 +21937,9 @@ interface operations {
|
|
|
19458
21937
|
headers: {
|
|
19459
21938
|
[name: string]: unknown;
|
|
19460
21939
|
};
|
|
19461
|
-
content
|
|
21940
|
+
content: {
|
|
21941
|
+
"application/json": (components["schemas"]["HDACustom"] | components["schemas"]["HDADetailed"] | components["schemas"]["HDASummary"] | components["schemas"]["HDAInaccessible"] | components["schemas"]["HDCACustom"] | components["schemas"]["HDCADetailed"] | components["schemas"]["HDCASummary"])[];
|
|
21942
|
+
};
|
|
19462
21943
|
};
|
|
19463
21944
|
/** @description Request Error */
|
|
19464
21945
|
"4XX": {
|
|
@@ -19480,37 +21961,31 @@ interface operations {
|
|
|
19480
21961
|
};
|
|
19481
21962
|
};
|
|
19482
21963
|
};
|
|
19483
|
-
|
|
21964
|
+
delete_batch_api_datasets_delete: {
|
|
19484
21965
|
parameters: {
|
|
19485
21966
|
query?: never;
|
|
19486
21967
|
header?: {
|
|
19487
21968
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
19488
21969
|
"run-as"?: string | null;
|
|
19489
21970
|
};
|
|
19490
|
-
path
|
|
19491
|
-
/** @description The ID of the `HDCA`. */
|
|
19492
|
-
hdca_id: string;
|
|
19493
|
-
};
|
|
21971
|
+
path?: never;
|
|
19494
21972
|
cookie?: never;
|
|
19495
21973
|
};
|
|
19496
|
-
requestBody
|
|
21974
|
+
requestBody: {
|
|
21975
|
+
content: {
|
|
21976
|
+
"application/json": components["schemas"]["DeleteDatasetBatchPayload"];
|
|
21977
|
+
};
|
|
21978
|
+
};
|
|
19497
21979
|
responses: {
|
|
19498
|
-
/** @description
|
|
21980
|
+
/** @description Successful Response */
|
|
19499
21981
|
200: {
|
|
19500
21982
|
headers: {
|
|
19501
21983
|
[name: string]: unknown;
|
|
19502
21984
|
};
|
|
19503
21985
|
content: {
|
|
19504
|
-
"application/json": components["schemas"]["
|
|
21986
|
+
"application/json": components["schemas"]["DeleteDatasetBatchResult"];
|
|
19505
21987
|
};
|
|
19506
21988
|
};
|
|
19507
|
-
/** @description Required asynchronous tasks required for this operation not available. */
|
|
19508
|
-
501: {
|
|
19509
|
-
headers: {
|
|
19510
|
-
[name: string]: unknown;
|
|
19511
|
-
};
|
|
19512
|
-
content?: never;
|
|
19513
|
-
};
|
|
19514
21989
|
/** @description Request Error */
|
|
19515
21990
|
"4XX": {
|
|
19516
21991
|
headers: {
|
|
@@ -19531,19 +22006,29 @@ interface operations {
|
|
|
19531
22006
|
};
|
|
19532
22007
|
};
|
|
19533
22008
|
};
|
|
19534
|
-
|
|
22009
|
+
show_api_datasets__dataset_id__get: {
|
|
19535
22010
|
parameters: {
|
|
19536
22011
|
query?: {
|
|
19537
|
-
/** @description The type of
|
|
19538
|
-
|
|
22012
|
+
/** @description The type of information about the dataset to be requested. */
|
|
22013
|
+
hda_ldda?: components["schemas"]["DatasetSourceType"];
|
|
22014
|
+
/** @description The type of information about the dataset to be requested. Each of these values may require additional parameters in the request and may return different responses. */
|
|
22015
|
+
data_type?: components["schemas"]["RequestDataType"] | null;
|
|
22016
|
+
/** @description Maximum number of items to return. Currently only applies to `data_type=raw_data` requests */
|
|
22017
|
+
limit?: number | null;
|
|
22018
|
+
/** @description Starts at the beginning skip the first ( offset - 1 ) items and begin returning at the Nth item. Currently only applies to `data_type=raw_data` requests */
|
|
22019
|
+
offset?: number | null;
|
|
22020
|
+
/** @description View to be passed to the serializer */
|
|
22021
|
+
view?: string | null;
|
|
22022
|
+
/** @description Comma-separated list of keys to be passed to the serializer */
|
|
22023
|
+
keys?: string | null;
|
|
19539
22024
|
};
|
|
19540
22025
|
header?: {
|
|
19541
22026
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
19542
22027
|
"run-as"?: string | null;
|
|
19543
22028
|
};
|
|
19544
22029
|
path: {
|
|
19545
|
-
/** @description The ID of the
|
|
19546
|
-
|
|
22030
|
+
/** @description The ID of the History Dataset. */
|
|
22031
|
+
dataset_id: string;
|
|
19547
22032
|
};
|
|
19548
22033
|
cookie?: never;
|
|
19549
22034
|
};
|
|
@@ -19555,7 +22040,7 @@ interface operations {
|
|
|
19555
22040
|
[name: string]: unknown;
|
|
19556
22041
|
};
|
|
19557
22042
|
content: {
|
|
19558
|
-
"application/json":
|
|
22043
|
+
"application/json": unknown;
|
|
19559
22044
|
};
|
|
19560
22045
|
};
|
|
19561
22046
|
/** @description Request Error */
|
|
@@ -19578,34 +22063,29 @@ interface operations {
|
|
|
19578
22063
|
};
|
|
19579
22064
|
};
|
|
19580
22065
|
};
|
|
19581
|
-
|
|
22066
|
+
datasets__update_dataset: {
|
|
19582
22067
|
parameters: {
|
|
19583
22068
|
query?: {
|
|
19584
|
-
/** @description Optional identifier of a History. Use it to restrict the search within a particular History. */
|
|
19585
|
-
history_id?: string | null;
|
|
19586
22069
|
/** @description View to be passed to the serializer */
|
|
19587
22070
|
view?: string | null;
|
|
19588
22071
|
/** @description Comma-separated list of keys to be passed to the serializer */
|
|
19589
22072
|
keys?: string | null;
|
|
19590
|
-
/** @description Generally a property name to filter by followed by an (often optional) hyphen and operator string. */
|
|
19591
|
-
q?: string[] | null;
|
|
19592
|
-
/** @description The value to filter by. */
|
|
19593
|
-
qv?: string[] | null;
|
|
19594
|
-
/** @description Starts at the beginning skip the first ( offset - 1 ) items and begin returning at the Nth item */
|
|
19595
|
-
offset?: number | null;
|
|
19596
|
-
/** @description The maximum number of items to return. */
|
|
19597
|
-
limit?: number | null;
|
|
19598
|
-
/** @description String containing one of the valid ordering attributes followed (optionally) by '-asc' or '-dsc' for ascending and descending order respectively. Orders can be stacked as a comma-separated list of values. */
|
|
19599
|
-
order?: string | null;
|
|
19600
22073
|
};
|
|
19601
22074
|
header?: {
|
|
19602
22075
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
19603
22076
|
"run-as"?: string | null;
|
|
19604
22077
|
};
|
|
19605
|
-
path
|
|
22078
|
+
path: {
|
|
22079
|
+
/** @description The ID of the item (`HDA`/`HDCA`) */
|
|
22080
|
+
dataset_id: string;
|
|
22081
|
+
};
|
|
19606
22082
|
cookie?: never;
|
|
19607
22083
|
};
|
|
19608
|
-
requestBody
|
|
22084
|
+
requestBody: {
|
|
22085
|
+
content: {
|
|
22086
|
+
"application/json": components["schemas"]["UpdateHistoryContentsPayload"];
|
|
22087
|
+
};
|
|
22088
|
+
};
|
|
19609
22089
|
responses: {
|
|
19610
22090
|
/** @description Successful Response */
|
|
19611
22091
|
200: {
|
|
@@ -19613,7 +22093,7 @@ interface operations {
|
|
|
19613
22093
|
[name: string]: unknown;
|
|
19614
22094
|
};
|
|
19615
22095
|
content: {
|
|
19616
|
-
"application/json":
|
|
22096
|
+
"application/json": components["schemas"]["HDACustom"] | components["schemas"]["HDADetailed"] | components["schemas"]["HDASummary"] | components["schemas"]["HDAInaccessible"] | components["schemas"]["HDCACustom"] | components["schemas"]["HDCADetailed"] | components["schemas"]["HDCASummary"];
|
|
19617
22097
|
};
|
|
19618
22098
|
};
|
|
19619
22099
|
/** @description Request Error */
|
|
@@ -19636,29 +22116,61 @@ interface operations {
|
|
|
19636
22116
|
};
|
|
19637
22117
|
};
|
|
19638
22118
|
};
|
|
19639
|
-
|
|
22119
|
+
datasets__delete: {
|
|
19640
22120
|
parameters: {
|
|
19641
|
-
query?:
|
|
22121
|
+
query?: {
|
|
22122
|
+
/**
|
|
22123
|
+
* @deprecated
|
|
22124
|
+
* @description Whether to remove from disk the target HDA or child HDAs of the target HDCA.
|
|
22125
|
+
*/
|
|
22126
|
+
purge?: boolean | null;
|
|
22127
|
+
/**
|
|
22128
|
+
* @deprecated
|
|
22129
|
+
* @description When deleting a dataset collection, whether to also delete containing datasets.
|
|
22130
|
+
*/
|
|
22131
|
+
recursive?: boolean | null;
|
|
22132
|
+
/**
|
|
22133
|
+
* @deprecated
|
|
22134
|
+
* @description Whether to stop the creating job if all outputs of the job have been deleted.
|
|
22135
|
+
*/
|
|
22136
|
+
stop_job?: boolean | null;
|
|
22137
|
+
/** @description View to be passed to the serializer */
|
|
22138
|
+
view?: string | null;
|
|
22139
|
+
/** @description Comma-separated list of keys to be passed to the serializer */
|
|
22140
|
+
keys?: string | null;
|
|
22141
|
+
};
|
|
19642
22142
|
header?: {
|
|
19643
22143
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
19644
22144
|
"run-as"?: string | null;
|
|
19645
22145
|
};
|
|
19646
|
-
path
|
|
22146
|
+
path: {
|
|
22147
|
+
/** @description The ID of the item (`HDA`/`HDCA`) */
|
|
22148
|
+
dataset_id: string;
|
|
22149
|
+
};
|
|
19647
22150
|
cookie?: never;
|
|
19648
22151
|
};
|
|
19649
|
-
requestBody
|
|
22152
|
+
requestBody?: {
|
|
19650
22153
|
content: {
|
|
19651
|
-
"application/json": components["schemas"]["
|
|
22154
|
+
"application/json": components["schemas"]["DeleteHistoryContentPayload"];
|
|
19652
22155
|
};
|
|
19653
22156
|
};
|
|
19654
22157
|
responses: {
|
|
19655
|
-
/** @description
|
|
22158
|
+
/** @description Request has been executed. */
|
|
19656
22159
|
200: {
|
|
19657
22160
|
headers: {
|
|
19658
22161
|
[name: string]: unknown;
|
|
19659
22162
|
};
|
|
19660
22163
|
content: {
|
|
19661
|
-
"application/json": components["schemas"]["
|
|
22164
|
+
"application/json": components["schemas"]["DeleteHistoryContentResult"];
|
|
22165
|
+
};
|
|
22166
|
+
};
|
|
22167
|
+
/** @description Request accepted, processing will finish later. */
|
|
22168
|
+
202: {
|
|
22169
|
+
headers: {
|
|
22170
|
+
[name: string]: unknown;
|
|
22171
|
+
};
|
|
22172
|
+
content: {
|
|
22173
|
+
"application/json": components["schemas"]["DeleteHistoryContentResult"];
|
|
19662
22174
|
};
|
|
19663
22175
|
};
|
|
19664
22176
|
/** @description Request Error */
|
|
@@ -19681,22 +22193,9 @@ interface operations {
|
|
|
19681
22193
|
};
|
|
19682
22194
|
};
|
|
19683
22195
|
};
|
|
19684
|
-
|
|
22196
|
+
get_structured_content_api_datasets__dataset_id__content__content_type__get: {
|
|
19685
22197
|
parameters: {
|
|
19686
|
-
query?:
|
|
19687
|
-
/** @description The type of information about the dataset to be requested. */
|
|
19688
|
-
hda_ldda?: components["schemas"]["DatasetSourceType"];
|
|
19689
|
-
/** @description The type of information about the dataset to be requested. Each of these values may require additional parameters in the request and may return different responses. */
|
|
19690
|
-
data_type?: components["schemas"]["RequestDataType"] | null;
|
|
19691
|
-
/** @description Maximum number of items to return. Currently only applies to `data_type=raw_data` requests */
|
|
19692
|
-
limit?: number | null;
|
|
19693
|
-
/** @description Starts at the beginning skip the first ( offset - 1 ) items and begin returning at the Nth item. Currently only applies to `data_type=raw_data` requests */
|
|
19694
|
-
offset?: number | null;
|
|
19695
|
-
/** @description View to be passed to the serializer */
|
|
19696
|
-
view?: string | null;
|
|
19697
|
-
/** @description Comma-separated list of keys to be passed to the serializer */
|
|
19698
|
-
keys?: string | null;
|
|
19699
|
-
};
|
|
22198
|
+
query?: never;
|
|
19700
22199
|
header?: {
|
|
19701
22200
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
19702
22201
|
"run-as"?: string | null;
|
|
@@ -19704,6 +22203,7 @@ interface operations {
|
|
|
19704
22203
|
path: {
|
|
19705
22204
|
/** @description The ID of the History Dataset. */
|
|
19706
22205
|
dataset_id: string;
|
|
22206
|
+
content_type: components["schemas"]["DatasetContentType"];
|
|
19707
22207
|
};
|
|
19708
22208
|
cookie?: never;
|
|
19709
22209
|
};
|
|
@@ -19738,29 +22238,20 @@ interface operations {
|
|
|
19738
22238
|
};
|
|
19739
22239
|
};
|
|
19740
22240
|
};
|
|
19741
|
-
|
|
22241
|
+
converted_api_datasets__dataset_id__converted_get: {
|
|
19742
22242
|
parameters: {
|
|
19743
|
-
query?:
|
|
19744
|
-
/** @description View to be passed to the serializer */
|
|
19745
|
-
view?: string | null;
|
|
19746
|
-
/** @description Comma-separated list of keys to be passed to the serializer */
|
|
19747
|
-
keys?: string | null;
|
|
19748
|
-
};
|
|
22243
|
+
query?: never;
|
|
19749
22244
|
header?: {
|
|
19750
22245
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
19751
22246
|
"run-as"?: string | null;
|
|
19752
22247
|
};
|
|
19753
22248
|
path: {
|
|
19754
|
-
/** @description The ID of the
|
|
22249
|
+
/** @description The ID of the History Dataset. */
|
|
19755
22250
|
dataset_id: string;
|
|
19756
22251
|
};
|
|
19757
22252
|
cookie?: never;
|
|
19758
22253
|
};
|
|
19759
|
-
requestBody
|
|
19760
|
-
content: {
|
|
19761
|
-
"application/json": components["schemas"]["UpdateHistoryContentsPayload"];
|
|
19762
|
-
};
|
|
19763
|
-
};
|
|
22254
|
+
requestBody?: never;
|
|
19764
22255
|
responses: {
|
|
19765
22256
|
/** @description Successful Response */
|
|
19766
22257
|
200: {
|
|
@@ -19768,7 +22259,7 @@ interface operations {
|
|
|
19768
22259
|
[name: string]: unknown;
|
|
19769
22260
|
};
|
|
19770
22261
|
content: {
|
|
19771
|
-
"application/json": components["schemas"]["
|
|
22262
|
+
"application/json": components["schemas"]["ConvertedDatasetsMap"];
|
|
19772
22263
|
};
|
|
19773
22264
|
};
|
|
19774
22265
|
/** @description Request Error */
|
|
@@ -19791,24 +22282,9 @@ interface operations {
|
|
|
19791
22282
|
};
|
|
19792
22283
|
};
|
|
19793
22284
|
};
|
|
19794
|
-
|
|
22285
|
+
converted_ext_api_datasets__dataset_id__converted__ext__get: {
|
|
19795
22286
|
parameters: {
|
|
19796
22287
|
query?: {
|
|
19797
|
-
/**
|
|
19798
|
-
* @deprecated
|
|
19799
|
-
* @description Whether to remove from disk the target HDA or child HDAs of the target HDCA.
|
|
19800
|
-
*/
|
|
19801
|
-
purge?: boolean | null;
|
|
19802
|
-
/**
|
|
19803
|
-
* @deprecated
|
|
19804
|
-
* @description When deleting a dataset collection, whether to also delete containing datasets.
|
|
19805
|
-
*/
|
|
19806
|
-
recursive?: boolean | null;
|
|
19807
|
-
/**
|
|
19808
|
-
* @deprecated
|
|
19809
|
-
* @description Whether to stop the creating job if all outputs of the job have been deleted.
|
|
19810
|
-
*/
|
|
19811
|
-
stop_job?: boolean | null;
|
|
19812
22288
|
/** @description View to be passed to the serializer */
|
|
19813
22289
|
view?: string | null;
|
|
19814
22290
|
/** @description Comma-separated list of keys to be passed to the serializer */
|
|
@@ -19819,33 +22295,22 @@ interface operations {
|
|
|
19819
22295
|
"run-as"?: string | null;
|
|
19820
22296
|
};
|
|
19821
22297
|
path: {
|
|
19822
|
-
/** @description The ID of the
|
|
22298
|
+
/** @description The ID of the History Dataset. */
|
|
19823
22299
|
dataset_id: string;
|
|
22300
|
+
/** @description File extension of the new format to convert this dataset to. */
|
|
22301
|
+
ext: string;
|
|
19824
22302
|
};
|
|
19825
22303
|
cookie?: never;
|
|
19826
22304
|
};
|
|
19827
|
-
requestBody?:
|
|
19828
|
-
content: {
|
|
19829
|
-
"application/json": components["schemas"]["DeleteHistoryContentPayload"];
|
|
19830
|
-
};
|
|
19831
|
-
};
|
|
22305
|
+
requestBody?: never;
|
|
19832
22306
|
responses: {
|
|
19833
|
-
/** @description
|
|
22307
|
+
/** @description Successful Response */
|
|
19834
22308
|
200: {
|
|
19835
22309
|
headers: {
|
|
19836
22310
|
[name: string]: unknown;
|
|
19837
22311
|
};
|
|
19838
22312
|
content: {
|
|
19839
|
-
"application/json": components["schemas"]["
|
|
19840
|
-
};
|
|
19841
|
-
};
|
|
19842
|
-
/** @description Request accepted, processing will finish later. */
|
|
19843
|
-
202: {
|
|
19844
|
-
headers: {
|
|
19845
|
-
[name: string]: unknown;
|
|
19846
|
-
};
|
|
19847
|
-
content: {
|
|
19848
|
-
"application/json": components["schemas"]["DeleteHistoryContentResult"];
|
|
22313
|
+
"application/json": components["schemas"]["HDACustom"] | components["schemas"]["HDADetailed"] | components["schemas"]["HDASummary"] | components["schemas"]["HDAInaccessible"];
|
|
19849
22314
|
};
|
|
19850
22315
|
};
|
|
19851
22316
|
/** @description Request Error */
|
|
@@ -19868,7 +22333,7 @@ interface operations {
|
|
|
19868
22333
|
};
|
|
19869
22334
|
};
|
|
19870
22335
|
};
|
|
19871
|
-
|
|
22336
|
+
extra_files_api_datasets__dataset_id__extra_files_get: {
|
|
19872
22337
|
parameters: {
|
|
19873
22338
|
query?: never;
|
|
19874
22339
|
header?: {
|
|
@@ -19876,9 +22341,8 @@ interface operations {
|
|
|
19876
22341
|
"run-as"?: string | null;
|
|
19877
22342
|
};
|
|
19878
22343
|
path: {
|
|
19879
|
-
/** @description The
|
|
22344
|
+
/** @description The encoded database identifier of the dataset. */
|
|
19880
22345
|
dataset_id: string;
|
|
19881
|
-
content_type: components["schemas"]["DatasetContentType"];
|
|
19882
22346
|
};
|
|
19883
22347
|
cookie?: never;
|
|
19884
22348
|
};
|
|
@@ -19890,7 +22354,7 @@ interface operations {
|
|
|
19890
22354
|
[name: string]: unknown;
|
|
19891
22355
|
};
|
|
19892
22356
|
content: {
|
|
19893
|
-
"application/json":
|
|
22357
|
+
"application/json": components["schemas"]["DatasetExtraFiles"];
|
|
19894
22358
|
};
|
|
19895
22359
|
};
|
|
19896
22360
|
/** @description Request Error */
|
|
@@ -19913,7 +22377,7 @@ interface operations {
|
|
|
19913
22377
|
};
|
|
19914
22378
|
};
|
|
19915
22379
|
};
|
|
19916
|
-
|
|
22380
|
+
extra_file_raw_api_datasets__dataset_id__extra_files_raw__filename__get: {
|
|
19917
22381
|
parameters: {
|
|
19918
22382
|
query?: never;
|
|
19919
22383
|
header?: {
|
|
@@ -19921,8 +22385,10 @@ interface operations {
|
|
|
19921
22385
|
"run-as"?: string | null;
|
|
19922
22386
|
};
|
|
19923
22387
|
path: {
|
|
19924
|
-
/** @description The
|
|
22388
|
+
/** @description The encoded database identifier of the dataset. */
|
|
19925
22389
|
dataset_id: string;
|
|
22390
|
+
/** @description The name of the extra file to retrieve. */
|
|
22391
|
+
filename: string;
|
|
19926
22392
|
};
|
|
19927
22393
|
cookie?: never;
|
|
19928
22394
|
};
|
|
@@ -19934,7 +22400,7 @@ interface operations {
|
|
|
19934
22400
|
[name: string]: unknown;
|
|
19935
22401
|
};
|
|
19936
22402
|
content: {
|
|
19937
|
-
"application/json":
|
|
22403
|
+
"application/json": unknown;
|
|
19938
22404
|
};
|
|
19939
22405
|
};
|
|
19940
22406
|
/** @description Request Error */
|
|
@@ -19957,13 +22423,11 @@ interface operations {
|
|
|
19957
22423
|
};
|
|
19958
22424
|
};
|
|
19959
22425
|
};
|
|
19960
|
-
|
|
22426
|
+
get_content_as_text_api_datasets__dataset_id__get_content_as_text_get: {
|
|
19961
22427
|
parameters: {
|
|
19962
22428
|
query?: {
|
|
19963
|
-
/** @description
|
|
19964
|
-
|
|
19965
|
-
/** @description Comma-separated list of keys to be passed to the serializer */
|
|
19966
|
-
keys?: string | null;
|
|
22429
|
+
/** @description If non-null, get the specified filename from the extra files for this dataset. */
|
|
22430
|
+
filename?: string | null;
|
|
19967
22431
|
};
|
|
19968
22432
|
header?: {
|
|
19969
22433
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
@@ -19972,8 +22436,6 @@ interface operations {
|
|
|
19972
22436
|
path: {
|
|
19973
22437
|
/** @description The ID of the History Dataset. */
|
|
19974
22438
|
dataset_id: string;
|
|
19975
|
-
/** @description File extension of the new format to convert this dataset to. */
|
|
19976
|
-
ext: string;
|
|
19977
22439
|
};
|
|
19978
22440
|
cookie?: never;
|
|
19979
22441
|
};
|
|
@@ -19985,7 +22447,7 @@ interface operations {
|
|
|
19985
22447
|
[name: string]: unknown;
|
|
19986
22448
|
};
|
|
19987
22449
|
content: {
|
|
19988
|
-
"application/json": components["schemas"]["
|
|
22450
|
+
"application/json": components["schemas"]["DatasetTextContentDetails"];
|
|
19989
22451
|
};
|
|
19990
22452
|
};
|
|
19991
22453
|
/** @description Request Error */
|
|
@@ -20008,20 +22470,27 @@ interface operations {
|
|
|
20008
22470
|
};
|
|
20009
22471
|
};
|
|
20010
22472
|
};
|
|
20011
|
-
|
|
22473
|
+
compute_hash_api_datasets__dataset_id__hash_put: {
|
|
20012
22474
|
parameters: {
|
|
20013
|
-
query?:
|
|
22475
|
+
query?: {
|
|
22476
|
+
/** @description Whether this dataset belongs to a history (HDA) or a library (LDDA). */
|
|
22477
|
+
hda_ldda?: components["schemas"]["DatasetSourceType"];
|
|
22478
|
+
};
|
|
20014
22479
|
header?: {
|
|
20015
22480
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
20016
22481
|
"run-as"?: string | null;
|
|
20017
22482
|
};
|
|
20018
22483
|
path: {
|
|
20019
|
-
/** @description The
|
|
22484
|
+
/** @description The ID of the History Dataset. */
|
|
20020
22485
|
dataset_id: string;
|
|
20021
22486
|
};
|
|
20022
22487
|
cookie?: never;
|
|
20023
22488
|
};
|
|
20024
|
-
requestBody
|
|
22489
|
+
requestBody: {
|
|
22490
|
+
content: {
|
|
22491
|
+
"application/json": components["schemas"]["ComputeDatasetHashPayload"];
|
|
22492
|
+
};
|
|
22493
|
+
};
|
|
20025
22494
|
responses: {
|
|
20026
22495
|
/** @description Successful Response */
|
|
20027
22496
|
200: {
|
|
@@ -20029,7 +22498,7 @@ interface operations {
|
|
|
20029
22498
|
[name: string]: unknown;
|
|
20030
22499
|
};
|
|
20031
22500
|
content: {
|
|
20032
|
-
"application/json": components["schemas"]["
|
|
22501
|
+
"application/json": components["schemas"]["AsyncTaskResultSummary"];
|
|
20033
22502
|
};
|
|
20034
22503
|
};
|
|
20035
22504
|
/** @description Request Error */
|
|
@@ -20052,11 +22521,11 @@ interface operations {
|
|
|
20052
22521
|
};
|
|
20053
22522
|
};
|
|
20054
22523
|
};
|
|
20055
|
-
|
|
22524
|
+
show_inheritance_chain_api_datasets__dataset_id__inheritance_chain_get: {
|
|
20056
22525
|
parameters: {
|
|
20057
22526
|
query?: {
|
|
20058
|
-
/** @description
|
|
20059
|
-
|
|
22527
|
+
/** @description Whether this dataset belongs to a history (HDA) or a library (LDDA). */
|
|
22528
|
+
hda_ldda?: components["schemas"]["DatasetSourceType"];
|
|
20060
22529
|
};
|
|
20061
22530
|
header?: {
|
|
20062
22531
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
@@ -20076,7 +22545,7 @@ interface operations {
|
|
|
20076
22545
|
[name: string]: unknown;
|
|
20077
22546
|
};
|
|
20078
22547
|
content: {
|
|
20079
|
-
"application/json": components["schemas"]["
|
|
22548
|
+
"application/json": components["schemas"]["DatasetInheritanceChain"];
|
|
20080
22549
|
};
|
|
20081
22550
|
};
|
|
20082
22551
|
/** @description Request Error */
|
|
@@ -20099,7 +22568,7 @@ interface operations {
|
|
|
20099
22568
|
};
|
|
20100
22569
|
};
|
|
20101
22570
|
};
|
|
20102
|
-
|
|
22571
|
+
get_metrics_api_datasets__dataset_id__metrics_get: {
|
|
20103
22572
|
parameters: {
|
|
20104
22573
|
query?: {
|
|
20105
22574
|
/** @description Whether this dataset belongs to a history (HDA) or a library (LDDA). */
|
|
@@ -20110,16 +22579,12 @@ interface operations {
|
|
|
20110
22579
|
"run-as"?: string | null;
|
|
20111
22580
|
};
|
|
20112
22581
|
path: {
|
|
20113
|
-
/** @description The ID of the
|
|
22582
|
+
/** @description The ID of the dataset */
|
|
20114
22583
|
dataset_id: string;
|
|
20115
22584
|
};
|
|
20116
22585
|
cookie?: never;
|
|
20117
22586
|
};
|
|
20118
|
-
requestBody
|
|
20119
|
-
content: {
|
|
20120
|
-
"application/json": components["schemas"]["ComputeDatasetHashPayload"];
|
|
20121
|
-
};
|
|
20122
|
-
};
|
|
22587
|
+
requestBody?: never;
|
|
20123
22588
|
responses: {
|
|
20124
22589
|
/** @description Successful Response */
|
|
20125
22590
|
200: {
|
|
@@ -20127,7 +22592,7 @@ interface operations {
|
|
|
20127
22592
|
[name: string]: unknown;
|
|
20128
22593
|
};
|
|
20129
22594
|
content: {
|
|
20130
|
-
"application/json": components["schemas"]["
|
|
22595
|
+
"application/json": (components["schemas"]["JobMetric"] | null)[];
|
|
20131
22596
|
};
|
|
20132
22597
|
};
|
|
20133
22598
|
/** @description Request Error */
|
|
@@ -20150,12 +22615,9 @@ interface operations {
|
|
|
20150
22615
|
};
|
|
20151
22616
|
};
|
|
20152
22617
|
};
|
|
20153
|
-
|
|
22618
|
+
datasets__update_object_store_id: {
|
|
20154
22619
|
parameters: {
|
|
20155
|
-
query?:
|
|
20156
|
-
/** @description Whether this dataset belongs to a history (HDA) or a library (LDDA). */
|
|
20157
|
-
hda_ldda?: components["schemas"]["DatasetSourceType"];
|
|
20158
|
-
};
|
|
22620
|
+
query?: never;
|
|
20159
22621
|
header?: {
|
|
20160
22622
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
20161
22623
|
"run-as"?: string | null;
|
|
@@ -20166,7 +22628,11 @@ interface operations {
|
|
|
20166
22628
|
};
|
|
20167
22629
|
cookie?: never;
|
|
20168
22630
|
};
|
|
20169
|
-
requestBody
|
|
22631
|
+
requestBody: {
|
|
22632
|
+
content: {
|
|
22633
|
+
"application/json": components["schemas"]["UpdateObjectStoreIdPayload"];
|
|
22634
|
+
};
|
|
22635
|
+
};
|
|
20170
22636
|
responses: {
|
|
20171
22637
|
/** @description Successful Response */
|
|
20172
22638
|
200: {
|
|
@@ -20174,7 +22640,7 @@ interface operations {
|
|
|
20174
22640
|
[name: string]: unknown;
|
|
20175
22641
|
};
|
|
20176
22642
|
content: {
|
|
20177
|
-
"application/json":
|
|
22643
|
+
"application/json": unknown;
|
|
20178
22644
|
};
|
|
20179
22645
|
};
|
|
20180
22646
|
/** @description Request Error */
|
|
@@ -20197,7 +22663,7 @@ interface operations {
|
|
|
20197
22663
|
};
|
|
20198
22664
|
};
|
|
20199
22665
|
};
|
|
20200
|
-
|
|
22666
|
+
resolve_parameters_display_api_datasets__dataset_id__parameters_display_get: {
|
|
20201
22667
|
parameters: {
|
|
20202
22668
|
query?: {
|
|
20203
22669
|
/** @description Whether this dataset belongs to a history (HDA) or a library (LDDA). */
|
|
@@ -20221,7 +22687,7 @@ interface operations {
|
|
|
20221
22687
|
[name: string]: unknown;
|
|
20222
22688
|
};
|
|
20223
22689
|
content: {
|
|
20224
|
-
"application/json":
|
|
22690
|
+
"application/json": components["schemas"]["JobDisplayParametersSummary"];
|
|
20225
22691
|
};
|
|
20226
22692
|
};
|
|
20227
22693
|
/** @description Request Error */
|
|
@@ -20244,7 +22710,7 @@ interface operations {
|
|
|
20244
22710
|
};
|
|
20245
22711
|
};
|
|
20246
22712
|
};
|
|
20247
|
-
|
|
22713
|
+
update_permissions_api_datasets__dataset_id__permissions_put: {
|
|
20248
22714
|
parameters: {
|
|
20249
22715
|
query?: never;
|
|
20250
22716
|
header?: {
|
|
@@ -20259,7 +22725,7 @@ interface operations {
|
|
|
20259
22725
|
};
|
|
20260
22726
|
requestBody: {
|
|
20261
22727
|
content: {
|
|
20262
|
-
"application/json": components["schemas"]["
|
|
22728
|
+
"application/json": components["schemas"]["UpdateDatasetPermissionsPayload"] | components["schemas"]["UpdateDatasetPermissionsPayloadAliasB"] | components["schemas"]["UpdateDatasetPermissionsPayloadAliasC"];
|
|
20263
22729
|
};
|
|
20264
22730
|
};
|
|
20265
22731
|
responses: {
|
|
@@ -20269,7 +22735,7 @@ interface operations {
|
|
|
20269
22735
|
[name: string]: unknown;
|
|
20270
22736
|
};
|
|
20271
22737
|
content: {
|
|
20272
|
-
"application/json":
|
|
22738
|
+
"application/json": components["schemas"]["DatasetAssociationRoles"];
|
|
20273
22739
|
};
|
|
20274
22740
|
};
|
|
20275
22741
|
/** @description Request Error */
|
|
@@ -20292,18 +22758,15 @@ interface operations {
|
|
|
20292
22758
|
};
|
|
20293
22759
|
};
|
|
20294
22760
|
};
|
|
20295
|
-
|
|
22761
|
+
report_api_datasets__dataset_id__report_get: {
|
|
20296
22762
|
parameters: {
|
|
20297
|
-
query?:
|
|
20298
|
-
/** @description Whether this dataset belongs to a history (HDA) or a library (LDDA). */
|
|
20299
|
-
hda_ldda?: components["schemas"]["DatasetSourceType"];
|
|
20300
|
-
};
|
|
22763
|
+
query?: never;
|
|
20301
22764
|
header?: {
|
|
20302
22765
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
20303
22766
|
"run-as"?: string | null;
|
|
20304
22767
|
};
|
|
20305
22768
|
path: {
|
|
20306
|
-
/** @description The ID of the
|
|
22769
|
+
/** @description The ID of the History Dataset. */
|
|
20307
22770
|
dataset_id: string;
|
|
20308
22771
|
};
|
|
20309
22772
|
cookie?: never;
|
|
@@ -20316,7 +22779,7 @@ interface operations {
|
|
|
20316
22779
|
[name: string]: unknown;
|
|
20317
22780
|
};
|
|
20318
22781
|
content: {
|
|
20319
|
-
"application/json": components["schemas"]["
|
|
22782
|
+
"application/json": components["schemas"]["ToolReportForDataset"];
|
|
20320
22783
|
};
|
|
20321
22784
|
};
|
|
20322
22785
|
/** @description Request Error */
|
|
@@ -20339,9 +22802,12 @@ interface operations {
|
|
|
20339
22802
|
};
|
|
20340
22803
|
};
|
|
20341
22804
|
};
|
|
20342
|
-
|
|
22805
|
+
show_storage_api_datasets__dataset_id__storage_get: {
|
|
20343
22806
|
parameters: {
|
|
20344
|
-
query?:
|
|
22807
|
+
query?: {
|
|
22808
|
+
/** @description Whether this dataset belongs to a history (HDA) or a library (LDDA). */
|
|
22809
|
+
hda_ldda?: components["schemas"]["DatasetSourceType"];
|
|
22810
|
+
};
|
|
20345
22811
|
header?: {
|
|
20346
22812
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
20347
22813
|
"run-as"?: string | null;
|
|
@@ -20352,11 +22818,7 @@ interface operations {
|
|
|
20352
22818
|
};
|
|
20353
22819
|
cookie?: never;
|
|
20354
22820
|
};
|
|
20355
|
-
requestBody
|
|
20356
|
-
content: {
|
|
20357
|
-
"application/json": components["schemas"]["UpdateDatasetPermissionsPayload"] | components["schemas"]["UpdateDatasetPermissionsPayloadAliasB"] | components["schemas"]["UpdateDatasetPermissionsPayloadAliasC"];
|
|
20358
|
-
};
|
|
20359
|
-
};
|
|
22821
|
+
requestBody?: never;
|
|
20360
22822
|
responses: {
|
|
20361
22823
|
/** @description Successful Response */
|
|
20362
22824
|
200: {
|
|
@@ -20364,7 +22826,7 @@ interface operations {
|
|
|
20364
22826
|
[name: string]: unknown;
|
|
20365
22827
|
};
|
|
20366
22828
|
content: {
|
|
20367
|
-
"application/json": components["schemas"]["
|
|
22829
|
+
"application/json": components["schemas"]["DatasetStorageDetails"];
|
|
20368
22830
|
};
|
|
20369
22831
|
};
|
|
20370
22832
|
/** @description Request Error */
|
|
@@ -20387,16 +22849,29 @@ interface operations {
|
|
|
20387
22849
|
};
|
|
20388
22850
|
};
|
|
20389
22851
|
};
|
|
20390
|
-
|
|
22852
|
+
display_api_datasets__history_content_id__display_get: {
|
|
20391
22853
|
parameters: {
|
|
20392
|
-
query?:
|
|
22854
|
+
query?: {
|
|
22855
|
+
/** @description Whether to get preview contents to be directly displayed on the web. If preview is False (default) the contents will be downloaded instead. */
|
|
22856
|
+
preview?: boolean;
|
|
22857
|
+
/** @description If non-null, get the specified filename from the extra files for this dataset. */
|
|
22858
|
+
filename?: string | null;
|
|
22859
|
+
/** @description The file extension when downloading the display data. Use the value `data` to let the server infer it from the data type. */
|
|
22860
|
+
to_ext?: string | null;
|
|
22861
|
+
/** @description The query parameter 'raw' should be considered experimental and may be dropped at some point in the future without warning. Generally, data should be processed by its datatype prior to display. */
|
|
22862
|
+
raw?: boolean;
|
|
22863
|
+
/** @description Set this for datatypes that allow chunked display through the display_data method to enable chunking. This specifies a byte offset into the target dataset's display. */
|
|
22864
|
+
offset?: number | null;
|
|
22865
|
+
/** @description If offset is set, this recommends 'how large' the next chunk should be. This is not respected or interpreted uniformly and should be interpreted as a very loose recommendation. Different datatypes interpret 'largeness' differently - for bam datasets this is a number of lines whereas for tabular datatypes this is interpreted as a number of bytes. */
|
|
22866
|
+
ck_size?: number | null;
|
|
22867
|
+
};
|
|
20393
22868
|
header?: {
|
|
20394
22869
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
20395
22870
|
"run-as"?: string | null;
|
|
20396
22871
|
};
|
|
20397
22872
|
path: {
|
|
20398
22873
|
/** @description The ID of the History Dataset. */
|
|
20399
|
-
|
|
22874
|
+
history_content_id: string;
|
|
20400
22875
|
};
|
|
20401
22876
|
cookie?: never;
|
|
20402
22877
|
};
|
|
@@ -20407,9 +22882,7 @@ interface operations {
|
|
|
20407
22882
|
headers: {
|
|
20408
22883
|
[name: string]: unknown;
|
|
20409
22884
|
};
|
|
20410
|
-
content
|
|
20411
|
-
"application/json": components["schemas"]["ToolReportForDataset"];
|
|
20412
|
-
};
|
|
22885
|
+
content?: never;
|
|
20413
22886
|
};
|
|
20414
22887
|
/** @description Request Error */
|
|
20415
22888
|
"4XX": {
|
|
@@ -20431,11 +22904,21 @@ interface operations {
|
|
|
20431
22904
|
};
|
|
20432
22905
|
};
|
|
20433
22906
|
};
|
|
20434
|
-
|
|
22907
|
+
display_api_datasets__history_content_id__display_head: {
|
|
20435
22908
|
parameters: {
|
|
20436
22909
|
query?: {
|
|
20437
|
-
/** @description Whether
|
|
20438
|
-
|
|
22910
|
+
/** @description Whether to get preview contents to be directly displayed on the web. If preview is False (default) the contents will be downloaded instead. */
|
|
22911
|
+
preview?: boolean;
|
|
22912
|
+
/** @description If non-null, get the specified filename from the extra files for this dataset. */
|
|
22913
|
+
filename?: string | null;
|
|
22914
|
+
/** @description The file extension when downloading the display data. Use the value `data` to let the server infer it from the data type. */
|
|
22915
|
+
to_ext?: string | null;
|
|
22916
|
+
/** @description The query parameter 'raw' should be considered experimental and may be dropped at some point in the future without warning. Generally, data should be processed by its datatype prior to display. */
|
|
22917
|
+
raw?: boolean;
|
|
22918
|
+
/** @description Set this for datatypes that allow chunked display through the display_data method to enable chunking. This specifies a byte offset into the target dataset's display. */
|
|
22919
|
+
offset?: number | null;
|
|
22920
|
+
/** @description If offset is set, this recommends 'how large' the next chunk should be. This is not respected or interpreted uniformly and should be interpreted as a very loose recommendation. Different datatypes interpret 'largeness' differently - for bam datasets this is a number of lines whereas for tabular datatypes this is interpreted as a number of bytes. */
|
|
22921
|
+
ck_size?: number | null;
|
|
20439
22922
|
};
|
|
20440
22923
|
header?: {
|
|
20441
22924
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
@@ -20443,7 +22926,7 @@ interface operations {
|
|
|
20443
22926
|
};
|
|
20444
22927
|
path: {
|
|
20445
22928
|
/** @description The ID of the History Dataset. */
|
|
20446
|
-
|
|
22929
|
+
history_content_id: string;
|
|
20447
22930
|
};
|
|
20448
22931
|
cookie?: never;
|
|
20449
22932
|
};
|
|
@@ -20455,7 +22938,7 @@ interface operations {
|
|
|
20455
22938
|
[name: string]: unknown;
|
|
20456
22939
|
};
|
|
20457
22940
|
content: {
|
|
20458
|
-
"application/json":
|
|
22941
|
+
"application/json": unknown;
|
|
20459
22942
|
};
|
|
20460
22943
|
};
|
|
20461
22944
|
/** @description Request Error */
|
|
@@ -20478,21 +22961,11 @@ interface operations {
|
|
|
20478
22961
|
};
|
|
20479
22962
|
};
|
|
20480
22963
|
};
|
|
20481
|
-
|
|
22964
|
+
datasets__get_metadata_file: {
|
|
20482
22965
|
parameters: {
|
|
20483
|
-
query
|
|
20484
|
-
/** @description
|
|
20485
|
-
|
|
20486
|
-
/** @description If non-null, get the specified filename from the extra files for this dataset. */
|
|
20487
|
-
filename?: string | null;
|
|
20488
|
-
/** @description The file extension when downloading the display data. Use the value `data` to let the server infer it from the data type. */
|
|
20489
|
-
to_ext?: string | null;
|
|
20490
|
-
/** @description The query parameter 'raw' should be considered experimental and may be dropped at some point in the future without warning. Generally, data should be processed by its datatype prior to display. */
|
|
20491
|
-
raw?: boolean;
|
|
20492
|
-
/** @description Set this for datatypes that allow chunked display through the display_data method to enable chunking. This specifies a byte offset into the target dataset's display. */
|
|
20493
|
-
offset?: number | null;
|
|
20494
|
-
/** @description If offset is set, this recommends 'how large' the next chunk should be. This is not respected or interpreted uniformly and should be interpreted as a very loose recommendation. Different datatypes interpret 'largeness' differently - for bam datasets this is a number of lines whereas for tabular datatypes this is interpreted as a number of bytes. */
|
|
20495
|
-
ck_size?: number | null;
|
|
22966
|
+
query: {
|
|
22967
|
+
/** @description The name of the metadata file to retrieve. */
|
|
22968
|
+
metadata_file: string;
|
|
20496
22969
|
};
|
|
20497
22970
|
header?: {
|
|
20498
22971
|
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
@@ -20533,41 +23006,112 @@ interface operations {
|
|
|
20533
23006
|
};
|
|
20534
23007
|
};
|
|
20535
23008
|
};
|
|
20536
|
-
|
|
23009
|
+
get_metadata_file_datasets_api_datasets__history_content_id__metadata_file_head: {
|
|
23010
|
+
parameters: {
|
|
23011
|
+
query: {
|
|
23012
|
+
/** @description The name of the metadata file to retrieve. */
|
|
23013
|
+
metadata_file: string;
|
|
23014
|
+
};
|
|
23015
|
+
header?: {
|
|
23016
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
23017
|
+
"run-as"?: string | null;
|
|
23018
|
+
};
|
|
23019
|
+
path: {
|
|
23020
|
+
/** @description The ID of the History Dataset. */
|
|
23021
|
+
history_content_id: string;
|
|
23022
|
+
};
|
|
23023
|
+
cookie?: never;
|
|
23024
|
+
};
|
|
23025
|
+
requestBody?: never;
|
|
23026
|
+
responses: {
|
|
23027
|
+
/** @description Successful Response */
|
|
23028
|
+
200: {
|
|
23029
|
+
headers: {
|
|
23030
|
+
[name: string]: unknown;
|
|
23031
|
+
};
|
|
23032
|
+
content: {
|
|
23033
|
+
"application/json": unknown;
|
|
23034
|
+
};
|
|
23035
|
+
};
|
|
23036
|
+
/** @description Request Error */
|
|
23037
|
+
"4XX": {
|
|
23038
|
+
headers: {
|
|
23039
|
+
[name: string]: unknown;
|
|
23040
|
+
};
|
|
23041
|
+
content: {
|
|
23042
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
23043
|
+
};
|
|
23044
|
+
};
|
|
23045
|
+
/** @description Server Error */
|
|
23046
|
+
"5XX": {
|
|
23047
|
+
headers: {
|
|
23048
|
+
[name: string]: unknown;
|
|
23049
|
+
};
|
|
23050
|
+
content: {
|
|
23051
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
23052
|
+
};
|
|
23053
|
+
};
|
|
23054
|
+
};
|
|
23055
|
+
};
|
|
23056
|
+
index_api_datatypes_get: {
|
|
23057
|
+
parameters: {
|
|
23058
|
+
query?: {
|
|
23059
|
+
/** @description Whether to return only the datatype's extension rather than the datatype's details */
|
|
23060
|
+
extension_only?: boolean | null;
|
|
23061
|
+
/** @description Whether to return only datatypes which can be uploaded */
|
|
23062
|
+
upload_only?: boolean | null;
|
|
23063
|
+
};
|
|
23064
|
+
header?: never;
|
|
23065
|
+
path?: never;
|
|
23066
|
+
cookie?: never;
|
|
23067
|
+
};
|
|
23068
|
+
requestBody?: never;
|
|
23069
|
+
responses: {
|
|
23070
|
+
/** @description List of data types */
|
|
23071
|
+
200: {
|
|
23072
|
+
headers: {
|
|
23073
|
+
[name: string]: unknown;
|
|
23074
|
+
};
|
|
23075
|
+
content: {
|
|
23076
|
+
"application/json": components["schemas"]["DatatypeDetails"][] | string[];
|
|
23077
|
+
};
|
|
23078
|
+
};
|
|
23079
|
+
/** @description Request Error */
|
|
23080
|
+
"4XX": {
|
|
23081
|
+
headers: {
|
|
23082
|
+
[name: string]: unknown;
|
|
23083
|
+
};
|
|
23084
|
+
content: {
|
|
23085
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
23086
|
+
};
|
|
23087
|
+
};
|
|
23088
|
+
/** @description Server Error */
|
|
23089
|
+
"5XX": {
|
|
23090
|
+
headers: {
|
|
23091
|
+
[name: string]: unknown;
|
|
23092
|
+
};
|
|
23093
|
+
content: {
|
|
23094
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
23095
|
+
};
|
|
23096
|
+
};
|
|
23097
|
+
};
|
|
23098
|
+
};
|
|
23099
|
+
converters_api_datatypes_converters_get: {
|
|
20537
23100
|
parameters: {
|
|
20538
|
-
query?:
|
|
20539
|
-
|
|
20540
|
-
|
|
20541
|
-
/** @description If non-null, get the specified filename from the extra files for this dataset. */
|
|
20542
|
-
filename?: string | null;
|
|
20543
|
-
/** @description The file extension when downloading the display data. Use the value `data` to let the server infer it from the data type. */
|
|
20544
|
-
to_ext?: string | null;
|
|
20545
|
-
/** @description The query parameter 'raw' should be considered experimental and may be dropped at some point in the future without warning. Generally, data should be processed by its datatype prior to display. */
|
|
20546
|
-
raw?: boolean;
|
|
20547
|
-
/** @description Set this for datatypes that allow chunked display through the display_data method to enable chunking. This specifies a byte offset into the target dataset's display. */
|
|
20548
|
-
offset?: number | null;
|
|
20549
|
-
/** @description If offset is set, this recommends 'how large' the next chunk should be. This is not respected or interpreted uniformly and should be interpreted as a very loose recommendation. Different datatypes interpret 'largeness' differently - for bam datasets this is a number of lines whereas for tabular datatypes this is interpreted as a number of bytes. */
|
|
20550
|
-
ck_size?: number | null;
|
|
20551
|
-
};
|
|
20552
|
-
header?: {
|
|
20553
|
-
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
20554
|
-
"run-as"?: string | null;
|
|
20555
|
-
};
|
|
20556
|
-
path: {
|
|
20557
|
-
/** @description The ID of the History Dataset. */
|
|
20558
|
-
history_content_id: string;
|
|
20559
|
-
};
|
|
23101
|
+
query?: never;
|
|
23102
|
+
header?: never;
|
|
23103
|
+
path?: never;
|
|
20560
23104
|
cookie?: never;
|
|
20561
23105
|
};
|
|
20562
23106
|
requestBody?: never;
|
|
20563
23107
|
responses: {
|
|
20564
|
-
/** @description
|
|
23108
|
+
/** @description List of all datatype converters */
|
|
20565
23109
|
200: {
|
|
20566
23110
|
headers: {
|
|
20567
23111
|
[name: string]: unknown;
|
|
20568
23112
|
};
|
|
20569
23113
|
content: {
|
|
20570
|
-
"application/json":
|
|
23114
|
+
"application/json": components["schemas"]["DatatypeConverterList"];
|
|
20571
23115
|
};
|
|
20572
23116
|
};
|
|
20573
23117
|
/** @description Request Error */
|
|
@@ -20590,30 +23134,25 @@ interface operations {
|
|
|
20590
23134
|
};
|
|
20591
23135
|
};
|
|
20592
23136
|
};
|
|
20593
|
-
|
|
23137
|
+
edam_data_api_datatypes_edam_data_get: {
|
|
20594
23138
|
parameters: {
|
|
20595
|
-
query
|
|
20596
|
-
|
|
20597
|
-
|
|
20598
|
-
};
|
|
20599
|
-
header?: {
|
|
20600
|
-
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
20601
|
-
"run-as"?: string | null;
|
|
20602
|
-
};
|
|
20603
|
-
path: {
|
|
20604
|
-
/** @description The ID of the History Dataset. */
|
|
20605
|
-
history_content_id: string;
|
|
20606
|
-
};
|
|
23139
|
+
query?: never;
|
|
23140
|
+
header?: never;
|
|
23141
|
+
path?: never;
|
|
20607
23142
|
cookie?: never;
|
|
20608
23143
|
};
|
|
20609
23144
|
requestBody?: never;
|
|
20610
23145
|
responses: {
|
|
20611
|
-
/** @description
|
|
23146
|
+
/** @description Dictionary/map of datatypes and EDAM data */
|
|
20612
23147
|
200: {
|
|
20613
23148
|
headers: {
|
|
20614
23149
|
[name: string]: unknown;
|
|
20615
23150
|
};
|
|
20616
|
-
content
|
|
23151
|
+
content: {
|
|
23152
|
+
"application/json": {
|
|
23153
|
+
[key: string]: string;
|
|
23154
|
+
};
|
|
23155
|
+
};
|
|
20617
23156
|
};
|
|
20618
23157
|
/** @description Request Error */
|
|
20619
23158
|
"4XX": {
|
|
@@ -20635,31 +23174,22 @@ interface operations {
|
|
|
20635
23174
|
};
|
|
20636
23175
|
};
|
|
20637
23176
|
};
|
|
20638
|
-
|
|
23177
|
+
edam_data_detailed_api_datatypes_edam_data_detailed_get: {
|
|
20639
23178
|
parameters: {
|
|
20640
|
-
query
|
|
20641
|
-
|
|
20642
|
-
|
|
20643
|
-
};
|
|
20644
|
-
header?: {
|
|
20645
|
-
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
20646
|
-
"run-as"?: string | null;
|
|
20647
|
-
};
|
|
20648
|
-
path: {
|
|
20649
|
-
/** @description The ID of the History Dataset. */
|
|
20650
|
-
history_content_id: string;
|
|
20651
|
-
};
|
|
23179
|
+
query?: never;
|
|
23180
|
+
header?: never;
|
|
23181
|
+
path?: never;
|
|
20652
23182
|
cookie?: never;
|
|
20653
23183
|
};
|
|
20654
23184
|
requestBody?: never;
|
|
20655
23185
|
responses: {
|
|
20656
|
-
/** @description
|
|
23186
|
+
/** @description Dictionary of EDAM data details containing the EDAM iri, label, and definition */
|
|
20657
23187
|
200: {
|
|
20658
23188
|
headers: {
|
|
20659
23189
|
[name: string]: unknown;
|
|
20660
23190
|
};
|
|
20661
23191
|
content: {
|
|
20662
|
-
"application/json":
|
|
23192
|
+
"application/json": components["schemas"]["DatatypesEDAMDetailsDict"];
|
|
20663
23193
|
};
|
|
20664
23194
|
};
|
|
20665
23195
|
/** @description Request Error */
|
|
@@ -20682,27 +23212,24 @@ interface operations {
|
|
|
20682
23212
|
};
|
|
20683
23213
|
};
|
|
20684
23214
|
};
|
|
20685
|
-
|
|
23215
|
+
edam_formats_api_datatypes_edam_formats_get: {
|
|
20686
23216
|
parameters: {
|
|
20687
|
-
query?:
|
|
20688
|
-
/** @description Whether to return only the datatype's extension rather than the datatype's details */
|
|
20689
|
-
extension_only?: boolean | null;
|
|
20690
|
-
/** @description Whether to return only datatypes which can be uploaded */
|
|
20691
|
-
upload_only?: boolean | null;
|
|
20692
|
-
};
|
|
23217
|
+
query?: never;
|
|
20693
23218
|
header?: never;
|
|
20694
23219
|
path?: never;
|
|
20695
23220
|
cookie?: never;
|
|
20696
23221
|
};
|
|
20697
23222
|
requestBody?: never;
|
|
20698
23223
|
responses: {
|
|
20699
|
-
/** @description
|
|
23224
|
+
/** @description Dictionary/map of datatypes and EDAM formats */
|
|
20700
23225
|
200: {
|
|
20701
23226
|
headers: {
|
|
20702
23227
|
[name: string]: unknown;
|
|
20703
23228
|
};
|
|
20704
23229
|
content: {
|
|
20705
|
-
"application/json":
|
|
23230
|
+
"application/json": {
|
|
23231
|
+
[key: string]: string;
|
|
23232
|
+
};
|
|
20706
23233
|
};
|
|
20707
23234
|
};
|
|
20708
23235
|
/** @description Request Error */
|
|
@@ -20725,7 +23252,7 @@ interface operations {
|
|
|
20725
23252
|
};
|
|
20726
23253
|
};
|
|
20727
23254
|
};
|
|
20728
|
-
|
|
23255
|
+
edam_formats_detailed_api_datatypes_edam_formats_detailed_get: {
|
|
20729
23256
|
parameters: {
|
|
20730
23257
|
query?: never;
|
|
20731
23258
|
header?: never;
|
|
@@ -20734,13 +23261,13 @@ interface operations {
|
|
|
20734
23261
|
};
|
|
20735
23262
|
requestBody?: never;
|
|
20736
23263
|
responses: {
|
|
20737
|
-
/** @description
|
|
23264
|
+
/** @description Dictionary of EDAM format details containing the EDAM iri, label, and definition */
|
|
20738
23265
|
200: {
|
|
20739
23266
|
headers: {
|
|
20740
23267
|
[name: string]: unknown;
|
|
20741
23268
|
};
|
|
20742
23269
|
content: {
|
|
20743
|
-
"application/json": components["schemas"]["
|
|
23270
|
+
"application/json": components["schemas"]["DatatypesEDAMDetailsDict"];
|
|
20744
23271
|
};
|
|
20745
23272
|
};
|
|
20746
23273
|
/** @description Request Error */
|
|
@@ -20763,7 +23290,7 @@ interface operations {
|
|
|
20763
23290
|
};
|
|
20764
23291
|
};
|
|
20765
23292
|
};
|
|
20766
|
-
|
|
23293
|
+
mapping_api_datatypes_mapping_get: {
|
|
20767
23294
|
parameters: {
|
|
20768
23295
|
query?: never;
|
|
20769
23296
|
header?: never;
|
|
@@ -20772,15 +23299,13 @@ interface operations {
|
|
|
20772
23299
|
};
|
|
20773
23300
|
requestBody?: never;
|
|
20774
23301
|
responses: {
|
|
20775
|
-
/** @description Dictionary
|
|
23302
|
+
/** @description Dictionary to map data types with their classes */
|
|
20776
23303
|
200: {
|
|
20777
23304
|
headers: {
|
|
20778
23305
|
[name: string]: unknown;
|
|
20779
23306
|
};
|
|
20780
23307
|
content: {
|
|
20781
|
-
"application/json":
|
|
20782
|
-
[key: string]: string;
|
|
20783
|
-
};
|
|
23308
|
+
"application/json": components["schemas"]["DatatypesMap"];
|
|
20784
23309
|
};
|
|
20785
23310
|
};
|
|
20786
23311
|
/** @description Request Error */
|
|
@@ -20803,7 +23328,7 @@ interface operations {
|
|
|
20803
23328
|
};
|
|
20804
23329
|
};
|
|
20805
23330
|
};
|
|
20806
|
-
|
|
23331
|
+
sniffers_api_datatypes_sniffers_get: {
|
|
20807
23332
|
parameters: {
|
|
20808
23333
|
query?: never;
|
|
20809
23334
|
header?: never;
|
|
@@ -20812,13 +23337,13 @@ interface operations {
|
|
|
20812
23337
|
};
|
|
20813
23338
|
requestBody?: never;
|
|
20814
23339
|
responses: {
|
|
20815
|
-
/** @description
|
|
23340
|
+
/** @description List of datatype sniffers */
|
|
20816
23341
|
200: {
|
|
20817
23342
|
headers: {
|
|
20818
23343
|
[name: string]: unknown;
|
|
20819
23344
|
};
|
|
20820
23345
|
content: {
|
|
20821
|
-
"application/json":
|
|
23346
|
+
"application/json": string[];
|
|
20822
23347
|
};
|
|
20823
23348
|
};
|
|
20824
23349
|
/** @description Request Error */
|
|
@@ -20841,24 +23366,27 @@ interface operations {
|
|
|
20841
23366
|
};
|
|
20842
23367
|
};
|
|
20843
23368
|
};
|
|
20844
|
-
|
|
23369
|
+
types_and_mapping_api_datatypes_types_and_mapping_get: {
|
|
20845
23370
|
parameters: {
|
|
20846
|
-
query?:
|
|
23371
|
+
query?: {
|
|
23372
|
+
/** @description Whether to return only the datatype's extension rather than the datatype's details */
|
|
23373
|
+
extension_only?: boolean | null;
|
|
23374
|
+
/** @description Whether to return only datatypes which can be uploaded */
|
|
23375
|
+
upload_only?: boolean | null;
|
|
23376
|
+
};
|
|
20847
23377
|
header?: never;
|
|
20848
23378
|
path?: never;
|
|
20849
23379
|
cookie?: never;
|
|
20850
23380
|
};
|
|
20851
23381
|
requestBody?: never;
|
|
20852
23382
|
responses: {
|
|
20853
|
-
/** @description Dictionary
|
|
23383
|
+
/** @description Dictionary to map data types with their classes */
|
|
20854
23384
|
200: {
|
|
20855
23385
|
headers: {
|
|
20856
23386
|
[name: string]: unknown;
|
|
20857
23387
|
};
|
|
20858
23388
|
content: {
|
|
20859
|
-
"application/json":
|
|
20860
|
-
[key: string]: string;
|
|
20861
|
-
};
|
|
23389
|
+
"application/json": components["schemas"]["DatatypesCombinedMap"];
|
|
20862
23390
|
};
|
|
20863
23391
|
};
|
|
20864
23392
|
/** @description Request Error */
|
|
@@ -20881,22 +23409,25 @@ interface operations {
|
|
|
20881
23409
|
};
|
|
20882
23410
|
};
|
|
20883
23411
|
};
|
|
20884
|
-
|
|
23412
|
+
show_api_datatypes__datatype__get: {
|
|
20885
23413
|
parameters: {
|
|
20886
23414
|
query?: never;
|
|
20887
23415
|
header?: never;
|
|
20888
|
-
path
|
|
23416
|
+
path: {
|
|
23417
|
+
/** @description Datatype extension to get information for */
|
|
23418
|
+
datatype: string;
|
|
23419
|
+
};
|
|
20889
23420
|
cookie?: never;
|
|
20890
23421
|
};
|
|
20891
23422
|
requestBody?: never;
|
|
20892
23423
|
responses: {
|
|
20893
|
-
/** @description
|
|
23424
|
+
/** @description Detailed information about a datatype */
|
|
20894
23425
|
200: {
|
|
20895
23426
|
headers: {
|
|
20896
23427
|
[name: string]: unknown;
|
|
20897
23428
|
};
|
|
20898
23429
|
content: {
|
|
20899
|
-
"application/json":
|
|
23430
|
+
"application/json": unknown;
|
|
20900
23431
|
};
|
|
20901
23432
|
};
|
|
20902
23433
|
/** @description Request Error */
|
|
@@ -20919,22 +23450,25 @@ interface operations {
|
|
|
20919
23450
|
};
|
|
20920
23451
|
};
|
|
20921
23452
|
};
|
|
20922
|
-
|
|
23453
|
+
visualization_for_datatype_api_datatypes__datatype__visualizations_get: {
|
|
20923
23454
|
parameters: {
|
|
20924
23455
|
query?: never;
|
|
20925
23456
|
header?: never;
|
|
20926
|
-
path
|
|
23457
|
+
path: {
|
|
23458
|
+
/** @description Datatype extension to get visualization mapping for */
|
|
23459
|
+
datatype: string;
|
|
23460
|
+
};
|
|
20927
23461
|
cookie?: never;
|
|
20928
23462
|
};
|
|
20929
23463
|
requestBody?: never;
|
|
20930
23464
|
responses: {
|
|
20931
|
-
/** @description
|
|
23465
|
+
/** @description Visualization mapping for the specified datatype */
|
|
20932
23466
|
200: {
|
|
20933
23467
|
headers: {
|
|
20934
23468
|
[name: string]: unknown;
|
|
20935
23469
|
};
|
|
20936
23470
|
content: {
|
|
20937
|
-
"application/json": components["schemas"]["
|
|
23471
|
+
"application/json": components["schemas"]["DatatypeVisualizationMappingsList"];
|
|
20938
23472
|
};
|
|
20939
23473
|
};
|
|
20940
23474
|
/** @description Request Error */
|
|
@@ -20957,7 +23491,7 @@ interface operations {
|
|
|
20957
23491
|
};
|
|
20958
23492
|
};
|
|
20959
23493
|
};
|
|
20960
|
-
|
|
23494
|
+
display_applications_index_api_display_applications_get: {
|
|
20961
23495
|
parameters: {
|
|
20962
23496
|
query?: never;
|
|
20963
23497
|
header?: never;
|
|
@@ -20966,13 +23500,13 @@ interface operations {
|
|
|
20966
23500
|
};
|
|
20967
23501
|
requestBody?: never;
|
|
20968
23502
|
responses: {
|
|
20969
|
-
/** @description
|
|
23503
|
+
/** @description Successful Response */
|
|
20970
23504
|
200: {
|
|
20971
23505
|
headers: {
|
|
20972
23506
|
[name: string]: unknown;
|
|
20973
23507
|
};
|
|
20974
23508
|
content: {
|
|
20975
|
-
"application/json":
|
|
23509
|
+
"application/json": components["schemas"]["DisplayApplication"][];
|
|
20976
23510
|
};
|
|
20977
23511
|
};
|
|
20978
23512
|
/** @description Request Error */
|
|
@@ -20995,27 +23529,31 @@ interface operations {
|
|
|
20995
23529
|
};
|
|
20996
23530
|
};
|
|
20997
23531
|
};
|
|
20998
|
-
|
|
23532
|
+
display_applications_reload_api_display_applications_reload_post: {
|
|
20999
23533
|
parameters: {
|
|
21000
|
-
query?:
|
|
21001
|
-
|
|
21002
|
-
|
|
21003
|
-
|
|
21004
|
-
upload_only?: boolean | null;
|
|
23534
|
+
query?: never;
|
|
23535
|
+
header?: {
|
|
23536
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
23537
|
+
"run-as"?: string | null;
|
|
21005
23538
|
};
|
|
21006
|
-
header?: never;
|
|
21007
23539
|
path?: never;
|
|
21008
23540
|
cookie?: never;
|
|
21009
23541
|
};
|
|
21010
|
-
requestBody?:
|
|
23542
|
+
requestBody?: {
|
|
23543
|
+
content: {
|
|
23544
|
+
"application/json": {
|
|
23545
|
+
[key: string]: string[];
|
|
23546
|
+
} | null;
|
|
23547
|
+
};
|
|
23548
|
+
};
|
|
21011
23549
|
responses: {
|
|
21012
|
-
/** @description
|
|
23550
|
+
/** @description Successful Response */
|
|
21013
23551
|
200: {
|
|
21014
23552
|
headers: {
|
|
21015
23553
|
[name: string]: unknown;
|
|
21016
23554
|
};
|
|
21017
23555
|
content: {
|
|
21018
|
-
"application/json": components["schemas"]["
|
|
23556
|
+
"application/json": components["schemas"]["ReloadFeedback"];
|
|
21019
23557
|
};
|
|
21020
23558
|
};
|
|
21021
23559
|
/** @description Request Error */
|
|
@@ -21038,7 +23576,49 @@ interface operations {
|
|
|
21038
23576
|
};
|
|
21039
23577
|
};
|
|
21040
23578
|
};
|
|
21041
|
-
|
|
23579
|
+
download_api_drs_download__object_id__get: {
|
|
23580
|
+
parameters: {
|
|
23581
|
+
query?: never;
|
|
23582
|
+
header?: {
|
|
23583
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
23584
|
+
"run-as"?: string | null;
|
|
23585
|
+
};
|
|
23586
|
+
path: {
|
|
23587
|
+
/** @description The ID of the group */
|
|
23588
|
+
object_id: string;
|
|
23589
|
+
};
|
|
23590
|
+
cookie?: never;
|
|
23591
|
+
};
|
|
23592
|
+
requestBody?: never;
|
|
23593
|
+
responses: {
|
|
23594
|
+
/** @description Successful Response */
|
|
23595
|
+
200: {
|
|
23596
|
+
headers: {
|
|
23597
|
+
[name: string]: unknown;
|
|
23598
|
+
};
|
|
23599
|
+
content?: never;
|
|
23600
|
+
};
|
|
23601
|
+
/** @description Request Error */
|
|
23602
|
+
"4XX": {
|
|
23603
|
+
headers: {
|
|
23604
|
+
[name: string]: unknown;
|
|
23605
|
+
};
|
|
23606
|
+
content: {
|
|
23607
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
23608
|
+
};
|
|
23609
|
+
};
|
|
23610
|
+
/** @description Server Error */
|
|
23611
|
+
"5XX": {
|
|
23612
|
+
headers: {
|
|
23613
|
+
[name: string]: unknown;
|
|
23614
|
+
};
|
|
23615
|
+
content: {
|
|
23616
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
23617
|
+
};
|
|
23618
|
+
};
|
|
23619
|
+
};
|
|
23620
|
+
};
|
|
23621
|
+
index_api_dynamic_tools_get: {
|
|
21042
23622
|
parameters: {
|
|
21043
23623
|
query?: never;
|
|
21044
23624
|
header?: never;
|
|
@@ -21053,7 +23633,7 @@ interface operations {
|
|
|
21053
23633
|
[name: string]: unknown;
|
|
21054
23634
|
};
|
|
21055
23635
|
content: {
|
|
21056
|
-
"application/json":
|
|
23636
|
+
"application/json": unknown;
|
|
21057
23637
|
};
|
|
21058
23638
|
};
|
|
21059
23639
|
/** @description Request Error */
|
|
@@ -21076,7 +23656,7 @@ interface operations {
|
|
|
21076
23656
|
};
|
|
21077
23657
|
};
|
|
21078
23658
|
};
|
|
21079
|
-
|
|
23659
|
+
create_api_dynamic_tools_post: {
|
|
21080
23660
|
parameters: {
|
|
21081
23661
|
query?: never;
|
|
21082
23662
|
header?: {
|
|
@@ -21086,11 +23666,9 @@ interface operations {
|
|
|
21086
23666
|
path?: never;
|
|
21087
23667
|
cookie?: never;
|
|
21088
23668
|
};
|
|
21089
|
-
requestBody
|
|
23669
|
+
requestBody: {
|
|
21090
23670
|
content: {
|
|
21091
|
-
"application/json":
|
|
21092
|
-
[key: string]: string[];
|
|
21093
|
-
} | null;
|
|
23671
|
+
"application/json": components["schemas"]["DynamicToolCreatePayload"] | components["schemas"]["PathBasedDynamicToolCreatePayload"];
|
|
21094
23672
|
};
|
|
21095
23673
|
};
|
|
21096
23674
|
responses: {
|
|
@@ -21100,7 +23678,47 @@ interface operations {
|
|
|
21100
23678
|
[name: string]: unknown;
|
|
21101
23679
|
};
|
|
21102
23680
|
content: {
|
|
21103
|
-
"application/json":
|
|
23681
|
+
"application/json": unknown;
|
|
23682
|
+
};
|
|
23683
|
+
};
|
|
23684
|
+
/** @description Request Error */
|
|
23685
|
+
"4XX": {
|
|
23686
|
+
headers: {
|
|
23687
|
+
[name: string]: unknown;
|
|
23688
|
+
};
|
|
23689
|
+
content: {
|
|
23690
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
23691
|
+
};
|
|
23692
|
+
};
|
|
23693
|
+
/** @description Server Error */
|
|
23694
|
+
"5XX": {
|
|
23695
|
+
headers: {
|
|
23696
|
+
[name: string]: unknown;
|
|
23697
|
+
};
|
|
23698
|
+
content: {
|
|
23699
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
23700
|
+
};
|
|
23701
|
+
};
|
|
23702
|
+
};
|
|
23703
|
+
};
|
|
23704
|
+
show_api_dynamic_tools__dynamic_tool_id__get: {
|
|
23705
|
+
parameters: {
|
|
23706
|
+
query?: never;
|
|
23707
|
+
header?: never;
|
|
23708
|
+
path: {
|
|
23709
|
+
dynamic_tool_id: string;
|
|
23710
|
+
};
|
|
23711
|
+
cookie?: never;
|
|
23712
|
+
};
|
|
23713
|
+
requestBody?: never;
|
|
23714
|
+
responses: {
|
|
23715
|
+
/** @description Successful Response */
|
|
23716
|
+
200: {
|
|
23717
|
+
headers: {
|
|
23718
|
+
[name: string]: unknown;
|
|
23719
|
+
};
|
|
23720
|
+
content: {
|
|
23721
|
+
"application/json": unknown;
|
|
21104
23722
|
};
|
|
21105
23723
|
};
|
|
21106
23724
|
/** @description Request Error */
|
|
@@ -21123,7 +23741,7 @@ interface operations {
|
|
|
21123
23741
|
};
|
|
21124
23742
|
};
|
|
21125
23743
|
};
|
|
21126
|
-
|
|
23744
|
+
delete_api_dynamic_tools__dynamic_tool_id__delete: {
|
|
21127
23745
|
parameters: {
|
|
21128
23746
|
query?: never;
|
|
21129
23747
|
header?: {
|
|
@@ -21131,8 +23749,7 @@ interface operations {
|
|
|
21131
23749
|
"run-as"?: string | null;
|
|
21132
23750
|
};
|
|
21133
23751
|
path: {
|
|
21134
|
-
|
|
21135
|
-
object_id: string;
|
|
23752
|
+
dynamic_tool_id: string;
|
|
21136
23753
|
};
|
|
21137
23754
|
cookie?: never;
|
|
21138
23755
|
};
|
|
@@ -21143,7 +23760,9 @@ interface operations {
|
|
|
21143
23760
|
headers: {
|
|
21144
23761
|
[name: string]: unknown;
|
|
21145
23762
|
};
|
|
21146
|
-
content
|
|
23763
|
+
content: {
|
|
23764
|
+
"application/json": unknown;
|
|
23765
|
+
};
|
|
21147
23766
|
};
|
|
21148
23767
|
/** @description Request Error */
|
|
21149
23768
|
"4XX": {
|
|
@@ -33204,6 +35823,272 @@ interface operations {
|
|
|
33204
35823
|
};
|
|
33205
35824
|
};
|
|
33206
35825
|
};
|
|
35826
|
+
index_api_unprivileged_tools_get: {
|
|
35827
|
+
parameters: {
|
|
35828
|
+
query?: {
|
|
35829
|
+
active?: boolean;
|
|
35830
|
+
};
|
|
35831
|
+
header?: {
|
|
35832
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
35833
|
+
"run-as"?: string | null;
|
|
35834
|
+
};
|
|
35835
|
+
path?: never;
|
|
35836
|
+
cookie?: never;
|
|
35837
|
+
};
|
|
35838
|
+
requestBody?: never;
|
|
35839
|
+
responses: {
|
|
35840
|
+
/** @description Successful Response */
|
|
35841
|
+
200: {
|
|
35842
|
+
headers: {
|
|
35843
|
+
[name: string]: unknown;
|
|
35844
|
+
};
|
|
35845
|
+
content: {
|
|
35846
|
+
"application/json": components["schemas"]["UnprivilegedToolResponse"][];
|
|
35847
|
+
};
|
|
35848
|
+
};
|
|
35849
|
+
/** @description Request Error */
|
|
35850
|
+
"4XX": {
|
|
35851
|
+
headers: {
|
|
35852
|
+
[name: string]: unknown;
|
|
35853
|
+
};
|
|
35854
|
+
content: {
|
|
35855
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
35856
|
+
};
|
|
35857
|
+
};
|
|
35858
|
+
/** @description Server Error */
|
|
35859
|
+
"5XX": {
|
|
35860
|
+
headers: {
|
|
35861
|
+
[name: string]: unknown;
|
|
35862
|
+
};
|
|
35863
|
+
content: {
|
|
35864
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
35865
|
+
};
|
|
35866
|
+
};
|
|
35867
|
+
};
|
|
35868
|
+
};
|
|
35869
|
+
create_api_unprivileged_tools_post: {
|
|
35870
|
+
parameters: {
|
|
35871
|
+
query?: never;
|
|
35872
|
+
header?: {
|
|
35873
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
35874
|
+
"run-as"?: string | null;
|
|
35875
|
+
};
|
|
35876
|
+
path?: never;
|
|
35877
|
+
cookie?: never;
|
|
35878
|
+
};
|
|
35879
|
+
requestBody: {
|
|
35880
|
+
content: {
|
|
35881
|
+
"application/json": components["schemas"]["DynamicUnprivilegedToolCreatePayload"];
|
|
35882
|
+
};
|
|
35883
|
+
};
|
|
35884
|
+
responses: {
|
|
35885
|
+
/** @description Successful Response */
|
|
35886
|
+
200: {
|
|
35887
|
+
headers: {
|
|
35888
|
+
[name: string]: unknown;
|
|
35889
|
+
};
|
|
35890
|
+
content: {
|
|
35891
|
+
"application/json": components["schemas"]["UnprivilegedToolResponse"];
|
|
35892
|
+
};
|
|
35893
|
+
};
|
|
35894
|
+
/** @description Request Error */
|
|
35895
|
+
"4XX": {
|
|
35896
|
+
headers: {
|
|
35897
|
+
[name: string]: unknown;
|
|
35898
|
+
};
|
|
35899
|
+
content: {
|
|
35900
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
35901
|
+
};
|
|
35902
|
+
};
|
|
35903
|
+
/** @description Server Error */
|
|
35904
|
+
"5XX": {
|
|
35905
|
+
headers: {
|
|
35906
|
+
[name: string]: unknown;
|
|
35907
|
+
};
|
|
35908
|
+
content: {
|
|
35909
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
35910
|
+
};
|
|
35911
|
+
};
|
|
35912
|
+
};
|
|
35913
|
+
};
|
|
35914
|
+
build_api_unprivileged_tools_build_post: {
|
|
35915
|
+
parameters: {
|
|
35916
|
+
query: {
|
|
35917
|
+
history_id: string;
|
|
35918
|
+
};
|
|
35919
|
+
header?: {
|
|
35920
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
35921
|
+
"run-as"?: string | null;
|
|
35922
|
+
};
|
|
35923
|
+
path?: never;
|
|
35924
|
+
cookie?: never;
|
|
35925
|
+
};
|
|
35926
|
+
requestBody: {
|
|
35927
|
+
content: {
|
|
35928
|
+
"application/json": components["schemas"]["DynamicUnprivilegedToolCreatePayload"];
|
|
35929
|
+
};
|
|
35930
|
+
};
|
|
35931
|
+
responses: {
|
|
35932
|
+
/** @description Successful Response */
|
|
35933
|
+
200: {
|
|
35934
|
+
headers: {
|
|
35935
|
+
[name: string]: unknown;
|
|
35936
|
+
};
|
|
35937
|
+
content: {
|
|
35938
|
+
"application/json": unknown;
|
|
35939
|
+
};
|
|
35940
|
+
};
|
|
35941
|
+
/** @description Request Error */
|
|
35942
|
+
"4XX": {
|
|
35943
|
+
headers: {
|
|
35944
|
+
[name: string]: unknown;
|
|
35945
|
+
};
|
|
35946
|
+
content: {
|
|
35947
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
35948
|
+
};
|
|
35949
|
+
};
|
|
35950
|
+
/** @description Server Error */
|
|
35951
|
+
"5XX": {
|
|
35952
|
+
headers: {
|
|
35953
|
+
[name: string]: unknown;
|
|
35954
|
+
};
|
|
35955
|
+
content: {
|
|
35956
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
35957
|
+
};
|
|
35958
|
+
};
|
|
35959
|
+
};
|
|
35960
|
+
};
|
|
35961
|
+
runtime_model_api_unprivileged_tools_runtime_model_post: {
|
|
35962
|
+
parameters: {
|
|
35963
|
+
query?: never;
|
|
35964
|
+
header?: {
|
|
35965
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
35966
|
+
"run-as"?: string | null;
|
|
35967
|
+
};
|
|
35968
|
+
path?: never;
|
|
35969
|
+
cookie?: never;
|
|
35970
|
+
};
|
|
35971
|
+
requestBody: {
|
|
35972
|
+
content: {
|
|
35973
|
+
"application/json": components["schemas"]["DynamicUnprivilegedToolCreatePayload"];
|
|
35974
|
+
};
|
|
35975
|
+
};
|
|
35976
|
+
responses: {
|
|
35977
|
+
/** @description Successful Response */
|
|
35978
|
+
200: {
|
|
35979
|
+
headers: {
|
|
35980
|
+
[name: string]: unknown;
|
|
35981
|
+
};
|
|
35982
|
+
content: {
|
|
35983
|
+
"application/json": unknown;
|
|
35984
|
+
};
|
|
35985
|
+
};
|
|
35986
|
+
/** @description Request Error */
|
|
35987
|
+
"4XX": {
|
|
35988
|
+
headers: {
|
|
35989
|
+
[name: string]: unknown;
|
|
35990
|
+
};
|
|
35991
|
+
content: {
|
|
35992
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
35993
|
+
};
|
|
35994
|
+
};
|
|
35995
|
+
/** @description Server Error */
|
|
35996
|
+
"5XX": {
|
|
35997
|
+
headers: {
|
|
35998
|
+
[name: string]: unknown;
|
|
35999
|
+
};
|
|
36000
|
+
content: {
|
|
36001
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
36002
|
+
};
|
|
36003
|
+
};
|
|
36004
|
+
};
|
|
36005
|
+
};
|
|
36006
|
+
show_api_unprivileged_tools__uuid__get: {
|
|
36007
|
+
parameters: {
|
|
36008
|
+
query?: never;
|
|
36009
|
+
header?: {
|
|
36010
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
36011
|
+
"run-as"?: string | null;
|
|
36012
|
+
};
|
|
36013
|
+
path: {
|
|
36014
|
+
uuid: string;
|
|
36015
|
+
};
|
|
36016
|
+
cookie?: never;
|
|
36017
|
+
};
|
|
36018
|
+
requestBody?: never;
|
|
36019
|
+
responses: {
|
|
36020
|
+
/** @description Successful Response */
|
|
36021
|
+
200: {
|
|
36022
|
+
headers: {
|
|
36023
|
+
[name: string]: unknown;
|
|
36024
|
+
};
|
|
36025
|
+
content: {
|
|
36026
|
+
"application/json": components["schemas"]["UnprivilegedToolResponse"];
|
|
36027
|
+
};
|
|
36028
|
+
};
|
|
36029
|
+
/** @description Request Error */
|
|
36030
|
+
"4XX": {
|
|
36031
|
+
headers: {
|
|
36032
|
+
[name: string]: unknown;
|
|
36033
|
+
};
|
|
36034
|
+
content: {
|
|
36035
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
36036
|
+
};
|
|
36037
|
+
};
|
|
36038
|
+
/** @description Server Error */
|
|
36039
|
+
"5XX": {
|
|
36040
|
+
headers: {
|
|
36041
|
+
[name: string]: unknown;
|
|
36042
|
+
};
|
|
36043
|
+
content: {
|
|
36044
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
36045
|
+
};
|
|
36046
|
+
};
|
|
36047
|
+
};
|
|
36048
|
+
};
|
|
36049
|
+
delete_api_unprivileged_tools__uuid__delete: {
|
|
36050
|
+
parameters: {
|
|
36051
|
+
query?: never;
|
|
36052
|
+
header?: {
|
|
36053
|
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
|
|
36054
|
+
"run-as"?: string | null;
|
|
36055
|
+
};
|
|
36056
|
+
path: {
|
|
36057
|
+
uuid: string;
|
|
36058
|
+
};
|
|
36059
|
+
cookie?: never;
|
|
36060
|
+
};
|
|
36061
|
+
requestBody?: never;
|
|
36062
|
+
responses: {
|
|
36063
|
+
/** @description Successful Response */
|
|
36064
|
+
200: {
|
|
36065
|
+
headers: {
|
|
36066
|
+
[name: string]: unknown;
|
|
36067
|
+
};
|
|
36068
|
+
content: {
|
|
36069
|
+
"application/json": unknown;
|
|
36070
|
+
};
|
|
36071
|
+
};
|
|
36072
|
+
/** @description Request Error */
|
|
36073
|
+
"4XX": {
|
|
36074
|
+
headers: {
|
|
36075
|
+
[name: string]: unknown;
|
|
36076
|
+
};
|
|
36077
|
+
content: {
|
|
36078
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
36079
|
+
};
|
|
36080
|
+
};
|
|
36081
|
+
/** @description Server Error */
|
|
36082
|
+
"5XX": {
|
|
36083
|
+
headers: {
|
|
36084
|
+
[name: string]: unknown;
|
|
36085
|
+
};
|
|
36086
|
+
content: {
|
|
36087
|
+
"application/json": components["schemas"]["MessageExceptionModel"];
|
|
36088
|
+
};
|
|
36089
|
+
};
|
|
36090
|
+
};
|
|
36091
|
+
};
|
|
33207
36092
|
get_users_api_users_get: {
|
|
33208
36093
|
parameters: {
|
|
33209
36094
|
query?: {
|