@globus/sdk 6.1.0 → 6.2.0-canary.12.8b74849

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.
Files changed (51) hide show
  1. package/README.md +17 -0
  2. package/dist/cjs/core/authorization/index.js +1 -1
  3. package/dist/cjs/core/authorization/index.js.map +1 -1
  4. package/dist/cjs/core/info/index.js +1 -1
  5. package/dist/cjs/core/info/index.js.map +1 -1
  6. package/dist/cjs/index.js +246 -120
  7. package/dist/cjs/index.js.map +4 -4
  8. package/dist/cjs/services/globus-connect-server/client.js +1 -1
  9. package/dist/cjs/services/globus-connect-server/client.js.map +1 -1
  10. package/dist/esm/core/info/version.d.ts +1 -1
  11. package/dist/esm/core/info/version.js +1 -1
  12. package/dist/esm/open-api/types/compute.d.ts +356 -88
  13. package/dist/esm/open-api/types/compute.d.ts.map +1 -1
  14. package/dist/esm/open-api/types/flows.d.ts +217 -264
  15. package/dist/esm/open-api/types/flows.d.ts.map +1 -1
  16. package/dist/esm/open-api/types/gcs/v5.4.d.ts +2536 -2276
  17. package/dist/esm/open-api/types/gcs/v5.4.d.ts.map +1 -1
  18. package/dist/esm/open-api/types/search.d.ts +131 -65
  19. package/dist/esm/open-api/types/search.d.ts.map +1 -1
  20. package/dist/esm/open-api/types/timers.d.ts +12 -6
  21. package/dist/esm/open-api/types/timers.d.ts.map +1 -1
  22. package/dist/esm/open-api/types/transfer.d.ts +798 -0
  23. package/dist/esm/open-api/types/transfer.d.ts.map +1 -0
  24. package/dist/esm/open-api/types/transfer.js +2 -0
  25. package/dist/esm/open-api/types/transfer.js.map +1 -0
  26. package/dist/esm/package.json +1 -1
  27. package/dist/esm/services/compute/index.d.ts +1 -1
  28. package/dist/esm/services/compute/index.js +1 -1
  29. package/dist/esm/services/globus-connect-server/client.d.ts +4 -4
  30. package/dist/esm/services/globus-connect-server/client.d.ts.map +1 -1
  31. package/dist/esm/services/search/service/query.d.ts +2 -5
  32. package/dist/esm/services/search/service/query.d.ts.map +1 -1
  33. package/dist/esm/services/search/service/query.js.map +1 -1
  34. package/dist/esm/services/transfer/index.d.ts +2 -0
  35. package/dist/esm/services/transfer/index.d.ts.map +1 -1
  36. package/dist/esm/services/transfer/index.js +2 -0
  37. package/dist/esm/services/transfer/index.js.map +1 -1
  38. package/dist/esm/services/transfer/service/endpoint-search.d.ts +5 -3
  39. package/dist/esm/services/transfer/service/endpoint-search.d.ts.map +1 -1
  40. package/dist/esm/services/transfer/service/endpoint-search.js.map +1 -1
  41. package/dist/esm/services/transfer/service/stream-access-point.d.ts +23 -0
  42. package/dist/esm/services/transfer/service/stream-access-point.d.ts.map +1 -0
  43. package/dist/esm/services/transfer/service/stream-access-point.js +26 -0
  44. package/dist/esm/services/transfer/service/stream-access-point.js.map +1 -0
  45. package/dist/esm/services/transfer/service/tunnel.d.ts +75 -0
  46. package/dist/esm/services/transfer/service/tunnel.d.ts.map +1 -0
  47. package/dist/esm/services/transfer/service/tunnel.js +80 -0
  48. package/dist/esm/services/transfer/service/tunnel.js.map +1 -0
  49. package/dist/umd/globus.production.js +2 -2
  50. package/dist/umd/globus.production.js.map +4 -4
  51. package/package.json +3 -3
@@ -22,6 +22,7 @@ export interface paths {
22
22
  /** @description Set to true to allow this operation to return data with visibility which does not include the current user. Only allowed for index admins and owners. */
23
23
  bypass_visible_to?: boolean;
24
24
  filter_principal_sets?: string[];
25
+ fields?: ("visible_to" | "principal_sets" | "content")[];
25
26
  offset?: number;
26
27
  };
27
28
  header?: never;
@@ -32,15 +33,15 @@ export interface paths {
32
33
  };
33
34
  requestBody?: never;
34
35
  responses: {
35
- /** @description
36
- * A Search Result document.
36
+ /**
37
+ * @description A Search Result document.
37
38
  *
38
39
  * The offset, count, total, and has_next_page fields are computed based on the
39
40
  * number of results which were matched and which results were returned by the
40
41
  * search.
41
42
  * As long as `has_next_page` is True, you can add the count of results to the offset
42
43
  * of a prior query to fetch another page of results.
43
- * */
44
+ */
44
45
  200: {
45
46
  headers: {
46
47
  [name: string]: unknown;
@@ -75,15 +76,15 @@ export interface paths {
75
76
  };
76
77
  };
77
78
  responses: {
78
- /** @description
79
- * A Search Result document.
79
+ /**
80
+ * @description A Search Result document.
80
81
  *
81
82
  * The offset, count, total, and has_next_page fields are computed based on the
82
83
  * number of results which were matched and which results were returned by the
83
84
  * search.
84
85
  * As long as `has_next_page` is True, you can add the count of results to the offset
85
86
  * of a prior query to fetch another page of results.
86
- * */
87
+ */
87
88
  200: {
88
89
  headers: {
89
90
  [name: string]: unknown;
@@ -131,15 +132,15 @@ export interface paths {
131
132
  };
132
133
  };
133
134
  responses: {
134
- /** @description
135
- * A Scroll Result document.
135
+ /**
136
+ * @description A Scroll Result document.
136
137
  *
137
138
  * This is nearly identical to a Search Result, but includes the `marker` parameter.
138
139
  * `marker` is an opaque token which can be used on subsequent requests for pagination.
139
140
  *
140
141
  * NOTE: In rare cases, `has_next_page` may be True until an empty page of results is
141
142
  * reached.
142
- * */
143
+ */
143
144
  200: {
144
145
  headers: {
145
146
  [name: string]: unknown;
@@ -495,7 +496,38 @@ export interface paths {
495
496
  };
496
497
  options?: never;
497
498
  head?: never;
498
- patch?: never;
499
+ /**
500
+ * Index Update Metadata
501
+ * @description Update an index's display_name and description. Only index owners and admins
502
+ * can update an index's metadata. Only indexes with the open status can be updated.
503
+ *
504
+ * Returns the updated index metadata in the response.
505
+ */
506
+ patch: {
507
+ parameters: {
508
+ query?: never;
509
+ header?: never;
510
+ path: {
511
+ index_id: string;
512
+ };
513
+ cookie?: never;
514
+ };
515
+ requestBody?: {
516
+ content: {
517
+ "application/json": components["schemas"]["IndexUpdate"];
518
+ };
519
+ };
520
+ responses: {
521
+ 200: {
522
+ headers: {
523
+ [name: string]: unknown;
524
+ };
525
+ content: {
526
+ "application/json": components["schemas"]["IndexInfo"];
527
+ };
528
+ };
529
+ };
530
+ };
499
531
  trace?: never;
500
532
  };
501
533
  "/v1/index_list": {
@@ -1074,6 +1106,8 @@ export interface components {
1074
1106
  };
1075
1107
  entry_id?: string;
1076
1108
  matched_principal_sets?: string[];
1109
+ visible_to?: string[];
1110
+ principal_sets?: string[];
1077
1111
  };
1078
1112
  GMetaResult: {
1079
1113
  /** @default 2019-08-27 */
@@ -1127,9 +1161,11 @@ export interface components {
1127
1161
  * @example my_field_name
1128
1162
  */
1129
1163
  field_name: string;
1130
- /** @description A name for this facet which is referenced in the results.
1164
+ /**
1165
+ * @description A name for this facet which is referenced in the results.
1131
1166
  *
1132
- * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided. */
1167
+ * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided.
1168
+ */
1133
1169
  name?: string;
1134
1170
  /**
1135
1171
  * @description discriminator enum property added by openapi-typescript
@@ -1148,9 +1184,11 @@ export interface components {
1148
1184
  * @example my_field_name
1149
1185
  */
1150
1186
  field_name: string;
1151
- /** @description A name for this facet which is referenced in the results.
1187
+ /**
1188
+ * @description A name for this facet which is referenced in the results.
1152
1189
  *
1153
- * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided. */
1190
+ * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided.
1191
+ */
1154
1192
  name?: string;
1155
1193
  /**
1156
1194
  * @description discriminator enum property added by openapi-typescript
@@ -1172,9 +1210,11 @@ export interface components {
1172
1210
  * @example my_field_name
1173
1211
  */
1174
1212
  field_name: string;
1175
- /** @description A name for this facet which is referenced in the results.
1213
+ /**
1214
+ * @description A name for this facet which is referenced in the results.
1176
1215
  *
1177
- * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided. */
1216
+ * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided.
1217
+ */
1178
1218
  name?: string;
1179
1219
  /**
1180
1220
  * @description discriminator enum property added by openapi-typescript
@@ -1198,9 +1238,11 @@ export interface components {
1198
1238
  * @example my_field_name
1199
1239
  */
1200
1240
  field_name: string;
1201
- /** @description A name for this facet which is referenced in the results.
1241
+ /**
1242
+ * @description A name for this facet which is referenced in the results.
1202
1243
  *
1203
- * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided. */
1244
+ * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided.
1245
+ */
1204
1246
  name?: string;
1205
1247
  /**
1206
1248
  * @description discriminator enum property added by openapi-typescript
@@ -1225,7 +1267,6 @@ export interface components {
1225
1267
  * query results.
1226
1268
  *
1227
1269
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1228
- *
1229
1270
  * @default false
1230
1271
  */
1231
1272
  post_filter: boolean;
@@ -1247,7 +1288,6 @@ export interface components {
1247
1288
  * query results.
1248
1289
  *
1249
1290
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1250
- *
1251
1291
  * @default true
1252
1292
  */
1253
1293
  post_filter: boolean;
@@ -1277,7 +1317,6 @@ export interface components {
1277
1317
  * query results.
1278
1318
  *
1279
1319
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1280
- *
1281
1320
  * @default true
1282
1321
  */
1283
1322
  post_filter: boolean;
@@ -1303,7 +1342,6 @@ export interface components {
1303
1342
  * query results.
1304
1343
  *
1305
1344
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1306
- *
1307
1345
  * @default true
1308
1346
  */
1309
1347
  post_filter: boolean;
@@ -1314,7 +1352,6 @@ export interface components {
1314
1352
  * and `lon`, for latitude and longitude. The values must be floats, positive or negative,
1315
1353
  * within the range of acceptable coordinate values: [-90.0, 90.0] for latitude, and
1316
1354
  * [-180.0, 180.0] for longitude.
1317
- *
1318
1355
  * @example {
1319
1356
  * "lat": 40.9,
1320
1357
  * "lon": 87.5
@@ -1326,7 +1363,6 @@ export interface components {
1326
1363
  * and `lon`, for latitude and longitude. The values must be floats, positive or negative,
1327
1364
  * within the range of acceptable coordinate values: [-90.0, 90.0] for latitude, and
1328
1365
  * [-180.0, 180.0] for longitude.
1329
- *
1330
1366
  * @example {
1331
1367
  * "lat": 40.9,
1332
1368
  * "lon": 87.5
@@ -1357,7 +1393,6 @@ export interface components {
1357
1393
  * query results.
1358
1394
  *
1359
1395
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1360
- *
1361
1396
  * @default true
1362
1397
  */
1363
1398
  post_filter: boolean;
@@ -1369,7 +1404,6 @@ export interface components {
1369
1404
  *
1370
1405
  * 'intersects': (default) Return documents whose shape intersects the query shape.
1371
1406
  * 'within': Return documents whose shape is fully within the query shape.
1372
- *
1373
1407
  * @default intersects
1374
1408
  * @enum {string}
1375
1409
  */
@@ -1389,7 +1423,6 @@ export interface components {
1389
1423
  * query results.
1390
1424
  *
1391
1425
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1392
- *
1393
1426
  * @default true
1394
1427
  */
1395
1428
  post_filter: boolean;
@@ -1410,7 +1443,6 @@ export interface components {
1410
1443
  * query results.
1411
1444
  *
1412
1445
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1413
- *
1414
1446
  * @default true
1415
1447
  */
1416
1448
  post_filter: boolean;
@@ -1473,7 +1505,6 @@ export interface components {
1473
1505
  * and `lon`, for latitude and longitude. The values must be floats, positive or negative,
1474
1506
  * within the range of acceptable coordinate values: [-90.0, 90.0] for latitude, and
1475
1507
  * [-180.0, 180.0] for longitude.
1476
- *
1477
1508
  * @example {
1478
1509
  * "lat": 40.9,
1479
1510
  * "lon": 87.5
@@ -1485,7 +1516,6 @@ export interface components {
1485
1516
  * and `lon`, for latitude and longitude. The values must be floats, positive or negative,
1486
1517
  * within the range of acceptable coordinate values: [-90.0, 90.0] for latitude, and
1487
1518
  * [-180.0, 180.0] for longitude.
1488
- *
1489
1519
  * @example {
1490
1520
  * "lat": 40.9,
1491
1521
  * "lon": 87.5
@@ -1509,7 +1539,6 @@ export interface components {
1509
1539
  *
1510
1540
  * 'intersects': (default) Return documents whose shape intersects the query shape.
1511
1541
  * 'within': Return documents whose shape is fully within the query shape.
1512
- *
1513
1542
  * @default intersects
1514
1543
  * @enum {string}
1515
1544
  */
@@ -1587,7 +1616,6 @@ export interface components {
1587
1616
  * query results.
1588
1617
  *
1589
1618
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1590
- *
1591
1619
  * @default true
1592
1620
  */
1593
1621
  post_filter: boolean;
@@ -1607,7 +1635,6 @@ export interface components {
1607
1635
  * query results.
1608
1636
  *
1609
1637
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1610
- *
1611
1638
  * @default true
1612
1639
  */
1613
1640
  post_filter: boolean;
@@ -1627,7 +1654,6 @@ export interface components {
1627
1654
  * query results.
1628
1655
  *
1629
1656
  * Defaults to True for all filters except `match_all`, where it defaults to False.
1630
- *
1631
1657
  * @default true
1632
1658
  */
1633
1659
  post_filter: boolean;
@@ -1725,7 +1751,6 @@ export interface components {
1725
1751
  * and `lon`, for latitude and longitude. The values must be floats, positive or negative,
1726
1752
  * within the range of acceptable coordinate values: [-90.0, 90.0] for latitude, and
1727
1753
  * [-180.0, 180.0] for longitude.
1728
- *
1729
1754
  * @example {
1730
1755
  * "lat": 40.9,
1731
1756
  * "lon": 87.5
@@ -1737,7 +1762,6 @@ export interface components {
1737
1762
  * and `lon`, for latitude and longitude. The values must be floats, positive or negative,
1738
1763
  * within the range of acceptable coordinate values: [-90.0, 90.0] for latitude, and
1739
1764
  * [-180.0, 180.0] for longitude.
1740
- *
1741
1765
  * @example {
1742
1766
  * "lat": 40.9,
1743
1767
  * "lon": 87.5
@@ -1768,7 +1792,6 @@ export interface components {
1768
1792
  *
1769
1793
  * 'intersects': (default) Return documents whose shape intersects the query shape.
1770
1794
  * 'within': Return documents whose shape is fully within the query shape.
1771
- *
1772
1795
  * @default intersects
1773
1796
  * @enum {string}
1774
1797
  */
@@ -1829,9 +1852,11 @@ export interface components {
1829
1852
  * @example my_field_name
1830
1853
  */
1831
1854
  field_name: string;
1832
- /** @description A name for this facet which is referenced in the results.
1855
+ /**
1856
+ * @description A name for this facet which is referenced in the results.
1833
1857
  *
1834
- * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided. */
1858
+ * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided.
1859
+ */
1835
1860
  name?: string;
1836
1861
  /**
1837
1862
  * @description discriminator enum property added by openapi-typescript
@@ -1849,9 +1874,11 @@ export interface components {
1849
1874
  * @example my_field_name
1850
1875
  */
1851
1876
  field_name: string;
1852
- /** @description A name for this facet which is referenced in the results.
1877
+ /**
1878
+ * @description A name for this facet which is referenced in the results.
1853
1879
  *
1854
- * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided. */
1880
+ * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided.
1881
+ */
1855
1882
  name?: string;
1856
1883
  /**
1857
1884
  * @description discriminator enum property added by openapi-typescript
@@ -1868,9 +1895,11 @@ export interface components {
1868
1895
  * @example my_field_name
1869
1896
  */
1870
1897
  field_name: string;
1871
- /** @description A name for this facet which is referenced in the results.
1898
+ /**
1899
+ * @description A name for this facet which is referenced in the results.
1872
1900
  *
1873
- * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided. */
1901
+ * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided.
1902
+ */
1874
1903
  name?: string;
1875
1904
  /**
1876
1905
  * @description discriminator enum property added by openapi-typescript
@@ -1890,9 +1919,11 @@ export interface components {
1890
1919
  * @example my_field_name
1891
1920
  */
1892
1921
  field_name: string;
1893
- /** @description A name for this facet which is referenced in the results.
1922
+ /**
1923
+ * @description A name for this facet which is referenced in the results.
1894
1924
  *
1895
- * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided. */
1925
+ * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided.
1926
+ */
1896
1927
  name?: string;
1897
1928
  /**
1898
1929
  * @description discriminator enum property added by openapi-typescript
@@ -1915,9 +1946,11 @@ export interface components {
1915
1946
  * @example my_field_name
1916
1947
  */
1917
1948
  field_name: string;
1918
- /** @description A name for this facet which is referenced in the results.
1949
+ /**
1950
+ * @description A name for this facet which is referenced in the results.
1919
1951
  *
1920
- * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided. */
1952
+ * If `name` is omitted, it will default to the value of the `field_name` property. If more than one facet in a single search request references the same field, a name *must* be provided.
1953
+ */
1921
1954
  name?: string;
1922
1955
  /**
1923
1956
  * @description discriminator enum property added by openapi-typescript
@@ -1959,7 +1992,18 @@ export interface components {
1959
1992
  mode: "advanced_query_string";
1960
1993
  default_operator: string;
1961
1994
  };
1962
- QSettings: components["schemas"]["SimpleQSettings"] | components["schemas"]["AdvancedQSettings"];
1995
+ TextMatchQSettings: {
1996
+ /**
1997
+ * @description discriminator enum property added by openapi-typescript
1998
+ * @enum {string}
1999
+ */
2000
+ mode: "text_match";
2001
+ /** @default and */
2002
+ default_operator: string;
2003
+ /** @default 1 */
2004
+ fuzziness: number;
2005
+ };
2006
+ QSettings: components["schemas"]["SimpleQSettings"] | components["schemas"]["AdvancedQSettings"] | components["schemas"]["TextMatchQSettings"];
1963
2007
  GSearchRequestBodyV1: {
1964
2008
  q?: string;
1965
2009
  /** @default 10 */
@@ -1976,6 +2020,12 @@ export interface components {
1976
2020
  * @enum {string}
1977
2021
  */
1978
2022
  "@version": "query#1.0.0";
2023
+ /**
2024
+ * @default [
2025
+ * "content"
2026
+ * ]
2027
+ */
2028
+ fields: ("visible_to" | "principal_sets" | "content")[];
1979
2029
  offset?: number;
1980
2030
  facets?: components["schemas"]["GFacetV1"][];
1981
2031
  filters?: components["schemas"]["GFilterV1"][];
@@ -2023,6 +2073,12 @@ export interface components {
2023
2073
  "@version": "scroll#1.0.0";
2024
2074
  filters?: components["schemas"]["GFilterV1"][];
2025
2075
  q_settings?: components["schemas"]["QSettings"];
2076
+ /**
2077
+ * @default [
2078
+ * "content"
2079
+ * ]
2080
+ */
2081
+ fields: ("visible_to" | "principal_sets" | "content")[];
2026
2082
  };
2027
2083
  GScrollRequest: components["schemas"]["GScrollRequest2017"] | components["schemas"]["GScrollRequestV1"];
2028
2084
  GScrollResponse: {
@@ -2063,7 +2119,6 @@ export interface components {
2063
2119
  * backslash.
2064
2120
  *
2065
2121
  * Currently, only geo datatypes are supported.
2066
- *
2067
2122
  * @example {
2068
2123
  * "location.center": "geo_point",
2069
2124
  * "location.boundary": "geo_shape"
@@ -2094,7 +2149,6 @@ export interface components {
2094
2149
  * backslash.
2095
2150
  *
2096
2151
  * Currently, only geo datatypes are supported.
2097
- *
2098
2152
  * @example {
2099
2153
  * "location.center": "geo_point",
2100
2154
  * "location.boundary": "geo_shape"
@@ -2162,23 +2216,17 @@ export interface components {
2162
2216
  available?: boolean;
2163
2217
  permissions?: ("owner" | "admin" | "writer")[];
2164
2218
  };
2165
- IndexDeleteResponse: {
2166
- /** @description Always true for successful index deletion. */
2167
- acknowledged?: boolean;
2219
+ IndexUpdate: {
2168
2220
  /**
2169
- * Format: uuid
2170
- * @description The ID of the index which was marked for deletion.
2221
+ * @description The name of the index
2222
+ * @default null
2171
2223
  */
2172
- index_id?: string;
2173
- };
2174
- IndexListWPermissions: {
2175
- index_list?: components["schemas"]["IndexWithPermissions"][];
2176
- };
2177
- IndexCreate: {
2178
- /** @description The name of the index */
2179
- display_name: string;
2180
- /** @description A description of the index */
2181
- description: string;
2224
+ display_name: string | null;
2225
+ /**
2226
+ * @description A description of the index
2227
+ * @default null
2228
+ */
2229
+ description: string | null;
2182
2230
  };
2183
2231
  IndexInfo: {
2184
2232
  /** @default 2017-09-01 */
@@ -2205,6 +2253,24 @@ export interface components {
2205
2253
  /** @description The 'available' field indicates whether or not an index is available to serve queries and process tasks. It is `true` for active indices, but `false` when an index is being deleted or Globus Search is unable to access the index data. */
2206
2254
  available?: boolean;
2207
2255
  };
2256
+ IndexDeleteResponse: {
2257
+ /** @description Always true for successful index deletion. */
2258
+ acknowledged?: boolean;
2259
+ /**
2260
+ * Format: uuid
2261
+ * @description The ID of the index which was marked for deletion.
2262
+ */
2263
+ index_id?: string;
2264
+ };
2265
+ IndexListWPermissions: {
2266
+ index_list?: components["schemas"]["IndexWithPermissions"][];
2267
+ };
2268
+ IndexCreate: {
2269
+ /** @description The name of the index */
2270
+ display_name: string;
2271
+ /** @description A description of the index */
2272
+ description: string;
2273
+ };
2208
2274
  IndexReopenResponse: {
2209
2275
  /** @description Always true for successful index reopen. */
2210
2276
  acknowledged?: boolean;