@globus/sdk 6.0.1 → 6.2.0
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/cjs/core/authorization/index.js +1 -1
- package/dist/cjs/core/authorization/index.js.map +1 -1
- package/dist/cjs/core/info/index.js +1 -1
- package/dist/cjs/core/info/index.js.map +1 -1
- package/dist/cjs/index.js +332 -143
- package/dist/cjs/index.js.map +4 -4
- package/dist/cjs/services/globus-connect-server/client.js +1 -1
- package/dist/cjs/services/globus-connect-server/client.js.map +1 -1
- package/dist/esm/core/info/version.d.ts +1 -1
- package/dist/esm/core/info/version.js +1 -1
- package/dist/esm/open-api/types/compute.d.ts +370 -90
- package/dist/esm/open-api/types/compute.d.ts.map +1 -1
- package/dist/esm/open-api/types/flows.d.ts +210 -262
- package/dist/esm/open-api/types/flows.d.ts.map +1 -1
- package/dist/esm/open-api/types/gcs/v5.4.d.ts +2536 -2276
- package/dist/esm/open-api/types/gcs/v5.4.d.ts.map +1 -1
- package/dist/esm/open-api/types/search.d.ts +104 -64
- package/dist/esm/open-api/types/search.d.ts.map +1 -1
- package/dist/esm/open-api/types/timers.d.ts +17 -7
- package/dist/esm/open-api/types/timers.d.ts.map +1 -1
- package/dist/esm/open-api/types/transfer.d.ts +796 -0
- package/dist/esm/open-api/types/transfer.d.ts.map +1 -0
- package/dist/esm/open-api/types/transfer.js +2 -0
- package/dist/esm/open-api/types/transfer.js.map +1 -0
- package/dist/esm/package.json +1 -1
- package/dist/esm/services/compute/index.d.ts +1 -1
- package/dist/esm/services/compute/index.js +1 -1
- package/dist/esm/services/globus-connect-server/client.d.ts +4 -4
- package/dist/esm/services/globus-connect-server/client.d.ts.map +1 -1
- package/dist/esm/services/groups/service/groups.d.ts +38 -0
- package/dist/esm/services/groups/service/groups.d.ts.map +1 -1
- package/dist/esm/services/groups/service/groups.js +53 -5
- package/dist/esm/services/groups/service/groups.js.map +1 -1
- package/dist/esm/services/groups/service/membership.d.ts +1 -0
- package/dist/esm/services/groups/service/membership.d.ts.map +1 -1
- package/dist/esm/services/groups/service/membership.js +3 -4
- package/dist/esm/services/groups/service/membership.js.map +1 -1
- package/dist/esm/services/groups/service/policies.d.ts +12 -0
- package/dist/esm/services/groups/service/policies.d.ts.map +1 -1
- package/dist/esm/services/groups/service/policies.js +17 -3
- package/dist/esm/services/groups/service/policies.js.map +1 -1
- package/dist/esm/services/search/service/query.d.ts +15 -22
- package/dist/esm/services/search/service/query.d.ts.map +1 -1
- package/dist/esm/services/search/service/query.js.map +1 -1
- package/dist/esm/services/transfer/index.d.ts +2 -0
- package/dist/esm/services/transfer/index.d.ts.map +1 -1
- package/dist/esm/services/transfer/index.js +2 -0
- package/dist/esm/services/transfer/index.js.map +1 -1
- package/dist/esm/services/transfer/service/endpoint-search.d.ts +5 -3
- package/dist/esm/services/transfer/service/endpoint-search.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/endpoint-search.js.map +1 -1
- package/dist/esm/services/transfer/service/stream-access-point.d.ts +23 -0
- package/dist/esm/services/transfer/service/stream-access-point.d.ts.map +1 -0
- package/dist/esm/services/transfer/service/stream-access-point.js +26 -0
- package/dist/esm/services/transfer/service/stream-access-point.js.map +1 -0
- package/dist/esm/services/transfer/service/tunnel.d.ts +75 -0
- package/dist/esm/services/transfer/service/tunnel.d.ts.map +1 -0
- package/dist/esm/services/transfer/service/tunnel.js +80 -0
- package/dist/esm/services/transfer/service/tunnel.js.map +1 -0
- package/dist/umd/globus.production.js +2 -2
- package/dist/umd/globus.production.js.map +4 -4
- package/package.json +2 -2
|
@@ -51,10 +51,10 @@ export interface paths {
|
|
|
51
51
|
cookie?: never;
|
|
52
52
|
};
|
|
53
53
|
/**
|
|
54
|
-
* Get
|
|
54
|
+
* Get Compute Stats
|
|
55
55
|
* @description Get various usage stats.
|
|
56
56
|
*/
|
|
57
|
-
get: operations["
|
|
57
|
+
get: operations["get_compute_stats_v2_stats_get"];
|
|
58
58
|
put?: never;
|
|
59
59
|
post?: never;
|
|
60
60
|
delete?: never;
|
|
@@ -538,6 +538,35 @@ export interface paths {
|
|
|
538
538
|
patch?: never;
|
|
539
539
|
trace?: never;
|
|
540
540
|
};
|
|
541
|
+
"/v3/endpoints/{endpoint_uuid}/subscription-admin-verified": {
|
|
542
|
+
parameters: {
|
|
543
|
+
query?: never;
|
|
544
|
+
header?: never;
|
|
545
|
+
path?: never;
|
|
546
|
+
cookie?: never;
|
|
547
|
+
};
|
|
548
|
+
get?: never;
|
|
549
|
+
/**
|
|
550
|
+
* Verify Endpoint Organization
|
|
551
|
+
* @description Globus subscription administrators may use this route to identify (or
|
|
552
|
+
* disassociate) specific Compute endpoints as officially sanctioned resources
|
|
553
|
+
* for their organization.
|
|
554
|
+
*
|
|
555
|
+
* Note:
|
|
556
|
+
* - The endpoint must be associated with an active Globus Subscription
|
|
557
|
+
* - Only subscription administrators (not managers or members) may change the
|
|
558
|
+
* verification status.
|
|
559
|
+
* - Changes to the status of the subscription admin's identity that verified the
|
|
560
|
+
* endpoint will not affect the endpoint's verification status.
|
|
561
|
+
*/
|
|
562
|
+
put: operations["verify_endpoint_organization_v3_endpoints__endpoint_uuid__subscription_admin_verified_put"];
|
|
563
|
+
post?: never;
|
|
564
|
+
delete?: never;
|
|
565
|
+
options?: never;
|
|
566
|
+
head?: never;
|
|
567
|
+
patch?: never;
|
|
568
|
+
trace?: never;
|
|
569
|
+
};
|
|
541
570
|
"/v3/functions": {
|
|
542
571
|
parameters: {
|
|
543
572
|
query?: never;
|
|
@@ -705,6 +734,56 @@ export interface components {
|
|
|
705
734
|
* @enum {string}
|
|
706
735
|
*/
|
|
707
736
|
BuildStatus: "provided" | "submitted" | "initialized" | "queued" | "building" | "ready" | "failed";
|
|
737
|
+
/**
|
|
738
|
+
* ComputeStatsResponse
|
|
739
|
+
* @example {
|
|
740
|
+
* "total_function_invocations": 100
|
|
741
|
+
* }
|
|
742
|
+
*/
|
|
743
|
+
ComputeStatsResponse: {
|
|
744
|
+
/**
|
|
745
|
+
* Total Function Invocations
|
|
746
|
+
* @description Total function invocations
|
|
747
|
+
*/
|
|
748
|
+
total_function_invocations: number;
|
|
749
|
+
};
|
|
750
|
+
/**
|
|
751
|
+
* ComputeVersionResponse
|
|
752
|
+
* @example {
|
|
753
|
+
* "api": "1.0.9",
|
|
754
|
+
* "min_sdk_version": "1.0.10",
|
|
755
|
+
* "min_ep_version": "1.0.10",
|
|
756
|
+
* "git_sha": "3ae0ff6bc42b6d5f9d92f3c426fe9e535a841hb6",
|
|
757
|
+
* "container_service": "0.0.1"
|
|
758
|
+
* }
|
|
759
|
+
*/
|
|
760
|
+
ComputeVersionResponse: {
|
|
761
|
+
/**
|
|
762
|
+
* Api
|
|
763
|
+
* @description API version
|
|
764
|
+
*/
|
|
765
|
+
api: string;
|
|
766
|
+
/**
|
|
767
|
+
* Min Sdk Version
|
|
768
|
+
* @description Minimum SDK version
|
|
769
|
+
*/
|
|
770
|
+
min_sdk_version?: string;
|
|
771
|
+
/**
|
|
772
|
+
* Min Ep Version
|
|
773
|
+
* @description Minimum endpoint version
|
|
774
|
+
*/
|
|
775
|
+
min_ep_version?: string;
|
|
776
|
+
/**
|
|
777
|
+
* Git Sha
|
|
778
|
+
* @description Git SHA of the latest commit
|
|
779
|
+
*/
|
|
780
|
+
git_sha?: string;
|
|
781
|
+
/**
|
|
782
|
+
* Container Service
|
|
783
|
+
* @description Container service version
|
|
784
|
+
*/
|
|
785
|
+
container_service?: string;
|
|
786
|
+
};
|
|
708
787
|
/** ConsoleNodeInfo */
|
|
709
788
|
ConsoleNodeInfo: {
|
|
710
789
|
/**
|
|
@@ -1098,7 +1177,8 @@ export interface components {
|
|
|
1098
1177
|
* "endpoint_version": "1.0.10",
|
|
1099
1178
|
* "sdk_version": "1.0.10",
|
|
1100
1179
|
* "python_version": "3.12.7",
|
|
1101
|
-
* "subscription_uuid": "b0b7b089-707a-4d90-a036-05b7964d6b60"
|
|
1180
|
+
* "subscription_uuid": "b0b7b089-707a-4d90-a036-05b7964d6b60",
|
|
1181
|
+
* "subscription_admin_verified": false
|
|
1102
1182
|
* }
|
|
1103
1183
|
*/
|
|
1104
1184
|
Endpoint: {
|
|
@@ -1196,6 +1276,12 @@ export interface components {
|
|
|
1196
1276
|
* @description Globus subscription UUID
|
|
1197
1277
|
*/
|
|
1198
1278
|
subscription_uuid?: string;
|
|
1279
|
+
/**
|
|
1280
|
+
* Subscription Admin Verified
|
|
1281
|
+
* @description Indicates that the endpoint has been verified as a valid organizational resource by a Globus subscription administrator.
|
|
1282
|
+
* @default false
|
|
1283
|
+
*/
|
|
1284
|
+
subscription_admin_verified: boolean;
|
|
1199
1285
|
};
|
|
1200
1286
|
/**
|
|
1201
1287
|
* EndpointConfig
|
|
@@ -1578,7 +1664,13 @@ export interface components {
|
|
|
1578
1664
|
error_args: unknown[];
|
|
1579
1665
|
/** Http Status Code */
|
|
1580
1666
|
http_status_code: number;
|
|
1581
|
-
/**
|
|
1667
|
+
/** Detail */
|
|
1668
|
+
detail: string;
|
|
1669
|
+
/**
|
|
1670
|
+
* Reason
|
|
1671
|
+
* @deprecated
|
|
1672
|
+
* @description Deprecated; use `detail` instead
|
|
1673
|
+
*/
|
|
1582
1674
|
reason: string;
|
|
1583
1675
|
};
|
|
1584
1676
|
/**
|
|
@@ -1635,56 +1727,6 @@ export interface components {
|
|
|
1635
1727
|
*/
|
|
1636
1728
|
sdk_version?: string;
|
|
1637
1729
|
};
|
|
1638
|
-
/**
|
|
1639
|
-
* FuncxStatsResponse
|
|
1640
|
-
* @example {
|
|
1641
|
-
* "total_function_invocations": 100
|
|
1642
|
-
* }
|
|
1643
|
-
*/
|
|
1644
|
-
FuncxStatsResponse: {
|
|
1645
|
-
/**
|
|
1646
|
-
* Total Function Invocations
|
|
1647
|
-
* @description Total function invocations
|
|
1648
|
-
*/
|
|
1649
|
-
total_function_invocations: number;
|
|
1650
|
-
};
|
|
1651
|
-
/**
|
|
1652
|
-
* FuncxVersionResponse
|
|
1653
|
-
* @example {
|
|
1654
|
-
* "api": "1.0.9",
|
|
1655
|
-
* "min_sdk_version": "1.0.10",
|
|
1656
|
-
* "min_ep_version": "1.0.10",
|
|
1657
|
-
* "git_sha": "3ae0ff6bc42b6d5f9d92f3c426fe9e535a841hb6",
|
|
1658
|
-
* "container_service": "0.0.1"
|
|
1659
|
-
* }
|
|
1660
|
-
*/
|
|
1661
|
-
FuncxVersionResponse: {
|
|
1662
|
-
/**
|
|
1663
|
-
* Api
|
|
1664
|
-
* @description API version
|
|
1665
|
-
*/
|
|
1666
|
-
api: string;
|
|
1667
|
-
/**
|
|
1668
|
-
* Min Sdk Version
|
|
1669
|
-
* @description Minimum SDK version
|
|
1670
|
-
*/
|
|
1671
|
-
min_sdk_version?: string;
|
|
1672
|
-
/**
|
|
1673
|
-
* Min Ep Version
|
|
1674
|
-
* @description Minimum endpoint version
|
|
1675
|
-
*/
|
|
1676
|
-
min_ep_version?: string;
|
|
1677
|
-
/**
|
|
1678
|
-
* Git Sha
|
|
1679
|
-
* @description Git SHA of the latest commit
|
|
1680
|
-
*/
|
|
1681
|
-
git_sha?: string;
|
|
1682
|
-
/**
|
|
1683
|
-
* Container Service
|
|
1684
|
-
* @description Container service version
|
|
1685
|
-
*/
|
|
1686
|
-
container_service?: string;
|
|
1687
|
-
};
|
|
1688
1730
|
/** HTTPValidationError */
|
|
1689
1731
|
HTTPValidationError: {
|
|
1690
1732
|
/** Detail */
|
|
@@ -1758,6 +1800,85 @@ export interface components {
|
|
|
1758
1800
|
*/
|
|
1759
1801
|
warnings?: string[];
|
|
1760
1802
|
};
|
|
1803
|
+
/** PlatformInfo */
|
|
1804
|
+
PlatformInfo: {
|
|
1805
|
+
/**
|
|
1806
|
+
* Architecture
|
|
1807
|
+
* @description Submit [host architecture tuple](https://docs.python.org/3/library/platform.html#platform.architecture) (e.g., `["64bit", "ELF"]`)
|
|
1808
|
+
*/
|
|
1809
|
+
architecture?: [
|
|
1810
|
+
string,
|
|
1811
|
+
string
|
|
1812
|
+
];
|
|
1813
|
+
/**
|
|
1814
|
+
* Machine
|
|
1815
|
+
* @description Submit [host machine type](https://docs.python.org/3/library/platform.html#platform.machine) (e.g., `x86_64`)
|
|
1816
|
+
*/
|
|
1817
|
+
machine?: string;
|
|
1818
|
+
/**
|
|
1819
|
+
* Node
|
|
1820
|
+
* @description Submit [host node name](https://docs.python.org/3/library/platform.html#platform.node) (e.g., `login03`)
|
|
1821
|
+
*/
|
|
1822
|
+
node?: string;
|
|
1823
|
+
/**
|
|
1824
|
+
* Platform
|
|
1825
|
+
* @description Submit [host platform](https://docs.python.org/3/library/platform.html#platform.platform) (e.g., `Linux-6.14.0-29-generic-x86_64-with-glibc2.39`)
|
|
1826
|
+
*/
|
|
1827
|
+
platform?: string;
|
|
1828
|
+
/**
|
|
1829
|
+
* Processor
|
|
1830
|
+
* @description Submit [host processor name](https://docs.python.org/3/library/platform.html#platform.processor) (e.g., `x86_64`)
|
|
1831
|
+
*/
|
|
1832
|
+
processor?: string;
|
|
1833
|
+
/**
|
|
1834
|
+
* Release
|
|
1835
|
+
* @description Submit [host os release](https://docs.python.org/3/library/platform.html#platform.release) (e.g., `6.16.5-2-generic`)
|
|
1836
|
+
*/
|
|
1837
|
+
release?: string;
|
|
1838
|
+
};
|
|
1839
|
+
/** PythonInfo */
|
|
1840
|
+
PythonInfo: {
|
|
1841
|
+
/**
|
|
1842
|
+
* Version
|
|
1843
|
+
* @description Python [version as a dotted triple](https://docs.python.org/3/library/platform.html#platform.python_version) (e.g., `3.13.7`)
|
|
1844
|
+
*/
|
|
1845
|
+
version?: string;
|
|
1846
|
+
/**
|
|
1847
|
+
* Version Tuple
|
|
1848
|
+
* @description Python version as a tuple (major, minor, micro)
|
|
1849
|
+
*/
|
|
1850
|
+
version_tuple?: [
|
|
1851
|
+
number,
|
|
1852
|
+
number,
|
|
1853
|
+
number
|
|
1854
|
+
];
|
|
1855
|
+
/**
|
|
1856
|
+
* Version Info
|
|
1857
|
+
* @description Python [version info](https://docs.python.org/3/library/sys.html#sys.version_info) from `list(sys.version_info)` (e.g., `[3, 13, 7, 'final', 0]`)
|
|
1858
|
+
*/
|
|
1859
|
+
version_info?: [
|
|
1860
|
+
number,
|
|
1861
|
+
number,
|
|
1862
|
+
number,
|
|
1863
|
+
string,
|
|
1864
|
+
number
|
|
1865
|
+
];
|
|
1866
|
+
/**
|
|
1867
|
+
* Version Description
|
|
1868
|
+
* @description Python [version string](https://docs.python.org/3/library/sys.html#sys.version) from `sys.version` (e.g., `3.13.7 (main, Aug 21 2025, 13:50:03) [GCC 13.3.0]`)
|
|
1869
|
+
*/
|
|
1870
|
+
version_description?: string;
|
|
1871
|
+
/**
|
|
1872
|
+
* Implementation
|
|
1873
|
+
* @description Python [implementation](https://docs.python.org/3/library/platform.html#platform.python_implementation) (e.g., `CPython`)
|
|
1874
|
+
*/
|
|
1875
|
+
implementation?: string;
|
|
1876
|
+
/**
|
|
1877
|
+
* Compiler
|
|
1878
|
+
* @description String [identifying the compiler](https://docs.python.org/3/library/platform.html#platform.python_compiler) used for compiling Python
|
|
1879
|
+
*/
|
|
1880
|
+
compiler?: string;
|
|
1881
|
+
};
|
|
1761
1882
|
/** ReadQueueInfo */
|
|
1762
1883
|
ReadQueueInfo: {
|
|
1763
1884
|
/**
|
|
@@ -1819,6 +1940,19 @@ export interface components {
|
|
|
1819
1940
|
*/
|
|
1820
1941
|
connection_url: string;
|
|
1821
1942
|
};
|
|
1943
|
+
/**
|
|
1944
|
+
* SubscriptionAdminVerified
|
|
1945
|
+
* @example {
|
|
1946
|
+
* "subscription_admin_verified": true
|
|
1947
|
+
* }
|
|
1948
|
+
*/
|
|
1949
|
+
SubscriptionAdminVerified: {
|
|
1950
|
+
/**
|
|
1951
|
+
* Subscription Admin Verified
|
|
1952
|
+
* @description Indicates that the endpoint has been verified as a valid organizational resource by a Globus subscription administrator.
|
|
1953
|
+
*/
|
|
1954
|
+
subscription_admin_verified: boolean;
|
|
1955
|
+
};
|
|
1822
1956
|
/**
|
|
1823
1957
|
* TaskGroupResponse
|
|
1824
1958
|
* @example {
|
|
@@ -1918,19 +2052,30 @@ export interface components {
|
|
|
1918
2052
|
UserRuntime: {
|
|
1919
2053
|
/**
|
|
1920
2054
|
* Globus Compute Sdk Version
|
|
1921
|
-
* @description
|
|
2055
|
+
* @description Globus Compute SDK version (e.g., `4.1.0`)
|
|
1922
2056
|
*/
|
|
1923
2057
|
globus_compute_sdk_version?: string;
|
|
1924
2058
|
/**
|
|
1925
2059
|
* Globus Sdk Version
|
|
1926
|
-
* @description
|
|
2060
|
+
* @description Globus SDK version (e.g., `3.63.0`)
|
|
1927
2061
|
*/
|
|
1928
2062
|
globus_sdk_version?: string;
|
|
1929
2063
|
/**
|
|
1930
2064
|
* Python Version
|
|
1931
|
-
* @
|
|
2065
|
+
* @deprecated
|
|
2066
|
+
* @description [use `python` instead] Python version string from `sys.version`
|
|
1932
2067
|
*/
|
|
1933
2068
|
python_version?: string;
|
|
2069
|
+
/**
|
|
2070
|
+
* Python
|
|
2071
|
+
* @description Information about the submitting user's Python runtime
|
|
2072
|
+
*/
|
|
2073
|
+
python?: components["schemas"]["PythonInfo"];
|
|
2074
|
+
/**
|
|
2075
|
+
* Platform
|
|
2076
|
+
* @description General platform information from the user's installation
|
|
2077
|
+
*/
|
|
2078
|
+
platform?: components["schemas"]["PlatformInfo"];
|
|
1934
2079
|
};
|
|
1935
2080
|
/** ValidationError */
|
|
1936
2081
|
ValidationError: {
|
|
@@ -1951,7 +2096,13 @@ export interface components {
|
|
|
1951
2096
|
error_args: unknown[];
|
|
1952
2097
|
/** Http Status Code */
|
|
1953
2098
|
http_status_code: number;
|
|
1954
|
-
/**
|
|
2099
|
+
/** Detail */
|
|
2100
|
+
detail: components["schemas"]["ValidationError"][];
|
|
2101
|
+
/**
|
|
2102
|
+
* Reason
|
|
2103
|
+
* @deprecated
|
|
2104
|
+
* @description Deprecated; use `detail` instead
|
|
2105
|
+
*/
|
|
1955
2106
|
reason: components["schemas"]["ValidationError"][];
|
|
1956
2107
|
};
|
|
1957
2108
|
/**
|
|
@@ -2013,7 +2164,7 @@ export interface components {
|
|
|
2013
2164
|
* "lock_expiration_timestamp": "2021-07-01T00:00:00.000000"
|
|
2014
2165
|
* }
|
|
2015
2166
|
*/
|
|
2016
|
-
|
|
2167
|
+
compute_web_service__schemas__v2__endpoint__EndpointLockResponse: {
|
|
2017
2168
|
/**
|
|
2018
2169
|
* Endpoint Id
|
|
2019
2170
|
* Format: uuid
|
|
@@ -2053,7 +2204,7 @@ export interface components {
|
|
|
2053
2204
|
* }
|
|
2054
2205
|
* }
|
|
2055
2206
|
*/
|
|
2056
|
-
|
|
2207
|
+
compute_web_service__schemas__v2__endpoint__EndpointRegisterRequest: {
|
|
2057
2208
|
/**
|
|
2058
2209
|
* Endpoint Name
|
|
2059
2210
|
* @description Endpoint name
|
|
@@ -2095,7 +2246,7 @@ export interface components {
|
|
|
2095
2246
|
metadata?: components["schemas"]["EndpointRegisterMetadata"];
|
|
2096
2247
|
};
|
|
2097
2248
|
/** RegisterFunctionMetadata */
|
|
2098
|
-
|
|
2249
|
+
compute_web_service__schemas__v2__function__RegisterFunctionMetadata: {
|
|
2099
2250
|
/**
|
|
2100
2251
|
* Python Version
|
|
2101
2252
|
* @description Python version used to serialize function.
|
|
@@ -2122,7 +2273,7 @@ export interface components {
|
|
|
2122
2273
|
* "public": false
|
|
2123
2274
|
* }
|
|
2124
2275
|
*/
|
|
2125
|
-
|
|
2276
|
+
compute_web_service__schemas__v2__function__RegisterFunctionRequest: {
|
|
2126
2277
|
/**
|
|
2127
2278
|
* Function Name
|
|
2128
2279
|
* @description Function name
|
|
@@ -2143,7 +2294,7 @@ export interface components {
|
|
|
2143
2294
|
* @description Function description
|
|
2144
2295
|
*/
|
|
2145
2296
|
description?: string;
|
|
2146
|
-
metadata?: components["schemas"]["
|
|
2297
|
+
metadata?: components["schemas"]["compute_web_service__schemas__v2__function__RegisterFunctionMetadata"];
|
|
2147
2298
|
/**
|
|
2148
2299
|
* Container Uuid
|
|
2149
2300
|
* Format: uuid
|
|
@@ -2169,7 +2320,7 @@ export interface components {
|
|
|
2169
2320
|
* "function_uuid": "11291b86-4f9c-47cb-848e-d3c06285951c"
|
|
2170
2321
|
* }
|
|
2171
2322
|
*/
|
|
2172
|
-
|
|
2323
|
+
compute_web_service__schemas__v2__function__RegisterFunctionResponse: {
|
|
2173
2324
|
/**
|
|
2174
2325
|
* Function Uuid
|
|
2175
2326
|
* Format: uuid
|
|
@@ -2196,7 +2347,7 @@ export interface components {
|
|
|
2196
2347
|
* ]
|
|
2197
2348
|
* }
|
|
2198
2349
|
*/
|
|
2199
|
-
|
|
2350
|
+
compute_web_service__schemas__v2__task__BatchSubmitRequest: {
|
|
2200
2351
|
/**
|
|
2201
2352
|
* Task Group Id
|
|
2202
2353
|
* Format: uuid
|
|
@@ -2238,7 +2389,7 @@ export interface components {
|
|
|
2238
2389
|
* ]
|
|
2239
2390
|
* }
|
|
2240
2391
|
*/
|
|
2241
|
-
|
|
2392
|
+
compute_web_service__schemas__v2__task__BatchSubmitResponse: {
|
|
2242
2393
|
/**
|
|
2243
2394
|
* Response
|
|
2244
2395
|
* @description Response
|
|
@@ -2263,7 +2414,7 @@ export interface components {
|
|
|
2263
2414
|
* "lock_expiration_timestamp": "1687531403.0434475"
|
|
2264
2415
|
* }
|
|
2265
2416
|
*/
|
|
2266
|
-
|
|
2417
|
+
compute_web_service__schemas__v3__endpoints__EndpointLockResponse: {
|
|
2267
2418
|
/**
|
|
2268
2419
|
* Endpoint Id
|
|
2269
2420
|
* Format: uuid
|
|
@@ -2304,7 +2455,7 @@ export interface components {
|
|
|
2304
2455
|
* }
|
|
2305
2456
|
* }
|
|
2306
2457
|
*/
|
|
2307
|
-
|
|
2458
|
+
compute_web_service__schemas__v3__endpoints__EndpointRegisterRequest: {
|
|
2308
2459
|
/**
|
|
2309
2460
|
* Endpoint Name
|
|
2310
2461
|
* @description Endpoint name
|
|
@@ -2367,7 +2518,7 @@ export interface components {
|
|
|
2367
2518
|
metadata: components["schemas"]["EndpointMetadata"];
|
|
2368
2519
|
};
|
|
2369
2520
|
/** RegisterFunctionMetadata */
|
|
2370
|
-
|
|
2521
|
+
compute_web_service__schemas__v3__function__RegisterFunctionMetadata: {
|
|
2371
2522
|
/**
|
|
2372
2523
|
* Python Version
|
|
2373
2524
|
* @description version used to serialize function
|
|
@@ -2398,7 +2549,7 @@ export interface components {
|
|
|
2398
2549
|
* "public": true
|
|
2399
2550
|
* }
|
|
2400
2551
|
*/
|
|
2401
|
-
|
|
2552
|
+
compute_web_service__schemas__v3__function__RegisterFunctionRequest: {
|
|
2402
2553
|
/**
|
|
2403
2554
|
* Function Name
|
|
2404
2555
|
* @description Function name
|
|
@@ -2418,7 +2569,7 @@ export interface components {
|
|
|
2418
2569
|
* Meta
|
|
2419
2570
|
* @description Function metadata
|
|
2420
2571
|
*/
|
|
2421
|
-
meta: components["schemas"]["
|
|
2572
|
+
meta: components["schemas"]["compute_web_service__schemas__v3__function__RegisterFunctionMetadata"];
|
|
2422
2573
|
/**
|
|
2423
2574
|
* Group
|
|
2424
2575
|
* Format: uuid
|
|
@@ -2444,7 +2595,7 @@ export interface components {
|
|
|
2444
2595
|
* "function_uuid": "11291b86-4f9c-47cb-848e-d3c06285951c"
|
|
2445
2596
|
* }
|
|
2446
2597
|
*/
|
|
2447
|
-
|
|
2598
|
+
compute_web_service__schemas__v3__function__RegisterFunctionResponse: {
|
|
2448
2599
|
/**
|
|
2449
2600
|
* Function Uuid
|
|
2450
2601
|
* Format: uuid
|
|
@@ -2472,6 +2623,39 @@ export interface components {
|
|
|
2472
2623
|
* "num_ranks": 4,
|
|
2473
2624
|
* "launcher_options": "--cpu-bind quiet --mem 3072"
|
|
2474
2625
|
* },
|
|
2626
|
+
* "user_runtime": {
|
|
2627
|
+
* "globus_compute_sdk_version": "3.14.0",
|
|
2628
|
+
* "globus_sdk_version": "3.60.0",
|
|
2629
|
+
* "python": {
|
|
2630
|
+
* "version": "3.13.5",
|
|
2631
|
+
* "version_tuple": [
|
|
2632
|
+
* 3,
|
|
2633
|
+
* 13,
|
|
2634
|
+
* 5
|
|
2635
|
+
* ],
|
|
2636
|
+
* "version_info": [
|
|
2637
|
+
* 3,
|
|
2638
|
+
* 13,
|
|
2639
|
+
* 5,
|
|
2640
|
+
* "final",
|
|
2641
|
+
* 0
|
|
2642
|
+
* ],
|
|
2643
|
+
* "version_description": "3.13.7 (main, Aug 21 2025, 13:50:03) [GCC 13.3.0]",
|
|
2644
|
+
* "implementation": "CPython",
|
|
2645
|
+
* "compiler": "Clang 14.0.6"
|
|
2646
|
+
* },
|
|
2647
|
+
* "platform": {
|
|
2648
|
+
* "architecture": [
|
|
2649
|
+
* "64bit",
|
|
2650
|
+
* "ELF"
|
|
2651
|
+
* ],
|
|
2652
|
+
* "machine": "x86_64",
|
|
2653
|
+
* "node": "login02",
|
|
2654
|
+
* "platform": "Linux-6.16.5-2-generic-x86_64-with-glibc2.39",
|
|
2655
|
+
* "processor": "x86_64",
|
|
2656
|
+
* "release": "6.16.5-2-generic"
|
|
2657
|
+
* }
|
|
2658
|
+
* },
|
|
2475
2659
|
* "result_serializers": [
|
|
2476
2660
|
* "globus_compute_sdk.serialize.JSONData",
|
|
2477
2661
|
* "globus_compute_sdk.serialize.DillDataBase64"
|
|
@@ -2490,7 +2674,7 @@ export interface components {
|
|
|
2490
2674
|
* }
|
|
2491
2675
|
* }
|
|
2492
2676
|
*/
|
|
2493
|
-
|
|
2677
|
+
compute_web_service__schemas__v3__tasks__BatchSubmitRequest: {
|
|
2494
2678
|
/**
|
|
2495
2679
|
* Task Group Id
|
|
2496
2680
|
* Format: uuid
|
|
@@ -2550,7 +2734,7 @@ export interface components {
|
|
|
2550
2734
|
* }
|
|
2551
2735
|
* }
|
|
2552
2736
|
*/
|
|
2553
|
-
|
|
2737
|
+
compute_web_service__schemas__v3__tasks__BatchSubmitResponse: {
|
|
2554
2738
|
/**
|
|
2555
2739
|
* Request Id
|
|
2556
2740
|
* @description A unique string to identify the request; currently this is mainly to aid debugging efforts — such as if a user needs to verify an interaction with Globus Support — and has no automated API hookup or use elsewhere in the Compute ecosystem
|
|
@@ -2608,7 +2792,7 @@ export interface operations {
|
|
|
2608
2792
|
[name: string]: unknown;
|
|
2609
2793
|
};
|
|
2610
2794
|
content: {
|
|
2611
|
-
"application/json": string | components["schemas"]["
|
|
2795
|
+
"application/json": string | components["schemas"]["ComputeVersionResponse"];
|
|
2612
2796
|
};
|
|
2613
2797
|
};
|
|
2614
2798
|
/** @description Validation Error */
|
|
@@ -2674,7 +2858,7 @@ export interface operations {
|
|
|
2674
2858
|
};
|
|
2675
2859
|
};
|
|
2676
2860
|
};
|
|
2677
|
-
|
|
2861
|
+
get_compute_stats_v2_stats_get: {
|
|
2678
2862
|
parameters: {
|
|
2679
2863
|
query?: never;
|
|
2680
2864
|
header?: never;
|
|
@@ -2689,7 +2873,7 @@ export interface operations {
|
|
|
2689
2873
|
[name: string]: unknown;
|
|
2690
2874
|
};
|
|
2691
2875
|
content: {
|
|
2692
|
-
"application/json": components["schemas"]["
|
|
2876
|
+
"application/json": components["schemas"]["ComputeStatsResponse"];
|
|
2693
2877
|
};
|
|
2694
2878
|
};
|
|
2695
2879
|
};
|
|
@@ -2758,7 +2942,7 @@ export interface operations {
|
|
|
2758
2942
|
};
|
|
2759
2943
|
requestBody: {
|
|
2760
2944
|
content: {
|
|
2761
|
-
"application/json": components["schemas"]["
|
|
2945
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v2__task__BatchSubmitRequest"];
|
|
2762
2946
|
};
|
|
2763
2947
|
};
|
|
2764
2948
|
responses: {
|
|
@@ -2768,7 +2952,7 @@ export interface operations {
|
|
|
2768
2952
|
[name: string]: unknown;
|
|
2769
2953
|
};
|
|
2770
2954
|
content: {
|
|
2771
|
-
"application/json": components["schemas"]["
|
|
2955
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v2__task__BatchSubmitResponse"];
|
|
2772
2956
|
};
|
|
2773
2957
|
};
|
|
2774
2958
|
/** @description Validation Error */
|
|
@@ -2959,7 +3143,7 @@ export interface operations {
|
|
|
2959
3143
|
};
|
|
2960
3144
|
requestBody: {
|
|
2961
3145
|
content: {
|
|
2962
|
-
"application/json": components["schemas"]["
|
|
3146
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v2__endpoint__EndpointRegisterRequest"];
|
|
2963
3147
|
};
|
|
2964
3148
|
};
|
|
2965
3149
|
responses: {
|
|
@@ -3097,7 +3281,7 @@ export interface operations {
|
|
|
3097
3281
|
[name: string]: unknown;
|
|
3098
3282
|
};
|
|
3099
3283
|
content: {
|
|
3100
|
-
"application/json": components["schemas"]["
|
|
3284
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v2__endpoint__EndpointLockResponse"];
|
|
3101
3285
|
};
|
|
3102
3286
|
};
|
|
3103
3287
|
/** @description Validation Error */
|
|
@@ -3186,7 +3370,7 @@ export interface operations {
|
|
|
3186
3370
|
};
|
|
3187
3371
|
requestBody: {
|
|
3188
3372
|
content: {
|
|
3189
|
-
"application/json": components["schemas"]["
|
|
3373
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v2__function__RegisterFunctionRequest"];
|
|
3190
3374
|
};
|
|
3191
3375
|
};
|
|
3192
3376
|
responses: {
|
|
@@ -3196,7 +3380,7 @@ export interface operations {
|
|
|
3196
3380
|
[name: string]: unknown;
|
|
3197
3381
|
};
|
|
3198
3382
|
content: {
|
|
3199
|
-
"application/json": components["schemas"]["
|
|
3383
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v2__function__RegisterFunctionResponse"];
|
|
3200
3384
|
};
|
|
3201
3385
|
};
|
|
3202
3386
|
/** @description Validation Error */
|
|
@@ -3287,7 +3471,7 @@ export interface operations {
|
|
|
3287
3471
|
};
|
|
3288
3472
|
requestBody: {
|
|
3289
3473
|
content: {
|
|
3290
|
-
"application/json": components["schemas"]["
|
|
3474
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v3__endpoints__EndpointRegisterRequest"];
|
|
3291
3475
|
};
|
|
3292
3476
|
};
|
|
3293
3477
|
responses: {
|
|
@@ -3371,7 +3555,7 @@ export interface operations {
|
|
|
3371
3555
|
};
|
|
3372
3556
|
requestBody: {
|
|
3373
3557
|
content: {
|
|
3374
|
-
"application/json": components["schemas"]["
|
|
3558
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v3__endpoints__EndpointRegisterRequest"];
|
|
3375
3559
|
};
|
|
3376
3560
|
};
|
|
3377
3561
|
responses: {
|
|
@@ -3476,7 +3660,7 @@ export interface operations {
|
|
|
3476
3660
|
[name: string]: unknown;
|
|
3477
3661
|
};
|
|
3478
3662
|
content: {
|
|
3479
|
-
"application/json": components["schemas"]["
|
|
3663
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v3__endpoints__EndpointLockResponse"];
|
|
3480
3664
|
};
|
|
3481
3665
|
};
|
|
3482
3666
|
/** @description Unauthorized */
|
|
@@ -3541,7 +3725,7 @@ export interface operations {
|
|
|
3541
3725
|
};
|
|
3542
3726
|
requestBody: {
|
|
3543
3727
|
content: {
|
|
3544
|
-
"application/json": components["schemas"]["
|
|
3728
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v3__tasks__BatchSubmitRequest"];
|
|
3545
3729
|
};
|
|
3546
3730
|
};
|
|
3547
3731
|
responses: {
|
|
@@ -3551,7 +3735,7 @@ export interface operations {
|
|
|
3551
3735
|
[name: string]: unknown;
|
|
3552
3736
|
};
|
|
3553
3737
|
content: {
|
|
3554
|
-
"application/json": components["schemas"]["
|
|
3738
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v3__tasks__BatchSubmitResponse"];
|
|
3555
3739
|
};
|
|
3556
3740
|
};
|
|
3557
3741
|
/** @description Unauthorized */
|
|
@@ -3730,6 +3914,93 @@ export interface operations {
|
|
|
3730
3914
|
};
|
|
3731
3915
|
};
|
|
3732
3916
|
};
|
|
3917
|
+
verify_endpoint_organization_v3_endpoints__endpoint_uuid__subscription_admin_verified_put: {
|
|
3918
|
+
parameters: {
|
|
3919
|
+
query?: never;
|
|
3920
|
+
header?: never;
|
|
3921
|
+
path?: never;
|
|
3922
|
+
cookie?: never;
|
|
3923
|
+
};
|
|
3924
|
+
requestBody: {
|
|
3925
|
+
content: {
|
|
3926
|
+
"application/json": components["schemas"]["SubscriptionAdminVerified"];
|
|
3927
|
+
};
|
|
3928
|
+
};
|
|
3929
|
+
responses: {
|
|
3930
|
+
/** @description Successful Response */
|
|
3931
|
+
200: {
|
|
3932
|
+
headers: {
|
|
3933
|
+
[name: string]: unknown;
|
|
3934
|
+
};
|
|
3935
|
+
content: {
|
|
3936
|
+
"application/json": components["schemas"]["SubscriptionAdminVerified"];
|
|
3937
|
+
};
|
|
3938
|
+
};
|
|
3939
|
+
/** @description Bad Request */
|
|
3940
|
+
400: {
|
|
3941
|
+
headers: {
|
|
3942
|
+
[name: string]: unknown;
|
|
3943
|
+
};
|
|
3944
|
+
content: {
|
|
3945
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3946
|
+
};
|
|
3947
|
+
};
|
|
3948
|
+
/** @description Unauthorized */
|
|
3949
|
+
401: {
|
|
3950
|
+
headers: {
|
|
3951
|
+
[name: string]: unknown;
|
|
3952
|
+
};
|
|
3953
|
+
content: {
|
|
3954
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3955
|
+
};
|
|
3956
|
+
};
|
|
3957
|
+
/** @description Forbidden */
|
|
3958
|
+
403: {
|
|
3959
|
+
headers: {
|
|
3960
|
+
[name: string]: unknown;
|
|
3961
|
+
};
|
|
3962
|
+
content: {
|
|
3963
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3964
|
+
};
|
|
3965
|
+
};
|
|
3966
|
+
/** @description Not Found */
|
|
3967
|
+
404: {
|
|
3968
|
+
headers: {
|
|
3969
|
+
[name: string]: unknown;
|
|
3970
|
+
};
|
|
3971
|
+
content: {
|
|
3972
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3973
|
+
};
|
|
3974
|
+
};
|
|
3975
|
+
/** @description Conflict */
|
|
3976
|
+
409: {
|
|
3977
|
+
headers: {
|
|
3978
|
+
[name: string]: unknown;
|
|
3979
|
+
};
|
|
3980
|
+
content: {
|
|
3981
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3982
|
+
};
|
|
3983
|
+
};
|
|
3984
|
+
/** @description Validation Error */
|
|
3985
|
+
422: {
|
|
3986
|
+
headers: {
|
|
3987
|
+
[name: string]: unknown;
|
|
3988
|
+
};
|
|
3989
|
+
content: {
|
|
3990
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3991
|
+
};
|
|
3992
|
+
};
|
|
3993
|
+
/** @description Internal Server Error */
|
|
3994
|
+
500: {
|
|
3995
|
+
headers: {
|
|
3996
|
+
[name: string]: unknown;
|
|
3997
|
+
};
|
|
3998
|
+
content: {
|
|
3999
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4000
|
+
};
|
|
4001
|
+
};
|
|
4002
|
+
};
|
|
4003
|
+
};
|
|
3733
4004
|
register_function_v3_functions_post: {
|
|
3734
4005
|
parameters: {
|
|
3735
4006
|
query?: never;
|
|
@@ -3739,7 +4010,7 @@ export interface operations {
|
|
|
3739
4010
|
};
|
|
3740
4011
|
requestBody: {
|
|
3741
4012
|
content: {
|
|
3742
|
-
"application/json": components["schemas"]["
|
|
4013
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v3__function__RegisterFunctionRequest"];
|
|
3743
4014
|
};
|
|
3744
4015
|
};
|
|
3745
4016
|
responses: {
|
|
@@ -3749,7 +4020,7 @@ export interface operations {
|
|
|
3749
4020
|
[name: string]: unknown;
|
|
3750
4021
|
};
|
|
3751
4022
|
content: {
|
|
3752
|
-
"application/json": components["schemas"]["
|
|
4023
|
+
"application/json": components["schemas"]["compute_web_service__schemas__v3__function__RegisterFunctionResponse"];
|
|
3753
4024
|
};
|
|
3754
4025
|
};
|
|
3755
4026
|
/** @description Unauthorized */
|
|
@@ -3761,6 +4032,15 @@ export interface operations {
|
|
|
3761
4032
|
"application/json": components["schemas"]["ErrorResponse"];
|
|
3762
4033
|
};
|
|
3763
4034
|
};
|
|
4035
|
+
/** @description Forbidden */
|
|
4036
|
+
403: {
|
|
4037
|
+
headers: {
|
|
4038
|
+
[name: string]: unknown;
|
|
4039
|
+
};
|
|
4040
|
+
content: {
|
|
4041
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4042
|
+
};
|
|
4043
|
+
};
|
|
3764
4044
|
/** @description Request Entity Too Large */
|
|
3765
4045
|
413: {
|
|
3766
4046
|
headers: {
|