@parallelworks/client 7.86.1 → 7.89.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/index.d.ts +1 -1
- package/dist/types/api.d.ts +2534 -355
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -115,9 +115,7 @@ export interface paths {
|
|
|
115
115
|
* Get billing cross-check data
|
|
116
116
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
117
117
|
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
* Returns CSP vs PW cost comparison data for all infrastructures
|
|
118
|
+
* Returns CSP vs PW cost comparison data for all infrastructures. Requires platform admin or billing admin.
|
|
121
119
|
*/
|
|
122
120
|
get: operations["get-billing-crosscheck"];
|
|
123
121
|
put?: never;
|
|
@@ -139,9 +137,7 @@ export interface paths {
|
|
|
139
137
|
* List billing runs
|
|
140
138
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
141
139
|
*
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
* Returns a paginated list of billing runs with total count
|
|
140
|
+
* Returns a paginated list of billing runs with total count. Requires platform admin or billing admin.
|
|
145
141
|
*/
|
|
146
142
|
get: operations["list-billing-runs"];
|
|
147
143
|
put?: never;
|
|
@@ -163,9 +159,7 @@ export interface paths {
|
|
|
163
159
|
* Get a billing run
|
|
164
160
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
165
161
|
*
|
|
166
|
-
*
|
|
167
|
-
*
|
|
168
|
-
* Returns a single billing run with full per-credential details
|
|
162
|
+
* Returns a single billing run with full per-credential details. Requires platform admin or billing admin.
|
|
169
163
|
*/
|
|
170
164
|
get: operations["get-billing-run"];
|
|
171
165
|
put?: never;
|
|
@@ -269,7 +263,7 @@ export interface paths {
|
|
|
269
263
|
*
|
|
270
264
|
* > This is a platform-admin only route.
|
|
271
265
|
*
|
|
272
|
-
* Stream audit events across all organizations as CSV or
|
|
266
|
+
* Stream audit events across all organizations as CSV, JSON, or plain text.
|
|
273
267
|
*/
|
|
274
268
|
get: operations["export-admin-events"];
|
|
275
269
|
put?: never;
|
|
@@ -848,6 +842,38 @@ export interface paths {
|
|
|
848
842
|
patch: operations["update-ai-integration-catalog-entry"];
|
|
849
843
|
trace?: never;
|
|
850
844
|
};
|
|
845
|
+
"/api/admin/products/ai/catalog/{catalogEntryId}/icon": {
|
|
846
|
+
parameters: {
|
|
847
|
+
query?: never;
|
|
848
|
+
header?: never;
|
|
849
|
+
path?: never;
|
|
850
|
+
cookie?: never;
|
|
851
|
+
};
|
|
852
|
+
get?: never;
|
|
853
|
+
put?: never;
|
|
854
|
+
post?: never;
|
|
855
|
+
/**
|
|
856
|
+
* Remove AI integration icon
|
|
857
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
858
|
+
*
|
|
859
|
+
* > This is a platform-admin only route.
|
|
860
|
+
*
|
|
861
|
+
* Removes a custom AI integration's icon so it falls back to the default artwork.
|
|
862
|
+
*/
|
|
863
|
+
delete: operations["delete-ai-integration-icon"];
|
|
864
|
+
options?: never;
|
|
865
|
+
head?: never;
|
|
866
|
+
/**
|
|
867
|
+
* Set AI integration icon
|
|
868
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
869
|
+
*
|
|
870
|
+
* > This is a platform-admin only route.
|
|
871
|
+
*
|
|
872
|
+
* Sets a custom AI integration's icon to a preset or a thumbnail from the admin's library. Built-in providers keep their own artwork.
|
|
873
|
+
*/
|
|
874
|
+
patch: operations["set-ai-integration-icon"];
|
|
875
|
+
trace?: never;
|
|
876
|
+
};
|
|
851
877
|
"/api/admin/products/ai/connections/{connectionId}": {
|
|
852
878
|
parameters: {
|
|
853
879
|
query?: never;
|
|
@@ -904,6 +930,62 @@ export interface paths {
|
|
|
904
930
|
patch?: never;
|
|
905
931
|
trace?: never;
|
|
906
932
|
};
|
|
933
|
+
"/api/admin/products/compute/proxy-whitelist": {
|
|
934
|
+
parameters: {
|
|
935
|
+
query?: never;
|
|
936
|
+
header?: never;
|
|
937
|
+
path?: never;
|
|
938
|
+
cookie?: never;
|
|
939
|
+
};
|
|
940
|
+
/**
|
|
941
|
+
* Get compute proxy whitelist
|
|
942
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
943
|
+
*
|
|
944
|
+
* > This is a platform-admin only route.
|
|
945
|
+
*
|
|
946
|
+
* Returns whether platform routing is restricted, and the hosts, IPs, and CIDR ranges allowed to route SSH through the platform.
|
|
947
|
+
*/
|
|
948
|
+
get: operations["get-compute-proxy-whitelist"];
|
|
949
|
+
put?: never;
|
|
950
|
+
post?: never;
|
|
951
|
+
delete?: never;
|
|
952
|
+
options?: never;
|
|
953
|
+
head?: never;
|
|
954
|
+
/**
|
|
955
|
+
* Update compute proxy whitelist
|
|
956
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
957
|
+
*
|
|
958
|
+
* > This is a platform-admin only route.
|
|
959
|
+
*
|
|
960
|
+
* Restricts platform routing and replaces the proxy whitelist. Once restricted, clusters outside the whitelist connect directly instead of proxying through the platform.
|
|
961
|
+
*/
|
|
962
|
+
patch: operations["update-compute-proxy-whitelist"];
|
|
963
|
+
trace?: never;
|
|
964
|
+
};
|
|
965
|
+
"/api/admin/products/compute/proxy-whitelist/cluster-hosts": {
|
|
966
|
+
parameters: {
|
|
967
|
+
query?: never;
|
|
968
|
+
header?: never;
|
|
969
|
+
path?: never;
|
|
970
|
+
cookie?: never;
|
|
971
|
+
};
|
|
972
|
+
/**
|
|
973
|
+
* List existing-cluster hosts
|
|
974
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
975
|
+
*
|
|
976
|
+
* > This is a platform-admin only route.
|
|
977
|
+
*
|
|
978
|
+
* Lists the hosts existing clusters report, how many accounts use each, and how the current policy routes them. These are the exact values the whitelist matches against.
|
|
979
|
+
*/
|
|
980
|
+
get: operations["list-compute-proxy-cluster-hosts"];
|
|
981
|
+
put?: never;
|
|
982
|
+
post?: never;
|
|
983
|
+
delete?: never;
|
|
984
|
+
options?: never;
|
|
985
|
+
head?: never;
|
|
986
|
+
patch?: never;
|
|
987
|
+
trace?: never;
|
|
988
|
+
};
|
|
907
989
|
"/api/admin/products/{product}": {
|
|
908
990
|
parameters: {
|
|
909
991
|
query?: never;
|
|
@@ -1005,6 +1087,158 @@ export interface paths {
|
|
|
1005
1087
|
patch: operations["update-platform-report"];
|
|
1006
1088
|
trace?: never;
|
|
1007
1089
|
};
|
|
1090
|
+
"/api/admin/resources": {
|
|
1091
|
+
parameters: {
|
|
1092
|
+
query?: never;
|
|
1093
|
+
header?: never;
|
|
1094
|
+
path?: never;
|
|
1095
|
+
cookie?: never;
|
|
1096
|
+
};
|
|
1097
|
+
/**
|
|
1098
|
+
* List cloud resources
|
|
1099
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
1100
|
+
*
|
|
1101
|
+
* > This is a platform-admin only route.
|
|
1102
|
+
*
|
|
1103
|
+
* Returns live cloud resources of every kind (VMs, disks, lustre, NFS, buckets, IPs) from the resource inventory. Platform admins can query every organization; organization admins must pass their organization.
|
|
1104
|
+
*/
|
|
1105
|
+
get: operations["list-resources"];
|
|
1106
|
+
put?: never;
|
|
1107
|
+
post?: never;
|
|
1108
|
+
delete?: never;
|
|
1109
|
+
options?: never;
|
|
1110
|
+
head?: never;
|
|
1111
|
+
patch?: never;
|
|
1112
|
+
trace?: never;
|
|
1113
|
+
};
|
|
1114
|
+
"/api/admin/resources/clusters": {
|
|
1115
|
+
parameters: {
|
|
1116
|
+
query?: never;
|
|
1117
|
+
header?: never;
|
|
1118
|
+
path?: never;
|
|
1119
|
+
cookie?: never;
|
|
1120
|
+
};
|
|
1121
|
+
/**
|
|
1122
|
+
* List cluster sessions with their resources
|
|
1123
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
1124
|
+
*
|
|
1125
|
+
* > This is a platform-admin only route.
|
|
1126
|
+
*
|
|
1127
|
+
* Returns cluster sessions: resources that share a session-id or pw-deployment-id and belong to a cluster (carry a pool tag), grouped per cluster with the owning user and pool name. Platform admins can query every organization; organization admins must pass their organization.
|
|
1128
|
+
*/
|
|
1129
|
+
get: operations["list-resource-clusters"];
|
|
1130
|
+
put?: never;
|
|
1131
|
+
post?: never;
|
|
1132
|
+
delete?: never;
|
|
1133
|
+
options?: never;
|
|
1134
|
+
head?: never;
|
|
1135
|
+
patch?: never;
|
|
1136
|
+
trace?: never;
|
|
1137
|
+
};
|
|
1138
|
+
"/api/admin/resources/credentials": {
|
|
1139
|
+
parameters: {
|
|
1140
|
+
query?: never;
|
|
1141
|
+
header?: never;
|
|
1142
|
+
path?: never;
|
|
1143
|
+
cookie?: never;
|
|
1144
|
+
};
|
|
1145
|
+
/**
|
|
1146
|
+
* Per-cloud-account credential and listing status
|
|
1147
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
1148
|
+
*
|
|
1149
|
+
* > This is a platform-admin only route.
|
|
1150
|
+
*
|
|
1151
|
+
* Returns the latest credential-fetch and inventory-listing status per cloud account credential, including listing errors/warnings, duplicate credential sources, and recently deleted cloud accounts (shown up to 24h). Platform admins can query every organization; organization admins must pass their organization.
|
|
1152
|
+
*/
|
|
1153
|
+
get: operations["list-resource-credentials"];
|
|
1154
|
+
put?: never;
|
|
1155
|
+
post?: never;
|
|
1156
|
+
delete?: never;
|
|
1157
|
+
options?: never;
|
|
1158
|
+
head?: never;
|
|
1159
|
+
patch?: never;
|
|
1160
|
+
trace?: never;
|
|
1161
|
+
};
|
|
1162
|
+
"/api/admin/resources/delete-deployment": {
|
|
1163
|
+
parameters: {
|
|
1164
|
+
query?: never;
|
|
1165
|
+
header?: never;
|
|
1166
|
+
path?: never;
|
|
1167
|
+
cookie?: never;
|
|
1168
|
+
};
|
|
1169
|
+
get?: never;
|
|
1170
|
+
put?: never;
|
|
1171
|
+
/**
|
|
1172
|
+
* Delete every cloud resource belonging to a deployment
|
|
1173
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
1174
|
+
*
|
|
1175
|
+
* > This is a platform-admin only route.
|
|
1176
|
+
*
|
|
1177
|
+
* Deletes every live cloud resource tagged with the deployment id (as session-id or pw-deployment-id). Resources with a live platform record are deleted through it; the rest are swept directly in the cloud by gaia. Always dry-run first.
|
|
1178
|
+
*/
|
|
1179
|
+
post: operations["delete-deployment-resources"];
|
|
1180
|
+
delete?: never;
|
|
1181
|
+
options?: never;
|
|
1182
|
+
head?: never;
|
|
1183
|
+
patch?: never;
|
|
1184
|
+
trace?: never;
|
|
1185
|
+
};
|
|
1186
|
+
"/api/admin/resources/orphan-mute": {
|
|
1187
|
+
parameters: {
|
|
1188
|
+
query?: never;
|
|
1189
|
+
header?: never;
|
|
1190
|
+
path?: never;
|
|
1191
|
+
cookie?: never;
|
|
1192
|
+
};
|
|
1193
|
+
get?: never;
|
|
1194
|
+
/**
|
|
1195
|
+
* Mute orphan alerts for a deployment or individual resources
|
|
1196
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
1197
|
+
*
|
|
1198
|
+
* > This is a platform-admin only route.
|
|
1199
|
+
*
|
|
1200
|
+
* Stops the recurring orphan alert from naming the targeted deployment or resources. Detection keeps running and muted orphans stay visible on the resources page.
|
|
1201
|
+
*/
|
|
1202
|
+
put: operations["mute-orphan-alerts"];
|
|
1203
|
+
post?: never;
|
|
1204
|
+
/**
|
|
1205
|
+
* Unmute orphan alerts for a deployment or individual resources
|
|
1206
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
1207
|
+
*
|
|
1208
|
+
* > This is a platform-admin only route.
|
|
1209
|
+
*
|
|
1210
|
+
* Removes orphan alert mutes. Deployment scope clears every mute of the deployment, including per-resource ones.
|
|
1211
|
+
*/
|
|
1212
|
+
delete: operations["unmute-orphan-alerts"];
|
|
1213
|
+
options?: never;
|
|
1214
|
+
head?: never;
|
|
1215
|
+
patch?: never;
|
|
1216
|
+
trace?: never;
|
|
1217
|
+
};
|
|
1218
|
+
"/api/admin/resources/summary": {
|
|
1219
|
+
parameters: {
|
|
1220
|
+
query?: never;
|
|
1221
|
+
header?: never;
|
|
1222
|
+
path?: never;
|
|
1223
|
+
cookie?: never;
|
|
1224
|
+
};
|
|
1225
|
+
/**
|
|
1226
|
+
* Per-type active and orphan resource counts
|
|
1227
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
1228
|
+
*
|
|
1229
|
+
* > This is a platform-admin only route.
|
|
1230
|
+
*
|
|
1231
|
+
* Returns per-resource-type active and orphan counts for the resource-type tabs, scoped to the organization and last-seen window. Platform admins can query every organization; organization admins must pass their organization.
|
|
1232
|
+
*/
|
|
1233
|
+
get: operations["get-resources-summary"];
|
|
1234
|
+
put?: never;
|
|
1235
|
+
post?: never;
|
|
1236
|
+
delete?: never;
|
|
1237
|
+
options?: never;
|
|
1238
|
+
head?: never;
|
|
1239
|
+
patch?: never;
|
|
1240
|
+
trace?: never;
|
|
1241
|
+
};
|
|
1008
1242
|
"/api/admin/user-workspace/users/{user}/{type}/kill": {
|
|
1009
1243
|
parameters: {
|
|
1010
1244
|
query?: never;
|
|
@@ -1613,28 +1847,6 @@ export interface paths {
|
|
|
1613
1847
|
patch?: never;
|
|
1614
1848
|
trace?: never;
|
|
1615
1849
|
};
|
|
1616
|
-
"/api/auth/token/cluster-session": {
|
|
1617
|
-
parameters: {
|
|
1618
|
-
query?: never;
|
|
1619
|
-
header?: never;
|
|
1620
|
-
path?: never;
|
|
1621
|
-
cookie?: never;
|
|
1622
|
-
};
|
|
1623
|
-
/**
|
|
1624
|
-
* Get cluster session JWT token
|
|
1625
|
-
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
1626
|
-
*
|
|
1627
|
-
* Generates a JWT token for cluster session authentication.
|
|
1628
|
-
*/
|
|
1629
|
-
get: operations["get-cluster-session-token"];
|
|
1630
|
-
put?: never;
|
|
1631
|
-
post?: never;
|
|
1632
|
-
delete?: never;
|
|
1633
|
-
options?: never;
|
|
1634
|
-
head?: never;
|
|
1635
|
-
patch?: never;
|
|
1636
|
-
trace?: never;
|
|
1637
|
-
};
|
|
1638
1850
|
"/api/auth/token/oidc": {
|
|
1639
1851
|
parameters: {
|
|
1640
1852
|
query?: never;
|
|
@@ -1906,7 +2118,7 @@ export interface paths {
|
|
|
1906
2118
|
* List Resource Events
|
|
1907
2119
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
1908
2120
|
*
|
|
1909
|
-
* List audit events for a single resource. Requires view access to the resource
|
|
2121
|
+
* List audit events for a single resource. Requires view access to the resource.
|
|
1910
2122
|
*/
|
|
1911
2123
|
get: operations["list-resource-events"];
|
|
1912
2124
|
put?: never;
|
|
@@ -1917,6 +2129,28 @@ export interface paths {
|
|
|
1917
2129
|
patch?: never;
|
|
1918
2130
|
trace?: never;
|
|
1919
2131
|
};
|
|
2132
|
+
"/api/events/resources/{targetType}/{targetId}/export": {
|
|
2133
|
+
parameters: {
|
|
2134
|
+
query?: never;
|
|
2135
|
+
header?: never;
|
|
2136
|
+
path?: never;
|
|
2137
|
+
cookie?: never;
|
|
2138
|
+
};
|
|
2139
|
+
/**
|
|
2140
|
+
* Export Resource Events
|
|
2141
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
2142
|
+
*
|
|
2143
|
+
* Stream a single resource's audit events as CSV, JSON, or plain text. Requires view access to the resource.
|
|
2144
|
+
*/
|
|
2145
|
+
get: operations["export-resource-events"];
|
|
2146
|
+
put?: never;
|
|
2147
|
+
post?: never;
|
|
2148
|
+
delete?: never;
|
|
2149
|
+
options?: never;
|
|
2150
|
+
head?: never;
|
|
2151
|
+
patch?: never;
|
|
2152
|
+
trace?: never;
|
|
2153
|
+
};
|
|
1920
2154
|
"/api/events/types": {
|
|
1921
2155
|
parameters: {
|
|
1922
2156
|
query?: never;
|
|
@@ -4215,6 +4449,28 @@ export interface paths {
|
|
|
4215
4449
|
patch?: never;
|
|
4216
4450
|
trace?: never;
|
|
4217
4451
|
};
|
|
4452
|
+
"/api/organizations/{organization}/ai-providers/{name}/copilot-connection": {
|
|
4453
|
+
parameters: {
|
|
4454
|
+
query?: never;
|
|
4455
|
+
header?: never;
|
|
4456
|
+
path?: never;
|
|
4457
|
+
cookie?: never;
|
|
4458
|
+
};
|
|
4459
|
+
get?: never;
|
|
4460
|
+
put?: never;
|
|
4461
|
+
/**
|
|
4462
|
+
* Reconnect organization Copilot provider
|
|
4463
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
4464
|
+
*
|
|
4465
|
+
* Reconnects an organization Copilot provider with the administrator's GitHub account linked in Account Settings.
|
|
4466
|
+
*/
|
|
4467
|
+
post: operations["reconnect-org-copilot-provider"];
|
|
4468
|
+
delete?: never;
|
|
4469
|
+
options?: never;
|
|
4470
|
+
head?: never;
|
|
4471
|
+
patch?: never;
|
|
4472
|
+
trace?: never;
|
|
4473
|
+
};
|
|
4218
4474
|
"/api/organizations/{organization}/ai-providers/{name}/model-configs": {
|
|
4219
4475
|
parameters: {
|
|
4220
4476
|
query?: never;
|
|
@@ -4721,6 +4977,28 @@ export interface paths {
|
|
|
4721
4977
|
patch: operations["update-organization-auth-method-ldap"];
|
|
4722
4978
|
trace?: never;
|
|
4723
4979
|
};
|
|
4980
|
+
"/api/organizations/{organization}/auth-methods/ldap/{authName}/test": {
|
|
4981
|
+
parameters: {
|
|
4982
|
+
query?: never;
|
|
4983
|
+
header?: never;
|
|
4984
|
+
path?: never;
|
|
4985
|
+
cookie?: never;
|
|
4986
|
+
};
|
|
4987
|
+
get?: never;
|
|
4988
|
+
put?: never;
|
|
4989
|
+
/**
|
|
4990
|
+
* Test saved organization auth method: LDAP
|
|
4991
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
4992
|
+
*
|
|
4993
|
+
* Tests a saved LDAP auth method using its stored configuration, including stored secrets. Any field sent in the request overrides the stored value for this test only; nothing is saved.
|
|
4994
|
+
*/
|
|
4995
|
+
post: operations["test-saved-organization-auth-method-ldap"];
|
|
4996
|
+
delete?: never;
|
|
4997
|
+
options?: never;
|
|
4998
|
+
head?: never;
|
|
4999
|
+
patch?: never;
|
|
5000
|
+
trace?: never;
|
|
5001
|
+
};
|
|
4724
5002
|
"/api/organizations/{organization}/auth-methods/oidc": {
|
|
4725
5003
|
parameters: {
|
|
4726
5004
|
query?: never;
|
|
@@ -4961,6 +5239,50 @@ export interface paths {
|
|
|
4961
5239
|
patch?: never;
|
|
4962
5240
|
trace?: never;
|
|
4963
5241
|
};
|
|
5242
|
+
"/api/organizations/{organization}/cloud-accounts/{name}/billing/default-allocation": {
|
|
5243
|
+
parameters: {
|
|
5244
|
+
query?: never;
|
|
5245
|
+
header?: never;
|
|
5246
|
+
path?: never;
|
|
5247
|
+
cookie?: never;
|
|
5248
|
+
};
|
|
5249
|
+
get?: never;
|
|
5250
|
+
put?: never;
|
|
5251
|
+
post?: never;
|
|
5252
|
+
delete?: never;
|
|
5253
|
+
options?: never;
|
|
5254
|
+
head?: never;
|
|
5255
|
+
/**
|
|
5256
|
+
* Set default allocation for cloud account billing
|
|
5257
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
5258
|
+
*
|
|
5259
|
+
* Sets or clears the allocation that billing charges without their own allocation are assigned to.
|
|
5260
|
+
*/
|
|
5261
|
+
patch: operations["patch-cloud-account-billing-default-allocation"];
|
|
5262
|
+
trace?: never;
|
|
5263
|
+
};
|
|
5264
|
+
"/api/organizations/{organization}/cloud-accounts/{name}/billing/details": {
|
|
5265
|
+
parameters: {
|
|
5266
|
+
query?: never;
|
|
5267
|
+
header?: never;
|
|
5268
|
+
path?: never;
|
|
5269
|
+
cookie?: never;
|
|
5270
|
+
};
|
|
5271
|
+
/**
|
|
5272
|
+
* Get cloud account billing details
|
|
5273
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
5274
|
+
*
|
|
5275
|
+
* Returns detailed billing infrastructure information including provision output and default allocation.
|
|
5276
|
+
*/
|
|
5277
|
+
get: operations["get-cloud-account-billing-details"];
|
|
5278
|
+
put?: never;
|
|
5279
|
+
post?: never;
|
|
5280
|
+
delete?: never;
|
|
5281
|
+
options?: never;
|
|
5282
|
+
head?: never;
|
|
5283
|
+
patch?: never;
|
|
5284
|
+
trace?: never;
|
|
5285
|
+
};
|
|
4964
5286
|
"/api/organizations/{organization}/cloud-accounts/{name}/billing/last-update": {
|
|
4965
5287
|
parameters: {
|
|
4966
5288
|
query?: never;
|
|
@@ -5438,7 +5760,7 @@ export interface paths {
|
|
|
5438
5760
|
* Export Organization Events
|
|
5439
5761
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
5440
5762
|
*
|
|
5441
|
-
* Stream the organization's audit events as CSV or
|
|
5763
|
+
* Stream the organization's audit events as CSV, JSON, or plain text. Requires organization admin.
|
|
5442
5764
|
*/
|
|
5443
5765
|
get: operations["export-organization-events"];
|
|
5444
5766
|
put?: never;
|
|
@@ -6144,7 +6466,7 @@ export interface paths {
|
|
|
6144
6466
|
* Enable or disable cost tracking
|
|
6145
6467
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
6146
6468
|
*
|
|
6147
|
-
* Enable or disable cost tracking for a Kubernetes cluster.
|
|
6469
|
+
* Enable or disable cost tracking for a Kubernetes cluster. The in-cluster agent records billable namespace usage so it survives a disconnect from the platform.
|
|
6148
6470
|
*/
|
|
6149
6471
|
patch: operations["update-kubernetes-cost-tracking"];
|
|
6150
6472
|
trace?: never;
|
|
@@ -6163,10 +6485,10 @@ export interface paths {
|
|
|
6163
6485
|
options?: never;
|
|
6164
6486
|
head?: never;
|
|
6165
6487
|
/**
|
|
6166
|
-
* Update cost tracking
|
|
6488
|
+
* Update cost tracking rates
|
|
6167
6489
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
6168
6490
|
*
|
|
6169
|
-
*
|
|
6491
|
+
* Sets the cluster-wide billing rates applied to every namespace with an allocation attached.
|
|
6170
6492
|
*/
|
|
6171
6493
|
patch: operations["update-kubernetes-cost-tracking-prices"];
|
|
6172
6494
|
trace?: never;
|
|
@@ -7969,6 +8291,28 @@ export interface paths {
|
|
|
7969
8291
|
patch?: never;
|
|
7970
8292
|
trace?: never;
|
|
7971
8293
|
};
|
|
8294
|
+
"/api/organizations/{organization}/users/{user}/active": {
|
|
8295
|
+
parameters: {
|
|
8296
|
+
query?: never;
|
|
8297
|
+
header?: never;
|
|
8298
|
+
path?: never;
|
|
8299
|
+
cookie?: never;
|
|
8300
|
+
};
|
|
8301
|
+
get?: never;
|
|
8302
|
+
/**
|
|
8303
|
+
* Set user active status
|
|
8304
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8305
|
+
*
|
|
8306
|
+
* Enables or disables a user's ability to sign in. An active user consumes a license seat unless the account is complimentary; deactivating a user releases the seat and fires any USER_DISABLED webhooks.
|
|
8307
|
+
*/
|
|
8308
|
+
put: operations["set-user-active"];
|
|
8309
|
+
post?: never;
|
|
8310
|
+
delete?: never;
|
|
8311
|
+
options?: never;
|
|
8312
|
+
head?: never;
|
|
8313
|
+
patch?: never;
|
|
8314
|
+
trace?: never;
|
|
8315
|
+
};
|
|
7972
8316
|
"/api/organizations/{organization}/users/{user}/admin": {
|
|
7973
8317
|
parameters: {
|
|
7974
8318
|
query?: never;
|
|
@@ -8081,6 +8425,28 @@ export interface paths {
|
|
|
8081
8425
|
patch?: never;
|
|
8082
8426
|
trace?: never;
|
|
8083
8427
|
};
|
|
8428
|
+
"/api/organizations/{organization}/users/{user}/ai-providers/{name}/copilot-connection": {
|
|
8429
|
+
parameters: {
|
|
8430
|
+
query?: never;
|
|
8431
|
+
header?: never;
|
|
8432
|
+
path?: never;
|
|
8433
|
+
cookie?: never;
|
|
8434
|
+
};
|
|
8435
|
+
get?: never;
|
|
8436
|
+
put?: never;
|
|
8437
|
+
/**
|
|
8438
|
+
* Reconnect Copilot provider
|
|
8439
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
8440
|
+
*
|
|
8441
|
+
* Reconnects a Copilot provider with the GitHub account linked in Account Settings.
|
|
8442
|
+
*/
|
|
8443
|
+
post: operations["reconnect-copilot-provider"];
|
|
8444
|
+
delete?: never;
|
|
8445
|
+
options?: never;
|
|
8446
|
+
head?: never;
|
|
8447
|
+
patch?: never;
|
|
8448
|
+
trace?: never;
|
|
8449
|
+
};
|
|
8084
8450
|
"/api/organizations/{organization}/users/{user}/ai-providers/{name}/deployments": {
|
|
8085
8451
|
parameters: {
|
|
8086
8452
|
query?: never;
|
|
@@ -8672,6 +9038,28 @@ export interface paths {
|
|
|
8672
9038
|
patch?: never;
|
|
8673
9039
|
trace?: never;
|
|
8674
9040
|
};
|
|
9041
|
+
"/api/organizations/{organization}/users/{user}/billing-admin": {
|
|
9042
|
+
parameters: {
|
|
9043
|
+
query?: never;
|
|
9044
|
+
header?: never;
|
|
9045
|
+
path?: never;
|
|
9046
|
+
cookie?: never;
|
|
9047
|
+
};
|
|
9048
|
+
get?: never;
|
|
9049
|
+
/**
|
|
9050
|
+
* Set user platform billing admin status
|
|
9051
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
9052
|
+
*
|
|
9053
|
+
* Grants or revokes platform billing admin access to a user, allowing read-only access to billing data across all organizations.
|
|
9054
|
+
*/
|
|
9055
|
+
put: operations["set-user-billing-admin"];
|
|
9056
|
+
post?: never;
|
|
9057
|
+
delete?: never;
|
|
9058
|
+
options?: never;
|
|
9059
|
+
head?: never;
|
|
9060
|
+
patch?: never;
|
|
9061
|
+
trace?: never;
|
|
9062
|
+
};
|
|
8675
9063
|
"/api/organizations/{organization}/users/{user}/clusters/{clusterName}": {
|
|
8676
9064
|
parameters: {
|
|
8677
9065
|
query?: never;
|
|
@@ -8890,6 +9278,50 @@ export interface paths {
|
|
|
8890
9278
|
patch?: never;
|
|
8891
9279
|
trace?: never;
|
|
8892
9280
|
};
|
|
9281
|
+
"/api/organizations/{organization}/users/{user}/clusters/{clusterName}/disks": {
|
|
9282
|
+
parameters: {
|
|
9283
|
+
query?: never;
|
|
9284
|
+
header?: never;
|
|
9285
|
+
path?: never;
|
|
9286
|
+
cookie?: never;
|
|
9287
|
+
};
|
|
9288
|
+
get?: never;
|
|
9289
|
+
put?: never;
|
|
9290
|
+
/**
|
|
9291
|
+
* Attach Cluster Disk
|
|
9292
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
9293
|
+
*
|
|
9294
|
+
* Attaches a provisioned persistent disk to a cloud cluster. On a running cluster the cloud attachment happens asynchronously and its progress is reported on the disk's provision status.
|
|
9295
|
+
*/
|
|
9296
|
+
post: operations["attach-cluster-disk"];
|
|
9297
|
+
delete?: never;
|
|
9298
|
+
options?: never;
|
|
9299
|
+
head?: never;
|
|
9300
|
+
patch?: never;
|
|
9301
|
+
trace?: never;
|
|
9302
|
+
};
|
|
9303
|
+
"/api/organizations/{organization}/users/{user}/clusters/{clusterName}/disks/{storageId}": {
|
|
9304
|
+
parameters: {
|
|
9305
|
+
query?: never;
|
|
9306
|
+
header?: never;
|
|
9307
|
+
path?: never;
|
|
9308
|
+
cookie?: never;
|
|
9309
|
+
};
|
|
9310
|
+
get?: never;
|
|
9311
|
+
put?: never;
|
|
9312
|
+
post?: never;
|
|
9313
|
+
/**
|
|
9314
|
+
* Detach Cluster Disk
|
|
9315
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
9316
|
+
*
|
|
9317
|
+
* Detaches a persistent disk from a cloud cluster. On a running cluster the cloud detachment happens asynchronously and its progress is reported on the disk's provision status.
|
|
9318
|
+
*/
|
|
9319
|
+
delete: operations["detach-cluster-disk"];
|
|
9320
|
+
options?: never;
|
|
9321
|
+
head?: never;
|
|
9322
|
+
patch?: never;
|
|
9323
|
+
trace?: never;
|
|
9324
|
+
};
|
|
8893
9325
|
"/api/organizations/{organization}/users/{user}/clusters/{clusterName}/icon": {
|
|
8894
9326
|
parameters: {
|
|
8895
9327
|
query?: never;
|
|
@@ -8990,6 +9422,28 @@ export interface paths {
|
|
|
8990
9422
|
patch: operations["update-user-cluster-permissions"];
|
|
8991
9423
|
trace?: never;
|
|
8992
9424
|
};
|
|
9425
|
+
"/api/organizations/{organization}/users/{user}/clusters/{clusterName}/provision": {
|
|
9426
|
+
parameters: {
|
|
9427
|
+
query?: never;
|
|
9428
|
+
header?: never;
|
|
9429
|
+
path?: never;
|
|
9430
|
+
cookie?: never;
|
|
9431
|
+
};
|
|
9432
|
+
get?: never;
|
|
9433
|
+
put?: never;
|
|
9434
|
+
/**
|
|
9435
|
+
* Provision cluster
|
|
9436
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
9437
|
+
*
|
|
9438
|
+
* Provisions a cloud cluster for the first time, building its cloud infrastructure and starting the controller. Starting a stopped cluster again is the resume operation.
|
|
9439
|
+
*/
|
|
9440
|
+
post: operations["provision-cluster"];
|
|
9441
|
+
delete?: never;
|
|
9442
|
+
options?: never;
|
|
9443
|
+
head?: never;
|
|
9444
|
+
patch?: never;
|
|
9445
|
+
trace?: never;
|
|
9446
|
+
};
|
|
8993
9447
|
"/api/organizations/{organization}/users/{user}/clusters/{clusterName}/resume": {
|
|
8994
9448
|
parameters: {
|
|
8995
9449
|
query?: never;
|
|
@@ -10318,6 +10772,28 @@ export interface paths {
|
|
|
10318
10772
|
patch: operations["set-session-icon"];
|
|
10319
10773
|
trace?: never;
|
|
10320
10774
|
};
|
|
10775
|
+
"/api/organizations/{organization}/users/{user}/sessions/{name}/rename": {
|
|
10776
|
+
parameters: {
|
|
10777
|
+
query?: never;
|
|
10778
|
+
header?: never;
|
|
10779
|
+
path?: never;
|
|
10780
|
+
cookie?: never;
|
|
10781
|
+
};
|
|
10782
|
+
get?: never;
|
|
10783
|
+
put?: never;
|
|
10784
|
+
/**
|
|
10785
|
+
* Rename session
|
|
10786
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
10787
|
+
*
|
|
10788
|
+
* Renames a session. Only the session owner can rename it, and not while the session is starting or stopping or is managed by an active workflow run. The rename is metadata-only: the session's custom subdomain keeps the original name and old /me/session URLs stop resolving.
|
|
10789
|
+
*/
|
|
10790
|
+
post: operations["rename-user-session"];
|
|
10791
|
+
delete?: never;
|
|
10792
|
+
options?: never;
|
|
10793
|
+
head?: never;
|
|
10794
|
+
patch?: never;
|
|
10795
|
+
trace?: never;
|
|
10796
|
+
};
|
|
10321
10797
|
"/api/organizations/{organization}/users/{user}/sessions/{name}/restart": {
|
|
10322
10798
|
parameters: {
|
|
10323
10799
|
query?: never;
|
|
@@ -10652,6 +11128,34 @@ export interface paths {
|
|
|
10652
11128
|
patch?: never;
|
|
10653
11129
|
trace?: never;
|
|
10654
11130
|
};
|
|
11131
|
+
"/api/organizations/{organization}/users/{user}/{type}/{name}/icon": {
|
|
11132
|
+
parameters: {
|
|
11133
|
+
query?: never;
|
|
11134
|
+
header?: never;
|
|
11135
|
+
path?: never;
|
|
11136
|
+
cookie?: never;
|
|
11137
|
+
};
|
|
11138
|
+
get?: never;
|
|
11139
|
+
put?: never;
|
|
11140
|
+
post?: never;
|
|
11141
|
+
/**
|
|
11142
|
+
* Delete storage icon
|
|
11143
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
11144
|
+
*
|
|
11145
|
+
* Removes a storage's custom icon and releases the underlying blob reference.
|
|
11146
|
+
*/
|
|
11147
|
+
delete: operations["delete-storage-icon"];
|
|
11148
|
+
options?: never;
|
|
11149
|
+
head?: never;
|
|
11150
|
+
/**
|
|
11151
|
+
* Set storage icon
|
|
11152
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
11153
|
+
*
|
|
11154
|
+
* Sets a storage's icon from either a curated preset URL or a blob already in the caller's thumbnail library. Increments refcount on the new blob and releases the prior one.
|
|
11155
|
+
*/
|
|
11156
|
+
patch: operations["set-storage-icon"];
|
|
11157
|
+
trace?: never;
|
|
11158
|
+
};
|
|
10655
11159
|
"/api/organizations/{organization}/variables": {
|
|
10656
11160
|
parameters: {
|
|
10657
11161
|
query?: never;
|
|
@@ -10973,9 +11477,7 @@ export interface paths {
|
|
|
10973
11477
|
* Get all platform groups
|
|
10974
11478
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
10975
11479
|
*
|
|
10976
|
-
*
|
|
10977
|
-
*
|
|
10978
|
-
* Returns a list of all groups on the platform
|
|
11480
|
+
* Returns a list of all groups on the platform. Requires platform admin or billing admin.
|
|
10979
11481
|
*/
|
|
10980
11482
|
get: operations["get-all-platform-groups"];
|
|
10981
11483
|
put?: never;
|
|
@@ -11680,6 +12182,28 @@ export interface paths {
|
|
|
11680
12182
|
patch?: never;
|
|
11681
12183
|
trace?: never;
|
|
11682
12184
|
};
|
|
12185
|
+
"/api/products/ai/catalog/{catalogEntryId}/icon": {
|
|
12186
|
+
parameters: {
|
|
12187
|
+
query?: never;
|
|
12188
|
+
header?: never;
|
|
12189
|
+
path?: never;
|
|
12190
|
+
cookie?: never;
|
|
12191
|
+
};
|
|
12192
|
+
/**
|
|
12193
|
+
* Get AI integration icon
|
|
12194
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
12195
|
+
*
|
|
12196
|
+
* Serves the icon image configured for an AI integration catalog entry.
|
|
12197
|
+
*/
|
|
12198
|
+
get: operations["get-ai-integration-icon"];
|
|
12199
|
+
put?: never;
|
|
12200
|
+
post?: never;
|
|
12201
|
+
delete?: never;
|
|
12202
|
+
options?: never;
|
|
12203
|
+
head?: never;
|
|
12204
|
+
patch?: never;
|
|
12205
|
+
trace?: never;
|
|
12206
|
+
};
|
|
11683
12207
|
"/api/provisionstatus/{infraId}": {
|
|
11684
12208
|
parameters: {
|
|
11685
12209
|
query?: never;
|
|
@@ -12773,6 +13297,31 @@ export interface paths {
|
|
|
12773
13297
|
patch?: never;
|
|
12774
13298
|
trace?: never;
|
|
12775
13299
|
};
|
|
13300
|
+
"/api/v2/admin/resources/instances/all": {
|
|
13301
|
+
parameters: {
|
|
13302
|
+
query?: never;
|
|
13303
|
+
header?: never;
|
|
13304
|
+
path?: never;
|
|
13305
|
+
cookie?: never;
|
|
13306
|
+
};
|
|
13307
|
+
/**
|
|
13308
|
+
* List all cached cloud instances
|
|
13309
|
+
* @deprecated
|
|
13310
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
13311
|
+
*
|
|
13312
|
+
* > This is a platform-admin only route.
|
|
13313
|
+
*
|
|
13314
|
+
* Returns every recently seen cloud instance across all organizations, in the legacy cloud-cacher shape. Deprecated: use /api/admin/resources.
|
|
13315
|
+
*/
|
|
13316
|
+
get: operations["get-all-instances"];
|
|
13317
|
+
put?: never;
|
|
13318
|
+
post?: never;
|
|
13319
|
+
delete?: never;
|
|
13320
|
+
options?: never;
|
|
13321
|
+
head?: never;
|
|
13322
|
+
patch?: never;
|
|
13323
|
+
trace?: never;
|
|
13324
|
+
};
|
|
12776
13325
|
"/api/v2/auth/session": {
|
|
12777
13326
|
parameters: {
|
|
12778
13327
|
query?: never;
|
|
@@ -12818,6 +13367,28 @@ export interface paths {
|
|
|
12818
13367
|
patch?: never;
|
|
12819
13368
|
trace?: never;
|
|
12820
13369
|
};
|
|
13370
|
+
"/api/v2/resources/instances": {
|
|
13371
|
+
parameters: {
|
|
13372
|
+
query?: never;
|
|
13373
|
+
header?: never;
|
|
13374
|
+
path?: never;
|
|
13375
|
+
cookie?: never;
|
|
13376
|
+
};
|
|
13377
|
+
/**
|
|
13378
|
+
* List the current user's cloud instances grouped by pool session
|
|
13379
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
13380
|
+
*
|
|
13381
|
+
* Returns the authenticated user's recently seen cloud instances grouped by pool and session, in the legacy shape.
|
|
13382
|
+
*/
|
|
13383
|
+
get: operations["get-user-instances"];
|
|
13384
|
+
put?: never;
|
|
13385
|
+
post?: never;
|
|
13386
|
+
delete?: never;
|
|
13387
|
+
options?: never;
|
|
13388
|
+
head?: never;
|
|
13389
|
+
patch?: never;
|
|
13390
|
+
trace?: never;
|
|
13391
|
+
};
|
|
12821
13392
|
"/api/v2/sshpublickeys": {
|
|
12822
13393
|
parameters: {
|
|
12823
13394
|
query?: never;
|
|
@@ -13537,10 +14108,8 @@ export interface components {
|
|
|
13537
14108
|
region?: string;
|
|
13538
14109
|
/** @description Replace an existing version's variables instead of adding a new version. */
|
|
13539
14110
|
replace?: boolean;
|
|
13540
|
-
restore_snapshot?: boolean;
|
|
13541
14111
|
/** Format: int64 */
|
|
13542
14112
|
size_gb?: number;
|
|
13543
|
-
snapshot?: string;
|
|
13544
14113
|
/** Format: int64 */
|
|
13545
14114
|
throughput?: number;
|
|
13546
14115
|
type?: string;
|
|
@@ -13623,10 +14192,8 @@ export interface components {
|
|
|
13623
14192
|
region?: string;
|
|
13624
14193
|
/** @description Replace an existing version's variables instead of adding a new version. */
|
|
13625
14194
|
replace?: boolean;
|
|
13626
|
-
restore_snapshot?: boolean;
|
|
13627
14195
|
/** Format: int64 */
|
|
13628
14196
|
size_gb?: number;
|
|
13629
|
-
snapshot?: string;
|
|
13630
14197
|
type?: string;
|
|
13631
14198
|
/** @description Version label to add (must start with v). */
|
|
13632
14199
|
version: string;
|
|
@@ -13698,6 +14265,10 @@ export interface components {
|
|
|
13698
14265
|
AddDeploymentInputBody: {
|
|
13699
14266
|
/** @description Model name to deploy on the existing Azure OpenAI account */
|
|
13700
14267
|
model: string;
|
|
14268
|
+
/** @description Azure SKU to deploy under (e.g. Standard, GlobalStandard, DataZoneStandard). Defaults to Standard when omitted. */
|
|
14269
|
+
sku?: string;
|
|
14270
|
+
/** @description Specific model version to deploy. Required for newer model families (gpt-5.x). Defaults to Azure's implicit default when omitted. */
|
|
14271
|
+
version?: string;
|
|
13701
14272
|
};
|
|
13702
14273
|
AddExistingVersionInputBody: {
|
|
13703
14274
|
/** @description Desktop session settings. */
|
|
@@ -13730,10 +14301,8 @@ export interface components {
|
|
|
13730
14301
|
region?: string;
|
|
13731
14302
|
/** @description Replace an existing version's variables instead of adding a new version. */
|
|
13732
14303
|
replace?: boolean;
|
|
13733
|
-
restore_snapshot?: boolean;
|
|
13734
14304
|
/** Format: int64 */
|
|
13735
14305
|
size_gb?: number;
|
|
13736
|
-
snapshot?: string;
|
|
13737
14306
|
type?: string;
|
|
13738
14307
|
/** @description Version label to add (must start with v). */
|
|
13739
14308
|
version: string;
|
|
@@ -13972,6 +14541,8 @@ export interface components {
|
|
|
13972
14541
|
AiProviderResponse: {
|
|
13973
14542
|
/** @description Email of the connected ChatGPT account (codex provider) */
|
|
13974
14543
|
accountEmail?: string;
|
|
14544
|
+
/** @description Login of the connected GitHub account (copilot provider) */
|
|
14545
|
+
accountLogin?: string;
|
|
13975
14546
|
/** @description Attached storage bucket infrastructure ID */
|
|
13976
14547
|
bucketId?: string;
|
|
13977
14548
|
/** @description Attached storage bucket name */
|
|
@@ -13994,6 +14565,8 @@ export interface components {
|
|
|
13994
14565
|
hasCaCertificate?: boolean;
|
|
13995
14566
|
/** @description Unique identifier for the resource */
|
|
13996
14567
|
id: string;
|
|
14568
|
+
/** @description Current icon configured on the provider's catalog entry */
|
|
14569
|
+
imageUrl?: string;
|
|
13997
14570
|
/** @description Whether documents have been ingested */
|
|
13998
14571
|
ingested: boolean;
|
|
13999
14572
|
/** @description Whether TLS certificate verification is skipped */
|
|
@@ -14002,7 +14575,7 @@ export interface components {
|
|
|
14002
14575
|
model?: string;
|
|
14003
14576
|
/** @description Name of the AI provider */
|
|
14004
14577
|
name: string;
|
|
14005
|
-
/** @description
|
|
14578
|
+
/** @description Subscription plan type (subscription providers) */
|
|
14006
14579
|
planType?: string;
|
|
14007
14580
|
/** @description Refresh interval for the AI provider */
|
|
14008
14581
|
refreshInterval?: string;
|
|
@@ -14032,6 +14605,8 @@ export interface components {
|
|
|
14032
14605
|
healthy?: boolean;
|
|
14033
14606
|
/** @description Unique identifier for the AI provider */
|
|
14034
14607
|
id: string;
|
|
14608
|
+
/** @description Current icon configured on the provider's catalog entry */
|
|
14609
|
+
imageUrl?: string;
|
|
14035
14610
|
/** @description AI model name */
|
|
14036
14611
|
model: string | null;
|
|
14037
14612
|
/** @description Name of the AI provider */
|
|
@@ -14149,6 +14724,20 @@ export interface components {
|
|
|
14149
14724
|
/** @description Refresh interval for bucket ingestion */
|
|
14150
14725
|
refreshInterval: string;
|
|
14151
14726
|
};
|
|
14727
|
+
AttachClusterDiskBody: {
|
|
14728
|
+
/**
|
|
14729
|
+
* @description The path to mount the disk at on the cluster.
|
|
14730
|
+
* @example /data
|
|
14731
|
+
*/
|
|
14732
|
+
mountPoint: string;
|
|
14733
|
+
/** @description Export the disk over NFS to the cluster's compute nodes. */
|
|
14734
|
+
nfsExport?: boolean;
|
|
14735
|
+
/**
|
|
14736
|
+
* @description The id of the persistent disk to attach.
|
|
14737
|
+
* @example 66f1a2b3c4d5e6f7a8b9c0d1
|
|
14738
|
+
*/
|
|
14739
|
+
storageId: string;
|
|
14740
|
+
};
|
|
14152
14741
|
AttachmentResponse: {
|
|
14153
14742
|
/** @description MIME type */
|
|
14154
14743
|
contentType: string;
|
|
@@ -14186,6 +14775,8 @@ export interface components {
|
|
|
14186
14775
|
admin: boolean;
|
|
14187
14776
|
/** @description Cache-buster etag for the user's avatar; empty when no custom avatar is set. */
|
|
14188
14777
|
avatarEtag?: string;
|
|
14778
|
+
/** @description Indicates if the user is a platform billing admin with read access to billing data across all organizations. */
|
|
14779
|
+
billingAdmin: boolean;
|
|
14189
14780
|
/**
|
|
14190
14781
|
* @description Email address of the user.
|
|
14191
14782
|
* @example jake.thayne@parallelworks.com
|
|
@@ -14374,10 +14965,8 @@ export interface components {
|
|
|
14374
14965
|
provisionError?: string;
|
|
14375
14966
|
/** @description Indicates if the storage has been provisioned. */
|
|
14376
14967
|
provisioned: boolean;
|
|
14377
|
-
/** @description Region the AWS
|
|
14968
|
+
/** @description Region the AWS disk is in */
|
|
14378
14969
|
region?: string;
|
|
14379
|
-
/** @description Indicates if the disk is restored from a snapshot */
|
|
14380
|
-
restoreSnapshot?: boolean;
|
|
14381
14970
|
/** @description Runtime alert information for the storage. */
|
|
14382
14971
|
runtimeAlert?: components["schemas"]["RunAlert"];
|
|
14383
14972
|
/** @description Session cost limit information for the storage. */
|
|
@@ -14412,10 +15001,8 @@ export interface components {
|
|
|
14412
15001
|
/** Format: int64 */
|
|
14413
15002
|
iops?: number;
|
|
14414
15003
|
region?: string;
|
|
14415
|
-
restore_snapshot?: boolean;
|
|
14416
15004
|
/** Format: int64 */
|
|
14417
15005
|
size_gb?: number;
|
|
14418
|
-
snapshot?: string;
|
|
14419
15006
|
/**
|
|
14420
15007
|
* @description Subtype discriminator. (enum property replaced by openapi-typescript)
|
|
14421
15008
|
* @enum {string}
|
|
@@ -14889,6 +15476,8 @@ export interface components {
|
|
|
14889
15476
|
currentlyProvisioning: boolean;
|
|
14890
15477
|
/** @description Description of the storage. */
|
|
14891
15478
|
description?: string;
|
|
15479
|
+
/** @description Type of the disk */
|
|
15480
|
+
diskType?: string;
|
|
14892
15481
|
/** @description Display name of the storage. */
|
|
14893
15482
|
displayName?: string;
|
|
14894
15483
|
/** @description Indicates if the storage is a favorite for the requesting user. */
|
|
@@ -14909,6 +15498,8 @@ export interface components {
|
|
|
14909
15498
|
provisionError?: string;
|
|
14910
15499
|
/** @description Indicates if the storage has been provisioned. */
|
|
14911
15500
|
provisioned: boolean;
|
|
15501
|
+
/** @description Region the disk is in */
|
|
15502
|
+
region?: string;
|
|
14912
15503
|
/** @description Runtime alert information for the storage. */
|
|
14913
15504
|
runtimeAlert?: components["schemas"]["RunAlert"];
|
|
14914
15505
|
/** @description Session cost limit information for the storage. */
|
|
@@ -14922,6 +15513,11 @@ export interface components {
|
|
|
14922
15513
|
sessionless: boolean;
|
|
14923
15514
|
/** @description Sharing permissions of the storage. */
|
|
14924
15515
|
shared: components["schemas"]["Shared"][] | null;
|
|
15516
|
+
/**
|
|
15517
|
+
* Format: int32
|
|
15518
|
+
* @description Size of the disk in GiB
|
|
15519
|
+
*/
|
|
15520
|
+
size?: number;
|
|
14925
15521
|
/** @description Current status of the storage. */
|
|
14926
15522
|
status?: string;
|
|
14927
15523
|
/** @description Tags associated with the storage. */
|
|
@@ -14930,13 +15526,13 @@ export interface components {
|
|
|
14930
15526
|
type: string;
|
|
14931
15527
|
/** @description User associated with the storage. */
|
|
14932
15528
|
user: string;
|
|
15529
|
+
/** @description Zone the disk is in */
|
|
15530
|
+
zone?: string;
|
|
14933
15531
|
};
|
|
14934
15532
|
AzureDiskVersionSettings: {
|
|
14935
15533
|
region?: string;
|
|
14936
|
-
restore_snapshot?: boolean;
|
|
14937
15534
|
/** Format: int64 */
|
|
14938
15535
|
size_gb?: number;
|
|
14939
|
-
snapshot?: string;
|
|
14940
15536
|
/**
|
|
14941
15537
|
* @description Subtype discriminator. (enum property replaced by openapi-typescript)
|
|
14942
15538
|
* @enum {string}
|
|
@@ -15413,7 +16009,7 @@ export interface components {
|
|
|
15413
16009
|
enforcementMode: "off" | "audit" | "enforce";
|
|
15414
16010
|
/** @description Disabled or removed base images with dependency counts */
|
|
15415
16011
|
images: components["schemas"]["ImageComplianceItem"][] | null;
|
|
15416
|
-
/** @description Clusters and instances configured
|
|
16012
|
+
/** @description Clusters and instances configured with an unusable image or snapshot, or with an image outside the catalog */
|
|
15417
16013
|
resources: components["schemas"]["ResourceComplianceItem"][] | null;
|
|
15418
16014
|
/** @description Root snapshots that can no longer be used */
|
|
15419
16015
|
snapshots: components["schemas"]["SnapshotComplianceItem"][] | null;
|
|
@@ -15445,7 +16041,7 @@ export interface components {
|
|
|
15445
16041
|
affectedSnapshots: number;
|
|
15446
16042
|
/**
|
|
15447
16043
|
* Format: int64
|
|
15448
|
-
* @description Clusters and instances configured to boot from a disabled, removed, or
|
|
16044
|
+
* @description Clusters and instances configured to boot from a disabled, removed, unrecorded, or custom base image
|
|
15449
16045
|
*/
|
|
15450
16046
|
atRiskResources: number;
|
|
15451
16047
|
/**
|
|
@@ -15464,6 +16060,29 @@ export interface components {
|
|
|
15464
16060
|
*/
|
|
15465
16061
|
totalRootSnapshots: number;
|
|
15466
16062
|
};
|
|
16063
|
+
BillingDetails: {
|
|
16064
|
+
cloudAccountName: string;
|
|
16065
|
+
/** Format: date-time */
|
|
16066
|
+
createdAt: string;
|
|
16067
|
+
defaultAllocationName: string | null;
|
|
16068
|
+
infraName: string;
|
|
16069
|
+
/** Format: date-time */
|
|
16070
|
+
lastBillingUpdate: string | null;
|
|
16071
|
+
organizationName: string;
|
|
16072
|
+
provisionOutput: components["schemas"]["BillingProvisionOutput"];
|
|
16073
|
+
provisionStatus: {
|
|
16074
|
+
[key: string]: components["schemas"]["ProvisionStatusRecord"];
|
|
16075
|
+
};
|
|
16076
|
+
status: string;
|
|
16077
|
+
};
|
|
16078
|
+
BillingProvisionOutput: {
|
|
16079
|
+
awsS3Bucket?: string;
|
|
16080
|
+
awsS3BucketRegion?: string;
|
|
16081
|
+
azureBlobContainerName?: string;
|
|
16082
|
+
azureStorageAccount?: string;
|
|
16083
|
+
googleBigQueryDataset?: string;
|
|
16084
|
+
googleBigQueryDatasetProject?: string;
|
|
16085
|
+
};
|
|
15467
16086
|
BillingResponse: {
|
|
15468
16087
|
id?: string;
|
|
15469
16088
|
provisionedByOrg: boolean | null;
|
|
@@ -15755,8 +16374,6 @@ export interface components {
|
|
|
15755
16374
|
BuiltinProviderResponse: {
|
|
15756
16375
|
caCertificate?: string;
|
|
15757
16376
|
cloudBoundary?: string;
|
|
15758
|
-
/** @enum {string} */
|
|
15759
|
-
credentialOwner: "organization" | "platform";
|
|
15760
16377
|
/** @description First-class provider type implied by the entry's kind */
|
|
15761
16378
|
csp: string;
|
|
15762
16379
|
displayName: string;
|
|
@@ -15766,13 +16383,13 @@ export interface components {
|
|
|
15766
16383
|
endpointPath: string;
|
|
15767
16384
|
id: string;
|
|
15768
16385
|
/** @enum {string} */
|
|
15769
|
-
kind: "azure-managed" | "codex-subscription" | "anthropic" | "openai" | "grok" | "groq" | "together" | "fireworks" | "mistral" | "deepseek" | "zai" | "genai-mil" | "usai" | "custom" | "platform-hosted";
|
|
16386
|
+
kind: "azure-managed" | "bedrock" | "codex-subscription" | "github-copilot" | "anthropic" | "openai" | "grok" | "groq" | "together" | "fireworks" | "mistral" | "deepseek" | "zai" | "genai-mil" | "usai" | "custom" | "platform-hosted";
|
|
15770
16387
|
/** @enum {string} */
|
|
15771
16388
|
lifecycle: "draft" | "active" | "blocked" | "retired";
|
|
15772
16389
|
/** @enum {string} */
|
|
15773
16390
|
minimumTlsVersion: "1.2" | "1.3";
|
|
15774
16391
|
/** @enum {string} */
|
|
15775
|
-
protocol: "azure-openai" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
16392
|
+
protocol: "azure-openai" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
15776
16393
|
region?: string;
|
|
15777
16394
|
/** @description Connections carry a credential */
|
|
15778
16395
|
requiresApiKey: boolean;
|
|
@@ -15782,20 +16399,18 @@ export interface components {
|
|
|
15782
16399
|
CatalogEntryBody: {
|
|
15783
16400
|
caCertificate?: string;
|
|
15784
16401
|
cloudBoundary?: string;
|
|
15785
|
-
/** @enum {string} */
|
|
15786
|
-
credentialOwner: "organization" | "platform";
|
|
15787
16402
|
displayName: string;
|
|
15788
16403
|
endpointOrigin: string;
|
|
15789
16404
|
endpointPath: string;
|
|
15790
16405
|
id: string;
|
|
15791
16406
|
/** @enum {string} */
|
|
15792
|
-
kind: "azure-managed" | "codex-subscription" | "anthropic" | "openai" | "grok" | "groq" | "together" | "fireworks" | "mistral" | "deepseek" | "zai" | "genai-mil" | "usai" | "custom" | "platform-hosted";
|
|
16407
|
+
kind: "azure-managed" | "bedrock" | "codex-subscription" | "github-copilot" | "anthropic" | "openai" | "grok" | "groq" | "together" | "fireworks" | "mistral" | "deepseek" | "zai" | "genai-mil" | "usai" | "custom" | "platform-hosted";
|
|
15793
16408
|
/** @enum {string} */
|
|
15794
16409
|
lifecycle: "draft" | "active" | "blocked" | "retired";
|
|
15795
16410
|
/** @enum {string} */
|
|
15796
16411
|
minimumTlsVersion: "1.2" | "1.3";
|
|
15797
16412
|
/** @enum {string} */
|
|
15798
|
-
protocol: "azure-openai" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
16413
|
+
protocol: "azure-openai" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
15799
16414
|
region?: string;
|
|
15800
16415
|
/** @enum {string} */
|
|
15801
16416
|
toolCallingMode?: "native" | "emulated" | "none";
|
|
@@ -15807,8 +16422,6 @@ export interface components {
|
|
|
15807
16422
|
connectionCount: number;
|
|
15808
16423
|
/** Format: date-time */
|
|
15809
16424
|
createdAt: string;
|
|
15810
|
-
/** @enum {string} */
|
|
15811
|
-
credentialOwner: "organization" | "platform";
|
|
15812
16425
|
/** @description First-class provider type implied by the entry's kind */
|
|
15813
16426
|
csp: string;
|
|
15814
16427
|
displayName: string;
|
|
@@ -15817,8 +16430,10 @@ export interface components {
|
|
|
15817
16430
|
endpointOrigin: string;
|
|
15818
16431
|
endpointPath: string;
|
|
15819
16432
|
id: string;
|
|
16433
|
+
/** @description Admin-configured icon; empty for entries using the kind's built-in artwork */
|
|
16434
|
+
imageUrl?: string;
|
|
15820
16435
|
/** @enum {string} */
|
|
15821
|
-
kind: "azure-managed" | "codex-subscription" | "anthropic" | "openai" | "grok" | "groq" | "together" | "fireworks" | "mistral" | "deepseek" | "zai" | "genai-mil" | "usai" | "custom" | "platform-hosted";
|
|
16436
|
+
kind: "azure-managed" | "bedrock" | "codex-subscription" | "github-copilot" | "anthropic" | "openai" | "grok" | "groq" | "together" | "fireworks" | "mistral" | "deepseek" | "zai" | "genai-mil" | "usai" | "custom" | "platform-hosted";
|
|
15822
16437
|
/** @enum {string} */
|
|
15823
16438
|
lifecycle: "draft" | "active" | "blocked" | "retired";
|
|
15824
16439
|
/** @enum {string} */
|
|
@@ -15827,7 +16442,7 @@ export interface components {
|
|
|
15827
16442
|
modelCount: number;
|
|
15828
16443
|
objectId: string;
|
|
15829
16444
|
/** @enum {string} */
|
|
15830
|
-
protocol: "azure-openai" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
16445
|
+
protocol: "azure-openai" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
15831
16446
|
region?: string;
|
|
15832
16447
|
/** @description Connections carry a credential */
|
|
15833
16448
|
requiresApiKey: boolean;
|
|
@@ -16218,6 +16833,55 @@ export interface components {
|
|
|
16218
16833
|
/** @description Sub-variant identifier */
|
|
16219
16834
|
variant?: string;
|
|
16220
16835
|
};
|
|
16836
|
+
Cluster: {
|
|
16837
|
+
/** @description Whether orphan alerts are muted for the whole deployment. */
|
|
16838
|
+
alertsMuted?: boolean;
|
|
16839
|
+
/** @description Pool (cluster) name. */
|
|
16840
|
+
clusterName: string;
|
|
16841
|
+
/** @description Cloud service provider. */
|
|
16842
|
+
csp: string;
|
|
16843
|
+
/** @description Resource name from the deployment table. */
|
|
16844
|
+
deploymentName?: string;
|
|
16845
|
+
/** @description Resource type from the deployment table. */
|
|
16846
|
+
deploymentType?: string;
|
|
16847
|
+
/** @description Shared session-id or pw-deployment-id. */
|
|
16848
|
+
key: string;
|
|
16849
|
+
/**
|
|
16850
|
+
* Format: date-time
|
|
16851
|
+
* @description Most recent last-seen across the cluster.
|
|
16852
|
+
*/
|
|
16853
|
+
lastSeenAt: string;
|
|
16854
|
+
/**
|
|
16855
|
+
* Format: date-time
|
|
16856
|
+
* @description When the deployment's orphan alerts were muted.
|
|
16857
|
+
*/
|
|
16858
|
+
mutedAt?: string;
|
|
16859
|
+
/** @description Admin who muted the deployment's orphan alerts. */
|
|
16860
|
+
mutedBy?: string;
|
|
16861
|
+
/** @description Organization name. */
|
|
16862
|
+
organization?: string;
|
|
16863
|
+
/** @description Whether any resource is orphaned. */
|
|
16864
|
+
orphaned: boolean;
|
|
16865
|
+
/** @description Resources belonging to the cluster. */
|
|
16866
|
+
resources: components["schemas"]["Resource"][] | null;
|
|
16867
|
+
/**
|
|
16868
|
+
* Format: int64
|
|
16869
|
+
* @description Resources in an active state.
|
|
16870
|
+
*/
|
|
16871
|
+
running: number;
|
|
16872
|
+
/**
|
|
16873
|
+
* @description Cluster status: running (any active resource), stopped (a stopped VM remains), or terminated.
|
|
16874
|
+
* @enum {string}
|
|
16875
|
+
*/
|
|
16876
|
+
status: "running" | "stopped" | "terminated";
|
|
16877
|
+
/**
|
|
16878
|
+
* Format: int64
|
|
16879
|
+
* @description Total resources in the cluster.
|
|
16880
|
+
*/
|
|
16881
|
+
total: number;
|
|
16882
|
+
/** @description Owning platform user. */
|
|
16883
|
+
username?: string;
|
|
16884
|
+
};
|
|
16221
16885
|
ClusterAlerts: {
|
|
16222
16886
|
/** @description Notifies the owner at a fixed interval while the cluster is running. */
|
|
16223
16887
|
runTimeAlert: components["schemas"]["RunTimeAlert"];
|
|
@@ -16264,6 +16928,11 @@ export interface components {
|
|
|
16264
16928
|
diskId?: string;
|
|
16265
16929
|
encrypted?: boolean;
|
|
16266
16930
|
iops?: number;
|
|
16931
|
+
/**
|
|
16932
|
+
* Format: int64
|
|
16933
|
+
* @description Device slot the disk attaches at, assigned by the platform when the disk attaches.
|
|
16934
|
+
*/
|
|
16935
|
+
lun?: number;
|
|
16267
16936
|
mountPoint?: string;
|
|
16268
16937
|
nfsExport?: boolean;
|
|
16269
16938
|
/** @description Disk size in GiB. */
|
|
@@ -16324,6 +16993,17 @@ export interface components {
|
|
|
16324
16993
|
throughput?: number;
|
|
16325
16994
|
type?: string;
|
|
16326
16995
|
};
|
|
16996
|
+
ClusterDiskAttachment: {
|
|
16997
|
+
/**
|
|
16998
|
+
* Format: int64
|
|
16999
|
+
* @description The device slot the disk attaches at, assigned by the platform. Absent on clouds that address the disk by its volume instead.
|
|
17000
|
+
*/
|
|
17001
|
+
lun?: number;
|
|
17002
|
+
/** @description The path the disk is mounted at on the cluster. */
|
|
17003
|
+
mountPoint: string;
|
|
17004
|
+
/** @description The id of the attached persistent disk. */
|
|
17005
|
+
storageId: string;
|
|
17006
|
+
};
|
|
16327
17007
|
ClusterError: {
|
|
16328
17008
|
/**
|
|
16329
17009
|
* @description Cluster name
|
|
@@ -16452,12 +17132,22 @@ export interface components {
|
|
|
16452
17132
|
throughput?: number;
|
|
16453
17133
|
type?: string;
|
|
16454
17134
|
};
|
|
17135
|
+
ClusterResourcesResponse: {
|
|
17136
|
+
/** @description One page of clusters. */
|
|
17137
|
+
clusters: components["schemas"]["Cluster"][] | null;
|
|
17138
|
+
/**
|
|
17139
|
+
* Format: int64
|
|
17140
|
+
* @description Total clusters matching the filters.
|
|
17141
|
+
*/
|
|
17142
|
+
total: number;
|
|
17143
|
+
};
|
|
16455
17144
|
ClusterResponse: {
|
|
16456
17145
|
/**
|
|
16457
|
-
* @description
|
|
16458
|
-
* @example
|
|
17146
|
+
* @description Usage metering status for the cluster
|
|
17147
|
+
* @example on
|
|
17148
|
+
* @enum {string}
|
|
16459
17149
|
*/
|
|
16460
|
-
costTrackingStatus?:
|
|
17150
|
+
costTrackingStatus?: "on" | "off" | "provisioning" | "deleting" | "failed";
|
|
16461
17151
|
/**
|
|
16462
17152
|
* Format: int64
|
|
16463
17153
|
* @description Number of CPUs in the cluster
|
|
@@ -16500,14 +17190,11 @@ export interface components {
|
|
|
16500
17190
|
};
|
|
16501
17191
|
ClusterUpdateDisk: {
|
|
16502
17192
|
encrypted?: boolean;
|
|
16503
|
-
/** Format: int64 */
|
|
16504
17193
|
iops?: number;
|
|
16505
17194
|
mountPoint?: string;
|
|
16506
17195
|
nfsExport?: boolean;
|
|
16507
|
-
/** Format: int64 */
|
|
16508
17196
|
sizeGb?: number;
|
|
16509
17197
|
snapshot?: string;
|
|
16510
|
-
/** Format: int64 */
|
|
16511
17198
|
throughput?: number;
|
|
16512
17199
|
type?: string;
|
|
16513
17200
|
};
|
|
@@ -16518,30 +17205,23 @@ export interface components {
|
|
|
16518
17205
|
default?: boolean;
|
|
16519
17206
|
disks?: components["schemas"]["ClusterUpdateDisk"][] | null;
|
|
16520
17207
|
elasticImage?: string;
|
|
16521
|
-
/** Format: int64 */
|
|
16522
17208
|
flexStartWaitTime?: number;
|
|
16523
|
-
/** Format: int64 */
|
|
16524
17209
|
gpuCount?: number;
|
|
16525
17210
|
gpuType?: string;
|
|
16526
17211
|
instanceType?: string;
|
|
16527
17212
|
localDiskMountPoint?: string;
|
|
16528
17213
|
maxDistance?: string;
|
|
16529
|
-
/** Format: int64 */
|
|
16530
17214
|
maxDuration?: number;
|
|
16531
|
-
/** Format: int64 */
|
|
16532
17215
|
maxNodes?: number;
|
|
16533
|
-
/** Format: int64 */
|
|
16534
17216
|
memoryGb?: number;
|
|
16535
17217
|
multiZone?: boolean;
|
|
16536
17218
|
name?: string;
|
|
16537
|
-
/** Format: int64 */
|
|
16538
17219
|
ocpus?: number;
|
|
16539
17220
|
placementGroup?: string;
|
|
16540
17221
|
preemptible?: boolean;
|
|
16541
17222
|
provisioningMode?: string;
|
|
16542
17223
|
rdmaNetwork?: string;
|
|
16543
17224
|
reservationId?: string;
|
|
16544
|
-
/** Format: int64 */
|
|
16545
17225
|
suspendTime?: number;
|
|
16546
17226
|
tier1?: boolean;
|
|
16547
17227
|
usePlacementGroup?: boolean;
|
|
@@ -16795,17 +17475,17 @@ export interface components {
|
|
|
16795
17475
|
sunkPreferredHomeDirectory?: string;
|
|
16796
17476
|
sunkSshKeys?: string[] | null;
|
|
16797
17477
|
};
|
|
16798
|
-
|
|
17478
|
+
CostTrackingRatesBody: {
|
|
16799
17479
|
/**
|
|
16800
17480
|
* Format: double
|
|
16801
|
-
* @description
|
|
17481
|
+
* @description Allocation units charged for each CPU core-hour
|
|
16802
17482
|
*/
|
|
16803
|
-
|
|
17483
|
+
cpuCostPerCoreHour: number;
|
|
16804
17484
|
/**
|
|
16805
17485
|
* Format: double
|
|
16806
|
-
* @description
|
|
17486
|
+
* @description Allocation units charged for each memory GiB-hour
|
|
16807
17487
|
*/
|
|
16808
|
-
|
|
17488
|
+
memoryCostPerGibHour: number;
|
|
16809
17489
|
};
|
|
16810
17490
|
CostTrackingResponse: {
|
|
16811
17491
|
/**
|
|
@@ -16858,9 +17538,11 @@ export interface components {
|
|
|
16858
17538
|
apiKey?: string;
|
|
16859
17539
|
/** @description Enabled platform catalog entry this provider is created from; the platform defines the provider type, endpoint, and transport policy */
|
|
16860
17540
|
catalogEntryId: string;
|
|
17541
|
+
/** @description Cloud account name supplying credentials (Bedrock providers) */
|
|
17542
|
+
cloudAccount?: string;
|
|
16861
17543
|
/** @description Display name of the AI provider */
|
|
16862
17544
|
displayName?: string;
|
|
16863
|
-
/** @description Billing group name (required for managed Azure providers) */
|
|
17545
|
+
/** @description Billing group name (required for managed Azure and Bedrock providers) */
|
|
16864
17546
|
group?: string;
|
|
16865
17547
|
/** @description Initial model deployment (managed Azure providers) */
|
|
16866
17548
|
model?: string;
|
|
@@ -16870,7 +17552,7 @@ export interface components {
|
|
|
16870
17552
|
name: string;
|
|
16871
17553
|
/** @description Network name (managed Azure providers) */
|
|
16872
17554
|
network?: string;
|
|
16873
|
-
/** @description Region (managed Azure providers) */
|
|
17555
|
+
/** @description Region (managed Azure and Bedrock providers) */
|
|
16874
17556
|
region?: string;
|
|
16875
17557
|
};
|
|
16876
17558
|
CreateAPIKeyInputBody: {
|
|
@@ -17285,8 +17967,8 @@ export interface components {
|
|
|
17285
17967
|
name: string;
|
|
17286
17968
|
};
|
|
17287
17969
|
CreateNamespaceInputBody: {
|
|
17288
|
-
/** @description Allocation name to
|
|
17289
|
-
allocation?: string;
|
|
17970
|
+
/** @description Allocation name to bill this namespace against (null to clear) */
|
|
17971
|
+
allocation?: string | null;
|
|
17290
17972
|
/** @description Namespace name */
|
|
17291
17973
|
name: string;
|
|
17292
17974
|
};
|
|
@@ -17627,7 +18309,7 @@ export interface components {
|
|
|
17627
18309
|
* @description Linux UID (auto-generated if not provided, must be a platform admin to use a number below 1000)
|
|
17628
18310
|
*/
|
|
17629
18311
|
uid?: number;
|
|
17630
|
-
/** @description Username (3
|
|
18312
|
+
/** @description Username (3-32 chars, alphanumeric with - and .) */
|
|
17631
18313
|
username: string;
|
|
17632
18314
|
/**
|
|
17633
18315
|
* @description Workspace container type
|
|
@@ -17747,6 +18429,12 @@ export interface components {
|
|
|
17747
18429
|
/** @description Name for the saved inputs. */
|
|
17748
18430
|
name: string;
|
|
17749
18431
|
};
|
|
18432
|
+
CredentialListingError: {
|
|
18433
|
+
/** @description What failed. */
|
|
18434
|
+
message: string;
|
|
18435
|
+
/** @description Failing slice of the listing: region, availability domain, or service. */
|
|
18436
|
+
scope: string;
|
|
18437
|
+
};
|
|
17750
18438
|
CredentialResult: {
|
|
17751
18439
|
accountId: string;
|
|
17752
18440
|
cloudAccountName?: string;
|
|
@@ -17866,6 +18554,45 @@ export interface components {
|
|
|
17866
18554
|
/** @description Date in YYYY-MM-DD format */
|
|
17867
18555
|
date: string;
|
|
17868
18556
|
};
|
|
18557
|
+
DeleteDeploymentBody: {
|
|
18558
|
+
/** @description Deployment id; matches resources tagged with it as session-id or pw-deployment-id. */
|
|
18559
|
+
deploymentId: string;
|
|
18560
|
+
/** @description Preview the affected resources without deleting anything. */
|
|
18561
|
+
dryRun: boolean;
|
|
18562
|
+
};
|
|
18563
|
+
DeleteDeploymentItem: {
|
|
18564
|
+
/** @description Cloud service provider. */
|
|
18565
|
+
csp: string;
|
|
18566
|
+
/** @description Cloud-native resource id. */
|
|
18567
|
+
cspId: string;
|
|
18568
|
+
/** @description resource_history row id. */
|
|
18569
|
+
id: string;
|
|
18570
|
+
/** @description Whether the resource is flagged as orphaned. */
|
|
18571
|
+
orphaned: boolean;
|
|
18572
|
+
/** @description Region. */
|
|
18573
|
+
region: string;
|
|
18574
|
+
/** @description Resource name. */
|
|
18575
|
+
resourceName?: string;
|
|
18576
|
+
/** @description Resource kind. */
|
|
18577
|
+
resourceType: string;
|
|
18578
|
+
/** @description Normalized state. */
|
|
18579
|
+
state: string;
|
|
18580
|
+
};
|
|
18581
|
+
DeleteDeploymentResponse: {
|
|
18582
|
+
/** @description Whether the delete was dispatched (always false on dry runs). */
|
|
18583
|
+
dispatched: boolean;
|
|
18584
|
+
/** @description Whether this was a preview. */
|
|
18585
|
+
dryRun: boolean;
|
|
18586
|
+
/** @description Matched resources for the preview. */
|
|
18587
|
+
items: components["schemas"]["DeleteDeploymentItem"][] | null;
|
|
18588
|
+
/** @description Whether any non-orphaned resource is still running or stopped; the client requires deployment-id confirmation when true. */
|
|
18589
|
+
live: boolean;
|
|
18590
|
+
/**
|
|
18591
|
+
* @description platform = deleted through its live record like a user delete; sweep = records are gone, gaia deletes by deployment tag; none = nothing left to delete.
|
|
18592
|
+
* @enum {string}
|
|
18593
|
+
*/
|
|
18594
|
+
mode: "platform" | "sweep" | "none";
|
|
18595
|
+
};
|
|
17869
18596
|
DeleteIndexBody: {
|
|
17870
18597
|
/** @description Whether the index was dropped */
|
|
17871
18598
|
deleted: boolean;
|
|
@@ -18026,8 +18753,6 @@ export interface components {
|
|
|
18026
18753
|
network?: string;
|
|
18027
18754
|
/** @description Region of the disk */
|
|
18028
18755
|
region?: string;
|
|
18029
|
-
/** @description Indicates if the disk was restored from a snapshot */
|
|
18030
|
-
restoreSnapshot?: boolean;
|
|
18031
18756
|
/**
|
|
18032
18757
|
* Format: int64
|
|
18033
18758
|
* @description Size of the disk in GiB
|
|
@@ -18342,8 +19067,6 @@ export interface components {
|
|
|
18342
19067
|
name: string;
|
|
18343
19068
|
/** @description Controller/login host the live agent is reporting; falls back to the first configured login node when the agent has not reported yet */
|
|
18344
19069
|
remoteHost: string;
|
|
18345
|
-
/** @description Cluster status */
|
|
18346
|
-
status: string;
|
|
18347
19070
|
/** @description Whether the cluster's agent tunnel is currently registered on any ingress pod, with the user-disconnect veto applied */
|
|
18348
19071
|
tunnelConnected: boolean;
|
|
18349
19072
|
/** @description Provider type */
|
|
@@ -18666,7 +19389,7 @@ export interface components {
|
|
|
18666
19389
|
* @example slurm
|
|
18667
19390
|
*/
|
|
18668
19391
|
schedulerType?: string;
|
|
18669
|
-
/** @description True when SSH to this cluster
|
|
19392
|
+
/** @description True when SSH to this cluster routes through the platform. False when it is dialed directly, which a cluster on a public address does unless an administrator has whitelisted it. */
|
|
18670
19393
|
shouldPlatformProxy: boolean;
|
|
18671
19394
|
/**
|
|
18672
19395
|
* @description The status of the resource.
|
|
@@ -18674,6 +19397,8 @@ export interface components {
|
|
|
18674
19397
|
* @enum {string}
|
|
18675
19398
|
*/
|
|
18676
19399
|
status: "on" | "off" | "active" | "provisioning" | "stopping" | "resuming" | "stopped" | "failed" | "updating" | "deleted" | "connecting" | "input_needed";
|
|
19400
|
+
/** @description Human-readable explanation of the cluster's current status, present when the last provision was skipped or failed. */
|
|
19401
|
+
statusDescription?: string;
|
|
18677
19402
|
/**
|
|
18678
19403
|
* @description The tags associated with the resource.
|
|
18679
19404
|
* @example [
|
|
@@ -18717,6 +19442,9 @@ export interface components {
|
|
|
18717
19442
|
[key: string]: components["schemas"]["NetworkPermissions"];
|
|
18718
19443
|
};
|
|
18719
19444
|
};
|
|
19445
|
+
GetBillingDetailsOutputBody: {
|
|
19446
|
+
billingDetails: components["schemas"]["BillingDetails"];
|
|
19447
|
+
};
|
|
18720
19448
|
GetClusterMetricsOutputBody: {
|
|
18721
19449
|
dataPoints: components["schemas"]["ClusterMetricsDataPoint"][] | null;
|
|
18722
19450
|
};
|
|
@@ -18865,6 +19593,8 @@ export interface components {
|
|
|
18865
19593
|
currentlyProvisioning: boolean;
|
|
18866
19594
|
/** @description Description of the storage. */
|
|
18867
19595
|
description?: string;
|
|
19596
|
+
/** @description Type of the disk */
|
|
19597
|
+
diskType?: string;
|
|
18868
19598
|
/** @description Display name of the storage. */
|
|
18869
19599
|
displayName?: string;
|
|
18870
19600
|
/** @description Indicates if the storage is a favorite for the requesting user. */
|
|
@@ -18885,6 +19615,8 @@ export interface components {
|
|
|
18885
19615
|
provisionError?: string;
|
|
18886
19616
|
/** @description Indicates if the storage has been provisioned. */
|
|
18887
19617
|
provisioned: boolean;
|
|
19618
|
+
/** @description Region the disk is in */
|
|
19619
|
+
region?: string;
|
|
18888
19620
|
/** @description Runtime alert information for the storage. */
|
|
18889
19621
|
runtimeAlert?: components["schemas"]["RunAlert"];
|
|
18890
19622
|
/** @description Session cost limit information for the storage. */
|
|
@@ -18898,6 +19630,11 @@ export interface components {
|
|
|
18898
19630
|
sessionless: boolean;
|
|
18899
19631
|
/** @description Sharing permissions of the storage. */
|
|
18900
19632
|
shared: components["schemas"]["Shared"][] | null;
|
|
19633
|
+
/**
|
|
19634
|
+
* Format: int32
|
|
19635
|
+
* @description Size of the disk in GiB
|
|
19636
|
+
*/
|
|
19637
|
+
size?: number;
|
|
18901
19638
|
/** @description Current status of the storage. */
|
|
18902
19639
|
status?: string;
|
|
18903
19640
|
/** @description Tags associated with the storage. */
|
|
@@ -18906,13 +19643,13 @@ export interface components {
|
|
|
18906
19643
|
type: string;
|
|
18907
19644
|
/** @description User associated with the storage. */
|
|
18908
19645
|
user: string;
|
|
19646
|
+
/** @description Zone the disk is in */
|
|
19647
|
+
zone?: string;
|
|
18909
19648
|
};
|
|
18910
19649
|
GoogleDiskVersionSettings: {
|
|
18911
19650
|
region?: string;
|
|
18912
|
-
restore_snapshot?: boolean;
|
|
18913
19651
|
/** Format: int64 */
|
|
18914
19652
|
size_gb?: number;
|
|
18915
|
-
snapshot?: string;
|
|
18916
19653
|
/**
|
|
18917
19654
|
* @description Subtype discriminator. (enum property replaced by openapi-typescript)
|
|
18918
19655
|
* @enum {string}
|
|
@@ -19829,6 +20566,66 @@ export interface components {
|
|
|
19829
20566
|
*/
|
|
19830
20567
|
zone: string;
|
|
19831
20568
|
};
|
|
20569
|
+
InstanceData: {
|
|
20570
|
+
/** @description Cloud account id. */
|
|
20571
|
+
AccountID: string;
|
|
20572
|
+
/** @description Azure VM kind (VM or VMSS VM). */
|
|
20573
|
+
AzureVMType?: string;
|
|
20574
|
+
/** @description Azure VM unique id. */
|
|
20575
|
+
AzureVmID?: string;
|
|
20576
|
+
/** @description Last time the resource was seen. */
|
|
20577
|
+
CacheTime: string;
|
|
20578
|
+
/** @description Raw CSP state. */
|
|
20579
|
+
CloudState: string;
|
|
20580
|
+
/** @description PW compute type tag (controller/compute). */
|
|
20581
|
+
ComputeType?: string;
|
|
20582
|
+
/** @description Cloud service provider. */
|
|
20583
|
+
Csp: string;
|
|
20584
|
+
/** @description Deployment (platform) tag. */
|
|
20585
|
+
Deployment: string;
|
|
20586
|
+
/** @description Stop/termination time. */
|
|
20587
|
+
EndTime?: string;
|
|
20588
|
+
/** @description Cloud-native instance id. */
|
|
20589
|
+
InstanceID: string;
|
|
20590
|
+
/** @description Instance name. */
|
|
20591
|
+
InstanceName: string;
|
|
20592
|
+
/** @description Machine type. */
|
|
20593
|
+
InstanceType: string;
|
|
20594
|
+
/** @description Organization name owning the cloud account. */
|
|
20595
|
+
KeyOwner: string;
|
|
20596
|
+
/** @description Owner tag. */
|
|
20597
|
+
Owner: string;
|
|
20598
|
+
/** @description Pool tag. */
|
|
20599
|
+
Pool: string;
|
|
20600
|
+
/** @description Private IP address. */
|
|
20601
|
+
PrivateIP: string;
|
|
20602
|
+
/** @description Project tag. */
|
|
20603
|
+
Project: string;
|
|
20604
|
+
/** @description Provider tag. */
|
|
20605
|
+
Provider: string;
|
|
20606
|
+
/** @description Public IP address. */
|
|
20607
|
+
PublicIP: string;
|
|
20608
|
+
/** @description Region of the instance. */
|
|
20609
|
+
Region: string;
|
|
20610
|
+
/** @description Session number from the resource tags. */
|
|
20611
|
+
Session: string;
|
|
20612
|
+
/** @description Whether the instance is a spot instance. */
|
|
20613
|
+
SpotInstance: boolean;
|
|
20614
|
+
/** @description Launch time. */
|
|
20615
|
+
StartTime: string;
|
|
20616
|
+
/** @description Normalized state. */
|
|
20617
|
+
State: string;
|
|
20618
|
+
/** @description Unused legacy field. */
|
|
20619
|
+
StopTime: string;
|
|
20620
|
+
/** @description All resource tags with normalized keys. */
|
|
20621
|
+
Tags?: {
|
|
20622
|
+
[key: string]: string;
|
|
20623
|
+
};
|
|
20624
|
+
/** @description Platform user from the resource tags. */
|
|
20625
|
+
User: string;
|
|
20626
|
+
/** @description Availability zone. */
|
|
20627
|
+
Zone?: string;
|
|
20628
|
+
};
|
|
19832
20629
|
IntPolicyOutput: {
|
|
19833
20630
|
/**
|
|
19834
20631
|
* @description Level of the policy
|
|
@@ -20098,6 +20895,32 @@ export interface components {
|
|
|
20098
20895
|
/** @description LDAP username */
|
|
20099
20896
|
username: string;
|
|
20100
20897
|
};
|
|
20898
|
+
LdapSavedConnectionTest: {
|
|
20899
|
+
/** @description Overrides the saved base DN for this test */
|
|
20900
|
+
baseDN?: string;
|
|
20901
|
+
/** @description Overrides the saved CA certificate for this test */
|
|
20902
|
+
caCert?: string;
|
|
20903
|
+
/** @description Overrides the saved client certificate for this test */
|
|
20904
|
+
clientCert?: string;
|
|
20905
|
+
/** @description Overrides the saved client key for this test. An empty value keeps the stored key */
|
|
20906
|
+
clientKey?: string;
|
|
20907
|
+
/** @description Overrides the saved filter for this test */
|
|
20908
|
+
filter?: string;
|
|
20909
|
+
/** @description Password used only for this connection test */
|
|
20910
|
+
password?: string;
|
|
20911
|
+
/** @description Overrides the saved LDAP server address for this test */
|
|
20912
|
+
server?: string;
|
|
20913
|
+
/** @description Overrides the saved service account bind DN for this test */
|
|
20914
|
+
serviceAccountBind?: string;
|
|
20915
|
+
/** @description Overrides the saved service account password for this test. An empty value keeps the stored password */
|
|
20916
|
+
serviceAccountPassword?: string;
|
|
20917
|
+
/** @description Overrides whether to use a service account for this test */
|
|
20918
|
+
useServiceAccount?: boolean;
|
|
20919
|
+
/** @description Overrides whether to use TLS for this test */
|
|
20920
|
+
useTLS?: boolean;
|
|
20921
|
+
/** @description Username used only for this connection test */
|
|
20922
|
+
username?: string;
|
|
20923
|
+
};
|
|
20101
20924
|
LdapSignupInputBody: {
|
|
20102
20925
|
/** @description Desired username */
|
|
20103
20926
|
username: string;
|
|
@@ -20125,6 +20948,15 @@ export interface components {
|
|
|
20125
20948
|
/** Format: int64 */
|
|
20126
20949
|
total: number;
|
|
20127
20950
|
};
|
|
20951
|
+
ListCredentialsResponse: {
|
|
20952
|
+
/** @description Latest status per credential source. */
|
|
20953
|
+
credentials: components["schemas"]["ResourceCredential"][] | null;
|
|
20954
|
+
/**
|
|
20955
|
+
* Format: int64
|
|
20956
|
+
* @description Total credentials matching the filters.
|
|
20957
|
+
*/
|
|
20958
|
+
total: number;
|
|
20959
|
+
};
|
|
20128
20960
|
ListEffectiveProductsOutputBody: {
|
|
20129
20961
|
products: components["schemas"]["EffectiveProduct"][] | null;
|
|
20130
20962
|
};
|
|
@@ -20206,6 +21038,15 @@ export interface components {
|
|
|
20206
21038
|
/** Format: int64 */
|
|
20207
21039
|
totalCount: number;
|
|
20208
21040
|
};
|
|
21041
|
+
ListResourcesResponse: {
|
|
21042
|
+
/** @description One page of resources. */
|
|
21043
|
+
resources: components["schemas"]["Resource"][] | null;
|
|
21044
|
+
/**
|
|
21045
|
+
* Format: int64
|
|
21046
|
+
* @description Total resources matching the filters.
|
|
21047
|
+
*/
|
|
21048
|
+
total: number;
|
|
21049
|
+
};
|
|
20209
21050
|
ListResponse: {
|
|
20210
21051
|
Resources: unknown[] | null;
|
|
20211
21052
|
/** Format: int64 */
|
|
@@ -21077,6 +21918,10 @@ export interface components {
|
|
|
21077
21918
|
formatted?: string;
|
|
21078
21919
|
givenName?: string;
|
|
21079
21920
|
};
|
|
21921
|
+
NamespaceBillingBody: {
|
|
21922
|
+
/** @description Allocation name to bill this namespace against (null to clear) */
|
|
21923
|
+
allocation?: string | null;
|
|
21924
|
+
};
|
|
21080
21925
|
NamespaceResponse: {
|
|
21081
21926
|
/**
|
|
21082
21927
|
* @description Cluster name
|
|
@@ -21985,6 +22830,8 @@ export interface components {
|
|
|
21985
22830
|
hasCaCertificate?: boolean;
|
|
21986
22831
|
/** @description Unique identifier */
|
|
21987
22832
|
id: string;
|
|
22833
|
+
/** @description Current icon configured on the provider's catalog entry */
|
|
22834
|
+
imageUrl?: string;
|
|
21988
22835
|
/** @description Whether TLS certificate verification is skipped */
|
|
21989
22836
|
insecureSkipTlsVerify?: boolean;
|
|
21990
22837
|
/** @description Provider name */
|
|
@@ -22126,6 +22973,8 @@ export interface components {
|
|
|
22126
22973
|
admin: boolean;
|
|
22127
22974
|
/** @description Etag of the user's uploaded avatar, if any. */
|
|
22128
22975
|
avatarEtag?: string;
|
|
22976
|
+
/** @description Whether the user is a platform billing admin */
|
|
22977
|
+
billingAdmin: boolean;
|
|
22129
22978
|
/**
|
|
22130
22979
|
* Format: date-time
|
|
22131
22980
|
* @description Account creation time
|
|
@@ -22200,8 +23049,6 @@ export interface components {
|
|
|
22200
23049
|
cloudBoundary?: string;
|
|
22201
23050
|
/** Format: date-time */
|
|
22202
23051
|
createdAt: string;
|
|
22203
|
-
/** @enum {string} */
|
|
22204
|
-
credentialOwner: "organization" | "platform";
|
|
22205
23052
|
/** @description First-class provider type implied by the entry's kind */
|
|
22206
23053
|
csp: string;
|
|
22207
23054
|
displayName: string;
|
|
@@ -22210,15 +23057,17 @@ export interface components {
|
|
|
22210
23057
|
endpointOrigin: string;
|
|
22211
23058
|
endpointPath: string;
|
|
22212
23059
|
id: string;
|
|
23060
|
+
/** @description Admin-configured icon; empty for entries using the kind's built-in artwork */
|
|
23061
|
+
imageUrl?: string;
|
|
22213
23062
|
/** @enum {string} */
|
|
22214
|
-
kind: "azure-managed" | "codex-subscription" | "anthropic" | "openai" | "grok" | "groq" | "together" | "fireworks" | "mistral" | "deepseek" | "zai" | "genai-mil" | "usai" | "custom" | "platform-hosted";
|
|
23063
|
+
kind: "azure-managed" | "bedrock" | "codex-subscription" | "github-copilot" | "anthropic" | "openai" | "grok" | "groq" | "together" | "fireworks" | "mistral" | "deepseek" | "zai" | "genai-mil" | "usai" | "custom" | "platform-hosted";
|
|
22215
23064
|
/** @enum {string} */
|
|
22216
23065
|
lifecycle: "draft" | "active" | "blocked" | "retired";
|
|
22217
23066
|
/** @enum {string} */
|
|
22218
23067
|
minimumTlsVersion: "1.2" | "1.3";
|
|
22219
23068
|
objectId: string;
|
|
22220
23069
|
/** @enum {string} */
|
|
22221
|
-
protocol: "azure-openai" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
23070
|
+
protocol: "azure-openai" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
22222
23071
|
region?: string;
|
|
22223
23072
|
/** @description Connections carry a credential */
|
|
22224
23073
|
requiresApiKey: boolean;
|
|
@@ -22239,6 +23088,23 @@ export interface components {
|
|
|
22239
23088
|
*/
|
|
22240
23089
|
total: number;
|
|
22241
23090
|
};
|
|
23091
|
+
OrphanMuteBody: {
|
|
23092
|
+
/** @description Apply to the whole deployment, covering resources that appear in it later. */
|
|
23093
|
+
deployment?: boolean;
|
|
23094
|
+
/** @description Deployment id; matches resources tagged with it as session-id or pw-deployment-id. */
|
|
23095
|
+
deploymentId: string;
|
|
23096
|
+
/** @description resource_history row ids to target individually; ignored when deployment is true. */
|
|
23097
|
+
resourceIds?: string[] | null;
|
|
23098
|
+
};
|
|
23099
|
+
OrphanMuteResponse: {
|
|
23100
|
+
/**
|
|
23101
|
+
* Format: int64
|
|
23102
|
+
* @description Mute rows created or removed.
|
|
23103
|
+
*/
|
|
23104
|
+
affected: number;
|
|
23105
|
+
/** @description Whether the targets are muted after this call. */
|
|
23106
|
+
muted: boolean;
|
|
23107
|
+
};
|
|
22242
23108
|
OrphanedInfraItem: {
|
|
22243
23109
|
/** @description Infrastructure ID */
|
|
22244
23110
|
id: string;
|
|
@@ -22367,6 +23233,13 @@ export interface components {
|
|
|
22367
23233
|
*/
|
|
22368
23234
|
total: number;
|
|
22369
23235
|
};
|
|
23236
|
+
PatchBillingDefaultAllocationInputBody: {
|
|
23237
|
+
/** @description Allocation name to set as default; empty string clears it */
|
|
23238
|
+
defaultAllocationName: string;
|
|
23239
|
+
};
|
|
23240
|
+
PatchBillingDefaultAllocationOutputBody: {
|
|
23241
|
+
defaultAllocationName: string | null;
|
|
23242
|
+
};
|
|
22370
23243
|
PatchBillingLastUpdateInputBody: {
|
|
22371
23244
|
/** @description Billing infrastructure id to update; defaults to the account's billing infra when omitted */
|
|
22372
23245
|
infraId?: string;
|
|
@@ -22994,6 +23867,37 @@ export interface components {
|
|
|
22994
23867
|
/** @enum {string} */
|
|
22995
23868
|
status: "pending" | "connected";
|
|
22996
23869
|
};
|
|
23870
|
+
PoolInstances: {
|
|
23871
|
+
/** @description Cloud service provider. */
|
|
23872
|
+
Csp: string;
|
|
23873
|
+
/** @description Pool end time, from the controller instance. */
|
|
23874
|
+
EndTime?: string;
|
|
23875
|
+
/** @description Instances in this pool session. */
|
|
23876
|
+
Instances: components["schemas"]["InstanceData"][] | null;
|
|
23877
|
+
/** @description Pool name. */
|
|
23878
|
+
Pool: string;
|
|
23879
|
+
/** @description Project tag. */
|
|
23880
|
+
Project: string;
|
|
23881
|
+
/** @description Region. */
|
|
23882
|
+
Region: string;
|
|
23883
|
+
/**
|
|
23884
|
+
* Format: int64
|
|
23885
|
+
* @description Number of running instances.
|
|
23886
|
+
*/
|
|
23887
|
+
RunningInstances: number;
|
|
23888
|
+
/** @description Session number. */
|
|
23889
|
+
Session: string;
|
|
23890
|
+
/** @description Session id. */
|
|
23891
|
+
Session_ID?: string;
|
|
23892
|
+
/** @description Pool start time, from the controller instance. */
|
|
23893
|
+
StartTime: string;
|
|
23894
|
+
/** @description Pool state, from the controller instance. */
|
|
23895
|
+
State: string;
|
|
23896
|
+
/** @description Tags of the first instance. */
|
|
23897
|
+
Tags?: {
|
|
23898
|
+
[key: string]: string;
|
|
23899
|
+
};
|
|
23900
|
+
};
|
|
22997
23901
|
PoolSlurmLoginNode: {
|
|
22998
23902
|
node: string | null;
|
|
22999
23903
|
};
|
|
@@ -23252,6 +24156,18 @@ export interface components {
|
|
|
23252
24156
|
/** @description The attribute value. */
|
|
23253
24157
|
value: string;
|
|
23254
24158
|
};
|
|
24159
|
+
ProvisionStatusChild: {
|
|
24160
|
+
/** Format: date-time */
|
|
24161
|
+
createdAt: string;
|
|
24162
|
+
error?: string;
|
|
24163
|
+
id: string;
|
|
24164
|
+
/** Format: int64 */
|
|
24165
|
+
index: number | null;
|
|
24166
|
+
label: string;
|
|
24167
|
+
status: string;
|
|
24168
|
+
/** Format: date-time */
|
|
24169
|
+
updatedAt: string;
|
|
24170
|
+
};
|
|
23255
24171
|
ProvisionStatusChildResponse: {
|
|
23256
24172
|
/** @description Nested child records grouped by role. */
|
|
23257
24173
|
children?: components["schemas"]["ProvisionStatusChildResponse"][] | null;
|
|
@@ -23279,6 +24195,27 @@ export interface components {
|
|
|
23279
24195
|
*/
|
|
23280
24196
|
updatedAt: string;
|
|
23281
24197
|
};
|
|
24198
|
+
ProvisionStatusRecord: {
|
|
24199
|
+
attributes: components["schemas"]["ProvisionStatusRecordAttribute"][] | null;
|
|
24200
|
+
children?: components["schemas"]["ProvisionStatusChild"][] | null;
|
|
24201
|
+
/** Format: date-time */
|
|
24202
|
+
createdAt: string;
|
|
24203
|
+
error: string;
|
|
24204
|
+
id: string;
|
|
24205
|
+
/** Format: int64 */
|
|
24206
|
+
index: number;
|
|
24207
|
+
label: string;
|
|
24208
|
+
logs: string;
|
|
24209
|
+
name: string;
|
|
24210
|
+
status: string;
|
|
24211
|
+
/** Format: date-time */
|
|
24212
|
+
updatedAt: string;
|
|
24213
|
+
};
|
|
24214
|
+
ProvisionStatusRecordAttribute: {
|
|
24215
|
+
key: string;
|
|
24216
|
+
type?: string;
|
|
24217
|
+
value: string;
|
|
24218
|
+
};
|
|
23282
24219
|
ProvisionStatusResponseRecord: {
|
|
23283
24220
|
/** @description Additional attributes associated with the provision step. */
|
|
23284
24221
|
attributes: components["schemas"]["ProvisionStatusAttribute"][] | null;
|
|
@@ -23334,6 +24271,40 @@ export interface components {
|
|
|
23334
24271
|
*/
|
|
23335
24272
|
status: "pending" | "provisioning" | "provisioned" | "failed" | "skipped" | "deleting" | "deleted" | "warning";
|
|
23336
24273
|
};
|
|
24274
|
+
ProxyClusterHost: {
|
|
24275
|
+
/**
|
|
24276
|
+
* Format: int64
|
|
24277
|
+
* @description How many accounts have an existing cluster reporting this host
|
|
24278
|
+
*/
|
|
24279
|
+
accounts: number;
|
|
24280
|
+
/** @description The host an agent reports, which is the value the whitelist is matched against */
|
|
24281
|
+
host: string;
|
|
24282
|
+
/**
|
|
24283
|
+
* @description Why the host routes the way it does
|
|
24284
|
+
* @enum {string}
|
|
24285
|
+
*/
|
|
24286
|
+
reason: "unrestricted" | "whitelisted" | "not-routable" | "direct";
|
|
24287
|
+
/** @description Whether SSH to this host routes through the platform under the current policy */
|
|
24288
|
+
shouldProxy: boolean;
|
|
24289
|
+
};
|
|
24290
|
+
ProxyClusterHostsOutputBody: {
|
|
24291
|
+
/** @description Reported hosts, busiest first */
|
|
24292
|
+
hosts: components["schemas"]["ProxyClusterHost"][] | null;
|
|
24293
|
+
/**
|
|
24294
|
+
* Format: int64
|
|
24295
|
+
* @description Existing clusters whose agent has not reported a host; these always route through the platform
|
|
24296
|
+
*/
|
|
24297
|
+
unreportedClusters: number;
|
|
24298
|
+
};
|
|
24299
|
+
ProxyWhitelistBody: {
|
|
24300
|
+
/**
|
|
24301
|
+
* @description Whether every existing cluster routes SSH through the platform, or only the hosts listed below
|
|
24302
|
+
* @enum {string}
|
|
24303
|
+
*/
|
|
24304
|
+
proxyScope: "all" | "specific";
|
|
24305
|
+
/** @description Hosts, IP addresses, and CIDR ranges whose SSH traffic may route through the platform */
|
|
24306
|
+
proxyWhitelist: string[] | null;
|
|
24307
|
+
};
|
|
23337
24308
|
PublishAwsBucketRequest: {
|
|
23338
24309
|
/** @description Short summary of the item. */
|
|
23339
24310
|
description?: string;
|
|
@@ -23382,12 +24353,10 @@ export interface components {
|
|
|
23382
24353
|
/** @description Publish under the organization display name (org admins only). */
|
|
23383
24354
|
publishedAsOrg?: boolean;
|
|
23384
24355
|
region?: string;
|
|
23385
|
-
restore_snapshot?: boolean;
|
|
23386
24356
|
/** Format: int64 */
|
|
23387
24357
|
size_gb?: number;
|
|
23388
24358
|
/** @description URL-friendly identifier. */
|
|
23389
24359
|
slug: string;
|
|
23390
|
-
snapshot?: string;
|
|
23391
24360
|
/** @description User-defined tags for categorization and search. */
|
|
23392
24361
|
tags?: string[] | null;
|
|
23393
24362
|
/** Format: int64 */
|
|
@@ -23594,12 +24563,10 @@ export interface components {
|
|
|
23594
24563
|
/** @description Publish under the organization display name (org admins only). */
|
|
23595
24564
|
publishedAsOrg?: boolean;
|
|
23596
24565
|
region?: string;
|
|
23597
|
-
restore_snapshot?: boolean;
|
|
23598
24566
|
/** Format: int64 */
|
|
23599
24567
|
size_gb?: number;
|
|
23600
24568
|
/** @description URL-friendly identifier. */
|
|
23601
24569
|
slug: string;
|
|
23602
|
-
snapshot?: string;
|
|
23603
24570
|
/** @description User-defined tags for categorization and search. */
|
|
23604
24571
|
tags?: string[] | null;
|
|
23605
24572
|
type?: string;
|
|
@@ -23822,12 +24789,10 @@ export interface components {
|
|
|
23822
24789
|
/** @description Publish under the organization display name (org admins only). */
|
|
23823
24790
|
publishedAsOrg?: boolean;
|
|
23824
24791
|
region?: string;
|
|
23825
|
-
restore_snapshot?: boolean;
|
|
23826
24792
|
/** Format: int64 */
|
|
23827
24793
|
size_gb?: number;
|
|
23828
24794
|
/** @description URL-friendly identifier. */
|
|
23829
24795
|
slug: string;
|
|
23830
|
-
snapshot?: string;
|
|
23831
24796
|
/** @description User-defined tags for categorization and search. */
|
|
23832
24797
|
tags?: string[] | null;
|
|
23833
24798
|
type?: string;
|
|
@@ -24583,6 +25548,10 @@ export interface components {
|
|
|
24583
25548
|
/** @description New cloud account name (lowercase letters, numbers, hyphens, and underscores) */
|
|
24584
25549
|
name: string;
|
|
24585
25550
|
};
|
|
25551
|
+
RenameSessionBody: {
|
|
25552
|
+
/** @description New session name (lowercase letters, numbers, underscores, and dashes; can't end with a dash or underscore). */
|
|
25553
|
+
name: string;
|
|
25554
|
+
};
|
|
24586
25555
|
ReplicaSetInfo: {
|
|
24587
25556
|
/**
|
|
24588
25557
|
* Format: date-time
|
|
@@ -24744,18 +25713,89 @@ export interface components {
|
|
|
24744
25713
|
userhost: string;
|
|
24745
25714
|
userhostSource: string;
|
|
24746
25715
|
};
|
|
25716
|
+
Resource: {
|
|
25717
|
+
/** @description Cloud account id. */
|
|
25718
|
+
accountId: string;
|
|
25719
|
+
/** @description Cloud account name from the credential registry. */
|
|
25720
|
+
accountName?: string;
|
|
25721
|
+
/** @description Raw CSP state. */
|
|
25722
|
+
cloudState?: string;
|
|
25723
|
+
/** @description Cloud service provider. */
|
|
25724
|
+
csp: string;
|
|
25725
|
+
/** @description Cloud-native resource id. */
|
|
25726
|
+
cspId: string;
|
|
25727
|
+
/** @description Deployment (platform) tag. */
|
|
25728
|
+
deploymentId?: string;
|
|
25729
|
+
/**
|
|
25730
|
+
* Format: date-time
|
|
25731
|
+
* @description Stop/termination time.
|
|
25732
|
+
*/
|
|
25733
|
+
endTime?: string;
|
|
25734
|
+
/** @description Row id. */
|
|
25735
|
+
id: string;
|
|
25736
|
+
/**
|
|
25737
|
+
* Format: date-time
|
|
25738
|
+
* @description Last time the resource was seen in the cloud.
|
|
25739
|
+
*/
|
|
25740
|
+
lastSeenAt: string;
|
|
25741
|
+
/** @description Organization name. */
|
|
25742
|
+
organization?: string;
|
|
25743
|
+
/** @description Whether orphan alerts are muted for this resource, directly or via its deployment. */
|
|
25744
|
+
orphanAlertMuted?: boolean;
|
|
25745
|
+
/** @description Why the resource is considered orphaned. */
|
|
25746
|
+
orphanReason?: string;
|
|
25747
|
+
/**
|
|
25748
|
+
* Format: date-time
|
|
25749
|
+
* @description When the resource was first detected as orphaned.
|
|
25750
|
+
*/
|
|
25751
|
+
orphanedAt?: string;
|
|
25752
|
+
/** @description Private IP address. */
|
|
25753
|
+
privateIp?: string;
|
|
25754
|
+
/** @description Public IP address. */
|
|
25755
|
+
publicIp?: string;
|
|
25756
|
+
/** @description Region. */
|
|
25757
|
+
region: string;
|
|
25758
|
+
/** @description Resource name. */
|
|
25759
|
+
resourceName?: string;
|
|
25760
|
+
/** @description Machine type or storage class. */
|
|
25761
|
+
resourceSubtype?: string;
|
|
25762
|
+
/** @description Resource kind: vm, disk, lustre, nfs, bucket, ip. */
|
|
25763
|
+
resourceType: string;
|
|
25764
|
+
/**
|
|
25765
|
+
* Format: double
|
|
25766
|
+
* @description Storage size in GB.
|
|
25767
|
+
*/
|
|
25768
|
+
sizeGb?: number;
|
|
25769
|
+
/** @description Whether the resource is a spot instance. */
|
|
25770
|
+
spot: boolean;
|
|
25771
|
+
/**
|
|
25772
|
+
* Format: date-time
|
|
25773
|
+
* @description Creation/launch time.
|
|
25774
|
+
*/
|
|
25775
|
+
startTime: string;
|
|
25776
|
+
/** @description Normalized state. */
|
|
25777
|
+
state: string;
|
|
25778
|
+
/** @description All resource tags with normalized keys. */
|
|
25779
|
+
tags?: {
|
|
25780
|
+
[key: string]: string;
|
|
25781
|
+
};
|
|
25782
|
+
/** @description Platform user from the resource tags. */
|
|
25783
|
+
username?: string;
|
|
25784
|
+
/** @description Availability zone. */
|
|
25785
|
+
zone?: string;
|
|
25786
|
+
};
|
|
24747
25787
|
ResourceComplianceItem: {
|
|
24748
25788
|
/** @description Resolved base image id the resource boots from */
|
|
24749
25789
|
baseImageCspId?: string;
|
|
24750
25790
|
/** @description Catalog name of the base image, when it still exists */
|
|
24751
25791
|
baseImageName?: string;
|
|
24752
|
-
/** @description
|
|
25792
|
+
/** @description Part of the resource the image belongs to, such as a partition or a controller disk; empty for the resource's boot image */
|
|
24753
25793
|
component?: string;
|
|
24754
25794
|
/** @description Cloud service provider */
|
|
24755
25795
|
csp?: string;
|
|
24756
25796
|
/** @description Resource ID */
|
|
24757
25797
|
id: string;
|
|
24758
|
-
/** @description The
|
|
25798
|
+
/** @description The value the component is configured with: a CSP image id or a snapshot ID */
|
|
24759
25799
|
imageRef?: string;
|
|
24760
25800
|
/** @description Resource name */
|
|
24761
25801
|
name: string;
|
|
@@ -24763,13 +25803,13 @@ export interface components {
|
|
|
24763
25803
|
organization?: string;
|
|
24764
25804
|
/** @description Whether the resource is currently provisioned */
|
|
24765
25805
|
running: boolean;
|
|
24766
|
-
/** @description Name of the
|
|
25806
|
+
/** @description Name of the snapshot the component is configured with, when it still exists */
|
|
24767
25807
|
sourceSnapshot?: string;
|
|
24768
25808
|
/**
|
|
24769
|
-
* @description State of the
|
|
25809
|
+
* @description State of the image or snapshot this component is configured with
|
|
24770
25810
|
* @enum {string}
|
|
24771
25811
|
*/
|
|
24772
|
-
state: "disabled" | "removed" | "missing" | "snapshot-removed";
|
|
25812
|
+
state: "disabled" | "removed" | "missing" | "snapshot-removed" | "custom";
|
|
24773
25813
|
/** @description Display status computed the same way the cluster and instance APIs compute it */
|
|
24774
25814
|
status: string;
|
|
24775
25815
|
/** @description cluster or instance */
|
|
@@ -24777,6 +25817,50 @@ export interface components {
|
|
|
24777
25817
|
/** @description Username of the resource owner */
|
|
24778
25818
|
user?: string;
|
|
24779
25819
|
};
|
|
25820
|
+
ResourceCredential: {
|
|
25821
|
+
/** @description Cloud-native account id; empty until the credential first resolves. */
|
|
25822
|
+
accountId?: string;
|
|
25823
|
+
/** @description CloudAccount (or legacy key) name. */
|
|
25824
|
+
accountName?: string;
|
|
25825
|
+
/** @description Last credential fetch error. */
|
|
25826
|
+
credentialError?: string;
|
|
25827
|
+
/**
|
|
25828
|
+
* Format: date-time
|
|
25829
|
+
* @description Last successful credential fetch.
|
|
25830
|
+
*/
|
|
25831
|
+
credentialRefreshedAt?: string;
|
|
25832
|
+
/** @description Credential fetch status: ok, error, or deleted (cloud account removed; shown up to 24h). */
|
|
25833
|
+
credentialStatus: string;
|
|
25834
|
+
/** @description Cloud service provider. */
|
|
25835
|
+
csp: string;
|
|
25836
|
+
/** @description Key path of the credential that wins when two sources resolve the same cloud account. */
|
|
25837
|
+
duplicateOf?: string;
|
|
25838
|
+
/** @description Whether the account lives in a government cloud realm. */
|
|
25839
|
+
govCloud: boolean;
|
|
25840
|
+
/** @description Vault key path identifying the credential source. */
|
|
25841
|
+
keyPath: string;
|
|
25842
|
+
/**
|
|
25843
|
+
* Format: date-time
|
|
25844
|
+
* @description When the last listing pass finished.
|
|
25845
|
+
*/
|
|
25846
|
+
listedAt?: string;
|
|
25847
|
+
/** @description Errors and warnings from the last listing pass. */
|
|
25848
|
+
listingErrors?: components["schemas"]["CredentialListingError"][] | null;
|
|
25849
|
+
/** @description Last listing outcome: pending, ok, warning, error, or skipped (duplicate credential). */
|
|
25850
|
+
listingStatus: string;
|
|
25851
|
+
/** @description Organization name. */
|
|
25852
|
+
organization?: string;
|
|
25853
|
+
/**
|
|
25854
|
+
* Format: int64
|
|
25855
|
+
* @description Resources found by the last successful listing.
|
|
25856
|
+
*/
|
|
25857
|
+
resourceCount?: number;
|
|
25858
|
+
/**
|
|
25859
|
+
* Format: date-time
|
|
25860
|
+
* @description When this row last changed.
|
|
25861
|
+
*/
|
|
25862
|
+
updatedAt: string;
|
|
25863
|
+
};
|
|
24780
25864
|
ResourceGroup: {
|
|
24781
25865
|
/** @description Current allocation name */
|
|
24782
25866
|
allocation: string | null;
|
|
@@ -24811,6 +25895,25 @@ export interface components {
|
|
|
24811
25895
|
/** @description Resources recommended by the organization */
|
|
24812
25896
|
orgRecommended: components["schemas"]["RecommendedResource"][] | null;
|
|
24813
25897
|
};
|
|
25898
|
+
ResourceTypeSummary: {
|
|
25899
|
+
/**
|
|
25900
|
+
* Format: int64
|
|
25901
|
+
* @description Live resources in an active/running state.
|
|
25902
|
+
*/
|
|
25903
|
+
active: number;
|
|
25904
|
+
/**
|
|
25905
|
+
* Format: int64
|
|
25906
|
+
* @description Live resources flagged as orphaned.
|
|
25907
|
+
*/
|
|
25908
|
+
orphaned: number;
|
|
25909
|
+
/** @description Resource kind. */
|
|
25910
|
+
resourceType: string;
|
|
25911
|
+
/**
|
|
25912
|
+
* Format: int64
|
|
25913
|
+
* @description All live resources (matches the list row count for this type).
|
|
25914
|
+
*/
|
|
25915
|
+
total: number;
|
|
25916
|
+
};
|
|
24814
25917
|
ResourceYAMLResponse: {
|
|
24815
25918
|
/** @description JSON representation of the resource */
|
|
24816
25919
|
jsonData: unknown;
|
|
@@ -24821,6 +25924,20 @@ export interface components {
|
|
|
24821
25924
|
/** @description YAML representation of the resource */
|
|
24822
25925
|
yamlData: string;
|
|
24823
25926
|
};
|
|
25927
|
+
ResourcesSummaryResponse: {
|
|
25928
|
+
/**
|
|
25929
|
+
* Format: int64
|
|
25930
|
+
* @description Distinct cluster sessions (for the Cluster tab count).
|
|
25931
|
+
*/
|
|
25932
|
+
clusters: number;
|
|
25933
|
+
/**
|
|
25934
|
+
* Format: int64
|
|
25935
|
+
* @description Distinct orphaned deployment groups (for the Orphan tab count).
|
|
25936
|
+
*/
|
|
25937
|
+
orphans: number;
|
|
25938
|
+
/** @description Per-type active and orphan counts. */
|
|
25939
|
+
summary: components["schemas"]["ResourceTypeSummary"][] | null;
|
|
25940
|
+
};
|
|
24824
25941
|
ResponseFormat: {
|
|
24825
25942
|
/** @description Response type: text or json_object */
|
|
24826
25943
|
type: string;
|
|
@@ -25433,10 +26550,24 @@ export interface components {
|
|
|
25433
26550
|
/** @description Software version. */
|
|
25434
26551
|
version: string;
|
|
25435
26552
|
};
|
|
26553
|
+
SetActiveInputBody: {
|
|
26554
|
+
/** @description Whether the user can sign in */
|
|
26555
|
+
active: boolean;
|
|
26556
|
+
};
|
|
25436
26557
|
SetAdminInputBody: {
|
|
25437
26558
|
/** @description Whether to grant or revoke platform admin */
|
|
25438
26559
|
admin: boolean;
|
|
25439
26560
|
};
|
|
26561
|
+
SetBillingAdminInputBody: {
|
|
26562
|
+
/** @description Whether to grant or revoke platform billing admin */
|
|
26563
|
+
billingAdmin: boolean;
|
|
26564
|
+
};
|
|
26565
|
+
SetCatalogEntryIconOutputBody: {
|
|
26566
|
+
/** @description SHA256 hex of the attached blob, or empty when a preset was applied. */
|
|
26567
|
+
etag: string;
|
|
26568
|
+
/** @description URL where the icon is served. */
|
|
26569
|
+
imageUrl: string;
|
|
26570
|
+
};
|
|
25440
26571
|
SetElasticClusterIconOutputBody: {
|
|
25441
26572
|
/** @description SHA256 hex of the attached blob, or empty when a preset was applied. */
|
|
25442
26573
|
etag: string;
|
|
@@ -25476,6 +26607,12 @@ export interface components {
|
|
|
25476
26607
|
/** @description URL where the icon is served. */
|
|
25477
26608
|
imageUrl: string;
|
|
25478
26609
|
};
|
|
26610
|
+
SetStorageIconOutputBody: {
|
|
26611
|
+
/** @description SHA256 hex of the attached blob, or empty when a preset was applied. */
|
|
26612
|
+
etag: string;
|
|
26613
|
+
/** @description URL where the icon is served. */
|
|
26614
|
+
imageUrl: string;
|
|
26615
|
+
};
|
|
25479
26616
|
SetWorkflowIconOutputBody: {
|
|
25480
26617
|
/** @description SHA256 hex of the attached blob, or empty when a preset was applied. */
|
|
25481
26618
|
etag: string;
|
|
@@ -25520,21 +26657,19 @@ export interface components {
|
|
|
25520
26657
|
* @example LS0tLS1CRUdJTi...
|
|
25521
26658
|
*/
|
|
25522
26659
|
caCert: string;
|
|
26660
|
+
/** @description Cluster-wide billing rates in allocation units per core-hour and GiB-hour */
|
|
26661
|
+
costTrackingRates?: components["schemas"]["CostTrackingRatesBody"];
|
|
25523
26662
|
/**
|
|
25524
|
-
* @description
|
|
26663
|
+
* @description Usage metering status for the cluster
|
|
25525
26664
|
* @example on
|
|
25526
26665
|
* @enum {string}
|
|
25527
26666
|
*/
|
|
25528
|
-
costTrackingStatus?: "on" | "off" | "provisioning" | "deleting";
|
|
26667
|
+
costTrackingStatus?: "on" | "off" | "provisioning" | "deleting" | "failed";
|
|
25529
26668
|
/**
|
|
25530
26669
|
* @description Kubernetes API endpoint
|
|
25531
26670
|
* @example https://k8s.example.com:6443
|
|
25532
26671
|
*/
|
|
25533
26672
|
endpoint: string;
|
|
25534
|
-
/** @description Map of team names to team IDs that have access to this cluster */
|
|
25535
|
-
groups: {
|
|
25536
|
-
[key: string]: string;
|
|
25537
|
-
};
|
|
25538
26673
|
/**
|
|
25539
26674
|
* @description Cluster MongoDB ID
|
|
25540
26675
|
* @example 507f1f77bcf86cd799439011
|
|
@@ -25550,8 +26685,6 @@ export interface components {
|
|
|
25550
26685
|
* @example prod-cluster
|
|
25551
26686
|
*/
|
|
25552
26687
|
name: string;
|
|
25553
|
-
/** @description CPU and memory pricing information */
|
|
25554
|
-
resourcePrices?: components["schemas"]["CostTrackingPricesBody"];
|
|
25555
26688
|
/**
|
|
25556
26689
|
* @description Infrastructure type
|
|
25557
26690
|
* @example kubernetes
|
|
@@ -26268,7 +27401,7 @@ export interface components {
|
|
|
26268
27401
|
title?: string;
|
|
26269
27402
|
};
|
|
26270
27403
|
UpdateCostTrackingBody: {
|
|
26271
|
-
/** @description Whether
|
|
27404
|
+
/** @description Whether cost tracking should run on this cluster */
|
|
26272
27405
|
enableTracking: boolean;
|
|
26273
27406
|
};
|
|
26274
27407
|
UpdateDeploymentInputBody: {
|
|
@@ -26399,10 +27532,6 @@ export interface components {
|
|
|
26399
27532
|
/** @description Mark as verified (platform admins only). */
|
|
26400
27533
|
verified?: boolean;
|
|
26401
27534
|
};
|
|
26402
|
-
UpdateNamespaceInputBody: {
|
|
26403
|
-
/** @description Allocation name to assign (null to clear) */
|
|
26404
|
-
allocation: string | null;
|
|
26405
|
-
};
|
|
26406
27535
|
UpdateOrgAIProviderInputBody: {
|
|
26407
27536
|
/** @description Provider API key */
|
|
26408
27537
|
apiKey?: string;
|
|
@@ -26445,6 +27574,15 @@ export interface components {
|
|
|
26445
27574
|
/** @description PEM private key matching the certificate; never returned by the API */
|
|
26446
27575
|
privateKey?: string;
|
|
26447
27576
|
};
|
|
27577
|
+
UpdateProxyWhitelistInputBody: {
|
|
27578
|
+
/**
|
|
27579
|
+
* @description Set to specific to restrict platform routing to the whitelisted hosts, or all to route every existing cluster through the platform
|
|
27580
|
+
* @enum {string}
|
|
27581
|
+
*/
|
|
27582
|
+
proxyScope?: "all" | "specific";
|
|
27583
|
+
/** @description Replaces the proxy whitelist; entries are hosts, IP addresses, or CIDR ranges */
|
|
27584
|
+
proxyWhitelist?: string[];
|
|
27585
|
+
};
|
|
26448
27586
|
UpdateQuotaBody: {
|
|
26449
27587
|
/**
|
|
26450
27588
|
* @description CPU limit in cores
|
|
@@ -27170,6 +28308,11 @@ export interface components {
|
|
|
27170
28308
|
};
|
|
27171
28309
|
/** @description Session IDs assigned to this worker. */
|
|
27172
28310
|
sessions?: string[] | null;
|
|
28311
|
+
/**
|
|
28312
|
+
* Format: int64
|
|
28313
|
+
* @description Port of the worker's SSH server on the compute node. Present when the worker accepts SSH sessions through its own tunnel.
|
|
28314
|
+
*/
|
|
28315
|
+
readonly sshServerPort?: number;
|
|
27173
28316
|
/**
|
|
27174
28317
|
* @description Worker status.
|
|
27175
28318
|
* @enum {string}
|
|
@@ -27946,7 +29089,7 @@ export interface operations {
|
|
|
27946
29089
|
/** @description Filter by organization name. */
|
|
27947
29090
|
organization?: string;
|
|
27948
29091
|
/** @description Export format. */
|
|
27949
|
-
format?: "csv" | "json";
|
|
29092
|
+
format?: "csv" | "json" | "text";
|
|
27950
29093
|
};
|
|
27951
29094
|
header?: never;
|
|
27952
29095
|
path?: never;
|
|
@@ -28838,6 +29981,70 @@ export interface operations {
|
|
|
28838
29981
|
};
|
|
28839
29982
|
};
|
|
28840
29983
|
};
|
|
29984
|
+
"delete-ai-integration-icon": {
|
|
29985
|
+
parameters: {
|
|
29986
|
+
query?: never;
|
|
29987
|
+
header?: never;
|
|
29988
|
+
path: {
|
|
29989
|
+
catalogEntryId: string;
|
|
29990
|
+
};
|
|
29991
|
+
cookie?: never;
|
|
29992
|
+
};
|
|
29993
|
+
requestBody?: never;
|
|
29994
|
+
responses: {
|
|
29995
|
+
/** @description No Content */
|
|
29996
|
+
204: {
|
|
29997
|
+
headers: {
|
|
29998
|
+
[name: string]: unknown;
|
|
29999
|
+
};
|
|
30000
|
+
content?: never;
|
|
30001
|
+
};
|
|
30002
|
+
/** @description Error */
|
|
30003
|
+
default: {
|
|
30004
|
+
headers: {
|
|
30005
|
+
[name: string]: unknown;
|
|
30006
|
+
};
|
|
30007
|
+
content: {
|
|
30008
|
+
"application/json": components["schemas"]["Error"];
|
|
30009
|
+
};
|
|
30010
|
+
};
|
|
30011
|
+
};
|
|
30012
|
+
};
|
|
30013
|
+
"set-ai-integration-icon": {
|
|
30014
|
+
parameters: {
|
|
30015
|
+
query?: never;
|
|
30016
|
+
header?: never;
|
|
30017
|
+
path: {
|
|
30018
|
+
catalogEntryId: string;
|
|
30019
|
+
};
|
|
30020
|
+
cookie?: never;
|
|
30021
|
+
};
|
|
30022
|
+
requestBody: {
|
|
30023
|
+
content: {
|
|
30024
|
+
"application/json": components["schemas"]["IconRef"];
|
|
30025
|
+
};
|
|
30026
|
+
};
|
|
30027
|
+
responses: {
|
|
30028
|
+
/** @description OK */
|
|
30029
|
+
200: {
|
|
30030
|
+
headers: {
|
|
30031
|
+
[name: string]: unknown;
|
|
30032
|
+
};
|
|
30033
|
+
content: {
|
|
30034
|
+
"application/json": components["schemas"]["SetCatalogEntryIconOutputBody"];
|
|
30035
|
+
};
|
|
30036
|
+
};
|
|
30037
|
+
/** @description Error */
|
|
30038
|
+
default: {
|
|
30039
|
+
headers: {
|
|
30040
|
+
[name: string]: unknown;
|
|
30041
|
+
};
|
|
30042
|
+
content: {
|
|
30043
|
+
"application/json": components["schemas"]["Error"];
|
|
30044
|
+
};
|
|
30045
|
+
};
|
|
30046
|
+
};
|
|
30047
|
+
};
|
|
28841
30048
|
"delete-ai-connection": {
|
|
28842
30049
|
parameters: {
|
|
28843
30050
|
query?: never;
|
|
@@ -28929,6 +30136,102 @@ export interface operations {
|
|
|
28929
30136
|
};
|
|
28930
30137
|
};
|
|
28931
30138
|
};
|
|
30139
|
+
"get-compute-proxy-whitelist": {
|
|
30140
|
+
parameters: {
|
|
30141
|
+
query?: never;
|
|
30142
|
+
header?: never;
|
|
30143
|
+
path?: never;
|
|
30144
|
+
cookie?: never;
|
|
30145
|
+
};
|
|
30146
|
+
requestBody?: never;
|
|
30147
|
+
responses: {
|
|
30148
|
+
/** @description OK */
|
|
30149
|
+
200: {
|
|
30150
|
+
headers: {
|
|
30151
|
+
[name: string]: unknown;
|
|
30152
|
+
};
|
|
30153
|
+
content: {
|
|
30154
|
+
"application/json": components["schemas"]["ProxyWhitelistBody"];
|
|
30155
|
+
};
|
|
30156
|
+
};
|
|
30157
|
+
/** @description Error */
|
|
30158
|
+
default: {
|
|
30159
|
+
headers: {
|
|
30160
|
+
[name: string]: unknown;
|
|
30161
|
+
};
|
|
30162
|
+
content: {
|
|
30163
|
+
"application/json": components["schemas"]["Error"];
|
|
30164
|
+
};
|
|
30165
|
+
};
|
|
30166
|
+
};
|
|
30167
|
+
};
|
|
30168
|
+
"update-compute-proxy-whitelist": {
|
|
30169
|
+
parameters: {
|
|
30170
|
+
query?: never;
|
|
30171
|
+
header?: never;
|
|
30172
|
+
path?: never;
|
|
30173
|
+
cookie?: never;
|
|
30174
|
+
};
|
|
30175
|
+
requestBody: {
|
|
30176
|
+
content: {
|
|
30177
|
+
"application/json": components["schemas"]["UpdateProxyWhitelistInputBody"];
|
|
30178
|
+
};
|
|
30179
|
+
};
|
|
30180
|
+
responses: {
|
|
30181
|
+
/** @description OK */
|
|
30182
|
+
200: {
|
|
30183
|
+
headers: {
|
|
30184
|
+
[name: string]: unknown;
|
|
30185
|
+
};
|
|
30186
|
+
content: {
|
|
30187
|
+
"application/json": components["schemas"]["ProxyWhitelistBody"];
|
|
30188
|
+
};
|
|
30189
|
+
};
|
|
30190
|
+
/** @description Error */
|
|
30191
|
+
default: {
|
|
30192
|
+
headers: {
|
|
30193
|
+
[name: string]: unknown;
|
|
30194
|
+
};
|
|
30195
|
+
content: {
|
|
30196
|
+
"application/json": components["schemas"]["Error"];
|
|
30197
|
+
};
|
|
30198
|
+
};
|
|
30199
|
+
};
|
|
30200
|
+
};
|
|
30201
|
+
"list-compute-proxy-cluster-hosts": {
|
|
30202
|
+
parameters: {
|
|
30203
|
+
query?: {
|
|
30204
|
+
/** @description Evaluate against this scope instead of the saved one */
|
|
30205
|
+
scope?: "all" | "specific";
|
|
30206
|
+
/** @description Evaluate against these whitelist entries; only read when scope is supplied */
|
|
30207
|
+
entry?: string[] | null;
|
|
30208
|
+
};
|
|
30209
|
+
header?: never;
|
|
30210
|
+
path?: never;
|
|
30211
|
+
cookie?: never;
|
|
30212
|
+
};
|
|
30213
|
+
requestBody?: never;
|
|
30214
|
+
responses: {
|
|
30215
|
+
/** @description OK */
|
|
30216
|
+
200: {
|
|
30217
|
+
headers: {
|
|
30218
|
+
[name: string]: unknown;
|
|
30219
|
+
};
|
|
30220
|
+
content: {
|
|
30221
|
+
"application/json": components["schemas"]["ProxyClusterHostsOutputBody"];
|
|
30222
|
+
};
|
|
30223
|
+
};
|
|
30224
|
+
/** @description Error */
|
|
30225
|
+
default: {
|
|
30226
|
+
headers: {
|
|
30227
|
+
[name: string]: unknown;
|
|
30228
|
+
};
|
|
30229
|
+
content: {
|
|
30230
|
+
"application/json": components["schemas"]["Error"];
|
|
30231
|
+
};
|
|
30232
|
+
};
|
|
30233
|
+
};
|
|
30234
|
+
};
|
|
28932
30235
|
"set-platform-product-state": {
|
|
28933
30236
|
parameters: {
|
|
28934
30237
|
query?: never;
|
|
@@ -29127,6 +30430,283 @@ export interface operations {
|
|
|
29127
30430
|
};
|
|
29128
30431
|
};
|
|
29129
30432
|
};
|
|
30433
|
+
"list-resources": {
|
|
30434
|
+
parameters: {
|
|
30435
|
+
query?: {
|
|
30436
|
+
/** @description Filter by resource kinds (vm, disk, lustre, nfs, bucket, ip). */
|
|
30437
|
+
type?: string[] | null;
|
|
30438
|
+
/** @description Filter by cloud service providers. */
|
|
30439
|
+
csp?: string[] | null;
|
|
30440
|
+
/** @description Filter by normalized states. */
|
|
30441
|
+
state?: string[] | null;
|
|
30442
|
+
/** @description Filter by cloud account name (or raw account id). */
|
|
30443
|
+
account?: string[] | null;
|
|
30444
|
+
/** @description Filter by organization name. Required for org admins. */
|
|
30445
|
+
organization?: string;
|
|
30446
|
+
/** @description Only resources flagged as orphaned. */
|
|
30447
|
+
orphan?: boolean;
|
|
30448
|
+
/** @description Only resources that still exist in the cloud (hides terminated/deleted). */
|
|
30449
|
+
live?: boolean;
|
|
30450
|
+
/** @description Only resources last seen within this preset window. */
|
|
30451
|
+
seenWithin?: "24h" | "7d" | "30d";
|
|
30452
|
+
/** @description Only resources last seen on or after this date (YYYY-MM-DD). Overrides seenWithin. */
|
|
30453
|
+
seenSince?: string;
|
|
30454
|
+
/** @description Case-insensitive match on name, id, user, pool, or account. */
|
|
30455
|
+
search?: string;
|
|
30456
|
+
/** @description Page size. */
|
|
30457
|
+
limit?: number;
|
|
30458
|
+
/** @description Page offset. */
|
|
30459
|
+
offset?: number;
|
|
30460
|
+
};
|
|
30461
|
+
header?: never;
|
|
30462
|
+
path?: never;
|
|
30463
|
+
cookie?: never;
|
|
30464
|
+
};
|
|
30465
|
+
requestBody?: never;
|
|
30466
|
+
responses: {
|
|
30467
|
+
/** @description OK */
|
|
30468
|
+
200: {
|
|
30469
|
+
headers: {
|
|
30470
|
+
[name: string]: unknown;
|
|
30471
|
+
};
|
|
30472
|
+
content: {
|
|
30473
|
+
"application/json": components["schemas"]["ListResourcesResponse"];
|
|
30474
|
+
};
|
|
30475
|
+
};
|
|
30476
|
+
/** @description Error */
|
|
30477
|
+
default: {
|
|
30478
|
+
headers: {
|
|
30479
|
+
[name: string]: unknown;
|
|
30480
|
+
};
|
|
30481
|
+
content: {
|
|
30482
|
+
"application/json": components["schemas"]["Error"];
|
|
30483
|
+
};
|
|
30484
|
+
};
|
|
30485
|
+
};
|
|
30486
|
+
};
|
|
30487
|
+
"list-resource-clusters": {
|
|
30488
|
+
parameters: {
|
|
30489
|
+
query?: {
|
|
30490
|
+
/** @description Filter by organization name. Required for org admins. */
|
|
30491
|
+
organization?: string;
|
|
30492
|
+
/** @description Filter by cloud service providers. */
|
|
30493
|
+
csp?: string[] | null;
|
|
30494
|
+
/** @description Filter by cluster status: running, stopped, or terminated. */
|
|
30495
|
+
state?: string[] | null;
|
|
30496
|
+
/** @description Filter by cloud account name (or raw account id). */
|
|
30497
|
+
account?: string[] | null;
|
|
30498
|
+
/** @description Group by deployment id instead of cluster sessions: every group has at least one orphan-flagged resource and includes the deployment's other live resources. */
|
|
30499
|
+
orphan?: boolean;
|
|
30500
|
+
/** @description Case-insensitive match on resource name, id, user, pool, or account. */
|
|
30501
|
+
search?: string;
|
|
30502
|
+
/** @description Only resources last seen within this preset window. */
|
|
30503
|
+
seenWithin?: "24h" | "7d" | "30d";
|
|
30504
|
+
/** @description Only resources last seen on or after this date (YYYY-MM-DD). Overrides seenWithin. */
|
|
30505
|
+
seenSince?: string;
|
|
30506
|
+
/** @description Cluster page size. */
|
|
30507
|
+
limit?: number;
|
|
30508
|
+
/** @description Cluster page offset. */
|
|
30509
|
+
offset?: number;
|
|
30510
|
+
};
|
|
30511
|
+
header?: never;
|
|
30512
|
+
path?: never;
|
|
30513
|
+
cookie?: never;
|
|
30514
|
+
};
|
|
30515
|
+
requestBody?: never;
|
|
30516
|
+
responses: {
|
|
30517
|
+
/** @description OK */
|
|
30518
|
+
200: {
|
|
30519
|
+
headers: {
|
|
30520
|
+
[name: string]: unknown;
|
|
30521
|
+
};
|
|
30522
|
+
content: {
|
|
30523
|
+
"application/json": components["schemas"]["ClusterResourcesResponse"];
|
|
30524
|
+
};
|
|
30525
|
+
};
|
|
30526
|
+
/** @description Error */
|
|
30527
|
+
default: {
|
|
30528
|
+
headers: {
|
|
30529
|
+
[name: string]: unknown;
|
|
30530
|
+
};
|
|
30531
|
+
content: {
|
|
30532
|
+
"application/json": components["schemas"]["Error"];
|
|
30533
|
+
};
|
|
30534
|
+
};
|
|
30535
|
+
};
|
|
30536
|
+
};
|
|
30537
|
+
"list-resource-credentials": {
|
|
30538
|
+
parameters: {
|
|
30539
|
+
query?: {
|
|
30540
|
+
/** @description Filter by organization name. Required for org admins. */
|
|
30541
|
+
organization?: string;
|
|
30542
|
+
/** @description Filter by cloud service providers. */
|
|
30543
|
+
csp?: string[] | null;
|
|
30544
|
+
/** @description Filter by status; matches the credential or the listing status (ok, error, warning, pending, skipped, deleted). Deleted cloud accounts show for 24h after deletion by default; filtering for 'deleted' shows all. */
|
|
30545
|
+
status?: string[] | null;
|
|
30546
|
+
/** @description Case-insensitive match on account name, account id, or key path. */
|
|
30547
|
+
search?: string;
|
|
30548
|
+
};
|
|
30549
|
+
header?: never;
|
|
30550
|
+
path?: never;
|
|
30551
|
+
cookie?: never;
|
|
30552
|
+
};
|
|
30553
|
+
requestBody?: never;
|
|
30554
|
+
responses: {
|
|
30555
|
+
/** @description OK */
|
|
30556
|
+
200: {
|
|
30557
|
+
headers: {
|
|
30558
|
+
[name: string]: unknown;
|
|
30559
|
+
};
|
|
30560
|
+
content: {
|
|
30561
|
+
"application/json": components["schemas"]["ListCredentialsResponse"];
|
|
30562
|
+
};
|
|
30563
|
+
};
|
|
30564
|
+
/** @description Error */
|
|
30565
|
+
default: {
|
|
30566
|
+
headers: {
|
|
30567
|
+
[name: string]: unknown;
|
|
30568
|
+
};
|
|
30569
|
+
content: {
|
|
30570
|
+
"application/json": components["schemas"]["Error"];
|
|
30571
|
+
};
|
|
30572
|
+
};
|
|
30573
|
+
};
|
|
30574
|
+
};
|
|
30575
|
+
"delete-deployment-resources": {
|
|
30576
|
+
parameters: {
|
|
30577
|
+
query?: never;
|
|
30578
|
+
header?: never;
|
|
30579
|
+
path?: never;
|
|
30580
|
+
cookie?: never;
|
|
30581
|
+
};
|
|
30582
|
+
requestBody: {
|
|
30583
|
+
content: {
|
|
30584
|
+
"application/json": components["schemas"]["DeleteDeploymentBody"];
|
|
30585
|
+
};
|
|
30586
|
+
};
|
|
30587
|
+
responses: {
|
|
30588
|
+
/** @description OK */
|
|
30589
|
+
200: {
|
|
30590
|
+
headers: {
|
|
30591
|
+
[name: string]: unknown;
|
|
30592
|
+
};
|
|
30593
|
+
content: {
|
|
30594
|
+
"application/json": components["schemas"]["DeleteDeploymentResponse"];
|
|
30595
|
+
};
|
|
30596
|
+
};
|
|
30597
|
+
/** @description Error */
|
|
30598
|
+
default: {
|
|
30599
|
+
headers: {
|
|
30600
|
+
[name: string]: unknown;
|
|
30601
|
+
};
|
|
30602
|
+
content: {
|
|
30603
|
+
"application/json": components["schemas"]["Error"];
|
|
30604
|
+
};
|
|
30605
|
+
};
|
|
30606
|
+
};
|
|
30607
|
+
};
|
|
30608
|
+
"mute-orphan-alerts": {
|
|
30609
|
+
parameters: {
|
|
30610
|
+
query?: never;
|
|
30611
|
+
header?: never;
|
|
30612
|
+
path?: never;
|
|
30613
|
+
cookie?: never;
|
|
30614
|
+
};
|
|
30615
|
+
requestBody: {
|
|
30616
|
+
content: {
|
|
30617
|
+
"application/json": components["schemas"]["OrphanMuteBody"];
|
|
30618
|
+
};
|
|
30619
|
+
};
|
|
30620
|
+
responses: {
|
|
30621
|
+
/** @description OK */
|
|
30622
|
+
200: {
|
|
30623
|
+
headers: {
|
|
30624
|
+
[name: string]: unknown;
|
|
30625
|
+
};
|
|
30626
|
+
content: {
|
|
30627
|
+
"application/json": components["schemas"]["OrphanMuteResponse"];
|
|
30628
|
+
};
|
|
30629
|
+
};
|
|
30630
|
+
/** @description Error */
|
|
30631
|
+
default: {
|
|
30632
|
+
headers: {
|
|
30633
|
+
[name: string]: unknown;
|
|
30634
|
+
};
|
|
30635
|
+
content: {
|
|
30636
|
+
"application/json": components["schemas"]["Error"];
|
|
30637
|
+
};
|
|
30638
|
+
};
|
|
30639
|
+
};
|
|
30640
|
+
};
|
|
30641
|
+
"unmute-orphan-alerts": {
|
|
30642
|
+
parameters: {
|
|
30643
|
+
query?: never;
|
|
30644
|
+
header?: never;
|
|
30645
|
+
path?: never;
|
|
30646
|
+
cookie?: never;
|
|
30647
|
+
};
|
|
30648
|
+
requestBody: {
|
|
30649
|
+
content: {
|
|
30650
|
+
"application/json": components["schemas"]["OrphanMuteBody"];
|
|
30651
|
+
};
|
|
30652
|
+
};
|
|
30653
|
+
responses: {
|
|
30654
|
+
/** @description OK */
|
|
30655
|
+
200: {
|
|
30656
|
+
headers: {
|
|
30657
|
+
[name: string]: unknown;
|
|
30658
|
+
};
|
|
30659
|
+
content: {
|
|
30660
|
+
"application/json": components["schemas"]["OrphanMuteResponse"];
|
|
30661
|
+
};
|
|
30662
|
+
};
|
|
30663
|
+
/** @description Error */
|
|
30664
|
+
default: {
|
|
30665
|
+
headers: {
|
|
30666
|
+
[name: string]: unknown;
|
|
30667
|
+
};
|
|
30668
|
+
content: {
|
|
30669
|
+
"application/json": components["schemas"]["Error"];
|
|
30670
|
+
};
|
|
30671
|
+
};
|
|
30672
|
+
};
|
|
30673
|
+
};
|
|
30674
|
+
"get-resources-summary": {
|
|
30675
|
+
parameters: {
|
|
30676
|
+
query?: {
|
|
30677
|
+
/** @description Restrict to one organization (by name). Required for org admins. */
|
|
30678
|
+
organization?: string;
|
|
30679
|
+
/** @description Preset window matching the list view. */
|
|
30680
|
+
seenWithin?: "24h" | "7d" | "30d";
|
|
30681
|
+
/** @description Custom last-seen date matching the list view. Overrides seenWithin. */
|
|
30682
|
+
seenSince?: string;
|
|
30683
|
+
};
|
|
30684
|
+
header?: never;
|
|
30685
|
+
path?: never;
|
|
30686
|
+
cookie?: never;
|
|
30687
|
+
};
|
|
30688
|
+
requestBody?: never;
|
|
30689
|
+
responses: {
|
|
30690
|
+
/** @description OK */
|
|
30691
|
+
200: {
|
|
30692
|
+
headers: {
|
|
30693
|
+
[name: string]: unknown;
|
|
30694
|
+
};
|
|
30695
|
+
content: {
|
|
30696
|
+
"application/json": components["schemas"]["ResourcesSummaryResponse"];
|
|
30697
|
+
};
|
|
30698
|
+
};
|
|
30699
|
+
/** @description Error */
|
|
30700
|
+
default: {
|
|
30701
|
+
headers: {
|
|
30702
|
+
[name: string]: unknown;
|
|
30703
|
+
};
|
|
30704
|
+
content: {
|
|
30705
|
+
"application/json": components["schemas"]["Error"];
|
|
30706
|
+
};
|
|
30707
|
+
};
|
|
30708
|
+
};
|
|
30709
|
+
};
|
|
29130
30710
|
"kill-user-workspace": {
|
|
29131
30711
|
parameters: {
|
|
29132
30712
|
query?: never;
|
|
@@ -29519,7 +31099,9 @@ export interface operations {
|
|
|
29519
31099
|
headers: {
|
|
29520
31100
|
"Content-Disposition"?: string;
|
|
29521
31101
|
"Content-Length"?: number;
|
|
31102
|
+
"Content-Security-Policy"?: string;
|
|
29522
31103
|
"Content-Type"?: string;
|
|
31104
|
+
"X-Content-Type-Options"?: string;
|
|
29523
31105
|
[name: string]: unknown;
|
|
29524
31106
|
};
|
|
29525
31107
|
content: {
|
|
@@ -29703,7 +31285,9 @@ export interface operations {
|
|
|
29703
31285
|
headers: {
|
|
29704
31286
|
"Content-Disposition"?: string;
|
|
29705
31287
|
"Content-Length"?: number;
|
|
31288
|
+
"Content-Security-Policy"?: string;
|
|
29706
31289
|
"Content-Type"?: string;
|
|
31290
|
+
"X-Content-Type-Options"?: string;
|
|
29707
31291
|
[name: string]: unknown;
|
|
29708
31292
|
};
|
|
29709
31293
|
content: {
|
|
@@ -30283,45 +31867,6 @@ export interface operations {
|
|
|
30283
31867
|
};
|
|
30284
31868
|
};
|
|
30285
31869
|
};
|
|
30286
|
-
"get-cluster-session-token": {
|
|
30287
|
-
parameters: {
|
|
30288
|
-
query: {
|
|
30289
|
-
/** @description The session ID */
|
|
30290
|
-
session_id: string;
|
|
30291
|
-
/** @description The cloud provider */
|
|
30292
|
-
provider: string;
|
|
30293
|
-
/** @description The cluster name */
|
|
30294
|
-
name: string;
|
|
30295
|
-
/** @description The session number */
|
|
30296
|
-
session_number: string;
|
|
30297
|
-
};
|
|
30298
|
-
header?: never;
|
|
30299
|
-
path?: never;
|
|
30300
|
-
cookie?: never;
|
|
30301
|
-
};
|
|
30302
|
-
requestBody?: never;
|
|
30303
|
-
responses: {
|
|
30304
|
-
/** @description OK */
|
|
30305
|
-
200: {
|
|
30306
|
-
headers: {
|
|
30307
|
-
"Content-Type"?: string;
|
|
30308
|
-
[name: string]: unknown;
|
|
30309
|
-
};
|
|
30310
|
-
content: {
|
|
30311
|
-
"application/json": string;
|
|
30312
|
-
};
|
|
30313
|
-
};
|
|
30314
|
-
/** @description Error */
|
|
30315
|
-
default: {
|
|
30316
|
-
headers: {
|
|
30317
|
-
[name: string]: unknown;
|
|
30318
|
-
};
|
|
30319
|
-
content: {
|
|
30320
|
-
"application/json": components["schemas"]["Error"];
|
|
30321
|
-
};
|
|
30322
|
-
};
|
|
30323
|
-
};
|
|
30324
|
-
};
|
|
30325
31870
|
"get-auth-token-oidc": {
|
|
30326
31871
|
parameters: {
|
|
30327
31872
|
query?: {
|
|
@@ -30832,6 +32377,61 @@ export interface operations {
|
|
|
30832
32377
|
};
|
|
30833
32378
|
};
|
|
30834
32379
|
};
|
|
32380
|
+
"export-resource-events": {
|
|
32381
|
+
parameters: {
|
|
32382
|
+
query?: {
|
|
32383
|
+
/** @description Only events at or after this time (RFC3339). */
|
|
32384
|
+
from?: string;
|
|
32385
|
+
/** @description Only events at or before this time (RFC3339). */
|
|
32386
|
+
to?: string;
|
|
32387
|
+
/** @description Filter by event type (repeatable). */
|
|
32388
|
+
type?: string[] | null;
|
|
32389
|
+
/** @description Filter by exact actor username. */
|
|
32390
|
+
actor?: string;
|
|
32391
|
+
/** @description Filter by actor type. */
|
|
32392
|
+
actorType?: "user" | "apikey" | "workflow-token" | "cluster-token" | "scim" | "system" | "anonymous";
|
|
32393
|
+
/** @description Filter by target type. */
|
|
32394
|
+
targetType?: string;
|
|
32395
|
+
/** @description Filter by target id. */
|
|
32396
|
+
targetId?: string;
|
|
32397
|
+
/** @description Filter by outcome. */
|
|
32398
|
+
outcome?: "success" | "failure";
|
|
32399
|
+
/** @description Filter by auth session id, e.g. to trace every action in one impersonation session. */
|
|
32400
|
+
sessionId?: string;
|
|
32401
|
+
/** @description Case-insensitive search across actor username, target name, and request ID; an exact event or session id also matches. */
|
|
32402
|
+
search?: string;
|
|
32403
|
+
/** @description Export format. */
|
|
32404
|
+
format?: "csv" | "json" | "text";
|
|
32405
|
+
};
|
|
32406
|
+
header?: never;
|
|
32407
|
+
path: {
|
|
32408
|
+
/** @description Target resource type. */
|
|
32409
|
+
targetType: "cluster" | "storage" | "user";
|
|
32410
|
+
/** @description Target resource id (hex ObjectID). */
|
|
32411
|
+
targetId: string;
|
|
32412
|
+
};
|
|
32413
|
+
cookie?: never;
|
|
32414
|
+
};
|
|
32415
|
+
requestBody?: never;
|
|
32416
|
+
responses: {
|
|
32417
|
+
/** @description OK */
|
|
32418
|
+
200: {
|
|
32419
|
+
headers: {
|
|
32420
|
+
[name: string]: unknown;
|
|
32421
|
+
};
|
|
32422
|
+
content?: never;
|
|
32423
|
+
};
|
|
32424
|
+
/** @description Error */
|
|
32425
|
+
default: {
|
|
32426
|
+
headers: {
|
|
32427
|
+
[name: string]: unknown;
|
|
32428
|
+
};
|
|
32429
|
+
content: {
|
|
32430
|
+
"application/json": components["schemas"]["Error"];
|
|
32431
|
+
};
|
|
32432
|
+
};
|
|
32433
|
+
};
|
|
32434
|
+
};
|
|
30835
32435
|
"list-event-types": {
|
|
30836
32436
|
parameters: {
|
|
30837
32437
|
query?: never;
|
|
@@ -34573,14 +36173,118 @@ export interface operations {
|
|
|
34573
36173
|
};
|
|
34574
36174
|
};
|
|
34575
36175
|
};
|
|
34576
|
-
"get-org-ai-provider": {
|
|
36176
|
+
"get-org-ai-provider": {
|
|
36177
|
+
parameters: {
|
|
36178
|
+
query?: never;
|
|
36179
|
+
header?: never;
|
|
36180
|
+
path: {
|
|
36181
|
+
/** @description The name of the organization. */
|
|
36182
|
+
organization: string;
|
|
36183
|
+
/** @description AI provider name */
|
|
36184
|
+
name: string;
|
|
36185
|
+
};
|
|
36186
|
+
cookie?: never;
|
|
36187
|
+
};
|
|
36188
|
+
requestBody?: never;
|
|
36189
|
+
responses: {
|
|
36190
|
+
/** @description OK */
|
|
36191
|
+
200: {
|
|
36192
|
+
headers: {
|
|
36193
|
+
[name: string]: unknown;
|
|
36194
|
+
};
|
|
36195
|
+
content: {
|
|
36196
|
+
"application/json": components["schemas"]["OrgAIProviderResponse"];
|
|
36197
|
+
};
|
|
36198
|
+
};
|
|
36199
|
+
/** @description Error */
|
|
36200
|
+
default: {
|
|
36201
|
+
headers: {
|
|
36202
|
+
[name: string]: unknown;
|
|
36203
|
+
};
|
|
36204
|
+
content: {
|
|
36205
|
+
"application/json": components["schemas"]["Error"];
|
|
36206
|
+
};
|
|
36207
|
+
};
|
|
36208
|
+
};
|
|
36209
|
+
};
|
|
36210
|
+
"delete-org-ai-provider": {
|
|
36211
|
+
parameters: {
|
|
36212
|
+
query?: never;
|
|
36213
|
+
header?: never;
|
|
36214
|
+
path: {
|
|
36215
|
+
/** @description The name of the organization. */
|
|
36216
|
+
organization: string;
|
|
36217
|
+
/** @description AI provider name */
|
|
36218
|
+
name: string;
|
|
36219
|
+
};
|
|
36220
|
+
cookie?: never;
|
|
36221
|
+
};
|
|
36222
|
+
requestBody?: never;
|
|
36223
|
+
responses: {
|
|
36224
|
+
/** @description No Content */
|
|
36225
|
+
204: {
|
|
36226
|
+
headers: {
|
|
36227
|
+
[name: string]: unknown;
|
|
36228
|
+
};
|
|
36229
|
+
content?: never;
|
|
36230
|
+
};
|
|
36231
|
+
/** @description Error */
|
|
36232
|
+
default: {
|
|
36233
|
+
headers: {
|
|
36234
|
+
[name: string]: unknown;
|
|
36235
|
+
};
|
|
36236
|
+
content: {
|
|
36237
|
+
"application/json": components["schemas"]["Error"];
|
|
36238
|
+
};
|
|
36239
|
+
};
|
|
36240
|
+
};
|
|
36241
|
+
};
|
|
36242
|
+
"update-org-ai-provider": {
|
|
36243
|
+
parameters: {
|
|
36244
|
+
query?: never;
|
|
36245
|
+
header?: never;
|
|
36246
|
+
path: {
|
|
36247
|
+
/** @description The name of the organization. */
|
|
36248
|
+
organization: string;
|
|
36249
|
+
/** @description AI provider name */
|
|
36250
|
+
name: string;
|
|
36251
|
+
};
|
|
36252
|
+
cookie?: never;
|
|
36253
|
+
};
|
|
36254
|
+
requestBody: {
|
|
36255
|
+
content: {
|
|
36256
|
+
"application/json": components["schemas"]["UpdateOrgAIProviderInputBody"];
|
|
36257
|
+
};
|
|
36258
|
+
};
|
|
36259
|
+
responses: {
|
|
36260
|
+
/** @description OK */
|
|
36261
|
+
200: {
|
|
36262
|
+
headers: {
|
|
36263
|
+
[name: string]: unknown;
|
|
36264
|
+
};
|
|
36265
|
+
content: {
|
|
36266
|
+
"application/json": components["schemas"]["OrgAIProviderResponse"];
|
|
36267
|
+
};
|
|
36268
|
+
};
|
|
36269
|
+
/** @description Error */
|
|
36270
|
+
default: {
|
|
36271
|
+
headers: {
|
|
36272
|
+
[name: string]: unknown;
|
|
36273
|
+
};
|
|
36274
|
+
content: {
|
|
36275
|
+
"application/json": components["schemas"]["Error"];
|
|
36276
|
+
};
|
|
36277
|
+
};
|
|
36278
|
+
};
|
|
36279
|
+
};
|
|
36280
|
+
"start-org-codex-device-authorization": {
|
|
34577
36281
|
parameters: {
|
|
34578
36282
|
query?: never;
|
|
34579
36283
|
header?: never;
|
|
34580
36284
|
path: {
|
|
34581
36285
|
/** @description The name of the organization. */
|
|
34582
36286
|
organization: string;
|
|
34583
|
-
/** @description AI
|
|
36287
|
+
/** @description Organization AI connection name */
|
|
34584
36288
|
name: string;
|
|
34585
36289
|
};
|
|
34586
36290
|
cookie?: never;
|
|
@@ -34593,7 +36297,7 @@ export interface operations {
|
|
|
34593
36297
|
[name: string]: unknown;
|
|
34594
36298
|
};
|
|
34595
36299
|
content: {
|
|
34596
|
-
"application/json": components["schemas"]["
|
|
36300
|
+
"application/json": components["schemas"]["CodexDeviceAuthorizationResponse"];
|
|
34597
36301
|
};
|
|
34598
36302
|
};
|
|
34599
36303
|
/** @description Error */
|
|
@@ -34607,55 +36311,21 @@ export interface operations {
|
|
|
34607
36311
|
};
|
|
34608
36312
|
};
|
|
34609
36313
|
};
|
|
34610
|
-
"
|
|
36314
|
+
"poll-org-codex-device-authorization": {
|
|
34611
36315
|
parameters: {
|
|
34612
36316
|
query?: never;
|
|
34613
36317
|
header?: never;
|
|
34614
36318
|
path: {
|
|
34615
36319
|
/** @description The name of the organization. */
|
|
34616
36320
|
organization: string;
|
|
34617
|
-
/** @description AI
|
|
36321
|
+
/** @description Organization AI connection name */
|
|
34618
36322
|
name: string;
|
|
36323
|
+
/** @description Device authorization identifier */
|
|
36324
|
+
authorizationId: string;
|
|
34619
36325
|
};
|
|
34620
36326
|
cookie?: never;
|
|
34621
36327
|
};
|
|
34622
36328
|
requestBody?: never;
|
|
34623
|
-
responses: {
|
|
34624
|
-
/** @description No Content */
|
|
34625
|
-
204: {
|
|
34626
|
-
headers: {
|
|
34627
|
-
[name: string]: unknown;
|
|
34628
|
-
};
|
|
34629
|
-
content?: never;
|
|
34630
|
-
};
|
|
34631
|
-
/** @description Error */
|
|
34632
|
-
default: {
|
|
34633
|
-
headers: {
|
|
34634
|
-
[name: string]: unknown;
|
|
34635
|
-
};
|
|
34636
|
-
content: {
|
|
34637
|
-
"application/json": components["schemas"]["Error"];
|
|
34638
|
-
};
|
|
34639
|
-
};
|
|
34640
|
-
};
|
|
34641
|
-
};
|
|
34642
|
-
"update-org-ai-provider": {
|
|
34643
|
-
parameters: {
|
|
34644
|
-
query?: never;
|
|
34645
|
-
header?: never;
|
|
34646
|
-
path: {
|
|
34647
|
-
/** @description The name of the organization. */
|
|
34648
|
-
organization: string;
|
|
34649
|
-
/** @description AI provider name */
|
|
34650
|
-
name: string;
|
|
34651
|
-
};
|
|
34652
|
-
cookie?: never;
|
|
34653
|
-
};
|
|
34654
|
-
requestBody: {
|
|
34655
|
-
content: {
|
|
34656
|
-
"application/json": components["schemas"]["UpdateOrgAIProviderInputBody"];
|
|
34657
|
-
};
|
|
34658
|
-
};
|
|
34659
36329
|
responses: {
|
|
34660
36330
|
/** @description OK */
|
|
34661
36331
|
200: {
|
|
@@ -34663,7 +36333,7 @@ export interface operations {
|
|
|
34663
36333
|
[name: string]: unknown;
|
|
34664
36334
|
};
|
|
34665
36335
|
content: {
|
|
34666
|
-
"application/json": components["schemas"]["
|
|
36336
|
+
"application/json": components["schemas"]["PollOrgCodexAuthorizationOutputBody"];
|
|
34667
36337
|
};
|
|
34668
36338
|
};
|
|
34669
36339
|
/** @description Error */
|
|
@@ -34677,14 +36347,14 @@ export interface operations {
|
|
|
34677
36347
|
};
|
|
34678
36348
|
};
|
|
34679
36349
|
};
|
|
34680
|
-
"
|
|
36350
|
+
"reconnect-org-copilot-provider": {
|
|
34681
36351
|
parameters: {
|
|
34682
36352
|
query?: never;
|
|
34683
36353
|
header?: never;
|
|
34684
36354
|
path: {
|
|
34685
36355
|
/** @description The name of the organization. */
|
|
34686
36356
|
organization: string;
|
|
34687
|
-
/** @description
|
|
36357
|
+
/** @description AI provider name */
|
|
34688
36358
|
name: string;
|
|
34689
36359
|
};
|
|
34690
36360
|
cookie?: never;
|
|
@@ -34697,39 +36367,7 @@ export interface operations {
|
|
|
34697
36367
|
[name: string]: unknown;
|
|
34698
36368
|
};
|
|
34699
36369
|
content: {
|
|
34700
|
-
"application/json": components["schemas"]["
|
|
34701
|
-
};
|
|
34702
|
-
};
|
|
34703
|
-
/** @description Error */
|
|
34704
|
-
default: {
|
|
34705
|
-
headers: {
|
|
34706
|
-
[name: string]: unknown;
|
|
34707
|
-
};
|
|
34708
|
-
content: {
|
|
34709
|
-
"application/json": components["schemas"]["Error"];
|
|
34710
|
-
};
|
|
34711
|
-
};
|
|
34712
|
-
};
|
|
34713
|
-
};
|
|
34714
|
-
"poll-org-codex-device-authorization": {
|
|
34715
|
-
parameters: {
|
|
34716
|
-
query?: never;
|
|
34717
|
-
header?: never;
|
|
34718
|
-
path: {
|
|
34719
|
-
/** @description Device authorization identifier */
|
|
34720
|
-
authorizationId: string;
|
|
34721
|
-
};
|
|
34722
|
-
cookie?: never;
|
|
34723
|
-
};
|
|
34724
|
-
requestBody?: never;
|
|
34725
|
-
responses: {
|
|
34726
|
-
/** @description OK */
|
|
34727
|
-
200: {
|
|
34728
|
-
headers: {
|
|
34729
|
-
[name: string]: unknown;
|
|
34730
|
-
};
|
|
34731
|
-
content: {
|
|
34732
|
-
"application/json": components["schemas"]["PollOrgCodexAuthorizationOutputBody"];
|
|
36370
|
+
"application/json": components["schemas"]["OrgAIProviderResponse"];
|
|
34733
36371
|
};
|
|
34734
36372
|
};
|
|
34735
36373
|
/** @description Error */
|
|
@@ -35955,6 +37593,42 @@ export interface operations {
|
|
|
35955
37593
|
};
|
|
35956
37594
|
};
|
|
35957
37595
|
};
|
|
37596
|
+
"test-saved-organization-auth-method-ldap": {
|
|
37597
|
+
parameters: {
|
|
37598
|
+
query?: never;
|
|
37599
|
+
header?: never;
|
|
37600
|
+
path: {
|
|
37601
|
+
/** @description The name of the organization. */
|
|
37602
|
+
organization: string;
|
|
37603
|
+
/** @description Name of the authentication method to test */
|
|
37604
|
+
authName: string;
|
|
37605
|
+
};
|
|
37606
|
+
cookie?: never;
|
|
37607
|
+
};
|
|
37608
|
+
requestBody: {
|
|
37609
|
+
content: {
|
|
37610
|
+
"application/json": components["schemas"]["LdapSavedConnectionTest"];
|
|
37611
|
+
};
|
|
37612
|
+
};
|
|
37613
|
+
responses: {
|
|
37614
|
+
/** @description No Content */
|
|
37615
|
+
204: {
|
|
37616
|
+
headers: {
|
|
37617
|
+
[name: string]: unknown;
|
|
37618
|
+
};
|
|
37619
|
+
content?: never;
|
|
37620
|
+
};
|
|
37621
|
+
/** @description Error */
|
|
37622
|
+
default: {
|
|
37623
|
+
headers: {
|
|
37624
|
+
[name: string]: unknown;
|
|
37625
|
+
};
|
|
37626
|
+
content: {
|
|
37627
|
+
"application/json": components["schemas"]["Error"];
|
|
37628
|
+
};
|
|
37629
|
+
};
|
|
37630
|
+
};
|
|
37631
|
+
};
|
|
35958
37632
|
"add-organization-auth-method-oidc": {
|
|
35959
37633
|
parameters: {
|
|
35960
37634
|
query?: never;
|
|
@@ -36502,6 +38176,78 @@ export interface operations {
|
|
|
36502
38176
|
};
|
|
36503
38177
|
};
|
|
36504
38178
|
};
|
|
38179
|
+
"patch-cloud-account-billing-default-allocation": {
|
|
38180
|
+
parameters: {
|
|
38181
|
+
query?: never;
|
|
38182
|
+
header?: never;
|
|
38183
|
+
path: {
|
|
38184
|
+
/** @description The name of the organization. */
|
|
38185
|
+
organization: string;
|
|
38186
|
+
/** @description Cloud account name */
|
|
38187
|
+
name: string;
|
|
38188
|
+
};
|
|
38189
|
+
cookie?: never;
|
|
38190
|
+
};
|
|
38191
|
+
requestBody: {
|
|
38192
|
+
content: {
|
|
38193
|
+
"application/json": components["schemas"]["PatchBillingDefaultAllocationInputBody"];
|
|
38194
|
+
};
|
|
38195
|
+
};
|
|
38196
|
+
responses: {
|
|
38197
|
+
/** @description OK */
|
|
38198
|
+
200: {
|
|
38199
|
+
headers: {
|
|
38200
|
+
[name: string]: unknown;
|
|
38201
|
+
};
|
|
38202
|
+
content: {
|
|
38203
|
+
"application/json": components["schemas"]["PatchBillingDefaultAllocationOutputBody"];
|
|
38204
|
+
};
|
|
38205
|
+
};
|
|
38206
|
+
/** @description Error */
|
|
38207
|
+
default: {
|
|
38208
|
+
headers: {
|
|
38209
|
+
[name: string]: unknown;
|
|
38210
|
+
};
|
|
38211
|
+
content: {
|
|
38212
|
+
"application/json": components["schemas"]["Error"];
|
|
38213
|
+
};
|
|
38214
|
+
};
|
|
38215
|
+
};
|
|
38216
|
+
};
|
|
38217
|
+
"get-cloud-account-billing-details": {
|
|
38218
|
+
parameters: {
|
|
38219
|
+
query?: never;
|
|
38220
|
+
header?: never;
|
|
38221
|
+
path: {
|
|
38222
|
+
/** @description The name of the organization. */
|
|
38223
|
+
organization: string;
|
|
38224
|
+
/** @description Cloud account name */
|
|
38225
|
+
name: string;
|
|
38226
|
+
};
|
|
38227
|
+
cookie?: never;
|
|
38228
|
+
};
|
|
38229
|
+
requestBody?: never;
|
|
38230
|
+
responses: {
|
|
38231
|
+
/** @description OK */
|
|
38232
|
+
200: {
|
|
38233
|
+
headers: {
|
|
38234
|
+
[name: string]: unknown;
|
|
38235
|
+
};
|
|
38236
|
+
content: {
|
|
38237
|
+
"application/json": components["schemas"]["GetBillingDetailsOutputBody"];
|
|
38238
|
+
};
|
|
38239
|
+
};
|
|
38240
|
+
/** @description Error */
|
|
38241
|
+
default: {
|
|
38242
|
+
headers: {
|
|
38243
|
+
[name: string]: unknown;
|
|
38244
|
+
};
|
|
38245
|
+
content: {
|
|
38246
|
+
"application/json": components["schemas"]["Error"];
|
|
38247
|
+
};
|
|
38248
|
+
};
|
|
38249
|
+
};
|
|
38250
|
+
};
|
|
36505
38251
|
"patch-cloud-account-billing-last-update": {
|
|
36506
38252
|
parameters: {
|
|
36507
38253
|
query?: never;
|
|
@@ -37516,7 +39262,7 @@ export interface operations {
|
|
|
37516
39262
|
/** @description Case-insensitive search across actor username, target name, and request ID; an exact event or session id also matches. */
|
|
37517
39263
|
search?: string;
|
|
37518
39264
|
/** @description Export format. */
|
|
37519
|
-
format?: "csv" | "json";
|
|
39265
|
+
format?: "csv" | "json" | "text";
|
|
37520
39266
|
};
|
|
37521
39267
|
header?: never;
|
|
37522
39268
|
path: {
|
|
@@ -38450,7 +40196,7 @@ export interface operations {
|
|
|
38450
40196
|
};
|
|
38451
40197
|
requestBody: {
|
|
38452
40198
|
content: {
|
|
38453
|
-
"application/json": components["schemas"]["
|
|
40199
|
+
"application/json": components["schemas"]["NamespaceBillingBody"];
|
|
38454
40200
|
};
|
|
38455
40201
|
};
|
|
38456
40202
|
responses: {
|
|
@@ -39124,14 +40870,14 @@ export interface operations {
|
|
|
39124
40870
|
path: {
|
|
39125
40871
|
/** @description The name of the organization. */
|
|
39126
40872
|
organization: string;
|
|
39127
|
-
/** @description The
|
|
40873
|
+
/** @description The infrastructure name */
|
|
39128
40874
|
infraName: string;
|
|
39129
40875
|
};
|
|
39130
40876
|
cookie?: never;
|
|
39131
40877
|
};
|
|
39132
40878
|
requestBody: {
|
|
39133
40879
|
content: {
|
|
39134
|
-
"application/json": components["schemas"]["
|
|
40880
|
+
"application/json": components["schemas"]["CostTrackingRatesBody"];
|
|
39135
40881
|
};
|
|
39136
40882
|
};
|
|
39137
40883
|
responses: {
|
|
@@ -39141,7 +40887,7 @@ export interface operations {
|
|
|
39141
40887
|
[name: string]: unknown;
|
|
39142
40888
|
};
|
|
39143
40889
|
content: {
|
|
39144
|
-
"application/json": components["schemas"]["
|
|
40890
|
+
"application/json": components["schemas"]["CostTrackingRatesBody"];
|
|
39145
40891
|
};
|
|
39146
40892
|
};
|
|
39147
40893
|
/** @description Error */
|
|
@@ -43087,6 +44833,42 @@ export interface operations {
|
|
|
43087
44833
|
};
|
|
43088
44834
|
};
|
|
43089
44835
|
};
|
|
44836
|
+
"set-user-active": {
|
|
44837
|
+
parameters: {
|
|
44838
|
+
query?: never;
|
|
44839
|
+
header?: never;
|
|
44840
|
+
path: {
|
|
44841
|
+
/** @description The name of the organization. */
|
|
44842
|
+
organization: string;
|
|
44843
|
+
/** @description Username of the target user. */
|
|
44844
|
+
user: string;
|
|
44845
|
+
};
|
|
44846
|
+
cookie?: never;
|
|
44847
|
+
};
|
|
44848
|
+
requestBody: {
|
|
44849
|
+
content: {
|
|
44850
|
+
"application/json": components["schemas"]["SetActiveInputBody"];
|
|
44851
|
+
};
|
|
44852
|
+
};
|
|
44853
|
+
responses: {
|
|
44854
|
+
/** @description No Content */
|
|
44855
|
+
204: {
|
|
44856
|
+
headers: {
|
|
44857
|
+
[name: string]: unknown;
|
|
44858
|
+
};
|
|
44859
|
+
content?: never;
|
|
44860
|
+
};
|
|
44861
|
+
/** @description Error */
|
|
44862
|
+
default: {
|
|
44863
|
+
headers: {
|
|
44864
|
+
[name: string]: unknown;
|
|
44865
|
+
};
|
|
44866
|
+
content: {
|
|
44867
|
+
"application/json": components["schemas"]["Error"];
|
|
44868
|
+
};
|
|
44869
|
+
};
|
|
44870
|
+
};
|
|
44871
|
+
};
|
|
43090
44872
|
"set-user-admin": {
|
|
43091
44873
|
parameters: {
|
|
43092
44874
|
query?: never;
|
|
@@ -43305,7 +45087,49 @@ export interface operations {
|
|
|
43305
45087
|
};
|
|
43306
45088
|
};
|
|
43307
45089
|
};
|
|
43308
|
-
"attach-ai-provider-bucket": {
|
|
45090
|
+
"attach-ai-provider-bucket": {
|
|
45091
|
+
parameters: {
|
|
45092
|
+
query?: never;
|
|
45093
|
+
header?: never;
|
|
45094
|
+
path: {
|
|
45095
|
+
/** @description The name of the organization. */
|
|
45096
|
+
organization: string;
|
|
45097
|
+
/** @description Username of the target user. */
|
|
45098
|
+
user: string;
|
|
45099
|
+
/** @description AI provider name */
|
|
45100
|
+
name: string;
|
|
45101
|
+
/** @description Storage bucket infrastructure ID */
|
|
45102
|
+
bucketId: string;
|
|
45103
|
+
};
|
|
45104
|
+
cookie?: never;
|
|
45105
|
+
};
|
|
45106
|
+
requestBody: {
|
|
45107
|
+
content: {
|
|
45108
|
+
"application/json": components["schemas"]["AttachBucketInputBody"];
|
|
45109
|
+
};
|
|
45110
|
+
};
|
|
45111
|
+
responses: {
|
|
45112
|
+
/** @description OK */
|
|
45113
|
+
200: {
|
|
45114
|
+
headers: {
|
|
45115
|
+
[name: string]: unknown;
|
|
45116
|
+
};
|
|
45117
|
+
content: {
|
|
45118
|
+
"application/json": components["schemas"]["AiProviderResponse"];
|
|
45119
|
+
};
|
|
45120
|
+
};
|
|
45121
|
+
/** @description Error */
|
|
45122
|
+
default: {
|
|
45123
|
+
headers: {
|
|
45124
|
+
[name: string]: unknown;
|
|
45125
|
+
};
|
|
45126
|
+
content: {
|
|
45127
|
+
"application/json": components["schemas"]["Error"];
|
|
45128
|
+
};
|
|
45129
|
+
};
|
|
45130
|
+
};
|
|
45131
|
+
};
|
|
45132
|
+
"detach-ai-provider-bucket": {
|
|
43309
45133
|
parameters: {
|
|
43310
45134
|
query?: never;
|
|
43311
45135
|
header?: never;
|
|
@@ -43321,11 +45145,7 @@ export interface operations {
|
|
|
43321
45145
|
};
|
|
43322
45146
|
cookie?: never;
|
|
43323
45147
|
};
|
|
43324
|
-
requestBody
|
|
43325
|
-
content: {
|
|
43326
|
-
"application/json": components["schemas"]["AttachBucketInputBody"];
|
|
43327
|
-
};
|
|
43328
|
-
};
|
|
45148
|
+
requestBody?: never;
|
|
43329
45149
|
responses: {
|
|
43330
45150
|
/** @description OK */
|
|
43331
45151
|
200: {
|
|
@@ -43347,7 +45167,7 @@ export interface operations {
|
|
|
43347
45167
|
};
|
|
43348
45168
|
};
|
|
43349
45169
|
};
|
|
43350
|
-
"
|
|
45170
|
+
"reconnect-copilot-provider": {
|
|
43351
45171
|
parameters: {
|
|
43352
45172
|
query?: never;
|
|
43353
45173
|
header?: never;
|
|
@@ -43356,10 +45176,8 @@ export interface operations {
|
|
|
43356
45176
|
organization: string;
|
|
43357
45177
|
/** @description Username of the target user. */
|
|
43358
45178
|
user: string;
|
|
43359
|
-
/** @description
|
|
45179
|
+
/** @description Copilot provider name */
|
|
43360
45180
|
name: string;
|
|
43361
|
-
/** @description Storage bucket infrastructure ID */
|
|
43362
|
-
bucketId: string;
|
|
43363
45181
|
};
|
|
43364
45182
|
cookie?: never;
|
|
43365
45183
|
};
|
|
@@ -44460,6 +46278,42 @@ export interface operations {
|
|
|
44460
46278
|
};
|
|
44461
46279
|
};
|
|
44462
46280
|
};
|
|
46281
|
+
"set-user-billing-admin": {
|
|
46282
|
+
parameters: {
|
|
46283
|
+
query?: never;
|
|
46284
|
+
header?: never;
|
|
46285
|
+
path: {
|
|
46286
|
+
/** @description Organization name */
|
|
46287
|
+
organization: string;
|
|
46288
|
+
/** @description Username of the user to grant or revoke billing admin */
|
|
46289
|
+
user: string;
|
|
46290
|
+
};
|
|
46291
|
+
cookie?: never;
|
|
46292
|
+
};
|
|
46293
|
+
requestBody: {
|
|
46294
|
+
content: {
|
|
46295
|
+
"application/json": components["schemas"]["SetBillingAdminInputBody"];
|
|
46296
|
+
};
|
|
46297
|
+
};
|
|
46298
|
+
responses: {
|
|
46299
|
+
/** @description No Content */
|
|
46300
|
+
204: {
|
|
46301
|
+
headers: {
|
|
46302
|
+
[name: string]: unknown;
|
|
46303
|
+
};
|
|
46304
|
+
content?: never;
|
|
46305
|
+
};
|
|
46306
|
+
/** @description Error */
|
|
46307
|
+
default: {
|
|
46308
|
+
headers: {
|
|
46309
|
+
[name: string]: unknown;
|
|
46310
|
+
};
|
|
46311
|
+
content: {
|
|
46312
|
+
"application/json": components["schemas"]["Error"];
|
|
46313
|
+
};
|
|
46314
|
+
};
|
|
46315
|
+
};
|
|
46316
|
+
};
|
|
44463
46317
|
"get-cluster": {
|
|
44464
46318
|
parameters: {
|
|
44465
46319
|
query?: never;
|
|
@@ -45022,6 +46876,82 @@ export interface operations {
|
|
|
45022
46876
|
};
|
|
45023
46877
|
};
|
|
45024
46878
|
};
|
|
46879
|
+
"attach-cluster-disk": {
|
|
46880
|
+
parameters: {
|
|
46881
|
+
query?: never;
|
|
46882
|
+
header?: never;
|
|
46883
|
+
path: {
|
|
46884
|
+
/** @description The name of the organization. */
|
|
46885
|
+
organization: string;
|
|
46886
|
+
/** @description The username of the user that owns the cluster */
|
|
46887
|
+
user: string;
|
|
46888
|
+
/** @description The cluster name */
|
|
46889
|
+
clusterName: string;
|
|
46890
|
+
};
|
|
46891
|
+
cookie?: never;
|
|
46892
|
+
};
|
|
46893
|
+
requestBody: {
|
|
46894
|
+
content: {
|
|
46895
|
+
"application/json": components["schemas"]["AttachClusterDiskBody"];
|
|
46896
|
+
};
|
|
46897
|
+
};
|
|
46898
|
+
responses: {
|
|
46899
|
+
/** @description OK */
|
|
46900
|
+
200: {
|
|
46901
|
+
headers: {
|
|
46902
|
+
[name: string]: unknown;
|
|
46903
|
+
};
|
|
46904
|
+
content: {
|
|
46905
|
+
"application/json": components["schemas"]["ClusterDiskAttachment"];
|
|
46906
|
+
};
|
|
46907
|
+
};
|
|
46908
|
+
/** @description Error */
|
|
46909
|
+
default: {
|
|
46910
|
+
headers: {
|
|
46911
|
+
[name: string]: unknown;
|
|
46912
|
+
};
|
|
46913
|
+
content: {
|
|
46914
|
+
"application/json": components["schemas"]["Error"];
|
|
46915
|
+
};
|
|
46916
|
+
};
|
|
46917
|
+
};
|
|
46918
|
+
};
|
|
46919
|
+
"detach-cluster-disk": {
|
|
46920
|
+
parameters: {
|
|
46921
|
+
query?: never;
|
|
46922
|
+
header?: never;
|
|
46923
|
+
path: {
|
|
46924
|
+
/** @description The name of the organization. */
|
|
46925
|
+
organization: string;
|
|
46926
|
+
/** @description The username of the user that owns the cluster */
|
|
46927
|
+
user: string;
|
|
46928
|
+
/** @description The cluster name */
|
|
46929
|
+
clusterName: string;
|
|
46930
|
+
/** @description The id of the attached persistent disk */
|
|
46931
|
+
storageId: string;
|
|
46932
|
+
};
|
|
46933
|
+
cookie?: never;
|
|
46934
|
+
};
|
|
46935
|
+
requestBody?: never;
|
|
46936
|
+
responses: {
|
|
46937
|
+
/** @description No Content */
|
|
46938
|
+
204: {
|
|
46939
|
+
headers: {
|
|
46940
|
+
[name: string]: unknown;
|
|
46941
|
+
};
|
|
46942
|
+
content?: never;
|
|
46943
|
+
};
|
|
46944
|
+
/** @description Error */
|
|
46945
|
+
default: {
|
|
46946
|
+
headers: {
|
|
46947
|
+
[name: string]: unknown;
|
|
46948
|
+
};
|
|
46949
|
+
content: {
|
|
46950
|
+
"application/json": components["schemas"]["Error"];
|
|
46951
|
+
};
|
|
46952
|
+
};
|
|
46953
|
+
};
|
|
46954
|
+
};
|
|
45025
46955
|
"delete-elastic-cluster-icon": {
|
|
45026
46956
|
parameters: {
|
|
45027
46957
|
query?: never;
|
|
@@ -45252,6 +47182,40 @@ export interface operations {
|
|
|
45252
47182
|
};
|
|
45253
47183
|
};
|
|
45254
47184
|
};
|
|
47185
|
+
"provision-cluster": {
|
|
47186
|
+
parameters: {
|
|
47187
|
+
query?: never;
|
|
47188
|
+
header?: never;
|
|
47189
|
+
path: {
|
|
47190
|
+
/** @description The name of the organization. */
|
|
47191
|
+
organization: string;
|
|
47192
|
+
/** @description Username of the target user. */
|
|
47193
|
+
user: string;
|
|
47194
|
+
/** @description The name of the cluster to provision */
|
|
47195
|
+
clusterName: string;
|
|
47196
|
+
};
|
|
47197
|
+
cookie?: never;
|
|
47198
|
+
};
|
|
47199
|
+
requestBody?: never;
|
|
47200
|
+
responses: {
|
|
47201
|
+
/** @description No Content */
|
|
47202
|
+
204: {
|
|
47203
|
+
headers: {
|
|
47204
|
+
[name: string]: unknown;
|
|
47205
|
+
};
|
|
47206
|
+
content?: never;
|
|
47207
|
+
};
|
|
47208
|
+
/** @description Error */
|
|
47209
|
+
default: {
|
|
47210
|
+
headers: {
|
|
47211
|
+
[name: string]: unknown;
|
|
47212
|
+
};
|
|
47213
|
+
content: {
|
|
47214
|
+
"application/json": components["schemas"]["Error"];
|
|
47215
|
+
};
|
|
47216
|
+
};
|
|
47217
|
+
};
|
|
47218
|
+
};
|
|
45255
47219
|
"resume-cluster": {
|
|
45256
47220
|
parameters: {
|
|
45257
47221
|
query?: never;
|
|
@@ -47646,58 +49610,136 @@ export interface operations {
|
|
|
47646
49610
|
};
|
|
47647
49611
|
};
|
|
47648
49612
|
};
|
|
47649
|
-
"replace-user-session": {
|
|
49613
|
+
"replace-user-session": {
|
|
49614
|
+
parameters: {
|
|
49615
|
+
query?: never;
|
|
49616
|
+
header?: never;
|
|
49617
|
+
path: {
|
|
49618
|
+
organization: string;
|
|
49619
|
+
user: string;
|
|
49620
|
+
name: string;
|
|
49621
|
+
};
|
|
49622
|
+
cookie?: never;
|
|
49623
|
+
};
|
|
49624
|
+
requestBody: {
|
|
49625
|
+
content: {
|
|
49626
|
+
"application/json": components["schemas"]["PutSessionBody"];
|
|
49627
|
+
};
|
|
49628
|
+
};
|
|
49629
|
+
responses: {
|
|
49630
|
+
/** @description OK */
|
|
49631
|
+
200: {
|
|
49632
|
+
headers: {
|
|
49633
|
+
[name: string]: unknown;
|
|
49634
|
+
};
|
|
49635
|
+
content: {
|
|
49636
|
+
"application/json": components["schemas"]["Session"];
|
|
49637
|
+
};
|
|
49638
|
+
};
|
|
49639
|
+
/** @description Error */
|
|
49640
|
+
default: {
|
|
49641
|
+
headers: {
|
|
49642
|
+
[name: string]: unknown;
|
|
49643
|
+
};
|
|
49644
|
+
content: {
|
|
49645
|
+
"application/json": components["schemas"]["Error"];
|
|
49646
|
+
};
|
|
49647
|
+
};
|
|
49648
|
+
};
|
|
49649
|
+
};
|
|
49650
|
+
"delete-user-session": {
|
|
49651
|
+
parameters: {
|
|
49652
|
+
query?: never;
|
|
49653
|
+
header?: never;
|
|
49654
|
+
path: {
|
|
49655
|
+
/** @description The name of the organization. */
|
|
49656
|
+
organization: string;
|
|
49657
|
+
/** @description Username of the target user. */
|
|
49658
|
+
user: string;
|
|
49659
|
+
/** @description Session name. */
|
|
49660
|
+
name: string;
|
|
49661
|
+
};
|
|
49662
|
+
cookie?: never;
|
|
49663
|
+
};
|
|
49664
|
+
requestBody?: never;
|
|
49665
|
+
responses: {
|
|
49666
|
+
/** @description No Content */
|
|
49667
|
+
204: {
|
|
49668
|
+
headers: {
|
|
49669
|
+
[name: string]: unknown;
|
|
49670
|
+
};
|
|
49671
|
+
content?: never;
|
|
49672
|
+
};
|
|
49673
|
+
/** @description Error */
|
|
49674
|
+
default: {
|
|
49675
|
+
headers: {
|
|
49676
|
+
[name: string]: unknown;
|
|
49677
|
+
};
|
|
49678
|
+
content: {
|
|
49679
|
+
"application/json": components["schemas"]["Error"];
|
|
49680
|
+
};
|
|
49681
|
+
};
|
|
49682
|
+
};
|
|
49683
|
+
};
|
|
49684
|
+
"update-user-session": {
|
|
49685
|
+
parameters: {
|
|
49686
|
+
query?: never;
|
|
49687
|
+
header?: never;
|
|
49688
|
+
path: {
|
|
49689
|
+
/** @description The name of the organization. */
|
|
49690
|
+
organization: string;
|
|
49691
|
+
/** @description Username of the target user. */
|
|
49692
|
+
user: string;
|
|
49693
|
+
/** @description Session name. */
|
|
49694
|
+
name: string;
|
|
49695
|
+
};
|
|
49696
|
+
cookie?: never;
|
|
49697
|
+
};
|
|
49698
|
+
requestBody: {
|
|
49699
|
+
content: {
|
|
49700
|
+
"application/json": components["schemas"]["PatchSessionBody"];
|
|
49701
|
+
};
|
|
49702
|
+
};
|
|
49703
|
+
responses: {
|
|
49704
|
+
/** @description OK */
|
|
49705
|
+
200: {
|
|
49706
|
+
headers: {
|
|
49707
|
+
[name: string]: unknown;
|
|
49708
|
+
};
|
|
49709
|
+
content: {
|
|
49710
|
+
"application/json": components["schemas"]["Session"];
|
|
49711
|
+
};
|
|
49712
|
+
};
|
|
49713
|
+
/** @description Error */
|
|
49714
|
+
default: {
|
|
49715
|
+
headers: {
|
|
49716
|
+
[name: string]: unknown;
|
|
49717
|
+
};
|
|
49718
|
+
content: {
|
|
49719
|
+
"application/json": components["schemas"]["Error"];
|
|
49720
|
+
};
|
|
49721
|
+
};
|
|
49722
|
+
};
|
|
49723
|
+
};
|
|
49724
|
+
"update-user-session-access": {
|
|
47650
49725
|
parameters: {
|
|
47651
49726
|
query?: never;
|
|
47652
49727
|
header?: never;
|
|
47653
49728
|
path: {
|
|
49729
|
+
/** @description The name of the organization. */
|
|
47654
49730
|
organization: string;
|
|
49731
|
+
/** @description Username of the target user. */
|
|
47655
49732
|
user: string;
|
|
49733
|
+
/** @description Session name. */
|
|
47656
49734
|
name: string;
|
|
47657
49735
|
};
|
|
47658
49736
|
cookie?: never;
|
|
47659
49737
|
};
|
|
47660
49738
|
requestBody: {
|
|
47661
49739
|
content: {
|
|
47662
|
-
"application/json": components["schemas"]["
|
|
47663
|
-
};
|
|
47664
|
-
};
|
|
47665
|
-
responses: {
|
|
47666
|
-
/** @description OK */
|
|
47667
|
-
200: {
|
|
47668
|
-
headers: {
|
|
47669
|
-
[name: string]: unknown;
|
|
47670
|
-
};
|
|
47671
|
-
content: {
|
|
47672
|
-
"application/json": components["schemas"]["Session"];
|
|
47673
|
-
};
|
|
47674
|
-
};
|
|
47675
|
-
/** @description Error */
|
|
47676
|
-
default: {
|
|
47677
|
-
headers: {
|
|
47678
|
-
[name: string]: unknown;
|
|
47679
|
-
};
|
|
47680
|
-
content: {
|
|
47681
|
-
"application/json": components["schemas"]["Error"];
|
|
47682
|
-
};
|
|
47683
|
-
};
|
|
47684
|
-
};
|
|
47685
|
-
};
|
|
47686
|
-
"delete-user-session": {
|
|
47687
|
-
parameters: {
|
|
47688
|
-
query?: never;
|
|
47689
|
-
header?: never;
|
|
47690
|
-
path: {
|
|
47691
|
-
/** @description The name of the organization. */
|
|
47692
|
-
organization: string;
|
|
47693
|
-
/** @description Username of the target user. */
|
|
47694
|
-
user: string;
|
|
47695
|
-
/** @description Session name. */
|
|
47696
|
-
name: string;
|
|
49740
|
+
"application/json": components["schemas"]["PostSessionAccessBody"];
|
|
47697
49741
|
};
|
|
47698
|
-
cookie?: never;
|
|
47699
49742
|
};
|
|
47700
|
-
requestBody?: never;
|
|
47701
49743
|
responses: {
|
|
47702
49744
|
/** @description No Content */
|
|
47703
49745
|
204: {
|
|
@@ -47717,7 +49759,7 @@ export interface operations {
|
|
|
47717
49759
|
};
|
|
47718
49760
|
};
|
|
47719
49761
|
};
|
|
47720
|
-
"
|
|
49762
|
+
"get-user-session-credentials": {
|
|
47721
49763
|
parameters: {
|
|
47722
49764
|
query?: never;
|
|
47723
49765
|
header?: never;
|
|
@@ -47731,19 +49773,16 @@ export interface operations {
|
|
|
47731
49773
|
};
|
|
47732
49774
|
cookie?: never;
|
|
47733
49775
|
};
|
|
47734
|
-
requestBody
|
|
47735
|
-
content: {
|
|
47736
|
-
"application/json": components["schemas"]["PatchSessionBody"];
|
|
47737
|
-
};
|
|
47738
|
-
};
|
|
49776
|
+
requestBody?: never;
|
|
47739
49777
|
responses: {
|
|
47740
49778
|
/** @description OK */
|
|
47741
49779
|
200: {
|
|
47742
49780
|
headers: {
|
|
49781
|
+
"Cache-Control"?: string;
|
|
47743
49782
|
[name: string]: unknown;
|
|
47744
49783
|
};
|
|
47745
49784
|
content: {
|
|
47746
|
-
"application/json": components["schemas"]["
|
|
49785
|
+
"application/json": components["schemas"]["SessionCredentials"];
|
|
47747
49786
|
};
|
|
47748
49787
|
};
|
|
47749
49788
|
/** @description Error */
|
|
@@ -47757,7 +49796,7 @@ export interface operations {
|
|
|
47757
49796
|
};
|
|
47758
49797
|
};
|
|
47759
49798
|
};
|
|
47760
|
-
"
|
|
49799
|
+
"delete-session-icon": {
|
|
47761
49800
|
parameters: {
|
|
47762
49801
|
query?: never;
|
|
47763
49802
|
header?: never;
|
|
@@ -47771,11 +49810,7 @@ export interface operations {
|
|
|
47771
49810
|
};
|
|
47772
49811
|
cookie?: never;
|
|
47773
49812
|
};
|
|
47774
|
-
requestBody
|
|
47775
|
-
content: {
|
|
47776
|
-
"application/json": components["schemas"]["PostSessionAccessBody"];
|
|
47777
|
-
};
|
|
47778
|
-
};
|
|
49813
|
+
requestBody?: never;
|
|
47779
49814
|
responses: {
|
|
47780
49815
|
/** @description No Content */
|
|
47781
49816
|
204: {
|
|
@@ -47795,7 +49830,7 @@ export interface operations {
|
|
|
47795
49830
|
};
|
|
47796
49831
|
};
|
|
47797
49832
|
};
|
|
47798
|
-
"
|
|
49833
|
+
"set-session-icon": {
|
|
47799
49834
|
parameters: {
|
|
47800
49835
|
query?: never;
|
|
47801
49836
|
header?: never;
|
|
@@ -47809,51 +49844,20 @@ export interface operations {
|
|
|
47809
49844
|
};
|
|
47810
49845
|
cookie?: never;
|
|
47811
49846
|
};
|
|
47812
|
-
requestBody
|
|
49847
|
+
requestBody: {
|
|
49848
|
+
content: {
|
|
49849
|
+
"application/json": components["schemas"]["IconRef"];
|
|
49850
|
+
};
|
|
49851
|
+
};
|
|
47813
49852
|
responses: {
|
|
47814
49853
|
/** @description OK */
|
|
47815
49854
|
200: {
|
|
47816
|
-
headers: {
|
|
47817
|
-
"Cache-Control"?: string;
|
|
47818
|
-
[name: string]: unknown;
|
|
47819
|
-
};
|
|
47820
|
-
content: {
|
|
47821
|
-
"application/json": components["schemas"]["SessionCredentials"];
|
|
47822
|
-
};
|
|
47823
|
-
};
|
|
47824
|
-
/** @description Error */
|
|
47825
|
-
default: {
|
|
47826
49855
|
headers: {
|
|
47827
49856
|
[name: string]: unknown;
|
|
47828
49857
|
};
|
|
47829
49858
|
content: {
|
|
47830
|
-
"application/json": components["schemas"]["
|
|
47831
|
-
};
|
|
47832
|
-
};
|
|
47833
|
-
};
|
|
47834
|
-
};
|
|
47835
|
-
"delete-session-icon": {
|
|
47836
|
-
parameters: {
|
|
47837
|
-
query?: never;
|
|
47838
|
-
header?: never;
|
|
47839
|
-
path: {
|
|
47840
|
-
/** @description The name of the organization. */
|
|
47841
|
-
organization: string;
|
|
47842
|
-
/** @description Username of the target user. */
|
|
47843
|
-
user: string;
|
|
47844
|
-
/** @description Session name. */
|
|
47845
|
-
name: string;
|
|
47846
|
-
};
|
|
47847
|
-
cookie?: never;
|
|
47848
|
-
};
|
|
47849
|
-
requestBody?: never;
|
|
47850
|
-
responses: {
|
|
47851
|
-
/** @description No Content */
|
|
47852
|
-
204: {
|
|
47853
|
-
headers: {
|
|
47854
|
-
[name: string]: unknown;
|
|
49859
|
+
"application/json": components["schemas"]["SetSessionIconOutputBody"];
|
|
47855
49860
|
};
|
|
47856
|
-
content?: never;
|
|
47857
49861
|
};
|
|
47858
49862
|
/** @description Error */
|
|
47859
49863
|
default: {
|
|
@@ -47866,7 +49870,7 @@ export interface operations {
|
|
|
47866
49870
|
};
|
|
47867
49871
|
};
|
|
47868
49872
|
};
|
|
47869
|
-
"
|
|
49873
|
+
"rename-user-session": {
|
|
47870
49874
|
parameters: {
|
|
47871
49875
|
query?: never;
|
|
47872
49876
|
header?: never;
|
|
@@ -47882,18 +49886,16 @@ export interface operations {
|
|
|
47882
49886
|
};
|
|
47883
49887
|
requestBody: {
|
|
47884
49888
|
content: {
|
|
47885
|
-
"application/json": components["schemas"]["
|
|
49889
|
+
"application/json": components["schemas"]["RenameSessionBody"];
|
|
47886
49890
|
};
|
|
47887
49891
|
};
|
|
47888
49892
|
responses: {
|
|
47889
|
-
/** @description
|
|
47890
|
-
|
|
49893
|
+
/** @description No Content */
|
|
49894
|
+
204: {
|
|
47891
49895
|
headers: {
|
|
47892
49896
|
[name: string]: unknown;
|
|
47893
49897
|
};
|
|
47894
|
-
content
|
|
47895
|
-
"application/json": components["schemas"]["SetSessionIconOutputBody"];
|
|
47896
|
-
};
|
|
49898
|
+
content?: never;
|
|
47897
49899
|
};
|
|
47898
49900
|
/** @description Error */
|
|
47899
49901
|
default: {
|
|
@@ -48647,7 +50649,7 @@ export interface operations {
|
|
|
48647
50649
|
user: string;
|
|
48648
50650
|
/** @description The name of the storage resource. */
|
|
48649
50651
|
name: string;
|
|
48650
|
-
/** @description The type of storage
|
|
50652
|
+
/** @description The type of the storage. */
|
|
48651
50653
|
type: "aws-disk" | "aws-lustre" | "aws-efs" | "aws-bucket" | "azure-bucket" | "azure-disk" | "azure-azfiles" | "azure-managedlustre" | "azure-netappfiles" | "google-disk" | "google-bucket" | "google-filestore" | "google-managedlustre" | "oracle-bucket" | "oracle-oraclefs";
|
|
48652
50654
|
};
|
|
48653
50655
|
cookie?: never;
|
|
@@ -48672,6 +50674,84 @@ export interface operations {
|
|
|
48672
50674
|
};
|
|
48673
50675
|
};
|
|
48674
50676
|
};
|
|
50677
|
+
"delete-storage-icon": {
|
|
50678
|
+
parameters: {
|
|
50679
|
+
query?: never;
|
|
50680
|
+
header?: never;
|
|
50681
|
+
path: {
|
|
50682
|
+
/** @description The name of the organization. */
|
|
50683
|
+
organization: string;
|
|
50684
|
+
/** @description Username of the target user. */
|
|
50685
|
+
user: string;
|
|
50686
|
+
/** @description The name of the storage resource. */
|
|
50687
|
+
name: string;
|
|
50688
|
+
/** @description The type of the storage. */
|
|
50689
|
+
type: "aws-disk" | "aws-lustre" | "aws-efs" | "aws-bucket" | "azure-bucket" | "azure-disk" | "azure-azfiles" | "azure-managedlustre" | "azure-netappfiles" | "google-disk" | "google-bucket" | "google-filestore" | "google-managedlustre" | "oracle-bucket" | "oracle-oraclefs";
|
|
50690
|
+
};
|
|
50691
|
+
cookie?: never;
|
|
50692
|
+
};
|
|
50693
|
+
requestBody?: never;
|
|
50694
|
+
responses: {
|
|
50695
|
+
/** @description No Content */
|
|
50696
|
+
204: {
|
|
50697
|
+
headers: {
|
|
50698
|
+
[name: string]: unknown;
|
|
50699
|
+
};
|
|
50700
|
+
content?: never;
|
|
50701
|
+
};
|
|
50702
|
+
/** @description Error */
|
|
50703
|
+
default: {
|
|
50704
|
+
headers: {
|
|
50705
|
+
[name: string]: unknown;
|
|
50706
|
+
};
|
|
50707
|
+
content: {
|
|
50708
|
+
"application/json": components["schemas"]["Error"];
|
|
50709
|
+
};
|
|
50710
|
+
};
|
|
50711
|
+
};
|
|
50712
|
+
};
|
|
50713
|
+
"set-storage-icon": {
|
|
50714
|
+
parameters: {
|
|
50715
|
+
query?: never;
|
|
50716
|
+
header?: never;
|
|
50717
|
+
path: {
|
|
50718
|
+
/** @description The name of the organization. */
|
|
50719
|
+
organization: string;
|
|
50720
|
+
/** @description Username of the target user. */
|
|
50721
|
+
user: string;
|
|
50722
|
+
/** @description The name of the storage resource. */
|
|
50723
|
+
name: string;
|
|
50724
|
+
/** @description The type of the storage. */
|
|
50725
|
+
type: "aws-disk" | "aws-lustre" | "aws-efs" | "aws-bucket" | "azure-bucket" | "azure-disk" | "azure-azfiles" | "azure-managedlustre" | "azure-netappfiles" | "google-disk" | "google-bucket" | "google-filestore" | "google-managedlustre" | "oracle-bucket" | "oracle-oraclefs";
|
|
50726
|
+
};
|
|
50727
|
+
cookie?: never;
|
|
50728
|
+
};
|
|
50729
|
+
requestBody: {
|
|
50730
|
+
content: {
|
|
50731
|
+
"application/json": components["schemas"]["IconRef"];
|
|
50732
|
+
};
|
|
50733
|
+
};
|
|
50734
|
+
responses: {
|
|
50735
|
+
/** @description OK */
|
|
50736
|
+
200: {
|
|
50737
|
+
headers: {
|
|
50738
|
+
[name: string]: unknown;
|
|
50739
|
+
};
|
|
50740
|
+
content: {
|
|
50741
|
+
"application/json": components["schemas"]["SetStorageIconOutputBody"];
|
|
50742
|
+
};
|
|
50743
|
+
};
|
|
50744
|
+
/** @description Error */
|
|
50745
|
+
default: {
|
|
50746
|
+
headers: {
|
|
50747
|
+
[name: string]: unknown;
|
|
50748
|
+
};
|
|
50749
|
+
content: {
|
|
50750
|
+
"application/json": components["schemas"]["Error"];
|
|
50751
|
+
};
|
|
50752
|
+
};
|
|
50753
|
+
};
|
|
50754
|
+
};
|
|
48675
50755
|
"get-organization-variables": {
|
|
48676
50756
|
parameters: {
|
|
48677
50757
|
query?: never;
|
|
@@ -50677,6 +52757,44 @@ export interface operations {
|
|
|
50677
52757
|
};
|
|
50678
52758
|
};
|
|
50679
52759
|
};
|
|
52760
|
+
"get-ai-integration-icon": {
|
|
52761
|
+
parameters: {
|
|
52762
|
+
query?: never;
|
|
52763
|
+
header?: {
|
|
52764
|
+
"If-None-Match"?: string;
|
|
52765
|
+
};
|
|
52766
|
+
path: {
|
|
52767
|
+
catalogEntryId: string;
|
|
52768
|
+
};
|
|
52769
|
+
cookie?: never;
|
|
52770
|
+
};
|
|
52771
|
+
requestBody?: never;
|
|
52772
|
+
responses: {
|
|
52773
|
+
/** @description OK */
|
|
52774
|
+
200: {
|
|
52775
|
+
headers: {
|
|
52776
|
+
"Cache-Control"?: string;
|
|
52777
|
+
"Content-Type"?: string;
|
|
52778
|
+
ETag?: string;
|
|
52779
|
+
Location?: string;
|
|
52780
|
+
"X-Content-Type-Options"?: string;
|
|
52781
|
+
[name: string]: unknown;
|
|
52782
|
+
};
|
|
52783
|
+
content: {
|
|
52784
|
+
"application/json": string;
|
|
52785
|
+
};
|
|
52786
|
+
};
|
|
52787
|
+
/** @description Error */
|
|
52788
|
+
default: {
|
|
52789
|
+
headers: {
|
|
52790
|
+
[name: string]: unknown;
|
|
52791
|
+
};
|
|
52792
|
+
content: {
|
|
52793
|
+
"application/json": components["schemas"]["Error"];
|
|
52794
|
+
};
|
|
52795
|
+
};
|
|
52796
|
+
};
|
|
52797
|
+
};
|
|
50680
52798
|
"post-provision-status": {
|
|
50681
52799
|
parameters: {
|
|
50682
52800
|
query?: never;
|
|
@@ -52455,6 +54573,38 @@ export interface operations {
|
|
|
52455
54573
|
};
|
|
52456
54574
|
};
|
|
52457
54575
|
};
|
|
54576
|
+
"get-all-instances": {
|
|
54577
|
+
parameters: {
|
|
54578
|
+
query?: {
|
|
54579
|
+
/** @description Restrict to one organization (by name). */
|
|
54580
|
+
organization?: string;
|
|
54581
|
+
};
|
|
54582
|
+
header?: never;
|
|
54583
|
+
path?: never;
|
|
54584
|
+
cookie?: never;
|
|
54585
|
+
};
|
|
54586
|
+
requestBody?: never;
|
|
54587
|
+
responses: {
|
|
54588
|
+
/** @description OK */
|
|
54589
|
+
200: {
|
|
54590
|
+
headers: {
|
|
54591
|
+
[name: string]: unknown;
|
|
54592
|
+
};
|
|
54593
|
+
content: {
|
|
54594
|
+
"application/json": components["schemas"]["InstanceData"][] | null;
|
|
54595
|
+
};
|
|
54596
|
+
};
|
|
54597
|
+
/** @description Error */
|
|
54598
|
+
default: {
|
|
54599
|
+
headers: {
|
|
54600
|
+
[name: string]: unknown;
|
|
54601
|
+
};
|
|
54602
|
+
content: {
|
|
54603
|
+
"application/json": components["schemas"]["Error"];
|
|
54604
|
+
};
|
|
54605
|
+
};
|
|
54606
|
+
};
|
|
54607
|
+
};
|
|
52458
54608
|
"get-auth-session-deprecated": {
|
|
52459
54609
|
parameters: {
|
|
52460
54610
|
query?: never;
|
|
@@ -52522,6 +54672,35 @@ export interface operations {
|
|
|
52522
54672
|
};
|
|
52523
54673
|
};
|
|
52524
54674
|
};
|
|
54675
|
+
"get-user-instances": {
|
|
54676
|
+
parameters: {
|
|
54677
|
+
query?: never;
|
|
54678
|
+
header?: never;
|
|
54679
|
+
path?: never;
|
|
54680
|
+
cookie?: never;
|
|
54681
|
+
};
|
|
54682
|
+
requestBody?: never;
|
|
54683
|
+
responses: {
|
|
54684
|
+
/** @description OK */
|
|
54685
|
+
200: {
|
|
54686
|
+
headers: {
|
|
54687
|
+
[name: string]: unknown;
|
|
54688
|
+
};
|
|
54689
|
+
content: {
|
|
54690
|
+
"application/json": components["schemas"]["PoolInstances"][] | null;
|
|
54691
|
+
};
|
|
54692
|
+
};
|
|
54693
|
+
/** @description Error */
|
|
54694
|
+
default: {
|
|
54695
|
+
headers: {
|
|
54696
|
+
[name: string]: unknown;
|
|
54697
|
+
};
|
|
54698
|
+
content: {
|
|
54699
|
+
"application/json": components["schemas"]["Error"];
|
|
54700
|
+
};
|
|
54701
|
+
};
|
|
54702
|
+
};
|
|
54703
|
+
};
|
|
52525
54704
|
"create-ssh-public-key-legacy": {
|
|
52526
54705
|
parameters: {
|
|
52527
54706
|
query?: never;
|