@globus/sdk 6.3.1 → 6.4.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/README.md +5 -4
- 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 +143 -59
- 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 +372 -394
- package/dist/esm/open-api/types/compute.d.ts.map +1 -1
- package/dist/esm/open-api/types/flows.d.ts +1009 -194
- package/dist/esm/open-api/types/flows.d.ts.map +1 -1
- package/dist/esm/open-api/types/search.d.ts +157 -10
- package/dist/esm/open-api/types/search.d.ts.map +1 -1
- package/dist/esm/open-api/types/transfer.d.ts +8 -6
- package/dist/esm/open-api/types/transfer.d.ts.map +1 -1
- package/dist/esm/package.json +1 -1
- package/dist/esm/services/compute/service/endpoints.d.ts +19 -15
- package/dist/esm/services/compute/service/endpoints.d.ts.map +1 -1
- package/dist/esm/services/flows/config.d.ts +2 -0
- package/dist/esm/services/flows/config.d.ts.map +1 -1
- package/dist/esm/services/flows/config.js +2 -0
- package/dist/esm/services/flows/config.js.map +1 -1
- package/dist/esm/services/flows/index.d.ts +1 -0
- package/dist/esm/services/flows/index.d.ts.map +1 -1
- package/dist/esm/services/flows/index.js +1 -0
- package/dist/esm/services/flows/index.js.map +1 -1
- package/dist/esm/services/flows/service/flows.d.ts +1 -0
- package/dist/esm/services/flows/service/flows.d.ts.map +1 -1
- package/dist/esm/services/flows/service/runs.d.ts +4 -0
- package/dist/esm/services/flows/service/runs.d.ts.map +1 -1
- package/dist/esm/services/flows/service/web-inputs.d.ts +63 -0
- package/dist/esm/services/flows/service/web-inputs.d.ts.map +1 -0
- package/dist/esm/services/flows/service/web-inputs.js +54 -0
- package/dist/esm/services/flows/service/web-inputs.js.map +1 -0
- package/dist/esm/services/search/service/task.d.ts.map +1 -1
- package/dist/esm/services/transfer/index.d.ts +1 -0
- package/dist/esm/services/transfer/index.d.ts.map +1 -1
- package/dist/esm/services/transfer/index.js.map +1 -1
- package/dist/esm/services/transfer/service/stream-access-point.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/tunnel.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/tunnel.js +26 -6
- package/dist/esm/services/transfer/service/tunnel.js.map +1 -1
- package/dist/esm/services/transfer/service/v2/bookmarks.d.ts.map +1 -1
- package/dist/umd/globus.production.js +2 -2
- package/dist/umd/globus.production.js.map +4 -4
- package/package.json +2 -2
|
@@ -590,12 +590,12 @@ export interface components {
|
|
|
590
590
|
* AllowedFunctionsResponse
|
|
591
591
|
* @example {
|
|
592
592
|
* "endpoint_id": "7348422a-1074-427b-a08a-0771068afccc",
|
|
593
|
-
* "restricted": true,
|
|
594
593
|
* "functions": [
|
|
595
594
|
* "063a3a9d-f40e-4b46-950a-fb24f75a345c",
|
|
596
595
|
* "e4b534c3-d9d0-47b0-8334-f52932ad3d9a",
|
|
597
596
|
* "ebe03b69-c966-42fb-ae3f-4a8c9e5b909e"
|
|
598
|
-
* ]
|
|
597
|
+
* ],
|
|
598
|
+
* "restricted": true
|
|
599
599
|
* }
|
|
600
600
|
*/
|
|
601
601
|
AllowedFunctionsResponse: {
|
|
@@ -614,7 +614,7 @@ export interface components {
|
|
|
614
614
|
* Functions
|
|
615
615
|
* @description The functions this endpoint is allowed to execute
|
|
616
616
|
*/
|
|
617
|
-
functions?: string[];
|
|
617
|
+
functions?: string[] | null;
|
|
618
618
|
};
|
|
619
619
|
/**
|
|
620
620
|
* BatchStatusRequest
|
|
@@ -637,16 +637,16 @@ export interface components {
|
|
|
637
637
|
* @example {
|
|
638
638
|
* "response": "batch",
|
|
639
639
|
* "results": {
|
|
640
|
-
* "7dac44aa-c480-4460-b453-a47b03b031f4": {
|
|
641
|
-
* "task_id": "7dac44aa-c480-4460-b453-a47b03b031f4",
|
|
642
|
-
* "status": "success",
|
|
643
|
-
* "result": "10000",
|
|
644
|
-
* "completion_t": "1677183605.212898"
|
|
645
|
-
* },
|
|
646
640
|
* "4b35645f-0c5b-465d-aaec-fee87f74ff5b": {
|
|
647
|
-
* "
|
|
641
|
+
* "reason": "Task failed",
|
|
648
642
|
* "status": "failed",
|
|
649
|
-
* "
|
|
643
|
+
* "task_id": "4b35645f-0c5b-465d-aaec-fee87f74ff5b"
|
|
644
|
+
* },
|
|
645
|
+
* "7dac44aa-c480-4460-b453-a47b03b031f4": {
|
|
646
|
+
* "completion_t": "1677183605.212898",
|
|
647
|
+
* "result": "10000",
|
|
648
|
+
* "status": "success",
|
|
649
|
+
* "task_id": "7dac44aa-c480-4460-b453-a47b03b031f4"
|
|
650
650
|
* }
|
|
651
651
|
* }
|
|
652
652
|
* }
|
|
@@ -677,27 +677,27 @@ export interface components {
|
|
|
677
677
|
* Status
|
|
678
678
|
* @description Task status
|
|
679
679
|
*/
|
|
680
|
-
status
|
|
680
|
+
status: unknown;
|
|
681
681
|
/**
|
|
682
682
|
* Result
|
|
683
683
|
* @description Task result
|
|
684
684
|
*/
|
|
685
|
-
result?: string;
|
|
685
|
+
result?: string | null;
|
|
686
686
|
/**
|
|
687
687
|
* Completion T
|
|
688
688
|
* @description Task completion Unix time
|
|
689
689
|
*/
|
|
690
|
-
completion_t?: string;
|
|
690
|
+
completion_t?: string | null;
|
|
691
691
|
/**
|
|
692
692
|
* Exception
|
|
693
693
|
* @description Exception
|
|
694
694
|
*/
|
|
695
|
-
exception?: string;
|
|
695
|
+
exception?: string | null;
|
|
696
696
|
/**
|
|
697
697
|
* Reason
|
|
698
698
|
* @description Reason for exception
|
|
699
699
|
*/
|
|
700
|
-
reason?: string;
|
|
700
|
+
reason?: string | null;
|
|
701
701
|
};
|
|
702
702
|
/** BatchSubmitResponseTask */
|
|
703
703
|
BatchSubmitResponseTask: {
|
|
@@ -721,11 +721,10 @@ export interface components {
|
|
|
721
721
|
* Reason
|
|
722
722
|
* @description Reason for exception
|
|
723
723
|
*/
|
|
724
|
-
reason?: string;
|
|
724
|
+
reason?: string | null;
|
|
725
725
|
};
|
|
726
726
|
/**
|
|
727
727
|
* BuildStatus
|
|
728
|
-
* @description An enumeration.
|
|
729
728
|
* @enum {string}
|
|
730
729
|
*/
|
|
731
730
|
BuildStatus: "provided" | "submitted" | "initialized" | "queued" | "building" | "ready" | "failed";
|
|
@@ -733,10 +732,10 @@ export interface components {
|
|
|
733
732
|
* ComputeVersionResponse
|
|
734
733
|
* @example {
|
|
735
734
|
* "api": "1.0.9",
|
|
736
|
-
* "
|
|
737
|
-
* "min_ep_version": "1.0.10",
|
|
735
|
+
* "container_service": "0.0.1",
|
|
738
736
|
* "git_sha": "3ae0ff6bc42b6d5f9d92f3c426fe9e535a841hb6",
|
|
739
|
-
* "
|
|
737
|
+
* "min_ep_version": "1.0.10",
|
|
738
|
+
* "min_sdk_version": "1.0.10"
|
|
740
739
|
* }
|
|
741
740
|
*/
|
|
742
741
|
ComputeVersionResponse: {
|
|
@@ -749,22 +748,22 @@ export interface components {
|
|
|
749
748
|
* Min Sdk Version
|
|
750
749
|
* @description Minimum SDK version
|
|
751
750
|
*/
|
|
752
|
-
min_sdk_version?: string;
|
|
751
|
+
min_sdk_version?: string | null;
|
|
753
752
|
/**
|
|
754
753
|
* Min Ep Version
|
|
755
754
|
* @description Minimum endpoint version
|
|
756
755
|
*/
|
|
757
|
-
min_ep_version?: string;
|
|
756
|
+
min_ep_version?: string | null;
|
|
758
757
|
/**
|
|
759
758
|
* Git Sha
|
|
760
759
|
* @description Git SHA of the latest commit
|
|
761
760
|
*/
|
|
762
|
-
git_sha?: string;
|
|
761
|
+
git_sha?: string | null;
|
|
763
762
|
/**
|
|
764
763
|
* Container Service
|
|
765
764
|
* @description Container service version
|
|
766
765
|
*/
|
|
767
|
-
container_service?: string;
|
|
766
|
+
container_service?: string | null;
|
|
768
767
|
};
|
|
769
768
|
/** ConsoleNodeInfo */
|
|
770
769
|
ConsoleNodeInfo: {
|
|
@@ -772,64 +771,64 @@ export interface components {
|
|
|
772
771
|
* Total Worker Count
|
|
773
772
|
* @description Total number of provisioned workers on the node
|
|
774
773
|
*/
|
|
775
|
-
total_worker_count?: number;
|
|
774
|
+
total_worker_count?: number | null;
|
|
776
775
|
/**
|
|
777
776
|
* Idle Duration Seconds
|
|
778
777
|
* @description Idle duration in seconds
|
|
779
778
|
*/
|
|
780
|
-
idle_duration_seconds?: number;
|
|
779
|
+
idle_duration_seconds?: number | null;
|
|
781
780
|
/**
|
|
782
781
|
* Python Version
|
|
783
782
|
* @description Node Python version
|
|
784
783
|
*/
|
|
785
|
-
python_version?: string;
|
|
784
|
+
python_version?: string | null;
|
|
786
785
|
/**
|
|
787
786
|
* Endpoint Version
|
|
788
787
|
* @description Version of `globus-compute-endpoint` running on the node
|
|
789
788
|
*/
|
|
790
|
-
endpoint_version?: string;
|
|
789
|
+
endpoint_version?: string | null;
|
|
791
790
|
/**
|
|
792
791
|
* Sdk Version
|
|
793
792
|
* @description Version of `globus-compute-sdk` running on the node
|
|
794
793
|
*/
|
|
795
|
-
sdk_version?: string;
|
|
794
|
+
sdk_version?: string | null;
|
|
796
795
|
};
|
|
797
796
|
/**
|
|
798
797
|
* ConsoleResponse
|
|
799
798
|
* @example {
|
|
800
799
|
* "user_endpoints": [
|
|
801
800
|
* {
|
|
802
|
-
* "
|
|
801
|
+
* "account": "my-slurm-account",
|
|
803
802
|
* "active": true,
|
|
804
|
-
* "
|
|
803
|
+
* "config": "engine:\n type: GlobusComputeEngine\n max_workers_per_node: 2\n provider:\n type: SlurmProvider\n account: my-slurm-account\n partition: caslake\n worker_init: 'module load Anaconda; source activate compute-env'\n nodes_per_block: 1\n max_blocks: 1\n address:\n type: address_by_interface\n ifname: bond0\n",
|
|
805
804
|
* "endpoint_version": "3.1.1",
|
|
806
|
-
* "
|
|
807
|
-
* "posix_username": "test_user",
|
|
808
|
-
* "start_time_iso": "2025-01-02T21:20:19.123456-05:00",
|
|
809
|
-
* "start_time_unix": 1735870819.123456,
|
|
810
|
-
* "last_heartbeat_unix": 1735884207.498273,
|
|
811
|
-
* "running_task_count": 3,
|
|
812
|
-
* "queued_task_count": 0,
|
|
805
|
+
* "engine_type": "GlobusComputeEngine",
|
|
813
806
|
* "executed_task_count": 15,
|
|
814
|
-
* "total_worker_count": 2,
|
|
815
807
|
* "idle_worker_count": 0,
|
|
816
|
-
* "
|
|
808
|
+
* "last_heartbeat_unix": 1735884207.498273,
|
|
817
809
|
* "node_info": {
|
|
818
810
|
* "some_job_id": [
|
|
819
811
|
* {
|
|
820
|
-
* "
|
|
812
|
+
* "endpoint_version": "3.1.1",
|
|
821
813
|
* "idle_duration_seconds": 0,
|
|
822
814
|
* "python_version": "3.12.7",
|
|
823
|
-
* "
|
|
824
|
-
* "
|
|
815
|
+
* "sdk_version": "3.1.1",
|
|
816
|
+
* "total_worker_count": 2
|
|
825
817
|
* }
|
|
826
818
|
* ]
|
|
827
819
|
* },
|
|
828
|
-
* "
|
|
820
|
+
* "posix_pid": 12345,
|
|
821
|
+
* "posix_username": "test_user",
|
|
829
822
|
* "provider_type": "SlurmProvider",
|
|
830
|
-
* "
|
|
823
|
+
* "python_version": "3.12.7",
|
|
831
824
|
* "queue": "caslake",
|
|
832
|
-
* "
|
|
825
|
+
* "queued_task_count": 0,
|
|
826
|
+
* "running_task_count": 3,
|
|
827
|
+
* "start_time_iso": "2025-01-02T21:20:19.123456-05:00",
|
|
828
|
+
* "start_time_unix": 1735870819.123456,
|
|
829
|
+
* "total_node_count": 1,
|
|
830
|
+
* "total_worker_count": 2,
|
|
831
|
+
* "user_endpoint_id": "7348422a-1074-427b-a08a-0771068afccc"
|
|
833
832
|
* }
|
|
834
833
|
* ]
|
|
835
834
|
* }
|
|
@@ -859,12 +858,12 @@ export interface components {
|
|
|
859
858
|
* Python Version
|
|
860
859
|
* @description User endpoint Python version
|
|
861
860
|
*/
|
|
862
|
-
python_version?: string;
|
|
861
|
+
python_version?: string | null;
|
|
863
862
|
/**
|
|
864
863
|
* Endpoint Version
|
|
865
864
|
* @description User endpoint version
|
|
866
865
|
*/
|
|
867
|
-
endpoint_version?: string;
|
|
866
|
+
endpoint_version?: string | null;
|
|
868
867
|
/**
|
|
869
868
|
* Client Sdk Versions
|
|
870
869
|
* @description SDK versions used to submit tasks to the user endpoint
|
|
@@ -874,106 +873,105 @@ export interface components {
|
|
|
874
873
|
* Posix Pid
|
|
875
874
|
* @description User endpoint process ID
|
|
876
875
|
*/
|
|
877
|
-
posix_pid?: number;
|
|
876
|
+
posix_pid?: number | null;
|
|
878
877
|
/**
|
|
879
878
|
* Posix Username
|
|
880
879
|
* @description Local POSIX user running the user endpoint
|
|
881
880
|
*/
|
|
882
|
-
posix_username?: string;
|
|
881
|
+
posix_username?: string | null;
|
|
883
882
|
/**
|
|
884
883
|
* Start Time Iso
|
|
885
|
-
* Format: date-time
|
|
886
884
|
* @description User endpoint start time in ISO format including timezone offset
|
|
887
885
|
*/
|
|
888
|
-
start_time_iso?: string;
|
|
886
|
+
start_time_iso?: string | null;
|
|
889
887
|
/**
|
|
890
888
|
* Start Time Unix
|
|
891
889
|
* @description UNIX timestamp indicating when the user endpoint was started
|
|
892
890
|
*/
|
|
893
|
-
start_time_unix?: number;
|
|
891
|
+
start_time_unix?: number | null;
|
|
894
892
|
/**
|
|
895
893
|
* Last Heartbeat Unix
|
|
896
894
|
* @description UNIX timestamp indicating when the services last processed a heartbeat for the user endpoint
|
|
897
895
|
*/
|
|
898
|
-
last_heartbeat_unix?: number;
|
|
896
|
+
last_heartbeat_unix?: number | null;
|
|
899
897
|
/**
|
|
900
898
|
* Total Worker Count
|
|
901
899
|
* @description Total number of provisioned workers
|
|
902
900
|
*/
|
|
903
|
-
total_worker_count?: number;
|
|
901
|
+
total_worker_count?: number | null;
|
|
904
902
|
/**
|
|
905
903
|
* Idle Worker Count
|
|
906
904
|
* @description Number of idle workers
|
|
907
905
|
*/
|
|
908
|
-
idle_worker_count?: number;
|
|
906
|
+
idle_worker_count?: number | null;
|
|
909
907
|
/**
|
|
910
908
|
* Total Node Count
|
|
911
909
|
* @description Total number of provisioned nodes
|
|
912
910
|
*/
|
|
913
|
-
total_node_count?: number;
|
|
911
|
+
total_node_count?: number | null;
|
|
914
912
|
/**
|
|
915
913
|
* Node Info
|
|
916
914
|
* @description Details for each provisioned node, indexed by job ID
|
|
917
915
|
*/
|
|
918
916
|
node_info?: {
|
|
919
917
|
[key: string]: components["schemas"]["ConsoleNodeInfo"][];
|
|
920
|
-
};
|
|
918
|
+
} | null;
|
|
921
919
|
/**
|
|
922
920
|
* Running Task Count
|
|
923
921
|
* @description Number of running tasks
|
|
924
922
|
*/
|
|
925
|
-
running_task_count?: number;
|
|
923
|
+
running_task_count?: number | null;
|
|
926
924
|
/**
|
|
927
925
|
* Queued Task Count
|
|
928
926
|
* @description Number of queued tasks
|
|
929
927
|
*/
|
|
930
|
-
queued_task_count?: number;
|
|
928
|
+
queued_task_count?: number | null;
|
|
931
929
|
/**
|
|
932
930
|
* Executed Task Count
|
|
933
931
|
* @description Number of executed tasks
|
|
934
932
|
*/
|
|
935
|
-
executed_task_count?: number;
|
|
933
|
+
executed_task_count?: number | null;
|
|
936
934
|
/**
|
|
937
935
|
* Engine Type
|
|
938
936
|
* @description User endpoint engine type. See our documentation for more information: https://globus-compute.readthedocs.io/en/latest/endpoints/config_reference.html#user-endpoint-configuration
|
|
939
937
|
*/
|
|
940
|
-
engine_type?: string;
|
|
938
|
+
engine_type?: string | null;
|
|
941
939
|
/**
|
|
942
940
|
* Provider Type
|
|
943
941
|
* @description User endpoint provider type. See our documentation for more information: https://globus-compute.readthedocs.io/en/latest/endpoints/config_reference.html#user-endpoint-configuration
|
|
944
942
|
*/
|
|
945
|
-
provider_type?: string;
|
|
943
|
+
provider_type?: string | null;
|
|
946
944
|
/**
|
|
947
945
|
* Account
|
|
948
946
|
* @description The account against which the scheduler charges resources that are consumed by the user endpoint
|
|
949
947
|
*/
|
|
950
|
-
account?: string;
|
|
948
|
+
account?: string | null;
|
|
951
949
|
/**
|
|
952
950
|
* Queue
|
|
953
951
|
* @description The scheduler queue to which the user endpoint will submit jobs
|
|
954
952
|
*/
|
|
955
|
-
queue?: string;
|
|
953
|
+
queue?: string | null;
|
|
956
954
|
/**
|
|
957
955
|
* Config
|
|
958
956
|
* @description User endpoint configuration YAML content. We do not include this field by default because it may be quite large. Users must explicitly request it using the `include_fields` query parameter.
|
|
959
957
|
*/
|
|
960
|
-
config?: string;
|
|
958
|
+
config?: string | null;
|
|
961
959
|
};
|
|
962
960
|
/**
|
|
963
961
|
* ContainerBuildRequest
|
|
964
962
|
* @example {
|
|
965
|
-
* "name": "My Container",
|
|
966
|
-
* "description": "Container with vim and git installed using apt and numpy and pandas installed using pip.",
|
|
967
963
|
* "apt": [
|
|
968
964
|
* "vim",
|
|
969
965
|
* "git"
|
|
970
966
|
* ],
|
|
967
|
+
* "conda": [],
|
|
968
|
+
* "description": "Container with vim and git installed using apt and numpy and pandas installed using pip.",
|
|
969
|
+
* "name": "My Container",
|
|
970
|
+
* "payload_url": "https://github.com/my-container",
|
|
971
971
|
* "pip": [
|
|
972
972
|
* "numpy",
|
|
973
973
|
* "pandas"
|
|
974
|
-
* ]
|
|
975
|
-
* "conda": [],
|
|
976
|
-
* "payload_url": "https://github.com/my-container"
|
|
974
|
+
* ]
|
|
977
975
|
* }
|
|
978
976
|
*/
|
|
979
977
|
ContainerBuildRequest: {
|
|
@@ -986,7 +984,7 @@ export interface components {
|
|
|
986
984
|
* Description
|
|
987
985
|
* @description Long container description
|
|
988
986
|
*/
|
|
989
|
-
description?: string;
|
|
987
|
+
description?: string | null;
|
|
990
988
|
/**
|
|
991
989
|
* Apt
|
|
992
990
|
* @description Optional list of package names to be installed via apt-get
|
|
@@ -1004,10 +1002,9 @@ export interface components {
|
|
|
1004
1002
|
conda: string[];
|
|
1005
1003
|
/**
|
|
1006
1004
|
* Payload Url
|
|
1007
|
-
* Format: uri
|
|
1008
1005
|
* @description URL to GitHub repo or publicly readable zip file
|
|
1009
1006
|
*/
|
|
1010
|
-
payload_url?: string;
|
|
1007
|
+
payload_url?: string | null;
|
|
1011
1008
|
};
|
|
1012
1009
|
/**
|
|
1013
1010
|
* ContainerBuildResponse
|
|
@@ -1036,10 +1033,10 @@ export interface components {
|
|
|
1036
1033
|
/**
|
|
1037
1034
|
* ContainerRegisterRequest
|
|
1038
1035
|
* @example {
|
|
1039
|
-
* "name": "My Container",
|
|
1040
1036
|
* "description": "My container description",
|
|
1041
|
-
* "
|
|
1042
|
-
* "
|
|
1037
|
+
* "location": "docker://my-container:latest",
|
|
1038
|
+
* "name": "My Container",
|
|
1039
|
+
* "type": "docker"
|
|
1043
1040
|
* }
|
|
1044
1041
|
*/
|
|
1045
1042
|
ContainerRegisterRequest: {
|
|
@@ -1052,7 +1049,7 @@ export interface components {
|
|
|
1052
1049
|
* Description
|
|
1053
1050
|
* @description Long container description
|
|
1054
1051
|
*/
|
|
1055
|
-
description?: string;
|
|
1052
|
+
description?: string | null;
|
|
1056
1053
|
type: components["schemas"]["ContainerRuntime"];
|
|
1057
1054
|
/**
|
|
1058
1055
|
* Location
|
|
@@ -1095,32 +1092,32 @@ export interface components {
|
|
|
1095
1092
|
name: string;
|
|
1096
1093
|
/** @description Container build status */
|
|
1097
1094
|
build_status: components["schemas"]["BuildStatus"];
|
|
1098
|
-
type?: components["schemas"]["ContainerRuntime"];
|
|
1095
|
+
type?: components["schemas"]["ContainerRuntime"] | null;
|
|
1099
1096
|
/**
|
|
1100
1097
|
* Location
|
|
1101
1098
|
* @description Container location
|
|
1102
1099
|
*/
|
|
1103
|
-
location?: string;
|
|
1100
|
+
location?: string | null;
|
|
1104
1101
|
/**
|
|
1105
1102
|
* Build Stderr
|
|
1106
1103
|
* @description Container build stderr
|
|
1107
1104
|
*/
|
|
1108
|
-
build_stderr?: string;
|
|
1105
|
+
build_stderr?: string | null;
|
|
1109
1106
|
/**
|
|
1110
1107
|
* Err Message
|
|
1111
1108
|
* @description Container error message
|
|
1112
1109
|
*/
|
|
1113
|
-
err_message?: string;
|
|
1110
|
+
err_message?: string | null;
|
|
1114
1111
|
};
|
|
1115
1112
|
/**
|
|
1116
1113
|
* ContainerStatusResponse
|
|
1117
1114
|
* @example {
|
|
1118
1115
|
* "container": {
|
|
1116
|
+
* "build_status": "ready",
|
|
1119
1117
|
* "container_uuid": "b7a42fa2-e97f-4061-9e64-2ede22ae7f5e",
|
|
1118
|
+
* "location": "docker://my-container:latest",
|
|
1120
1119
|
* "name": "My Container",
|
|
1121
|
-
* "
|
|
1122
|
-
* "type": "docker",
|
|
1123
|
-
* "location": "docker://my-container:latest"
|
|
1120
|
+
* "type": "docker"
|
|
1124
1121
|
* }
|
|
1125
1122
|
* }
|
|
1126
1123
|
*/
|
|
@@ -1143,24 +1140,24 @@ export interface components {
|
|
|
1143
1140
|
/**
|
|
1144
1141
|
* Endpoint
|
|
1145
1142
|
* @example {
|
|
1146
|
-
* "
|
|
1147
|
-
* "name": "My Endpoint",
|
|
1143
|
+
* "description": "My endpoint description",
|
|
1148
1144
|
* "display_name": "My Endpoint's display name",
|
|
1149
|
-
* "multi_user": false,
|
|
1150
|
-
* "high_assurance": false,
|
|
1151
|
-
* "public": false,
|
|
1152
1145
|
* "endpoint_config": "",
|
|
1153
|
-
* "
|
|
1154
|
-
* "
|
|
1155
|
-
* "description": "My endpoint description",
|
|
1146
|
+
* "endpoint_version": "1.0.10",
|
|
1147
|
+
* "high_assurance": false,
|
|
1156
1148
|
* "hostname": "my-endpoint",
|
|
1157
|
-
* "local_user": "user",
|
|
1158
1149
|
* "ip_address": "140.221.112.13",
|
|
1159
|
-
* "
|
|
1160
|
-
* "
|
|
1150
|
+
* "local_user": "user",
|
|
1151
|
+
* "multi_user": false,
|
|
1152
|
+
* "name": "My Endpoint",
|
|
1153
|
+
* "public": false,
|
|
1161
1154
|
* "python_version": "3.12.7",
|
|
1155
|
+
* "sdk_version": "1.0.10",
|
|
1156
|
+
* "subscription_admin_verified": false,
|
|
1162
1157
|
* "subscription_uuid": "b0b7b089-707a-4d90-a036-05b7964d6b60",
|
|
1163
|
-
* "
|
|
1158
|
+
* "user_config_schema": {},
|
|
1159
|
+
* "user_config_template": {},
|
|
1160
|
+
* "uuid": "7348422a-1074-427b-a08a-0771068afccc"
|
|
1164
1161
|
* }
|
|
1165
1162
|
*/
|
|
1166
1163
|
Endpoint: {
|
|
@@ -1200,64 +1197,66 @@ export interface components {
|
|
|
1200
1197
|
* @deprecated
|
|
1201
1198
|
* @description This field is deprecated. Please use endpoint_config instead.
|
|
1202
1199
|
*/
|
|
1203
|
-
config?:
|
|
1200
|
+
config?: {
|
|
1201
|
+
[key: string]: unknown;
|
|
1202
|
+
} | null;
|
|
1204
1203
|
/**
|
|
1205
1204
|
* Endpoint Config
|
|
1206
1205
|
* @description The contents of the endpoint's configuration file (config.yaml).
|
|
1207
1206
|
*/
|
|
1208
|
-
endpoint_config?: string;
|
|
1207
|
+
endpoint_config?: string | null;
|
|
1209
1208
|
/**
|
|
1210
1209
|
* User Config Template
|
|
1211
1210
|
* @description Multi-user endpoints will render this Jinja template with user-provided variables to generate a user-specific endpoint configuration.
|
|
1212
1211
|
*/
|
|
1213
|
-
user_config_template?: string;
|
|
1212
|
+
user_config_template?: string | null;
|
|
1214
1213
|
/**
|
|
1215
1214
|
* User Config Schema
|
|
1216
1215
|
* @description User endpoint configuration schema
|
|
1217
1216
|
*/
|
|
1218
|
-
user_config_schema?:
|
|
1217
|
+
user_config_schema?: {
|
|
1218
|
+
[key: string]: unknown;
|
|
1219
|
+
} | null;
|
|
1219
1220
|
/**
|
|
1220
1221
|
* Description
|
|
1221
1222
|
* @description Endpoint description
|
|
1222
1223
|
*/
|
|
1223
|
-
description?: string;
|
|
1224
|
+
description?: string | null;
|
|
1224
1225
|
/**
|
|
1225
1226
|
* Hostname
|
|
1226
1227
|
* @description Endpoint hostname
|
|
1227
1228
|
*/
|
|
1228
|
-
hostname?: string;
|
|
1229
|
+
hostname?: string | null;
|
|
1229
1230
|
/**
|
|
1230
1231
|
* Local User
|
|
1231
1232
|
* @description Endpoint local user
|
|
1232
1233
|
*/
|
|
1233
|
-
local_user?: string;
|
|
1234
|
+
local_user?: string | null;
|
|
1234
1235
|
/**
|
|
1235
1236
|
* Ip Address
|
|
1236
|
-
* Format: ipvanyaddress
|
|
1237
1237
|
* @description Endpoint IP address
|
|
1238
1238
|
*/
|
|
1239
|
-
ip_address?: string;
|
|
1239
|
+
ip_address?: string | null;
|
|
1240
1240
|
/**
|
|
1241
1241
|
* Endpoint Version
|
|
1242
1242
|
* @description Endpoint version
|
|
1243
1243
|
*/
|
|
1244
|
-
endpoint_version?: string;
|
|
1244
|
+
endpoint_version?: string | null;
|
|
1245
1245
|
/**
|
|
1246
1246
|
* Sdk Version
|
|
1247
1247
|
* @description Endpoint SDK version
|
|
1248
1248
|
*/
|
|
1249
|
-
sdk_version?: string;
|
|
1249
|
+
sdk_version?: string | null;
|
|
1250
1250
|
/**
|
|
1251
1251
|
* Python Version
|
|
1252
1252
|
* @description Endpoint Python version
|
|
1253
1253
|
*/
|
|
1254
|
-
python_version?: string;
|
|
1254
|
+
python_version?: string | null;
|
|
1255
1255
|
/**
|
|
1256
1256
|
* Subscription Uuid
|
|
1257
|
-
* Format: uuid
|
|
1258
1257
|
* @description Globus subscription UUID
|
|
1259
1258
|
*/
|
|
1260
|
-
subscription_uuid?: string;
|
|
1259
|
+
subscription_uuid?: string | null;
|
|
1261
1260
|
/**
|
|
1262
1261
|
* Subscription Admin Verified
|
|
1263
1262
|
* @description Indicates that the endpoint has been verified as a valid organizational resource by a Globus subscription administrator.
|
|
@@ -1269,24 +1268,24 @@ export interface components {
|
|
|
1269
1268
|
* EndpointConfig
|
|
1270
1269
|
* @example {
|
|
1271
1270
|
* "endpoint_id": "7348422a-1074-427b-a08a-0771068afccc",
|
|
1272
|
-
* "task_queue_info": {
|
|
1273
|
-
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1274
|
-
* "exchange": "some_exchange",
|
|
1275
|
-
* "queue": "some_queue"
|
|
1276
|
-
* },
|
|
1277
1271
|
* "result_queue_info": {
|
|
1278
1272
|
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1279
1273
|
* "exchange": "some_exchange",
|
|
1280
1274
|
* "queue": "some_queue",
|
|
1281
1275
|
* "queue_publish_kwargs": {
|
|
1282
1276
|
* "exchange": "some_exchange",
|
|
1283
|
-
* "routing_key": "some_key",
|
|
1284
1277
|
* "mandatory": true,
|
|
1285
1278
|
* "properties": {
|
|
1286
1279
|
* "delivery_mode": 2
|
|
1287
|
-
* }
|
|
1280
|
+
* },
|
|
1281
|
+
* "routing_key": "some_key"
|
|
1288
1282
|
* }
|
|
1289
1283
|
* },
|
|
1284
|
+
* "task_queue_info": {
|
|
1285
|
+
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1286
|
+
* "exchange": "some_exchange",
|
|
1287
|
+
* "queue": "some_queue"
|
|
1288
|
+
* },
|
|
1290
1289
|
* "warnings": []
|
|
1291
1290
|
* }
|
|
1292
1291
|
*/
|
|
@@ -1303,7 +1302,7 @@ export interface components {
|
|
|
1303
1302
|
* Warnings
|
|
1304
1303
|
* @description Warnings
|
|
1305
1304
|
*/
|
|
1306
|
-
warnings?: string[];
|
|
1305
|
+
warnings?: string[] | null;
|
|
1307
1306
|
};
|
|
1308
1307
|
/** EndpointConfigQueueInfo */
|
|
1309
1308
|
EndpointConfigQueueInfo: {
|
|
@@ -1385,10 +1384,10 @@ export interface components {
|
|
|
1385
1384
|
/**
|
|
1386
1385
|
* EndpointListResponseEntry
|
|
1387
1386
|
* @example {
|
|
1388
|
-
* "uuid": "7348422a-1074-427b-a08a-0771068afccc",
|
|
1389
|
-
* "name": "My Endpoint",
|
|
1390
1387
|
* "display_name": "My Endpoint's display name",
|
|
1391
|
-
* "
|
|
1388
|
+
* "name": "My Endpoint",
|
|
1389
|
+
* "owner": "0b3390f4-ca5f-496d-a7b9-9e4faed46bff",
|
|
1390
|
+
* "uuid": "7348422a-1074-427b-a08a-0771068afccc"
|
|
1392
1391
|
* }
|
|
1393
1392
|
*/
|
|
1394
1393
|
EndpointListResponseEntry: {
|
|
@@ -1422,58 +1421,61 @@ export interface components {
|
|
|
1422
1421
|
* @deprecated
|
|
1423
1422
|
* @description This field is deprecated. Please use endpoint_config instead.
|
|
1424
1423
|
*/
|
|
1425
|
-
config?:
|
|
1424
|
+
config?: {
|
|
1425
|
+
[key: string]: unknown;
|
|
1426
|
+
} | null;
|
|
1426
1427
|
/**
|
|
1427
1428
|
* Endpoint Config
|
|
1428
1429
|
* @description The contents of the endpoint's configuration file (config.yaml).
|
|
1429
1430
|
*/
|
|
1430
|
-
endpoint_config?: string;
|
|
1431
|
+
endpoint_config?: string | null;
|
|
1431
1432
|
/**
|
|
1432
1433
|
* User Config Template
|
|
1433
1434
|
* @description Multi-user endpoints will render this Jinja template with user-provided variables to generate a user-specific endpoint configuration.
|
|
1434
1435
|
*/
|
|
1435
|
-
user_config_template?: string;
|
|
1436
|
+
user_config_template?: string | null;
|
|
1436
1437
|
/**
|
|
1437
1438
|
* User Config Schema
|
|
1438
1439
|
* @description User endpoint configuration schema
|
|
1439
1440
|
*/
|
|
1440
|
-
user_config_schema?:
|
|
1441
|
+
user_config_schema?: {
|
|
1442
|
+
[key: string]: unknown;
|
|
1443
|
+
} | null;
|
|
1441
1444
|
/**
|
|
1442
1445
|
* Description
|
|
1443
1446
|
* @description Endpoint description
|
|
1444
1447
|
*/
|
|
1445
|
-
description?: string;
|
|
1448
|
+
description?: string | null;
|
|
1446
1449
|
/**
|
|
1447
1450
|
* Ip Address
|
|
1448
|
-
* Format: ipvanyaddress
|
|
1449
1451
|
* @description Endpoint IP address
|
|
1450
1452
|
*/
|
|
1451
|
-
ip_address?: string;
|
|
1453
|
+
ip_address?: string | null;
|
|
1452
1454
|
/**
|
|
1453
1455
|
* Hostname
|
|
1454
1456
|
* @description Endpoint hostname
|
|
1455
1457
|
*/
|
|
1456
|
-
hostname?: string;
|
|
1458
|
+
hostname?: string | null;
|
|
1457
1459
|
/**
|
|
1458
1460
|
* Local User
|
|
1459
1461
|
* @description Endpoint local user
|
|
1460
1462
|
*/
|
|
1461
|
-
local_user?: string;
|
|
1463
|
+
local_user?: string | null;
|
|
1462
1464
|
/**
|
|
1463
1465
|
* Sdk Version
|
|
1464
1466
|
* @description Endpoint SDK version
|
|
1465
1467
|
*/
|
|
1466
|
-
sdk_version?: string;
|
|
1468
|
+
sdk_version?: string | null;
|
|
1467
1469
|
/**
|
|
1468
1470
|
* Endpoint Version
|
|
1469
1471
|
* @description Endpoint version
|
|
1470
1472
|
*/
|
|
1471
|
-
endpoint_version?: string;
|
|
1473
|
+
endpoint_version?: string | null;
|
|
1472
1474
|
/**
|
|
1473
1475
|
* Python Version
|
|
1474
1476
|
* @description Endpoint Python version
|
|
1475
1477
|
*/
|
|
1476
|
-
python_version?: string;
|
|
1478
|
+
python_version?: string | null;
|
|
1477
1479
|
};
|
|
1478
1480
|
/** EndpointRegisterMetadata */
|
|
1479
1481
|
EndpointRegisterMetadata: {
|
|
@@ -1482,92 +1484,96 @@ export interface components {
|
|
|
1482
1484
|
* @deprecated
|
|
1483
1485
|
* @description This field is deprecated. Please use endpoint_config instead.
|
|
1484
1486
|
*/
|
|
1485
|
-
config?:
|
|
1487
|
+
config?: {
|
|
1488
|
+
[key: string]: unknown;
|
|
1489
|
+
} | null;
|
|
1486
1490
|
/**
|
|
1487
1491
|
* Endpoint Config
|
|
1488
1492
|
* @description The contents of the endpoint's configuration file (config.yaml).
|
|
1489
1493
|
*/
|
|
1490
|
-
endpoint_config?: string;
|
|
1494
|
+
endpoint_config?: string | null;
|
|
1491
1495
|
/**
|
|
1492
1496
|
* User Config Template
|
|
1493
1497
|
* @description Multi-user endpoints will render this Jinja template with user-provided variables to generate a user-specific endpoint configuration.
|
|
1494
1498
|
*/
|
|
1495
|
-
user_config_template?: string;
|
|
1499
|
+
user_config_template?: string | null;
|
|
1496
1500
|
/**
|
|
1497
1501
|
* User Config Schema
|
|
1498
1502
|
* @description User endpoint configuration schema
|
|
1499
1503
|
*/
|
|
1500
|
-
user_config_schema?:
|
|
1504
|
+
user_config_schema?: {
|
|
1505
|
+
[key: string]: unknown;
|
|
1506
|
+
} | null;
|
|
1501
1507
|
/**
|
|
1502
1508
|
* Description
|
|
1503
1509
|
* @description Endpoint description
|
|
1504
1510
|
*/
|
|
1505
|
-
description?: string;
|
|
1511
|
+
description?: string | null;
|
|
1506
1512
|
/**
|
|
1507
1513
|
* Ip Address
|
|
1508
1514
|
* @description Endpoint IP address
|
|
1509
1515
|
*/
|
|
1510
|
-
ip_address?: string;
|
|
1516
|
+
ip_address?: string | null;
|
|
1511
1517
|
/**
|
|
1512
1518
|
* Hostname
|
|
1513
1519
|
* @description Endpoint hostname
|
|
1514
1520
|
*/
|
|
1515
|
-
hostname?: string;
|
|
1521
|
+
hostname?: string | null;
|
|
1516
1522
|
/**
|
|
1517
1523
|
* Local User
|
|
1518
1524
|
* @description Endpoint local user
|
|
1519
1525
|
*/
|
|
1520
|
-
local_user?: string;
|
|
1526
|
+
local_user?: string | null;
|
|
1521
1527
|
/**
|
|
1522
1528
|
* Sdk Version
|
|
1523
1529
|
* @description Endpoint SDK version
|
|
1524
1530
|
*/
|
|
1525
|
-
sdk_version?: string;
|
|
1531
|
+
sdk_version?: string | null;
|
|
1526
1532
|
/**
|
|
1527
1533
|
* Endpoint Version
|
|
1528
1534
|
* @description Endpoint version
|
|
1529
1535
|
*/
|
|
1530
|
-
endpoint_version?: string;
|
|
1536
|
+
endpoint_version?: string | null;
|
|
1531
1537
|
/**
|
|
1532
1538
|
* Python Version
|
|
1533
1539
|
* @description Endpoint Python version
|
|
1534
1540
|
*/
|
|
1535
|
-
python_version?: string;
|
|
1541
|
+
python_version?: string | null;
|
|
1536
1542
|
};
|
|
1537
1543
|
/**
|
|
1538
1544
|
* EndpointRegisterResponse
|
|
1539
1545
|
* @example {
|
|
1540
1546
|
* "endpoint_id": "7348422a-1074-427b-a08a-0771068afccc",
|
|
1541
|
-
* "
|
|
1542
|
-
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1543
|
-
* "exchange": "some_exchange",
|
|
1544
|
-
* "queue": "some_queue"
|
|
1545
|
-
* },
|
|
1546
|
-
* "result_queue_info": {
|
|
1547
|
+
* "heartbeat_queue_info": {
|
|
1547
1548
|
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1548
1549
|
* "exchange": "some_exchange",
|
|
1549
1550
|
* "queue": "some_queue",
|
|
1550
1551
|
* "queue_publish_kwargs": {
|
|
1551
1552
|
* "exchange": "some_exchange",
|
|
1552
|
-
* "routing_key": "some_key",
|
|
1553
1553
|
* "mandatory": true,
|
|
1554
1554
|
* "properties": {
|
|
1555
1555
|
* "delivery_mode": 2
|
|
1556
|
-
* }
|
|
1556
|
+
* },
|
|
1557
|
+
* "routing_key": "some_key"
|
|
1557
1558
|
* }
|
|
1558
1559
|
* },
|
|
1559
|
-
* "
|
|
1560
|
+
* "result_queue_info": {
|
|
1560
1561
|
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1561
1562
|
* "exchange": "some_exchange",
|
|
1562
1563
|
* "queue": "some_queue",
|
|
1563
1564
|
* "queue_publish_kwargs": {
|
|
1564
1565
|
* "exchange": "some_exchange",
|
|
1565
|
-
* "routing_key": "some_key",
|
|
1566
1566
|
* "mandatory": true,
|
|
1567
1567
|
* "properties": {
|
|
1568
1568
|
* "delivery_mode": 2
|
|
1569
|
-
* }
|
|
1569
|
+
* },
|
|
1570
|
+
* "routing_key": "some_key"
|
|
1570
1571
|
* }
|
|
1572
|
+
* },
|
|
1573
|
+
* "task_queue_info": {
|
|
1574
|
+
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1575
|
+
* "exchange": "some_exchange",
|
|
1576
|
+
* "queue": "some_queue"
|
|
1571
1577
|
* }
|
|
1572
1578
|
* }
|
|
1573
1579
|
*/
|
|
@@ -1585,7 +1591,7 @@ export interface components {
|
|
|
1585
1591
|
* Warnings
|
|
1586
1592
|
* @description Warnings
|
|
1587
1593
|
*/
|
|
1588
|
-
warnings?: string[];
|
|
1594
|
+
warnings?: string[] | null;
|
|
1589
1595
|
};
|
|
1590
1596
|
/** EndpointStatusDetails */
|
|
1591
1597
|
EndpointStatusDetails: {
|
|
@@ -1593,43 +1599,45 @@ export interface components {
|
|
|
1593
1599
|
* Total Workers
|
|
1594
1600
|
* @description Total number of workers
|
|
1595
1601
|
*/
|
|
1596
|
-
total_workers: number;
|
|
1602
|
+
total_workers: number | ("NaN" | "Infinity" | "-Infinity");
|
|
1597
1603
|
/**
|
|
1598
1604
|
* Idle Workers
|
|
1599
1605
|
* @description Number of idle workers
|
|
1600
1606
|
*/
|
|
1601
|
-
idle_workers: number;
|
|
1607
|
+
idle_workers: number | ("NaN" | "Infinity" | "-Infinity");
|
|
1602
1608
|
/**
|
|
1603
1609
|
* Pending Tasks
|
|
1604
1610
|
* @description Number of pending tasks
|
|
1605
1611
|
*/
|
|
1606
|
-
pending_tasks: number;
|
|
1612
|
+
pending_tasks: number | ("NaN" | "Infinity" | "-Infinity");
|
|
1607
1613
|
/**
|
|
1608
1614
|
* Outstanding Tasks
|
|
1609
1615
|
* @description Number of outstanding tasks
|
|
1610
1616
|
*/
|
|
1611
|
-
outstanding_tasks: number;
|
|
1617
|
+
outstanding_tasks: number | ("NaN" | "Infinity" | "-Infinity");
|
|
1612
1618
|
/**
|
|
1613
1619
|
* Managers
|
|
1614
1620
|
* @description Number of managers
|
|
1615
1621
|
*/
|
|
1616
|
-
managers?: number;
|
|
1622
|
+
managers?: number | ("NaN" | "Infinity" | "-Infinity") | null;
|
|
1623
|
+
} & {
|
|
1624
|
+
[key: string]: unknown;
|
|
1617
1625
|
};
|
|
1618
1626
|
/**
|
|
1619
1627
|
* EndpointStatusResponse
|
|
1620
1628
|
* @example {
|
|
1621
1629
|
* "details": {
|
|
1622
|
-
* "total_workers": 1,
|
|
1623
1630
|
* "idle_workers": 0,
|
|
1624
|
-
* "
|
|
1631
|
+
* "managers": 1,
|
|
1625
1632
|
* "outstanding_tasks": 0,
|
|
1626
|
-
* "
|
|
1633
|
+
* "pending_tasks": 0,
|
|
1634
|
+
* "total_workers": 1
|
|
1627
1635
|
* },
|
|
1628
1636
|
* "status": "online"
|
|
1629
1637
|
* }
|
|
1630
1638
|
*/
|
|
1631
1639
|
EndpointStatusResponse: {
|
|
1632
|
-
details?: components["schemas"]["EndpointStatusDetails"];
|
|
1640
|
+
details?: components["schemas"]["EndpointStatusDetails"] | null;
|
|
1633
1641
|
/**
|
|
1634
1642
|
* Status
|
|
1635
1643
|
* @description Endpoint status
|
|
@@ -1658,10 +1666,10 @@ export interface components {
|
|
|
1658
1666
|
/**
|
|
1659
1667
|
* Function
|
|
1660
1668
|
* @example {
|
|
1661
|
-
* "function_uuid": "11291b86-4f9c-47cb-848e-d3c06285951c",
|
|
1662
|
-
* "function_name": "My Function",
|
|
1663
|
-
* "function_code": "wuX2RpbGyUjBBfY3JlYXRlX2Z1bmN0 ...",
|
|
1664
1669
|
* "description": "My first function",
|
|
1670
|
+
* "function_code": "wuX2RpbGyUjBBfY3JlYXRlX2Z1bmN0 ...",
|
|
1671
|
+
* "function_name": "My Function",
|
|
1672
|
+
* "function_uuid": "11291b86-4f9c-47cb-848e-d3c06285951c",
|
|
1665
1673
|
* "metadata": {
|
|
1666
1674
|
* "python_version": "3.11.3",
|
|
1667
1675
|
* "sdk_version": "2.3.3"
|
|
@@ -1679,21 +1687,18 @@ export interface components {
|
|
|
1679
1687
|
* Function Name
|
|
1680
1688
|
* @description Function name
|
|
1681
1689
|
*/
|
|
1682
|
-
function_name?: string;
|
|
1690
|
+
function_name?: string | null;
|
|
1683
1691
|
/**
|
|
1684
1692
|
* Description
|
|
1685
1693
|
* @description Function description
|
|
1686
1694
|
*/
|
|
1687
|
-
description?: string;
|
|
1695
|
+
description?: string | null;
|
|
1688
1696
|
/**
|
|
1689
1697
|
* Function Code
|
|
1690
1698
|
* @description Serialized function source code
|
|
1691
1699
|
*/
|
|
1692
1700
|
function_code: string;
|
|
1693
|
-
/**
|
|
1694
|
-
* Metadata
|
|
1695
|
-
* @description Function metadata
|
|
1696
|
-
*/
|
|
1701
|
+
/** @description Function metadata */
|
|
1697
1702
|
metadata: components["schemas"]["FunctionMetadata"];
|
|
1698
1703
|
};
|
|
1699
1704
|
/** FunctionMetadata */
|
|
@@ -1702,12 +1707,12 @@ export interface components {
|
|
|
1702
1707
|
* Python Version
|
|
1703
1708
|
* @description Python version used to serialize function.
|
|
1704
1709
|
*/
|
|
1705
|
-
python_version?: string;
|
|
1710
|
+
python_version?: string | null;
|
|
1706
1711
|
/**
|
|
1707
1712
|
* Sdk Version
|
|
1708
1713
|
* @description SDK version used to serialize function.
|
|
1709
1714
|
*/
|
|
1710
|
-
sdk_version?: string;
|
|
1715
|
+
sdk_version?: string | null;
|
|
1711
1716
|
};
|
|
1712
1717
|
/** HTTPValidationError */
|
|
1713
1718
|
HTTPValidationError: {
|
|
@@ -1727,41 +1732,41 @@ export interface components {
|
|
|
1727
1732
|
* Warnings
|
|
1728
1733
|
* @description Warnings
|
|
1729
1734
|
*/
|
|
1730
|
-
warnings?: string[];
|
|
1735
|
+
warnings?: string[] | null;
|
|
1731
1736
|
};
|
|
1732
1737
|
/**
|
|
1733
1738
|
* MultiUserEndpointRegisterResponse
|
|
1734
1739
|
* @example {
|
|
1735
|
-
* "endpoint_id": "7348422a-1074-427b-a08a-0771068afccc",
|
|
1736
1740
|
* "command_queue_info": {
|
|
1737
1741
|
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1738
1742
|
* "exchange": "some_exchange",
|
|
1739
1743
|
* "queue": "some_queue"
|
|
1740
1744
|
* },
|
|
1741
|
-
* "
|
|
1745
|
+
* "endpoint_id": "7348422a-1074-427b-a08a-0771068afccc",
|
|
1746
|
+
* "heartbeat_queue_info": {
|
|
1742
1747
|
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1743
1748
|
* "exchange": "some_exchange",
|
|
1744
1749
|
* "queue": "some_queue",
|
|
1745
1750
|
* "queue_publish_kwargs": {
|
|
1746
1751
|
* "exchange": "some_exchange",
|
|
1747
|
-
* "routing_key": "some_key",
|
|
1748
1752
|
* "mandatory": true,
|
|
1749
1753
|
* "properties": {
|
|
1750
1754
|
* "delivery_mode": 2
|
|
1751
|
-
* }
|
|
1755
|
+
* },
|
|
1756
|
+
* "routing_key": "some_key"
|
|
1752
1757
|
* }
|
|
1753
1758
|
* },
|
|
1754
|
-
* "
|
|
1759
|
+
* "result_queue_info": {
|
|
1755
1760
|
* "connection_url": "amqps://user:password@mq.fqdn",
|
|
1756
1761
|
* "exchange": "some_exchange",
|
|
1757
1762
|
* "queue": "some_queue",
|
|
1758
1763
|
* "queue_publish_kwargs": {
|
|
1759
1764
|
* "exchange": "some_exchange",
|
|
1760
|
-
* "routing_key": "some_key",
|
|
1761
1765
|
* "mandatory": true,
|
|
1762
1766
|
* "properties": {
|
|
1763
1767
|
* "delivery_mode": 2
|
|
1764
|
-
* }
|
|
1768
|
+
* },
|
|
1769
|
+
* "routing_key": "some_key"
|
|
1765
1770
|
* }
|
|
1766
1771
|
* }
|
|
1767
1772
|
* }
|
|
@@ -1780,7 +1785,7 @@ export interface components {
|
|
|
1780
1785
|
* Warnings
|
|
1781
1786
|
* @description Warnings
|
|
1782
1787
|
*/
|
|
1783
|
-
warnings?: string[];
|
|
1788
|
+
warnings?: string[] | null;
|
|
1784
1789
|
};
|
|
1785
1790
|
/** PlatformInfo */
|
|
1786
1791
|
PlatformInfo: {
|
|
@@ -1791,32 +1796,32 @@ export interface components {
|
|
|
1791
1796
|
architecture?: [
|
|
1792
1797
|
string,
|
|
1793
1798
|
string
|
|
1794
|
-
];
|
|
1799
|
+
] | null;
|
|
1795
1800
|
/**
|
|
1796
1801
|
* Machine
|
|
1797
1802
|
* @description Submit [host machine type](https://docs.python.org/3/library/platform.html#platform.machine) (e.g., `x86_64`)
|
|
1798
1803
|
*/
|
|
1799
|
-
machine?: string;
|
|
1804
|
+
machine?: string | null;
|
|
1800
1805
|
/**
|
|
1801
1806
|
* Node
|
|
1802
1807
|
* @description Submit [host node name](https://docs.python.org/3/library/platform.html#platform.node) (e.g., `login03`)
|
|
1803
1808
|
*/
|
|
1804
|
-
node?: string;
|
|
1809
|
+
node?: string | null;
|
|
1805
1810
|
/**
|
|
1806
1811
|
* Platform
|
|
1807
1812
|
* @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`)
|
|
1808
1813
|
*/
|
|
1809
|
-
platform?: string;
|
|
1814
|
+
platform?: string | null;
|
|
1810
1815
|
/**
|
|
1811
1816
|
* Processor
|
|
1812
1817
|
* @description Submit [host processor name](https://docs.python.org/3/library/platform.html#platform.processor) (e.g., `x86_64`)
|
|
1813
1818
|
*/
|
|
1814
|
-
processor?: string;
|
|
1819
|
+
processor?: string | null;
|
|
1815
1820
|
/**
|
|
1816
1821
|
* Release
|
|
1817
1822
|
* @description Submit [host os release](https://docs.python.org/3/library/platform.html#platform.release) (e.g., `6.16.5-2-generic`)
|
|
1818
1823
|
*/
|
|
1819
|
-
release?: string;
|
|
1824
|
+
release?: string | null;
|
|
1820
1825
|
};
|
|
1821
1826
|
/** PythonInfo */
|
|
1822
1827
|
PythonInfo: {
|
|
@@ -1824,7 +1829,7 @@ export interface components {
|
|
|
1824
1829
|
* Version
|
|
1825
1830
|
* @description Python [version as a dotted triple](https://docs.python.org/3/library/platform.html#platform.python_version) (e.g., `3.13.7`)
|
|
1826
1831
|
*/
|
|
1827
|
-
version?: string;
|
|
1832
|
+
version?: string | null;
|
|
1828
1833
|
/**
|
|
1829
1834
|
* Version Tuple
|
|
1830
1835
|
* @description Python version as a tuple (major, minor, micro)
|
|
@@ -1833,7 +1838,7 @@ export interface components {
|
|
|
1833
1838
|
number,
|
|
1834
1839
|
number,
|
|
1835
1840
|
number
|
|
1836
|
-
];
|
|
1841
|
+
] | null;
|
|
1837
1842
|
/**
|
|
1838
1843
|
* Version Info
|
|
1839
1844
|
* @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]`)
|
|
@@ -1844,22 +1849,22 @@ export interface components {
|
|
|
1844
1849
|
number,
|
|
1845
1850
|
string,
|
|
1846
1851
|
number
|
|
1847
|
-
];
|
|
1852
|
+
] | null;
|
|
1848
1853
|
/**
|
|
1849
1854
|
* Version Description
|
|
1850
1855
|
* @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]`)
|
|
1851
1856
|
*/
|
|
1852
|
-
version_description?: string;
|
|
1857
|
+
version_description?: string | null;
|
|
1853
1858
|
/**
|
|
1854
1859
|
* Implementation
|
|
1855
1860
|
* @description Python [implementation](https://docs.python.org/3/library/platform.html#platform.python_implementation) (e.g., `CPython`)
|
|
1856
1861
|
*/
|
|
1857
|
-
implementation?: string;
|
|
1862
|
+
implementation?: string | null;
|
|
1858
1863
|
/**
|
|
1859
1864
|
* Compiler
|
|
1860
1865
|
* @description String [identifying the compiler](https://docs.python.org/3/library/platform.html#platform.python_compiler) used for compiling Python
|
|
1861
1866
|
*/
|
|
1862
|
-
compiler?: string;
|
|
1867
|
+
compiler?: string | null;
|
|
1863
1868
|
};
|
|
1864
1869
|
/** ReadQueueInfo */
|
|
1865
1870
|
ReadQueueInfo: {
|
|
@@ -1890,23 +1895,23 @@ export interface components {
|
|
|
1890
1895
|
* Ranks Per Node
|
|
1891
1896
|
* @description Number of MPI ranks to launch per node.
|
|
1892
1897
|
*/
|
|
1893
|
-
ranks_per_node?: number;
|
|
1898
|
+
ranks_per_node?: number | null;
|
|
1894
1899
|
/**
|
|
1895
1900
|
* Num Ranks
|
|
1896
1901
|
* @description Total number of MPI ranks to launch across all nodes.
|
|
1897
1902
|
*/
|
|
1898
|
-
num_ranks?: number;
|
|
1903
|
+
num_ranks?: number | null;
|
|
1899
1904
|
/**
|
|
1900
1905
|
* Launcher Options
|
|
1901
1906
|
* @description Options passed through to the MPI launcher command line prefix.
|
|
1902
1907
|
*/
|
|
1903
|
-
launcher_options?: string;
|
|
1908
|
+
launcher_options?: string | null;
|
|
1904
1909
|
};
|
|
1905
1910
|
/**
|
|
1906
1911
|
* ResultAmqpUrlResponse
|
|
1907
1912
|
* @example {
|
|
1908
|
-
* "
|
|
1909
|
-
* "
|
|
1913
|
+
* "connection_url": "amqps://user:password@amq.fqdn",
|
|
1914
|
+
* "queue_prefix": "some_prefix"
|
|
1910
1915
|
* }
|
|
1911
1916
|
*/
|
|
1912
1917
|
ResultAmqpUrlResponse: {
|
|
@@ -1938,12 +1943,12 @@ export interface components {
|
|
|
1938
1943
|
/**
|
|
1939
1944
|
* TaskGroupResponse
|
|
1940
1945
|
* @example {
|
|
1941
|
-
* "taskgroup_id": "4defbef8-0a1a-4c7b-9c83-b59174fca395",
|
|
1942
1946
|
* "create_websockets_queue": true,
|
|
1947
|
+
* "taskgroup_id": "4defbef8-0a1a-4c7b-9c83-b59174fca395",
|
|
1943
1948
|
* "tasks": [
|
|
1944
1949
|
* {
|
|
1945
|
-
* "
|
|
1946
|
-
* "
|
|
1950
|
+
* "created_at": "2021-05-05T15:00:00.000000",
|
|
1951
|
+
* "id": "9e38ed49-7d05-45c4-9ad0-bfa3bc92d6a1"
|
|
1947
1952
|
* }
|
|
1948
1953
|
* ]
|
|
1949
1954
|
* }
|
|
@@ -1959,7 +1964,7 @@ export interface components {
|
|
|
1959
1964
|
* Create Websockets Queue
|
|
1960
1965
|
* @description Create websockets queue
|
|
1961
1966
|
*/
|
|
1962
|
-
create_websockets_queue?: boolean;
|
|
1967
|
+
create_websockets_queue?: boolean | null;
|
|
1963
1968
|
/** Tasks */
|
|
1964
1969
|
tasks: components["schemas"]["TaskGroupResponseTask"][];
|
|
1965
1970
|
};
|
|
@@ -1981,20 +1986,20 @@ export interface components {
|
|
|
1981
1986
|
/**
|
|
1982
1987
|
* TaskStatusResponse
|
|
1983
1988
|
* @example {
|
|
1984
|
-
* "task_id": "7dac44aa-c480-4460-b453-a47b03b031f4",
|
|
1985
|
-
* "status": "success",
|
|
1986
|
-
* "result": "10000",
|
|
1987
1989
|
* "completion_t": "1677183605.212898",
|
|
1988
1990
|
* "details": {
|
|
1989
|
-
* "os": "Linux-5.19.0-1025-aws-x86_64-with-glibc2.35",
|
|
1990
|
-
* "python_version": "3.10.4",
|
|
1991
1991
|
* "dill_version": "0.3.5.1",
|
|
1992
1992
|
* "globus_compute_sdk_version": "2.3.2",
|
|
1993
|
+
* "os": "Linux-5.19.0-1025-aws-x86_64-with-glibc2.35",
|
|
1994
|
+
* "python_version": "3.10.4",
|
|
1993
1995
|
* "task_transitions": {
|
|
1994
|
-
* "execution-
|
|
1995
|
-
* "execution-
|
|
1996
|
+
* "execution-end": 1692742846.123456,
|
|
1997
|
+
* "execution-start": 1692742841.843334
|
|
1996
1998
|
* }
|
|
1997
|
-
* }
|
|
1999
|
+
* },
|
|
2000
|
+
* "result": "10000",
|
|
2001
|
+
* "status": "success",
|
|
2002
|
+
* "task_id": "7dac44aa-c480-4460-b453-a47b03b031f4"
|
|
1998
2003
|
* }
|
|
1999
2004
|
*/
|
|
2000
2005
|
TaskStatusResponse: {
|
|
@@ -2008,27 +2013,29 @@ export interface components {
|
|
|
2008
2013
|
* Status
|
|
2009
2014
|
* @description Task status
|
|
2010
2015
|
*/
|
|
2011
|
-
status
|
|
2016
|
+
status: unknown;
|
|
2012
2017
|
/**
|
|
2013
2018
|
* Result
|
|
2014
2019
|
* @description Task result
|
|
2015
2020
|
*/
|
|
2016
|
-
result?: string;
|
|
2021
|
+
result?: string | null;
|
|
2017
2022
|
/**
|
|
2018
2023
|
* Completion T
|
|
2019
2024
|
* @description Task completion Unix time
|
|
2020
2025
|
*/
|
|
2021
|
-
completion_t?: string;
|
|
2026
|
+
completion_t?: string | null;
|
|
2022
2027
|
/**
|
|
2023
2028
|
* Exception
|
|
2024
2029
|
* @description Exception
|
|
2025
2030
|
*/
|
|
2026
|
-
exception?: string;
|
|
2031
|
+
exception?: string | null;
|
|
2027
2032
|
/**
|
|
2028
2033
|
* Details
|
|
2029
2034
|
* @description Task execution details
|
|
2030
2035
|
*/
|
|
2031
|
-
details?:
|
|
2036
|
+
details?: {
|
|
2037
|
+
[key: string]: unknown;
|
|
2038
|
+
} | null;
|
|
2032
2039
|
};
|
|
2033
2040
|
/** UserRuntime */
|
|
2034
2041
|
UserRuntime: {
|
|
@@ -2036,28 +2043,22 @@ export interface components {
|
|
|
2036
2043
|
* Globus Compute Sdk Version
|
|
2037
2044
|
* @description Globus Compute SDK version (e.g., `4.1.0`)
|
|
2038
2045
|
*/
|
|
2039
|
-
globus_compute_sdk_version?: string;
|
|
2046
|
+
globus_compute_sdk_version?: string | null;
|
|
2040
2047
|
/**
|
|
2041
2048
|
* Globus Sdk Version
|
|
2042
2049
|
* @description Globus SDK version (e.g., `3.63.0`)
|
|
2043
2050
|
*/
|
|
2044
|
-
globus_sdk_version?: string;
|
|
2051
|
+
globus_sdk_version?: string | null;
|
|
2045
2052
|
/**
|
|
2046
2053
|
* Python Version
|
|
2047
2054
|
* @deprecated
|
|
2048
2055
|
* @description [use `python` instead] Python version string from `sys.version`
|
|
2049
2056
|
*/
|
|
2050
|
-
python_version?: string;
|
|
2051
|
-
/**
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
python?: components["schemas"]["PythonInfo"];
|
|
2056
|
-
/**
|
|
2057
|
-
* Platform
|
|
2058
|
-
* @description General platform information from the user's installation
|
|
2059
|
-
*/
|
|
2060
|
-
platform?: components["schemas"]["PlatformInfo"];
|
|
2057
|
+
python_version?: string | null;
|
|
2058
|
+
/** @description Information about the submitting user's Python runtime */
|
|
2059
|
+
python?: components["schemas"]["PythonInfo"] | null;
|
|
2060
|
+
/** @description General platform information from the user's installation */
|
|
2061
|
+
platform?: components["schemas"]["PlatformInfo"] | null;
|
|
2061
2062
|
};
|
|
2062
2063
|
/** ValidationError */
|
|
2063
2064
|
ValidationError: {
|
|
@@ -2067,6 +2068,10 @@ export interface components {
|
|
|
2067
2068
|
msg: string;
|
|
2068
2069
|
/** Error Type */
|
|
2069
2070
|
type: string;
|
|
2071
|
+
/** Input */
|
|
2072
|
+
input?: unknown;
|
|
2073
|
+
/** Context */
|
|
2074
|
+
ctx?: Record<string, unknown>;
|
|
2070
2075
|
};
|
|
2071
2076
|
/** ValidationErrorResponse */
|
|
2072
2077
|
ValidationErrorResponse: {
|
|
@@ -2089,7 +2094,6 @@ export interface components {
|
|
|
2089
2094
|
};
|
|
2090
2095
|
/**
|
|
2091
2096
|
* VersionService
|
|
2092
|
-
* @description An enumeration.
|
|
2093
2097
|
* @enum {string}
|
|
2094
2098
|
*/
|
|
2095
2099
|
VersionService: "api" | "all";
|
|
@@ -2163,27 +2167,27 @@ export interface components {
|
|
|
2163
2167
|
/**
|
|
2164
2168
|
* EndpointRegisterRequest
|
|
2165
2169
|
* @example {
|
|
2166
|
-
* "endpoint_name": "My Endpoint",
|
|
2167
|
-
* "display_name": "My Endpoint's display name",
|
|
2168
|
-
* "endpoint_uuid": "7348422a-1074-427b-a08a-0771068afccc",
|
|
2169
|
-
* "version": "1.0.10",
|
|
2170
|
-
* "multi_user": false,
|
|
2171
2170
|
* "allowed_functions": [
|
|
2172
2171
|
* "11291b86-4f9c-47cb-848e-d3c06285951c"
|
|
2173
2172
|
* ],
|
|
2174
2173
|
* "authentication_policy": "67b4e120-2638-4771-86bb-6ac2a0f69e0b",
|
|
2174
|
+
* "display_name": "My Endpoint's display name",
|
|
2175
|
+
* "endpoint_name": "My Endpoint",
|
|
2176
|
+
* "endpoint_uuid": "7348422a-1074-427b-a08a-0771068afccc",
|
|
2175
2177
|
* "metadata": {
|
|
2176
|
-
* "endpoint_config": "",
|
|
2177
|
-
* "user_config_template": {},
|
|
2178
|
-
* "user_config_schema": {},
|
|
2179
2178
|
* "description": "My endpoint description",
|
|
2180
|
-
* "
|
|
2179
|
+
* "endpoint_config": "",
|
|
2180
|
+
* "endpoint_version": "1.0.10",
|
|
2181
2181
|
* "hostname": "my-endpoint",
|
|
2182
|
+
* "ip_address": "140.221.112.13",
|
|
2182
2183
|
* "local_user": "user",
|
|
2184
|
+
* "python_version": "3.12.7",
|
|
2183
2185
|
* "sdk_version": "1.0.10",
|
|
2184
|
-
* "
|
|
2185
|
-
* "
|
|
2186
|
-
* }
|
|
2186
|
+
* "user_config_schema": {},
|
|
2187
|
+
* "user_config_template": {}
|
|
2188
|
+
* },
|
|
2189
|
+
* "multi_user": false,
|
|
2190
|
+
* "version": "1.0.10"
|
|
2187
2191
|
* }
|
|
2188
2192
|
*/
|
|
2189
2193
|
compute_web_service__schemas__v2__endpoint__EndpointRegisterRequest: {
|
|
@@ -2196,7 +2200,7 @@ export interface components {
|
|
|
2196
2200
|
* Display Name
|
|
2197
2201
|
* @description Endpoint display name
|
|
2198
2202
|
*/
|
|
2199
|
-
display_name?: string;
|
|
2203
|
+
display_name?: string | null;
|
|
2200
2204
|
/**
|
|
2201
2205
|
* Endpoint Uuid
|
|
2202
2206
|
* Format: uuid
|
|
@@ -2207,7 +2211,7 @@ export interface components {
|
|
|
2207
2211
|
* Version
|
|
2208
2212
|
* @description Endpoint version
|
|
2209
2213
|
*/
|
|
2210
|
-
version?: string;
|
|
2214
|
+
version?: string | null;
|
|
2211
2215
|
/**
|
|
2212
2216
|
* Multi User
|
|
2213
2217
|
* @description Endpoint multi-user mode
|
|
@@ -2218,14 +2222,13 @@ export interface components {
|
|
|
2218
2222
|
* Allowed Functions
|
|
2219
2223
|
* @description Functions that are allowed to be run on the endpoint
|
|
2220
2224
|
*/
|
|
2221
|
-
allowed_functions?: string[];
|
|
2225
|
+
allowed_functions?: string[] | null;
|
|
2222
2226
|
/**
|
|
2223
2227
|
* Authentication Policy
|
|
2224
|
-
* Format: uuid
|
|
2225
2228
|
* @description Endpoint users are evaluated against this Globus authentication policy. For more information on Globus authentication policies, visit https://docs.globus.org/api/auth/developer-guide/#authentication-policies.
|
|
2226
2229
|
*/
|
|
2227
|
-
authentication_policy?: string;
|
|
2228
|
-
metadata?: components["schemas"]["EndpointRegisterMetadata"];
|
|
2230
|
+
authentication_policy?: string | null;
|
|
2231
|
+
metadata?: components["schemas"]["EndpointRegisterMetadata"] | null;
|
|
2229
2232
|
};
|
|
2230
2233
|
/** RegisterFunctionMetadata */
|
|
2231
2234
|
compute_web_service__schemas__v2__function__RegisterFunctionMetadata: {
|
|
@@ -2233,25 +2236,25 @@ export interface components {
|
|
|
2233
2236
|
* Python Version
|
|
2234
2237
|
* @description Python version used to serialize function.
|
|
2235
2238
|
*/
|
|
2236
|
-
python_version?: string;
|
|
2239
|
+
python_version?: string | null;
|
|
2237
2240
|
/**
|
|
2238
2241
|
* Sdk Version
|
|
2239
2242
|
* @description SDK version used to serialize function.
|
|
2240
2243
|
*/
|
|
2241
|
-
sdk_version?: string;
|
|
2244
|
+
sdk_version?: string | null;
|
|
2242
2245
|
};
|
|
2243
2246
|
/**
|
|
2244
2247
|
* RegisterFunctionRequest
|
|
2245
2248
|
* @example {
|
|
2246
|
-
* "
|
|
2247
|
-
* "function_code": "wuX2RpbGyUjBBfY3JlYXRlX2Z1bmN0 ...",
|
|
2249
|
+
* "container_uuid": "b7a42fa2-e97f-4061-9e64-2ede22ae7f5e",
|
|
2248
2250
|
* "description": "My first function",
|
|
2251
|
+
* "function_code": "wuX2RpbGyUjBBfY3JlYXRlX2Z1bmN0 ...",
|
|
2252
|
+
* "function_name": "My Function",
|
|
2253
|
+
* "group": "a2d6feb6-5386-4a06-8a22-99ea5ad7e651",
|
|
2249
2254
|
* "metadata": {
|
|
2250
2255
|
* "python_version": "3.11.3",
|
|
2251
2256
|
* "sdk_version": "2.3.3"
|
|
2252
2257
|
* },
|
|
2253
|
-
* "container_uuid": "b7a42fa2-e97f-4061-9e64-2ede22ae7f5e",
|
|
2254
|
-
* "group": "a2d6feb6-5386-4a06-8a22-99ea5ad7e651",
|
|
2255
2258
|
* "public": false
|
|
2256
2259
|
* }
|
|
2257
2260
|
*/
|
|
@@ -2265,7 +2268,7 @@ export interface components {
|
|
|
2265
2268
|
* Entry Point
|
|
2266
2269
|
* @description (DEPRECATED) Entry point
|
|
2267
2270
|
*/
|
|
2268
|
-
entry_point?: string;
|
|
2271
|
+
entry_point?: string | null;
|
|
2269
2272
|
/**
|
|
2270
2273
|
* Function Code
|
|
2271
2274
|
* @description Serialized function source code
|
|
@@ -2275,20 +2278,18 @@ export interface components {
|
|
|
2275
2278
|
* Description
|
|
2276
2279
|
* @description Function description
|
|
2277
2280
|
*/
|
|
2278
|
-
description?: string;
|
|
2279
|
-
metadata?: components["schemas"]["compute_web_service__schemas__v2__function__RegisterFunctionMetadata"];
|
|
2281
|
+
description?: string | null;
|
|
2282
|
+
metadata?: components["schemas"]["compute_web_service__schemas__v2__function__RegisterFunctionMetadata"] | null;
|
|
2280
2283
|
/**
|
|
2281
2284
|
* Container Uuid
|
|
2282
|
-
* Format: uuid
|
|
2283
2285
|
* @description Container UUID
|
|
2284
2286
|
*/
|
|
2285
|
-
container_uuid?: string;
|
|
2287
|
+
container_uuid?: string | null;
|
|
2286
2288
|
/**
|
|
2287
2289
|
* Group
|
|
2288
|
-
* Format: uuid
|
|
2289
2290
|
* @description Globus group UUID
|
|
2290
2291
|
*/
|
|
2291
|
-
group?: string;
|
|
2292
|
+
group?: string | null;
|
|
2292
2293
|
/**
|
|
2293
2294
|
* Public
|
|
2294
2295
|
* @description Public function
|
|
@@ -2313,8 +2314,8 @@ export interface components {
|
|
|
2313
2314
|
/**
|
|
2314
2315
|
* BatchSubmitRequest
|
|
2315
2316
|
* @example {
|
|
2316
|
-
* "task_group_id": "97241626-8ff4-4550-9938-5909bd221869",
|
|
2317
2317
|
* "create_websocket_queue": false,
|
|
2318
|
+
* "task_group_id": "97241626-8ff4-4550-9938-5909bd221869",
|
|
2318
2319
|
* "tasks": [
|
|
2319
2320
|
* [
|
|
2320
2321
|
* "116f1b48-0aab-4228-92f0-021c2ab14b5e",
|
|
@@ -2332,10 +2333,9 @@ export interface components {
|
|
|
2332
2333
|
compute_web_service__schemas__v2__task__BatchSubmitRequest: {
|
|
2333
2334
|
/**
|
|
2334
2335
|
* Task Group Id
|
|
2335
|
-
* Format: uuid
|
|
2336
2336
|
* @description Task group UUID
|
|
2337
2337
|
*/
|
|
2338
|
-
task_group_id?: string;
|
|
2338
|
+
task_group_id?: string | null;
|
|
2339
2339
|
/**
|
|
2340
2340
|
* Create Websocket Queue
|
|
2341
2341
|
* @description Create websocket queue
|
|
@@ -2356,19 +2356,19 @@ export interface components {
|
|
|
2356
2356
|
* BatchSubmitResponse
|
|
2357
2357
|
* @example {
|
|
2358
2358
|
* "response": "success",
|
|
2359
|
-
* "task_group_id": "97241626-8ff4-4550-9938-5909bd221869",
|
|
2360
2359
|
* "results": [
|
|
2361
2360
|
* {
|
|
2361
|
+
* "http_status_code": 200,
|
|
2362
2362
|
* "status": "success",
|
|
2363
|
-
* "task_uuid": "7dac44aa-c480-4460-b453-a47b03b031f4"
|
|
2364
|
-
* "http_status_code": 200
|
|
2363
|
+
* "task_uuid": "7dac44aa-c480-4460-b453-a47b03b031f4"
|
|
2365
2364
|
* },
|
|
2366
2365
|
* {
|
|
2366
|
+
* "http_status_code": 200,
|
|
2367
2367
|
* "status": "success",
|
|
2368
|
-
* "task_uuid": "4b35645f-0c5b-465d-aaec-fee87f74ff5b"
|
|
2369
|
-
* "http_status_code": 200
|
|
2368
|
+
* "task_uuid": "4b35645f-0c5b-465d-aaec-fee87f74ff5b"
|
|
2370
2369
|
* }
|
|
2371
|
-
* ]
|
|
2370
|
+
* ],
|
|
2371
|
+
* "task_group_id": "97241626-8ff4-4550-9938-5909bd221869"
|
|
2372
2372
|
* }
|
|
2373
2373
|
*/
|
|
2374
2374
|
compute_web_service__schemas__v2__task__BatchSubmitResponse: {
|
|
@@ -2379,10 +2379,9 @@ export interface components {
|
|
|
2379
2379
|
response: string;
|
|
2380
2380
|
/**
|
|
2381
2381
|
* Task Group Id
|
|
2382
|
-
* Format: uuid
|
|
2383
2382
|
* @description Task group UUID
|
|
2384
2383
|
*/
|
|
2385
|
-
task_group_id?: string;
|
|
2384
|
+
task_group_id?: string | null;
|
|
2386
2385
|
/**
|
|
2387
2386
|
* Results
|
|
2388
2387
|
* @description Task results
|
|
@@ -2412,29 +2411,29 @@ export interface components {
|
|
|
2412
2411
|
/**
|
|
2413
2412
|
* EndpointRegisterRequest
|
|
2414
2413
|
* @example {
|
|
2415
|
-
* "endpoint_name": "my_endpoint",
|
|
2416
|
-
* "display_name": "My Endpoint's Display Name",
|
|
2417
|
-
* "version": "2.2.0",
|
|
2418
|
-
* "multi_user": false,
|
|
2419
|
-
* "public": false,
|
|
2420
|
-
* "high_assurance": false,
|
|
2421
2414
|
* "allowed_functions": [
|
|
2422
2415
|
* "11291b86-4f9c-47cb-848e-d3c06285951c"
|
|
2423
2416
|
* ],
|
|
2424
2417
|
* "authentication_policy": "67b4e120-2638-4771-86bb-6ac2a0f69e0b",
|
|
2425
|
-
* "
|
|
2418
|
+
* "display_name": "My Endpoint's Display Name",
|
|
2419
|
+
* "endpoint_name": "my_endpoint",
|
|
2420
|
+
* "high_assurance": false,
|
|
2426
2421
|
* "metadata": {
|
|
2427
|
-
* "endpoint_config": "",
|
|
2428
|
-
* "user_config_template": {},
|
|
2429
|
-
* "user_config_schema": {},
|
|
2430
2422
|
* "description": "My endpoint description",
|
|
2431
|
-
* "
|
|
2423
|
+
* "endpoint_config": "",
|
|
2424
|
+
* "endpoint_version": "2.2.0",
|
|
2432
2425
|
* "hostname": "my-endpoint",
|
|
2426
|
+
* "ip_address": "140.221.112.13",
|
|
2433
2427
|
* "local_user": "user",
|
|
2428
|
+
* "python_version": "3.12.7",
|
|
2434
2429
|
* "sdk_version": "2.2.0",
|
|
2435
|
-
* "
|
|
2436
|
-
* "
|
|
2437
|
-
* }
|
|
2430
|
+
* "user_config_schema": {},
|
|
2431
|
+
* "user_config_template": {}
|
|
2432
|
+
* },
|
|
2433
|
+
* "multi_user": false,
|
|
2434
|
+
* "public": false,
|
|
2435
|
+
* "subscription_uuid": "59b63c41-a765-4971-ac9a-41742059ade3",
|
|
2436
|
+
* "version": "2.2.0"
|
|
2438
2437
|
* }
|
|
2439
2438
|
*/
|
|
2440
2439
|
compute_web_service__schemas__v3__endpoints__EndpointRegisterRequest: {
|
|
@@ -2447,12 +2446,12 @@ export interface components {
|
|
|
2447
2446
|
* Display Name
|
|
2448
2447
|
* @description Endpoint display name
|
|
2449
2448
|
*/
|
|
2450
|
-
display_name?: string;
|
|
2449
|
+
display_name?: string | null;
|
|
2451
2450
|
/**
|
|
2452
2451
|
* Version
|
|
2453
2452
|
* @description Endpoint version
|
|
2454
2453
|
*/
|
|
2455
|
-
version?: string;
|
|
2454
|
+
version?: string | null;
|
|
2456
2455
|
/**
|
|
2457
2456
|
* Multi User
|
|
2458
2457
|
* @description Endpoint multi-user mode
|
|
@@ -2469,34 +2468,29 @@ export interface components {
|
|
|
2469
2468
|
* Allowed Functions
|
|
2470
2469
|
* @description Functions that are allowed to be run on the endpoint
|
|
2471
2470
|
*/
|
|
2472
|
-
allowed_functions?: string[];
|
|
2471
|
+
allowed_functions?: string[] | null;
|
|
2473
2472
|
/**
|
|
2474
2473
|
* Authentication Policy
|
|
2475
|
-
* Format: uuid
|
|
2476
2474
|
* @description Endpoint users are evaluated against this Globus authentication policy. For more information on Globus authentication policies, visit https://docs.globus.org/api/auth/developer-guide/#authentication-policies.
|
|
2477
2475
|
*/
|
|
2478
|
-
authentication_policy?: string;
|
|
2476
|
+
authentication_policy?: string | null;
|
|
2479
2477
|
/**
|
|
2480
2478
|
* Subscription Uuid
|
|
2481
|
-
* Format: uuid
|
|
2482
2479
|
* @description Associates an endpoint with a subscription.
|
|
2483
2480
|
*/
|
|
2484
|
-
subscription_uuid?: string;
|
|
2481
|
+
subscription_uuid?: string | null;
|
|
2485
2482
|
/**
|
|
2486
2483
|
* Admins
|
|
2487
2484
|
* @description A set of Globus Auth identity IDs that, in addition to the owner, have administrative access to the endpoint. This field requires an active Globus subscription (i.e., `subscription_uuid` field).
|
|
2488
2485
|
*/
|
|
2489
|
-
admins?: string[];
|
|
2486
|
+
admins?: string[] | null;
|
|
2490
2487
|
/**
|
|
2491
2488
|
* Public
|
|
2492
2489
|
* @description Indicates if all users can discover the multi-user endpoint. Please note that this field does not control access to the endpoint, so it should not be used as a security feature.
|
|
2493
2490
|
* @default false
|
|
2494
2491
|
*/
|
|
2495
2492
|
public: boolean;
|
|
2496
|
-
/**
|
|
2497
|
-
* Metadata
|
|
2498
|
-
* @description Endpoint metadata
|
|
2499
|
-
*/
|
|
2493
|
+
/** @description Endpoint metadata */
|
|
2500
2494
|
metadata: components["schemas"]["EndpointMetadata"];
|
|
2501
2495
|
};
|
|
2502
2496
|
/** RegisterFunctionMetadata */
|
|
@@ -2520,9 +2514,9 @@ export interface components {
|
|
|
2520
2514
|
/**
|
|
2521
2515
|
* RegisterFunctionRequest
|
|
2522
2516
|
* @example {
|
|
2523
|
-
* "function_name": "dot_product",
|
|
2524
|
-
* "function_code": "850\n01\ngASVZwIAAAAAAACMCmRpbGwuX2RpbGyUjBB...",
|
|
2525
2517
|
* "description": "Dot product of two vectors (unchecked length)",
|
|
2518
|
+
* "function_code": "850\n01\ngASVZwIAAAAAAACMCmRpbGwuX2RpbGyUjBB...",
|
|
2519
|
+
* "function_name": "dot_product",
|
|
2526
2520
|
* "meta": {
|
|
2527
2521
|
* "python_version": "3.13.3",
|
|
2528
2522
|
* "sdk_version": "3.1.1",
|
|
@@ -2546,18 +2540,14 @@ export interface components {
|
|
|
2546
2540
|
* Description
|
|
2547
2541
|
* @description Function description
|
|
2548
2542
|
*/
|
|
2549
|
-
description?: string;
|
|
2550
|
-
/**
|
|
2551
|
-
* Meta
|
|
2552
|
-
* @description Function metadata
|
|
2553
|
-
*/
|
|
2543
|
+
description?: string | null;
|
|
2544
|
+
/** @description Function metadata */
|
|
2554
2545
|
meta: components["schemas"]["compute_web_service__schemas__v3__function__RegisterFunctionMetadata"];
|
|
2555
2546
|
/**
|
|
2556
2547
|
* Group
|
|
2557
|
-
* Format: uuid
|
|
2558
2548
|
* @description If specified, this function will be accessible to members of the [Globus Group](https://docs.globus.org/api/groups/) specified by this identifier
|
|
2559
2549
|
*/
|
|
2560
|
-
group?: string;
|
|
2550
|
+
group?: string | null;
|
|
2561
2551
|
/**
|
|
2562
2552
|
* Public
|
|
2563
2553
|
* @description If true, this function will be accessible to any registered user
|
|
@@ -2566,10 +2556,9 @@ export interface components {
|
|
|
2566
2556
|
public: boolean;
|
|
2567
2557
|
/**
|
|
2568
2558
|
* Ha Endpoint Id
|
|
2569
|
-
* Format: uuid
|
|
2570
2559
|
* @description Users will only be able to run this function on the specified HA endpoint. Since HA functions cannot be shared, this field is mutually exclusive with the `group` and `public` fields.
|
|
2571
2560
|
*/
|
|
2572
|
-
ha_endpoint_id?: string;
|
|
2561
|
+
ha_endpoint_id?: string | null;
|
|
2573
2562
|
};
|
|
2574
2563
|
/**
|
|
2575
2564
|
* RegisterFunctionResponse
|
|
@@ -2588,44 +2577,42 @@ export interface components {
|
|
|
2588
2577
|
* Ha Warning
|
|
2589
2578
|
* @description Populated when a function is registered to an HA endpoint. If present, the SDK will emit the text to the user as a warning.
|
|
2590
2579
|
*/
|
|
2591
|
-
ha_warning?: string;
|
|
2580
|
+
ha_warning?: string | null;
|
|
2592
2581
|
};
|
|
2593
2582
|
/**
|
|
2594
2583
|
* BatchSubmitRequest
|
|
2595
2584
|
* @example {
|
|
2585
|
+
* "create_queue": true,
|
|
2586
|
+
* "resource_specification": {
|
|
2587
|
+
* "launcher_options": "--cpu-bind quiet --mem 3072",
|
|
2588
|
+
* "num_nodes": 2,
|
|
2589
|
+
* "num_ranks": 4,
|
|
2590
|
+
* "ranks_per_node": 2
|
|
2591
|
+
* },
|
|
2592
|
+
* "result_serializers": [
|
|
2593
|
+
* "globus_compute_sdk.serialize.JSONData",
|
|
2594
|
+
* "globus_compute_sdk.serialize.DillDataBase64"
|
|
2595
|
+
* ],
|
|
2596
2596
|
* "task_group_id": "97241626-8ff4-4550-9938-5909bd221869",
|
|
2597
|
+
* "tasks": {
|
|
2598
|
+
* "0a98fd06-edbd-11ed-abcd-0d705ebb4c49": [
|
|
2599
|
+
* "... <serialized_arguments> ...",
|
|
2600
|
+
* "..."
|
|
2601
|
+
* ],
|
|
2602
|
+
* "ff960aba-fa23-43d5-9cbe-3f4f91a066e1": [
|
|
2603
|
+
* "... <serialized_arguments> ...",
|
|
2604
|
+
* "... <serialized_arguments> ...",
|
|
2605
|
+
* "..."
|
|
2606
|
+
* ]
|
|
2607
|
+
* },
|
|
2597
2608
|
* "user_endpoint_config": {
|
|
2598
|
-
* "min_blocks": 0,
|
|
2599
2609
|
* "max_blocks": 1,
|
|
2610
|
+
* "min_blocks": 0,
|
|
2600
2611
|
* "scheduler_options": "#SBATCH --constraint=knl,quad,cache"
|
|
2601
2612
|
* },
|
|
2602
|
-
* "resource_specification": {
|
|
2603
|
-
* "num_nodes": 2,
|
|
2604
|
-
* "ranks_per_node": 2,
|
|
2605
|
-
* "num_ranks": 4,
|
|
2606
|
-
* "launcher_options": "--cpu-bind quiet --mem 3072"
|
|
2607
|
-
* },
|
|
2608
2613
|
* "user_runtime": {
|
|
2609
2614
|
* "globus_compute_sdk_version": "3.14.0",
|
|
2610
2615
|
* "globus_sdk_version": "3.60.0",
|
|
2611
|
-
* "python": {
|
|
2612
|
-
* "version": "3.13.5",
|
|
2613
|
-
* "version_tuple": [
|
|
2614
|
-
* 3,
|
|
2615
|
-
* 13,
|
|
2616
|
-
* 5
|
|
2617
|
-
* ],
|
|
2618
|
-
* "version_info": [
|
|
2619
|
-
* 3,
|
|
2620
|
-
* 13,
|
|
2621
|
-
* 5,
|
|
2622
|
-
* "final",
|
|
2623
|
-
* 0
|
|
2624
|
-
* ],
|
|
2625
|
-
* "version_description": "3.13.7 (main, Aug 21 2025, 13:50:03) [GCC 13.3.0]",
|
|
2626
|
-
* "implementation": "CPython",
|
|
2627
|
-
* "compiler": "Clang 14.0.6"
|
|
2628
|
-
* },
|
|
2629
2616
|
* "platform": {
|
|
2630
2617
|
* "architecture": [
|
|
2631
2618
|
* "64bit",
|
|
@@ -2636,43 +2623,43 @@ export interface components {
|
|
|
2636
2623
|
* "platform": "Linux-6.16.5-2-generic-x86_64-with-glibc2.39",
|
|
2637
2624
|
* "processor": "x86_64",
|
|
2638
2625
|
* "release": "6.16.5-2-generic"
|
|
2626
|
+
* },
|
|
2627
|
+
* "python": {
|
|
2628
|
+
* "compiler": "Clang 14.0.6",
|
|
2629
|
+
* "implementation": "CPython",
|
|
2630
|
+
* "version": "3.13.5",
|
|
2631
|
+
* "version_description": "3.13.7 (main, Aug 21 2025, 13:50:03) [GCC 13.3.0]",
|
|
2632
|
+
* "version_info": [
|
|
2633
|
+
* 3,
|
|
2634
|
+
* 13,
|
|
2635
|
+
* 5,
|
|
2636
|
+
* "final",
|
|
2637
|
+
* 0
|
|
2638
|
+
* ],
|
|
2639
|
+
* "version_tuple": [
|
|
2640
|
+
* 3,
|
|
2641
|
+
* 13,
|
|
2642
|
+
* 5
|
|
2643
|
+
* ]
|
|
2639
2644
|
* }
|
|
2640
|
-
* },
|
|
2641
|
-
* "result_serializers": [
|
|
2642
|
-
* "globus_compute_sdk.serialize.JSONData",
|
|
2643
|
-
* "globus_compute_sdk.serialize.DillDataBase64"
|
|
2644
|
-
* ],
|
|
2645
|
-
* "create_queue": true,
|
|
2646
|
-
* "tasks": {
|
|
2647
|
-
* "ff960aba-fa23-43d5-9cbe-3f4f91a066e1": [
|
|
2648
|
-
* "... <serialized_arguments> ...",
|
|
2649
|
-
* "... <serialized_arguments> ...",
|
|
2650
|
-
* "..."
|
|
2651
|
-
* ],
|
|
2652
|
-
* "0a98fd06-edbd-11ed-abcd-0d705ebb4c49": [
|
|
2653
|
-
* "... <serialized_arguments> ...",
|
|
2654
|
-
* "..."
|
|
2655
|
-
* ]
|
|
2656
2645
|
* }
|
|
2657
2646
|
* }
|
|
2658
2647
|
*/
|
|
2659
2648
|
compute_web_service__schemas__v3__tasks__BatchSubmitRequest: {
|
|
2660
2649
|
/**
|
|
2661
2650
|
* Task Group Id
|
|
2662
|
-
* Format: uuid
|
|
2663
2651
|
* @description Associate the request tasks with specified Task Group identifier; if not specified or invalid, a new identifier will be generated and returned in the response
|
|
2664
2652
|
*/
|
|
2665
|
-
task_group_id?: string;
|
|
2653
|
+
task_group_id?: string | null;
|
|
2666
2654
|
/**
|
|
2667
2655
|
* User Endpoint Config
|
|
2668
2656
|
* @description Specify user endpoint configuration values as described and allowed by endpoint administrators.
|
|
2669
2657
|
*/
|
|
2670
|
-
user_endpoint_config?:
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
resource_specification?: components["schemas"]["ResourceSpecification"];
|
|
2658
|
+
user_endpoint_config?: {
|
|
2659
|
+
[key: string]: unknown;
|
|
2660
|
+
} | null;
|
|
2661
|
+
/** @description Specify resource requirements for individual task execution. */
|
|
2662
|
+
resource_specification?: components["schemas"]["ResourceSpecification"] | null;
|
|
2676
2663
|
/**
|
|
2677
2664
|
* Create Queue
|
|
2678
2665
|
* @description If `true`, create a Task Group specific AMQP queue for the results. In addition to the usual longer-term storage, results will also be copied to this AMQP queue, enabling consumers to get event-driven (instant) results. (See the [Globus Compute SDK Executor](https://globus-compute.readthedocs.io/en/stable/executor.html) for an implementation that uses this feature.)
|
|
@@ -2686,32 +2673,29 @@ export interface components {
|
|
|
2686
2673
|
tasks: {
|
|
2687
2674
|
[key: string]: string[];
|
|
2688
2675
|
};
|
|
2689
|
-
/**
|
|
2690
|
-
|
|
2691
|
-
* @description Information about the runtime that submitted this batch, such as Python and Globus Compute SDK versions.
|
|
2692
|
-
*/
|
|
2693
|
-
user_runtime?: components["schemas"]["UserRuntime"];
|
|
2676
|
+
/** @description Information about the runtime that submitted this batch, such as Python and Globus Compute SDK versions. */
|
|
2677
|
+
user_runtime?: components["schemas"]["UserRuntime"] | null;
|
|
2694
2678
|
/**
|
|
2695
2679
|
* Result Serializers
|
|
2696
2680
|
* @description A list of import paths to [SerializationStrategy](https://globus-compute.readthedocs.io/en/stable/reference/serialization_strategies.html#globus_compute_sdk.serialize.SerializationStrategy) subclasses that the endpoint is allowed to use when serializing results.
|
|
2697
2681
|
*/
|
|
2698
|
-
result_serializers?: string[];
|
|
2682
|
+
result_serializers?: string[] | null;
|
|
2699
2683
|
};
|
|
2700
2684
|
/**
|
|
2701
2685
|
* BatchSubmitResponse
|
|
2702
2686
|
* @example {
|
|
2687
|
+
* "endpoint_id": "116f1b48-0aab-4228-92f0-021c2ab14b5e",
|
|
2703
2688
|
* "request_id": "5158de19-10b5-4deb-9d87-a86c1dec3460",
|
|
2704
2689
|
* "task_group_id": "97241626-8ff4-4550-9938-5909bd221869",
|
|
2705
|
-
* "endpoint_id": "116f1b48-0aab-4228-92f0-021c2ab14b5e",
|
|
2706
2690
|
* "tasks": {
|
|
2691
|
+
* "0a98fd06-edbd-11ed-abcd-0d705ebb4c49": [
|
|
2692
|
+
* "022151bf-7b2d-4240-b4d0-9ac5b7077314",
|
|
2693
|
+
* "1f6f5f1e-15b0-4916-85ff-471511bd35d6"
|
|
2694
|
+
* ],
|
|
2707
2695
|
* "ff960aba-fa23-43d5-9cbe-3f4f91a066e1": [
|
|
2708
2696
|
* "89bde6c3-85e9-4834-b0e8-5cb51955eaf5",
|
|
2709
2697
|
* "1e900b37-7a80-424b-aeac-56dd2860f59a",
|
|
2710
2698
|
* "9f12a732-3aa6-4878-9d58-b290837ab096"
|
|
2711
|
-
* ],
|
|
2712
|
-
* "0a98fd06-edbd-11ed-abcd-0d705ebb4c49": [
|
|
2713
|
-
* "022151bf-7b2d-4240-b4d0-9ac5b7077314",
|
|
2714
|
-
* "1f6f5f1e-15b0-4916-85ff-471511bd35d6"
|
|
2715
2699
|
* ]
|
|
2716
2700
|
* }
|
|
2717
2701
|
* }
|
|
@@ -2745,7 +2729,7 @@ export interface components {
|
|
|
2745
2729
|
* Ha Warning
|
|
2746
2730
|
* @description Populated when a task is submitted to an HA endpoint. If present, the SDK will emit the text to the user as a warning.
|
|
2747
2731
|
*/
|
|
2748
|
-
ha_warning?: string;
|
|
2732
|
+
ha_warning?: string | null;
|
|
2749
2733
|
};
|
|
2750
2734
|
};
|
|
2751
2735
|
responses: never;
|
|
@@ -2760,7 +2744,7 @@ export interface operations {
|
|
|
2760
2744
|
parameters: {
|
|
2761
2745
|
query?: {
|
|
2762
2746
|
/** @description Service to get version for */
|
|
2763
|
-
service?: components["schemas"]["VersionService"];
|
|
2747
|
+
service?: components["schemas"]["VersionService"] | null;
|
|
2764
2748
|
};
|
|
2765
2749
|
header?: never;
|
|
2766
2750
|
path?: never;
|
|
@@ -2792,7 +2776,7 @@ export interface operations {
|
|
|
2792
2776
|
parameters: {
|
|
2793
2777
|
query?: {
|
|
2794
2778
|
/** @description Service to get version for */
|
|
2795
|
-
service?: components["schemas"]["VersionService"];
|
|
2779
|
+
service?: components["schemas"]["VersionService"] | null;
|
|
2796
2780
|
};
|
|
2797
2781
|
header?: never;
|
|
2798
2782
|
path?: never;
|
|
@@ -3097,8 +3081,8 @@ export interface operations {
|
|
|
3097
3081
|
query?: never;
|
|
3098
3082
|
header: {
|
|
3099
3083
|
"user-agent": string;
|
|
3100
|
-
"x-forwarded-for"?: string;
|
|
3101
|
-
"remote-addr"?: string;
|
|
3084
|
+
"x-forwarded-for"?: string | null;
|
|
3085
|
+
"remote-addr"?: string | null;
|
|
3102
3086
|
};
|
|
3103
3087
|
path?: never;
|
|
3104
3088
|
cookie?: never;
|
|
@@ -3425,8 +3409,8 @@ export interface operations {
|
|
|
3425
3409
|
query?: never;
|
|
3426
3410
|
header: {
|
|
3427
3411
|
"user-agent": string;
|
|
3428
|
-
"x-forwarded-for"?: string;
|
|
3429
|
-
"remote-addr"?: string;
|
|
3412
|
+
"x-forwarded-for"?: string | null;
|
|
3413
|
+
"remote-addr"?: string | null;
|
|
3430
3414
|
};
|
|
3431
3415
|
path: {
|
|
3432
3416
|
endpoint_uuid: string;
|
|
@@ -3559,8 +3543,8 @@ export interface operations {
|
|
|
3559
3543
|
query?: never;
|
|
3560
3544
|
header: {
|
|
3561
3545
|
"user-agent": string;
|
|
3562
|
-
"x-forwarded-for"?: string;
|
|
3563
|
-
"remote-addr"?: string;
|
|
3546
|
+
"x-forwarded-for"?: string | null;
|
|
3547
|
+
"remote-addr"?: string | null;
|
|
3564
3548
|
};
|
|
3565
3549
|
path?: never;
|
|
3566
3550
|
cookie?: never;
|
|
@@ -3823,16 +3807,10 @@ export interface operations {
|
|
|
3823
3807
|
get_endpoint_console_info_v3_endpoints__endpoint_uuid__console_get: {
|
|
3824
3808
|
parameters: {
|
|
3825
3809
|
query?: {
|
|
3826
|
-
/**
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
user_endpoint_id?: string;
|
|
3831
|
-
/**
|
|
3832
|
-
* @description Comma separated list of user endpoint fields to include in the response. If left blank, all fields except 'config' are included. Invalid field names will result in a 400 error.
|
|
3833
|
-
* @example user_endpoint_id,node_info,config
|
|
3834
|
-
*/
|
|
3835
|
-
include_fields?: string;
|
|
3810
|
+
/** @description Provide the UUID of a specific user endpoint to return. */
|
|
3811
|
+
user_endpoint_id?: string | null;
|
|
3812
|
+
/** @description Comma separated list of user endpoint fields to include in the response. If left blank, all fields except 'config' are included. Invalid field names will result in a 400 error. */
|
|
3813
|
+
include_fields?: string | null;
|
|
3836
3814
|
};
|
|
3837
3815
|
header?: never;
|
|
3838
3816
|
path: {
|