@@ -39,7 +39,10 @@ export interface paths {
39
39
* multiple roles are specified, the user will have at least one of the
40
40
* specified roles on each Flow returned.
41
41
*
42
- * @example flow_owner,flow_viewers
42
+ * @example [
43
+ * "flow_owner",
44
+ * "flow_viewers"
45
+ * ]
43
46
*/
44
47
filter_roles ?: ( "flow_owner" | "flow_viewers" | "flow_starters" | "flow_administrators" | "run_managers" | "run_monitors" ) [ ] ;
45
48
/**
@@ -62,15 +65,21 @@ export interface paths {
62
65
* returned is guaranteed to contain at least one of the strings in its
63
66
* scope strings.
64
67
*
65
- * @example 0abc,100
68
+ * @example [
69
+ * "0abc",
70
+ * "100"
71
+ * ]
66
72
*/
67
73
filter_scope_string ?: string [ ] ;
68
74
/**
69
75
* @description Performs a case insensitive substring based search on the Flows' title
70
76
* field. If multiple values are specified, each Flow returned
71
77
* is guaranteed to contain at least one of the strings in its title.
72
78
*
73
- * @example hello,science
79
+ * @example [
80
+ * "hello",
81
+ * "science"
82
+ * ]
74
83
*/
75
84
filter_title ?: string [ ] ;
76
85
/**
@@ -79,7 +88,10 @@ export interface paths {
79
88
* is guaranteed to contain at least one of the strings in its
80
89
* subtitle.
81
90
*
82
- * @example hello,science
91
+ * @example [
92
+ * "hello",
93
+ * "science"
94
+ * ]
83
95
*/
84
96
filter_subtitle ?: string [ ] ;
85
97
/**
@@ -88,7 +100,10 @@ export interface paths {
88
100
* is guaranteed to contain at least one of the strings in its
89
101
* description.
90
102
*
91
- * @example hello,science
103
+ * @example [
104
+ * "hello",
105
+ * "science"
106
+ * ]
92
107
*/
93
108
filter_description ?: string [ ] ;
94
109
/**
@@ -97,7 +112,10 @@ export interface paths {
97
112
* is guaranteed to contain at least one of the substrings as a
98
113
* keyword.
99
114
*
100
- * @example hello,science
115
+ * @example [
116
+ * "hello",
117
+ * "science"
118
+ * ]
101
119
*/
102
120
filter_keywords ?: string [ ] ;
103
121
/**
@@ -113,7 +131,9 @@ export interface paths {
113
131
* - id
114
132
* - flow_administrators
115
133
*
116
- * @example globus
134
+ * @example [
135
+ * "globus"
136
+ * ]
117
137
*/
118
138
filter_fulltext ?: string [ ] ;
119
139
/**
@@ -154,10 +174,10 @@ export interface paths {
154
174
* - `ASC`
155
175
* - `DESC`
156
176
*
157
- * By default, the list of flows is sorted by the flows' `id` field
158
- * in ascending order, which is equivalent to `id ASC`.
159
- *
160
- * @example title ASC,id DESC
177
+ * @example [
178
+ * "title ASC",
179
+ * "id DESC"
180
+ * ]
161
181
*/
162
182
orderby ?: components [ "parameters" ] [ "list_flows_orderby" ] ;
163
183
} ;
@@ -651,7 +671,10 @@ export interface paths {
651
671
* @description Return Flow's for which the user has the supplied role. The role the
652
672
* user has on the Flow dictates the operations they can perform.
653
673
*
654
- * @example flow_owner,flow_viewers
674
+ * @example [
675
+ * "flow_owner",
676
+ * "flow_viewers"
677
+ * ]
655
678
*/
656
679
roles ?: ( "flow_owner" | "flow_viewers" | "flow_starters" | "flow_administrators" ) [ ] ;
657
680
} ;
@@ -1420,7 +1443,9 @@ export interface paths {
1420
1443
* If multiple roles are specified, the user will have at least one of
1421
1444
* the specified roles on each Action returned.
1422
1445
*
1423
- * @example run_manager
1446
+ * @example [
1447
+ * "run_manager"
1448
+ * ]
1424
1449
*/
1425
1450
filter_roles ?: ( "run_owner" | "run_manager" | "run_monitor" | "flow_run_manager" | "flow_run_monitor" ) [ ] ;
1426
1451
/**
@@ -1434,7 +1459,9 @@ export interface paths {
1434
1459
* has "run_monitor" role as well. If not provided, only Actions
1435
1460
* for which the caller has "run_owner" role will be returned.
1436
1461
*
1437
- * @example run_manager
1462
+ * @example [
1463
+ * "run_manager"
1464
+ * ]
1438
1465
*/
1439
1466
filter_role ?: "run_monitor" | "run_manager" | "run_owner" | "flow_run_manager" | "flow_run_monitor" ;
1440
1467
/**
@@ -1444,15 +1471,21 @@ export interface paths {
1444
1471
* of the specified states. By default, Actions in any state will be
1445
1472
* returned.
1446
1473
*
1447
- * @example FAILED,INACTIVE
1474
+ * @example [
1475
+ * "FAILED",
1476
+ * "INACTIVE"
1477
+ * ]
1448
1478
*/
1449
1479
filter_status ?: ( "SUCCEEDED" | "FAILED" | "ENDED" | "ACTIVE" | "INACTIVE" ) [ ] ;
1450
1480
/**
1451
1481
* @description Performs a case insensitive string based search on the Actions'
1452
1482
* label fields. If multiple values are specified, each Action returned
1453
1483
* is guaranteed to contain at least one of the strings in its label.
1454
1484
*
1455
- * @example science,tests
1485
+ * @example [
1486
+ * "science",
1487
+ * "tests"
1488
+ * ]
1456
1489
*/
1457
1490
filter_label ?: string [ ] ;
1458
1491
/**
@@ -1530,10 +1563,10 @@ export interface paths {
1530
1563
* - `ASC`
1531
1564
* - `DESC`
1532
1565
*
1533
- * By default, the list of runs is sorted by the runs' `start_time` field
1534
- * in descending order, which is equivalent to ` start_time DESC`.
1535
- *
1536
- * @example start_time ASC,id DESC
1566
+ * @example [
1567
+ * " start_time ASC",
1568
+ * "id DESC"
1569
+ * ]
1537
1570
*/
1538
1571
orderby ?: components [ "parameters" ] [ "list_runs_orderby" ] ;
1539
1572
} ;
@@ -1644,7 +1677,10 @@ export interface paths {
1644
1677
* If multiple roles are specified, the user will have at least one of
1645
1678
* the specified roles on each Action returned.
1646
1679
*
1647
- * @example run_owner,run_managers
1680
+ * @example [
1681
+ * "run_owner",
1682
+ * "run_managers"
1683
+ * ]
1648
1684
*/
1649
1685
filter_roles ?: ( "run_owner" | "run_managers" | "run_monitors" | "flow_run_managers" | "flow_run_monitors" ) [ ] ;
1650
1686
/**
@@ -1668,15 +1704,21 @@ export interface paths {
1668
1704
* of the specified states. By default, Actions in any state will be
1669
1705
* returned.
1670
1706
*
1671
- * @example FAILED,INACTIVE
1707
+ * @example [
1708
+ * "FAILED",
1709
+ * "INACTIVE"
1710
+ * ]
1672
1711
*/
1673
1712
filter_status ?: ( "SUCCEEDED" | "FAILED" | "ENDED" | "ACTIVE" | "INACTIVE" ) [ ] ;
1674
1713
/**
1675
1714
* @description Performs a case insensitive string based search on the Actions'
1676
1715
* label fields. If multiple values are specified, each Action returned
1677
1716
* is guaranteed to contain at least one of the strings in its label.
1678
1717
*
1679
- * @example science,tests
1718
+ * @example [
1719
+ * "science",
1720
+ * "tests"
1721
+ * ]
1680
1722
*/
1681
1723
filter_label ?: string [ ] ;
1682
1724
/**
@@ -1685,7 +1727,10 @@ export interface paths {
1685
1727
* multiple values are specified, each Action returned will have a
1686
1728
* parent Flow with a title matching at least one of the strings.
1687
1729
*
1688
- * @example globus,tests
1730
+ * @example [
1731
+ * "globus",
1732
+ * "tests"
1733
+ * ]
1689
1734
*/
1690
1735
filter_flow_title ?: string [ ] ;
1691
1736
/**
@@ -1694,7 +1739,10 @@ export interface paths {
1694
1739
* specified, each Run returned will have been initiated from at least
1695
1740
* one of the specified Flow IDs.
1696
1741
*
1697
- * @example 6086d817-19d9-4f5b-9329-22ed12d4d3dd,71a70751-19a5-4d19-998e-0709c40321e9
1742
+ * @example [
1743
+ * "00000000-19d9-4f5b-9329-22ed12d4d3dd",
1744
+ * "11111111-19a5-4d19-998e-0709c40321e9"
1745
+ * ]
1698
1746
*/
1699
1747
filter_flow_id ?: string [ ] ;
1700
1748
/**
@@ -1772,10 +1820,10 @@ export interface paths {
1772
1820
* - `ASC`
1773
1821
* - `DESC`
1774
1822
*
1775
- * By default, the list of runs is sorted by the runs' `start_time` field
1776
- * in descending order, which is equivalent to ` start_time DESC`.
1777
- *
1778
- * @example start_time ASC,id DESC
1823
+ * @example [
1824
+ * " start_time ASC",
1825
+ * "id DESC"
1826
+ * ]
1779
1827
*/
1780
1828
orderby ?: components [ "parameters" ] [ "list_runs_orderby" ] ;
1781
1829
} ;
@@ -2710,10 +2758,10 @@ export interface components {
2710
2758
* - `ASC`
2711
2759
* - `DESC`
2712
2760
*
2713
- * By default, the list of flows is sorted by the flows' `id` field
2714
- * in ascending order, which is equivalent to `id ASC`.
2715
- *
2716
- * @example title ASC,id DESC
2761
+ * @example [
2762
+ * "title ASC",
2763
+ * "id DESC"
2764
+ * ]
2717
2765
*/
2718
2766
list_flows_orderby : string [ ] ;
2719
2767
/**
@@ -2752,10 +2800,10 @@ export interface components {
2752
2800
* - `ASC`
2753
2801
* - `DESC`
2754
2802
*
2755
- * By default, the list of runs is sorted by the runs' `start_time` field
2756
- * in descending order, which is equivalent to ` start_time DESC`.
2757
- *
2758
- * @example start_time ASC,id DESC
2803
+ * @example [
2804
+ * " start_time ASC",
2805
+ * "id DESC"
2806
+ * ]
2759
2807
*/
2760
2808
list_runs_orderby : string [ ] ;
2761
2809
} ;
0 commit comments