@parallelworks/client 7.88.0 → 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.
@@ -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
- * > This is a platform-admin only route.
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
- * > This is a platform-admin only route.
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
- * > This is a platform-admin only route.
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 JSON.
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;
@@ -1061,6 +1087,158 @@ export interface paths {
1061
1087
  patch: operations["update-platform-report"];
1062
1088
  trace?: never;
1063
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
+ };
1064
1242
  "/api/admin/user-workspace/users/{user}/{type}/kill": {
1065
1243
  parameters: {
1066
1244
  query?: never;
@@ -1669,28 +1847,6 @@ export interface paths {
1669
1847
  patch?: never;
1670
1848
  trace?: never;
1671
1849
  };
1672
- "/api/auth/token/cluster-session": {
1673
- parameters: {
1674
- query?: never;
1675
- header?: never;
1676
- path?: never;
1677
- cookie?: never;
1678
- };
1679
- /**
1680
- * Get cluster session JWT token
1681
- * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
1682
- *
1683
- * Generates a JWT token for cluster session authentication.
1684
- */
1685
- get: operations["get-cluster-session-token"];
1686
- put?: never;
1687
- post?: never;
1688
- delete?: never;
1689
- options?: never;
1690
- head?: never;
1691
- patch?: never;
1692
- trace?: never;
1693
- };
1694
1850
  "/api/auth/token/oidc": {
1695
1851
  parameters: {
1696
1852
  query?: never;
@@ -1962,7 +2118,7 @@ export interface paths {
1962
2118
  * List Resource Events
1963
2119
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
1964
2120
  *
1965
- * List audit events for a single resource. Requires view access to the resource; payloads are admin-only.
2121
+ * List audit events for a single resource. Requires view access to the resource.
1966
2122
  */
1967
2123
  get: operations["list-resource-events"];
1968
2124
  put?: never;
@@ -1973,6 +2129,28 @@ export interface paths {
1973
2129
  patch?: never;
1974
2130
  trace?: never;
1975
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
+ };
1976
2154
  "/api/events/types": {
1977
2155
  parameters: {
1978
2156
  query?: never;
@@ -4271,6 +4449,28 @@ export interface paths {
4271
4449
  patch?: never;
4272
4450
  trace?: never;
4273
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
+ };
4274
4474
  "/api/organizations/{organization}/ai-providers/{name}/model-configs": {
4275
4475
  parameters: {
4276
4476
  query?: never;
@@ -4777,6 +4977,28 @@ export interface paths {
4777
4977
  patch: operations["update-organization-auth-method-ldap"];
4778
4978
  trace?: never;
4779
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
+ };
4780
5002
  "/api/organizations/{organization}/auth-methods/oidc": {
4781
5003
  parameters: {
4782
5004
  query?: never;
@@ -5017,6 +5239,50 @@ export interface paths {
5017
5239
  patch?: never;
5018
5240
  trace?: never;
5019
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
+ };
5020
5286
  "/api/organizations/{organization}/cloud-accounts/{name}/billing/last-update": {
5021
5287
  parameters: {
5022
5288
  query?: never;
@@ -5494,7 +5760,7 @@ export interface paths {
5494
5760
  * Export Organization Events
5495
5761
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
5496
5762
  *
5497
- * Stream the organization's audit events as CSV or JSON. Requires organization admin.
5763
+ * Stream the organization's audit events as CSV, JSON, or plain text. Requires organization admin.
5498
5764
  */
5499
5765
  get: operations["export-organization-events"];
5500
5766
  put?: never;
@@ -6200,7 +6466,7 @@ export interface paths {
6200
6466
  * Enable or disable cost tracking
6201
6467
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
6202
6468
  *
6203
- * 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.
6204
6470
  */
6205
6471
  patch: operations["update-kubernetes-cost-tracking"];
6206
6472
  trace?: never;
@@ -6219,10 +6485,10 @@ export interface paths {
6219
6485
  options?: never;
6220
6486
  head?: never;
6221
6487
  /**
6222
- * Update cost tracking prices
6488
+ * Update cost tracking rates
6223
6489
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
6224
6490
  *
6225
- * Update CPU and memory prices for cost tracking calculations.
6491
+ * Sets the cluster-wide billing rates applied to every namespace with an allocation attached.
6226
6492
  */
6227
6493
  patch: operations["update-kubernetes-cost-tracking-prices"];
6228
6494
  trace?: never;
@@ -8025,6 +8291,28 @@ export interface paths {
8025
8291
  patch?: never;
8026
8292
  trace?: never;
8027
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
+ };
8028
8316
  "/api/organizations/{organization}/users/{user}/admin": {
8029
8317
  parameters: {
8030
8318
  query?: never;
@@ -8137,6 +8425,28 @@ export interface paths {
8137
8425
  patch?: never;
8138
8426
  trace?: never;
8139
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
+ };
8140
8450
  "/api/organizations/{organization}/users/{user}/ai-providers/{name}/deployments": {
8141
8451
  parameters: {
8142
8452
  query?: never;
@@ -8728,6 +9038,28 @@ export interface paths {
8728
9038
  patch?: never;
8729
9039
  trace?: never;
8730
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
+ };
8731
9063
  "/api/organizations/{organization}/users/{user}/clusters/{clusterName}": {
8732
9064
  parameters: {
8733
9065
  query?: never;
@@ -10440,6 +10772,28 @@ export interface paths {
10440
10772
  patch: operations["set-session-icon"];
10441
10773
  trace?: never;
10442
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
+ };
10443
10797
  "/api/organizations/{organization}/users/{user}/sessions/{name}/restart": {
10444
10798
  parameters: {
10445
10799
  query?: never;
@@ -10774,6 +11128,34 @@ export interface paths {
10774
11128
  patch?: never;
10775
11129
  trace?: never;
10776
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
+ };
10777
11159
  "/api/organizations/{organization}/variables": {
10778
11160
  parameters: {
10779
11161
  query?: never;
@@ -11095,9 +11477,7 @@ export interface paths {
11095
11477
  * Get all platform groups
11096
11478
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
11097
11479
  *
11098
- * > This is a platform-admin only route.
11099
- *
11100
- * 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.
11101
11481
  */
11102
11482
  get: operations["get-all-platform-groups"];
11103
11483
  put?: never;
@@ -11802,6 +12182,28 @@ export interface paths {
11802
12182
  patch?: never;
11803
12183
  trace?: never;
11804
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
+ };
11805
12207
  "/api/provisionstatus/{infraId}": {
11806
12208
  parameters: {
11807
12209
  query?: never;
@@ -12895,6 +13297,31 @@ export interface paths {
12895
13297
  patch?: never;
12896
13298
  trace?: never;
12897
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
+ };
12898
13325
  "/api/v2/auth/session": {
12899
13326
  parameters: {
12900
13327
  query?: never;
@@ -12940,6 +13367,28 @@ export interface paths {
12940
13367
  patch?: never;
12941
13368
  trace?: never;
12942
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
+ };
12943
13392
  "/api/v2/sshpublickeys": {
12944
13393
  parameters: {
12945
13394
  query?: never;
@@ -13816,6 +14265,10 @@ export interface components {
13816
14265
  AddDeploymentInputBody: {
13817
14266
  /** @description Model name to deploy on the existing Azure OpenAI account */
13818
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;
13819
14272
  };
13820
14273
  AddExistingVersionInputBody: {
13821
14274
  /** @description Desktop session settings. */
@@ -14088,6 +14541,8 @@ export interface components {
14088
14541
  AiProviderResponse: {
14089
14542
  /** @description Email of the connected ChatGPT account (codex provider) */
14090
14543
  accountEmail?: string;
14544
+ /** @description Login of the connected GitHub account (copilot provider) */
14545
+ accountLogin?: string;
14091
14546
  /** @description Attached storage bucket infrastructure ID */
14092
14547
  bucketId?: string;
14093
14548
  /** @description Attached storage bucket name */
@@ -14110,6 +14565,8 @@ export interface components {
14110
14565
  hasCaCertificate?: boolean;
14111
14566
  /** @description Unique identifier for the resource */
14112
14567
  id: string;
14568
+ /** @description Current icon configured on the provider's catalog entry */
14569
+ imageUrl?: string;
14113
14570
  /** @description Whether documents have been ingested */
14114
14571
  ingested: boolean;
14115
14572
  /** @description Whether TLS certificate verification is skipped */
@@ -14118,7 +14575,7 @@ export interface components {
14118
14575
  model?: string;
14119
14576
  /** @description Name of the AI provider */
14120
14577
  name: string;
14121
- /** @description ChatGPT subscription plan type (codex provider) */
14578
+ /** @description Subscription plan type (subscription providers) */
14122
14579
  planType?: string;
14123
14580
  /** @description Refresh interval for the AI provider */
14124
14581
  refreshInterval?: string;
@@ -14148,6 +14605,8 @@ export interface components {
14148
14605
  healthy?: boolean;
14149
14606
  /** @description Unique identifier for the AI provider */
14150
14607
  id: string;
14608
+ /** @description Current icon configured on the provider's catalog entry */
14609
+ imageUrl?: string;
14151
14610
  /** @description AI model name */
14152
14611
  model: string | null;
14153
14612
  /** @description Name of the AI provider */
@@ -14316,6 +14775,8 @@ export interface components {
14316
14775
  admin: boolean;
14317
14776
  /** @description Cache-buster etag for the user's avatar; empty when no custom avatar is set. */
14318
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;
14319
14780
  /**
14320
14781
  * @description Email address of the user.
14321
14782
  * @example jake.thayne@parallelworks.com
@@ -15599,6 +16060,29 @@ export interface components {
15599
16060
  */
15600
16061
  totalRootSnapshots: number;
15601
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
+ };
15602
16086
  BillingResponse: {
15603
16087
  id?: string;
15604
16088
  provisionedByOrg: boolean | null;
@@ -15890,8 +16374,6 @@ export interface components {
15890
16374
  BuiltinProviderResponse: {
15891
16375
  caCertificate?: string;
15892
16376
  cloudBoundary?: string;
15893
- /** @enum {string} */
15894
- credentialOwner: "organization" | "platform";
15895
16377
  /** @description First-class provider type implied by the entry's kind */
15896
16378
  csp: string;
15897
16379
  displayName: string;
@@ -15901,13 +16383,13 @@ export interface components {
15901
16383
  endpointPath: string;
15902
16384
  id: string;
15903
16385
  /** @enum {string} */
15904
- 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";
15905
16387
  /** @enum {string} */
15906
16388
  lifecycle: "draft" | "active" | "blocked" | "retired";
15907
16389
  /** @enum {string} */
15908
16390
  minimumTlsVersion: "1.2" | "1.3";
15909
16391
  /** @enum {string} */
15910
- protocol: "azure-openai" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
16392
+ protocol: "azure-openai" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
15911
16393
  region?: string;
15912
16394
  /** @description Connections carry a credential */
15913
16395
  requiresApiKey: boolean;
@@ -15917,20 +16399,18 @@ export interface components {
15917
16399
  CatalogEntryBody: {
15918
16400
  caCertificate?: string;
15919
16401
  cloudBoundary?: string;
15920
- /** @enum {string} */
15921
- credentialOwner: "organization" | "platform";
15922
16402
  displayName: string;
15923
16403
  endpointOrigin: string;
15924
16404
  endpointPath: string;
15925
16405
  id: string;
15926
16406
  /** @enum {string} */
15927
- 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";
15928
16408
  /** @enum {string} */
15929
16409
  lifecycle: "draft" | "active" | "blocked" | "retired";
15930
16410
  /** @enum {string} */
15931
16411
  minimumTlsVersion: "1.2" | "1.3";
15932
16412
  /** @enum {string} */
15933
- protocol: "azure-openai" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
16413
+ protocol: "azure-openai" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
15934
16414
  region?: string;
15935
16415
  /** @enum {string} */
15936
16416
  toolCallingMode?: "native" | "emulated" | "none";
@@ -15942,8 +16422,6 @@ export interface components {
15942
16422
  connectionCount: number;
15943
16423
  /** Format: date-time */
15944
16424
  createdAt: string;
15945
- /** @enum {string} */
15946
- credentialOwner: "organization" | "platform";
15947
16425
  /** @description First-class provider type implied by the entry's kind */
15948
16426
  csp: string;
15949
16427
  displayName: string;
@@ -15952,8 +16430,10 @@ export interface components {
15952
16430
  endpointOrigin: string;
15953
16431
  endpointPath: string;
15954
16432
  id: string;
16433
+ /** @description Admin-configured icon; empty for entries using the kind's built-in artwork */
16434
+ imageUrl?: string;
15955
16435
  /** @enum {string} */
15956
- 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";
15957
16437
  /** @enum {string} */
15958
16438
  lifecycle: "draft" | "active" | "blocked" | "retired";
15959
16439
  /** @enum {string} */
@@ -15962,7 +16442,7 @@ export interface components {
15962
16442
  modelCount: number;
15963
16443
  objectId: string;
15964
16444
  /** @enum {string} */
15965
- protocol: "azure-openai" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
16445
+ protocol: "azure-openai" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
15966
16446
  region?: string;
15967
16447
  /** @description Connections carry a credential */
15968
16448
  requiresApiKey: boolean;
@@ -16353,6 +16833,55 @@ export interface components {
16353
16833
  /** @description Sub-variant identifier */
16354
16834
  variant?: string;
16355
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
+ };
16356
16885
  ClusterAlerts: {
16357
16886
  /** @description Notifies the owner at a fixed interval while the cluster is running. */
16358
16887
  runTimeAlert: components["schemas"]["RunTimeAlert"];
@@ -16603,12 +17132,22 @@ export interface components {
16603
17132
  throughput?: number;
16604
17133
  type?: string;
16605
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
+ };
16606
17144
  ClusterResponse: {
16607
17145
  /**
16608
- * @description Cost tracking status for the cluster
16609
- * @example enabled
17146
+ * @description Usage metering status for the cluster
17147
+ * @example on
17148
+ * @enum {string}
16610
17149
  */
16611
- costTrackingStatus?: string;
17150
+ costTrackingStatus?: "on" | "off" | "provisioning" | "deleting" | "failed";
16612
17151
  /**
16613
17152
  * Format: int64
16614
17153
  * @description Number of CPUs in the cluster
@@ -16651,14 +17190,11 @@ export interface components {
16651
17190
  };
16652
17191
  ClusterUpdateDisk: {
16653
17192
  encrypted?: boolean;
16654
- /** Format: int64 */
16655
17193
  iops?: number;
16656
17194
  mountPoint?: string;
16657
17195
  nfsExport?: boolean;
16658
- /** Format: int64 */
16659
17196
  sizeGb?: number;
16660
17197
  snapshot?: string;
16661
- /** Format: int64 */
16662
17198
  throughput?: number;
16663
17199
  type?: string;
16664
17200
  };
@@ -16669,30 +17205,23 @@ export interface components {
16669
17205
  default?: boolean;
16670
17206
  disks?: components["schemas"]["ClusterUpdateDisk"][] | null;
16671
17207
  elasticImage?: string;
16672
- /** Format: int64 */
16673
17208
  flexStartWaitTime?: number;
16674
- /** Format: int64 */
16675
17209
  gpuCount?: number;
16676
17210
  gpuType?: string;
16677
17211
  instanceType?: string;
16678
17212
  localDiskMountPoint?: string;
16679
17213
  maxDistance?: string;
16680
- /** Format: int64 */
16681
17214
  maxDuration?: number;
16682
- /** Format: int64 */
16683
17215
  maxNodes?: number;
16684
- /** Format: int64 */
16685
17216
  memoryGb?: number;
16686
17217
  multiZone?: boolean;
16687
17218
  name?: string;
16688
- /** Format: int64 */
16689
17219
  ocpus?: number;
16690
17220
  placementGroup?: string;
16691
17221
  preemptible?: boolean;
16692
17222
  provisioningMode?: string;
16693
17223
  rdmaNetwork?: string;
16694
17224
  reservationId?: string;
16695
- /** Format: int64 */
16696
17225
  suspendTime?: number;
16697
17226
  tier1?: boolean;
16698
17227
  usePlacementGroup?: boolean;
@@ -16946,17 +17475,17 @@ export interface components {
16946
17475
  sunkPreferredHomeDirectory?: string;
16947
17476
  sunkSshKeys?: string[] | null;
16948
17477
  };
16949
- CostTrackingPricesBody: {
17478
+ CostTrackingRatesBody: {
16950
17479
  /**
16951
17480
  * Format: double
16952
- * @description The price per CPU unit
17481
+ * @description Allocation units charged for each CPU core-hour
16953
17482
  */
16954
- cpuPrice: number;
17483
+ cpuCostPerCoreHour: number;
16955
17484
  /**
16956
17485
  * Format: double
16957
- * @description The price per GB of memory
17486
+ * @description Allocation units charged for each memory GiB-hour
16958
17487
  */
16959
- memoryPrice: number;
17488
+ memoryCostPerGibHour: number;
16960
17489
  };
16961
17490
  CostTrackingResponse: {
16962
17491
  /**
@@ -17009,9 +17538,11 @@ export interface components {
17009
17538
  apiKey?: string;
17010
17539
  /** @description Enabled platform catalog entry this provider is created from; the platform defines the provider type, endpoint, and transport policy */
17011
17540
  catalogEntryId: string;
17541
+ /** @description Cloud account name supplying credentials (Bedrock providers) */
17542
+ cloudAccount?: string;
17012
17543
  /** @description Display name of the AI provider */
17013
17544
  displayName?: string;
17014
- /** @description Billing group name (required for managed Azure providers) */
17545
+ /** @description Billing group name (required for managed Azure and Bedrock providers) */
17015
17546
  group?: string;
17016
17547
  /** @description Initial model deployment (managed Azure providers) */
17017
17548
  model?: string;
@@ -17021,7 +17552,7 @@ export interface components {
17021
17552
  name: string;
17022
17553
  /** @description Network name (managed Azure providers) */
17023
17554
  network?: string;
17024
- /** @description Region (managed Azure providers) */
17555
+ /** @description Region (managed Azure and Bedrock providers) */
17025
17556
  region?: string;
17026
17557
  };
17027
17558
  CreateAPIKeyInputBody: {
@@ -17436,8 +17967,8 @@ export interface components {
17436
17967
  name: string;
17437
17968
  };
17438
17969
  CreateNamespaceInputBody: {
17439
- /** @description Allocation name to assign */
17440
- allocation?: string;
17970
+ /** @description Allocation name to bill this namespace against (null to clear) */
17971
+ allocation?: string | null;
17441
17972
  /** @description Namespace name */
17442
17973
  name: string;
17443
17974
  };
@@ -17778,7 +18309,7 @@ export interface components {
17778
18309
  * @description Linux UID (auto-generated if not provided, must be a platform admin to use a number below 1000)
17779
18310
  */
17780
18311
  uid?: number;
17781
- /** @description Username (3+ chars, alphanumeric with - and .) */
18312
+ /** @description Username (3-32 chars, alphanumeric with - and .) */
17782
18313
  username: string;
17783
18314
  /**
17784
18315
  * @description Workspace container type
@@ -17898,6 +18429,12 @@ export interface components {
17898
18429
  /** @description Name for the saved inputs. */
17899
18430
  name: string;
17900
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
+ };
17901
18438
  CredentialResult: {
17902
18439
  accountId: string;
17903
18440
  cloudAccountName?: string;
@@ -18017,6 +18554,45 @@ export interface components {
18017
18554
  /** @description Date in YYYY-MM-DD format */
18018
18555
  date: string;
18019
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
+ };
18020
18596
  DeleteIndexBody: {
18021
18597
  /** @description Whether the index was dropped */
18022
18598
  deleted: boolean;
@@ -18491,8 +19067,6 @@ export interface components {
18491
19067
  name: string;
18492
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 */
18493
19069
  remoteHost: string;
18494
- /** @description Cluster status */
18495
- status: string;
18496
19070
  /** @description Whether the cluster's agent tunnel is currently registered on any ingress pod, with the user-disconnect veto applied */
18497
19071
  tunnelConnected: boolean;
18498
19072
  /** @description Provider type */
@@ -18868,6 +19442,9 @@ export interface components {
18868
19442
  [key: string]: components["schemas"]["NetworkPermissions"];
18869
19443
  };
18870
19444
  };
19445
+ GetBillingDetailsOutputBody: {
19446
+ billingDetails: components["schemas"]["BillingDetails"];
19447
+ };
18871
19448
  GetClusterMetricsOutputBody: {
18872
19449
  dataPoints: components["schemas"]["ClusterMetricsDataPoint"][] | null;
18873
19450
  };
@@ -19989,6 +20566,66 @@ export interface components {
19989
20566
  */
19990
20567
  zone: string;
19991
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
+ };
19992
20629
  IntPolicyOutput: {
19993
20630
  /**
19994
20631
  * @description Level of the policy
@@ -20258,6 +20895,32 @@ export interface components {
20258
20895
  /** @description LDAP username */
20259
20896
  username: string;
20260
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
+ };
20261
20924
  LdapSignupInputBody: {
20262
20925
  /** @description Desired username */
20263
20926
  username: string;
@@ -20285,6 +20948,15 @@ export interface components {
20285
20948
  /** Format: int64 */
20286
20949
  total: number;
20287
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
+ };
20288
20960
  ListEffectiveProductsOutputBody: {
20289
20961
  products: components["schemas"]["EffectiveProduct"][] | null;
20290
20962
  };
@@ -20366,6 +21038,15 @@ export interface components {
20366
21038
  /** Format: int64 */
20367
21039
  totalCount: number;
20368
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
+ };
20369
21050
  ListResponse: {
20370
21051
  Resources: unknown[] | null;
20371
21052
  /** Format: int64 */
@@ -21237,6 +21918,10 @@ export interface components {
21237
21918
  formatted?: string;
21238
21919
  givenName?: string;
21239
21920
  };
21921
+ NamespaceBillingBody: {
21922
+ /** @description Allocation name to bill this namespace against (null to clear) */
21923
+ allocation?: string | null;
21924
+ };
21240
21925
  NamespaceResponse: {
21241
21926
  /**
21242
21927
  * @description Cluster name
@@ -22145,6 +22830,8 @@ export interface components {
22145
22830
  hasCaCertificate?: boolean;
22146
22831
  /** @description Unique identifier */
22147
22832
  id: string;
22833
+ /** @description Current icon configured on the provider's catalog entry */
22834
+ imageUrl?: string;
22148
22835
  /** @description Whether TLS certificate verification is skipped */
22149
22836
  insecureSkipTlsVerify?: boolean;
22150
22837
  /** @description Provider name */
@@ -22286,6 +22973,8 @@ export interface components {
22286
22973
  admin: boolean;
22287
22974
  /** @description Etag of the user's uploaded avatar, if any. */
22288
22975
  avatarEtag?: string;
22976
+ /** @description Whether the user is a platform billing admin */
22977
+ billingAdmin: boolean;
22289
22978
  /**
22290
22979
  * Format: date-time
22291
22980
  * @description Account creation time
@@ -22360,8 +23049,6 @@ export interface components {
22360
23049
  cloudBoundary?: string;
22361
23050
  /** Format: date-time */
22362
23051
  createdAt: string;
22363
- /** @enum {string} */
22364
- credentialOwner: "organization" | "platform";
22365
23052
  /** @description First-class provider type implied by the entry's kind */
22366
23053
  csp: string;
22367
23054
  displayName: string;
@@ -22370,15 +23057,17 @@ export interface components {
22370
23057
  endpointOrigin: string;
22371
23058
  endpointPath: string;
22372
23059
  id: string;
23060
+ /** @description Admin-configured icon; empty for entries using the kind's built-in artwork */
23061
+ imageUrl?: string;
22373
23062
  /** @enum {string} */
22374
- 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";
22375
23064
  /** @enum {string} */
22376
23065
  lifecycle: "draft" | "active" | "blocked" | "retired";
22377
23066
  /** @enum {string} */
22378
23067
  minimumTlsVersion: "1.2" | "1.3";
22379
23068
  objectId: string;
22380
23069
  /** @enum {string} */
22381
- protocol: "azure-openai" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
23070
+ protocol: "azure-openai" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
22382
23071
  region?: string;
22383
23072
  /** @description Connections carry a credential */
22384
23073
  requiresApiKey: boolean;
@@ -22399,6 +23088,23 @@ export interface components {
22399
23088
  */
22400
23089
  total: number;
22401
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
+ };
22402
23108
  OrphanedInfraItem: {
22403
23109
  /** @description Infrastructure ID */
22404
23110
  id: string;
@@ -22527,6 +23233,13 @@ export interface components {
22527
23233
  */
22528
23234
  total: number;
22529
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
+ };
22530
23243
  PatchBillingLastUpdateInputBody: {
22531
23244
  /** @description Billing infrastructure id to update; defaults to the account's billing infra when omitted */
22532
23245
  infraId?: string;
@@ -23154,6 +23867,37 @@ export interface components {
23154
23867
  /** @enum {string} */
23155
23868
  status: "pending" | "connected";
23156
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
+ };
23157
23901
  PoolSlurmLoginNode: {
23158
23902
  node: string | null;
23159
23903
  };
@@ -23412,6 +24156,18 @@ export interface components {
23412
24156
  /** @description The attribute value. */
23413
24157
  value: string;
23414
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
+ };
23415
24171
  ProvisionStatusChildResponse: {
23416
24172
  /** @description Nested child records grouped by role. */
23417
24173
  children?: components["schemas"]["ProvisionStatusChildResponse"][] | null;
@@ -23439,6 +24195,27 @@ export interface components {
23439
24195
  */
23440
24196
  updatedAt: string;
23441
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
+ };
23442
24219
  ProvisionStatusResponseRecord: {
23443
24220
  /** @description Additional attributes associated with the provision step. */
23444
24221
  attributes: components["schemas"]["ProvisionStatusAttribute"][] | null;
@@ -24771,6 +25548,10 @@ export interface components {
24771
25548
  /** @description New cloud account name (lowercase letters, numbers, hyphens, and underscores) */
24772
25549
  name: string;
24773
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
+ };
24774
25555
  ReplicaSetInfo: {
24775
25556
  /**
24776
25557
  * Format: date-time
@@ -24932,6 +25713,77 @@ export interface components {
24932
25713
  userhost: string;
24933
25714
  userhostSource: string;
24934
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
+ };
24935
25787
  ResourceComplianceItem: {
24936
25788
  /** @description Resolved base image id the resource boots from */
24937
25789
  baseImageCspId?: string;
@@ -24965,6 +25817,50 @@ export interface components {
24965
25817
  /** @description Username of the resource owner */
24966
25818
  user?: string;
24967
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
+ };
24968
25864
  ResourceGroup: {
24969
25865
  /** @description Current allocation name */
24970
25866
  allocation: string | null;
@@ -24999,6 +25895,25 @@ export interface components {
24999
25895
  /** @description Resources recommended by the organization */
25000
25896
  orgRecommended: components["schemas"]["RecommendedResource"][] | null;
25001
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
+ };
25002
25917
  ResourceYAMLResponse: {
25003
25918
  /** @description JSON representation of the resource */
25004
25919
  jsonData: unknown;
@@ -25009,6 +25924,20 @@ export interface components {
25009
25924
  /** @description YAML representation of the resource */
25010
25925
  yamlData: string;
25011
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
+ };
25012
25941
  ResponseFormat: {
25013
25942
  /** @description Response type: text or json_object */
25014
25943
  type: string;
@@ -25621,10 +26550,24 @@ export interface components {
25621
26550
  /** @description Software version. */
25622
26551
  version: string;
25623
26552
  };
26553
+ SetActiveInputBody: {
26554
+ /** @description Whether the user can sign in */
26555
+ active: boolean;
26556
+ };
25624
26557
  SetAdminInputBody: {
25625
26558
  /** @description Whether to grant or revoke platform admin */
25626
26559
  admin: boolean;
25627
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
+ };
25628
26571
  SetElasticClusterIconOutputBody: {
25629
26572
  /** @description SHA256 hex of the attached blob, or empty when a preset was applied. */
25630
26573
  etag: string;
@@ -25664,6 +26607,12 @@ export interface components {
25664
26607
  /** @description URL where the icon is served. */
25665
26608
  imageUrl: string;
25666
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
+ };
25667
26616
  SetWorkflowIconOutputBody: {
25668
26617
  /** @description SHA256 hex of the attached blob, or empty when a preset was applied. */
25669
26618
  etag: string;
@@ -25708,21 +26657,19 @@ export interface components {
25708
26657
  * @example LS0tLS1CRUdJTi...
25709
26658
  */
25710
26659
  caCert: string;
26660
+ /** @description Cluster-wide billing rates in allocation units per core-hour and GiB-hour */
26661
+ costTrackingRates?: components["schemas"]["CostTrackingRatesBody"];
25711
26662
  /**
25712
- * @description Cost tracking status
26663
+ * @description Usage metering status for the cluster
25713
26664
  * @example on
25714
26665
  * @enum {string}
25715
26666
  */
25716
- costTrackingStatus?: "on" | "off" | "provisioning" | "deleting";
26667
+ costTrackingStatus?: "on" | "off" | "provisioning" | "deleting" | "failed";
25717
26668
  /**
25718
26669
  * @description Kubernetes API endpoint
25719
26670
  * @example https://k8s.example.com:6443
25720
26671
  */
25721
26672
  endpoint: string;
25722
- /** @description Map of team names to team IDs that have access to this cluster */
25723
- groups: {
25724
- [key: string]: string;
25725
- };
25726
26673
  /**
25727
26674
  * @description Cluster MongoDB ID
25728
26675
  * @example 507f1f77bcf86cd799439011
@@ -25738,8 +26685,6 @@ export interface components {
25738
26685
  * @example prod-cluster
25739
26686
  */
25740
26687
  name: string;
25741
- /** @description CPU and memory pricing information */
25742
- resourcePrices?: components["schemas"]["CostTrackingPricesBody"];
25743
26688
  /**
25744
26689
  * @description Infrastructure type
25745
26690
  * @example kubernetes
@@ -26456,7 +27401,7 @@ export interface components {
26456
27401
  title?: string;
26457
27402
  };
26458
27403
  UpdateCostTrackingBody: {
26459
- /** @description Whether to enable or disable cost tracking for this cluster */
27404
+ /** @description Whether cost tracking should run on this cluster */
26460
27405
  enableTracking: boolean;
26461
27406
  };
26462
27407
  UpdateDeploymentInputBody: {
@@ -26587,10 +27532,6 @@ export interface components {
26587
27532
  /** @description Mark as verified (platform admins only). */
26588
27533
  verified?: boolean;
26589
27534
  };
26590
- UpdateNamespaceInputBody: {
26591
- /** @description Allocation name to assign (null to clear) */
26592
- allocation: string | null;
26593
- };
26594
27535
  UpdateOrgAIProviderInputBody: {
26595
27536
  /** @description Provider API key */
26596
27537
  apiKey?: string;
@@ -28148,7 +29089,7 @@ export interface operations {
28148
29089
  /** @description Filter by organization name. */
28149
29090
  organization?: string;
28150
29091
  /** @description Export format. */
28151
- format?: "csv" | "json";
29092
+ format?: "csv" | "json" | "text";
28152
29093
  };
28153
29094
  header?: never;
28154
29095
  path?: never;
@@ -29040,6 +29981,70 @@ export interface operations {
29040
29981
  };
29041
29982
  };
29042
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
+ };
29043
30048
  "delete-ai-connection": {
29044
30049
  parameters: {
29045
30050
  query?: never;
@@ -29425,6 +30430,283 @@ export interface operations {
29425
30430
  };
29426
30431
  };
29427
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
+ };
29428
30710
  "kill-user-workspace": {
29429
30711
  parameters: {
29430
30712
  query?: never;
@@ -29817,7 +31099,9 @@ export interface operations {
29817
31099
  headers: {
29818
31100
  "Content-Disposition"?: string;
29819
31101
  "Content-Length"?: number;
31102
+ "Content-Security-Policy"?: string;
29820
31103
  "Content-Type"?: string;
31104
+ "X-Content-Type-Options"?: string;
29821
31105
  [name: string]: unknown;
29822
31106
  };
29823
31107
  content: {
@@ -30001,7 +31285,9 @@ export interface operations {
30001
31285
  headers: {
30002
31286
  "Content-Disposition"?: string;
30003
31287
  "Content-Length"?: number;
31288
+ "Content-Security-Policy"?: string;
30004
31289
  "Content-Type"?: string;
31290
+ "X-Content-Type-Options"?: string;
30005
31291
  [name: string]: unknown;
30006
31292
  };
30007
31293
  content: {
@@ -30581,45 +31867,6 @@ export interface operations {
30581
31867
  };
30582
31868
  };
30583
31869
  };
30584
- "get-cluster-session-token": {
30585
- parameters: {
30586
- query: {
30587
- /** @description The session ID */
30588
- session_id: string;
30589
- /** @description The cloud provider */
30590
- provider: string;
30591
- /** @description The cluster name */
30592
- name: string;
30593
- /** @description The session number */
30594
- session_number: string;
30595
- };
30596
- header?: never;
30597
- path?: never;
30598
- cookie?: never;
30599
- };
30600
- requestBody?: never;
30601
- responses: {
30602
- /** @description OK */
30603
- 200: {
30604
- headers: {
30605
- "Content-Type"?: string;
30606
- [name: string]: unknown;
30607
- };
30608
- content: {
30609
- "application/json": string;
30610
- };
30611
- };
30612
- /** @description Error */
30613
- default: {
30614
- headers: {
30615
- [name: string]: unknown;
30616
- };
30617
- content: {
30618
- "application/json": components["schemas"]["Error"];
30619
- };
30620
- };
30621
- };
30622
- };
30623
31870
  "get-auth-token-oidc": {
30624
31871
  parameters: {
30625
31872
  query?: {
@@ -31130,6 +32377,61 @@ export interface operations {
31130
32377
  };
31131
32378
  };
31132
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
+ };
31133
32435
  "list-event-types": {
31134
32436
  parameters: {
31135
32437
  query?: never;
@@ -35014,6 +36316,10 @@ export interface operations {
35014
36316
  query?: never;
35015
36317
  header?: never;
35016
36318
  path: {
36319
+ /** @description The name of the organization. */
36320
+ organization: string;
36321
+ /** @description Organization AI connection name */
36322
+ name: string;
35017
36323
  /** @description Device authorization identifier */
35018
36324
  authorizationId: string;
35019
36325
  };
@@ -35041,6 +36347,40 @@ export interface operations {
35041
36347
  };
35042
36348
  };
35043
36349
  };
36350
+ "reconnect-org-copilot-provider": {
36351
+ parameters: {
36352
+ query?: never;
36353
+ header?: never;
36354
+ path: {
36355
+ /** @description The name of the organization. */
36356
+ organization: string;
36357
+ /** @description AI provider name */
36358
+ name: string;
36359
+ };
36360
+ cookie?: never;
36361
+ };
36362
+ requestBody?: never;
36363
+ responses: {
36364
+ /** @description OK */
36365
+ 200: {
36366
+ headers: {
36367
+ [name: string]: unknown;
36368
+ };
36369
+ content: {
36370
+ "application/json": components["schemas"]["OrgAIProviderResponse"];
36371
+ };
36372
+ };
36373
+ /** @description Error */
36374
+ default: {
36375
+ headers: {
36376
+ [name: string]: unknown;
36377
+ };
36378
+ content: {
36379
+ "application/json": components["schemas"]["Error"];
36380
+ };
36381
+ };
36382
+ };
36383
+ };
35044
36384
  "list-model-configs": {
35045
36385
  parameters: {
35046
36386
  query?: never;
@@ -36147,53 +37487,91 @@ export interface operations {
36147
37487
  };
36148
37488
  };
36149
37489
  };
36150
- "test-organization-auth-method-ldap": {
37490
+ "test-organization-auth-method-ldap": {
37491
+ parameters: {
37492
+ query?: never;
37493
+ header?: never;
37494
+ path: {
37495
+ /** @description The name of the organization. */
37496
+ organization: string;
37497
+ };
37498
+ cookie?: never;
37499
+ };
37500
+ requestBody: {
37501
+ content: {
37502
+ "application/json": components["schemas"]["LdapConnectionTest"];
37503
+ };
37504
+ };
37505
+ responses: {
37506
+ /** @description No Content */
37507
+ 204: {
37508
+ headers: {
37509
+ [name: string]: unknown;
37510
+ };
37511
+ content?: never;
37512
+ };
37513
+ /** @description Error */
37514
+ default: {
37515
+ headers: {
37516
+ [name: string]: unknown;
37517
+ };
37518
+ content: {
37519
+ "application/json": components["schemas"]["Error"];
37520
+ };
37521
+ };
37522
+ };
37523
+ };
37524
+ "get-organization-auth-method-ldap": {
37525
+ parameters: {
37526
+ query?: never;
37527
+ header?: never;
37528
+ path: {
37529
+ /** @description The name of the organization. */
37530
+ organization: string;
37531
+ /** @description The name of the authentication method to get. */
37532
+ authName: string;
37533
+ };
37534
+ cookie?: never;
37535
+ };
37536
+ requestBody?: never;
37537
+ responses: {
37538
+ /** @description OK */
37539
+ 200: {
37540
+ headers: {
37541
+ [name: string]: unknown;
37542
+ };
37543
+ content: {
37544
+ "application/json": components["schemas"]["Ldap"];
37545
+ };
37546
+ };
37547
+ /** @description Error */
37548
+ default: {
37549
+ headers: {
37550
+ [name: string]: unknown;
37551
+ };
37552
+ content: {
37553
+ "application/json": components["schemas"]["Error"];
37554
+ };
37555
+ };
37556
+ };
37557
+ };
37558
+ "update-organization-auth-method-ldap": {
36151
37559
  parameters: {
36152
37560
  query?: never;
36153
37561
  header?: never;
36154
37562
  path: {
36155
37563
  /** @description The name of the organization. */
36156
37564
  organization: string;
37565
+ /** @description Name of the authentication method to update */
37566
+ authName: string;
36157
37567
  };
36158
37568
  cookie?: never;
36159
37569
  };
36160
37570
  requestBody: {
36161
37571
  content: {
36162
- "application/json": components["schemas"]["LdapConnectionTest"];
36163
- };
36164
- };
36165
- responses: {
36166
- /** @description No Content */
36167
- 204: {
36168
- headers: {
36169
- [name: string]: unknown;
36170
- };
36171
- content?: never;
36172
- };
36173
- /** @description Error */
36174
- default: {
36175
- headers: {
36176
- [name: string]: unknown;
36177
- };
36178
- content: {
36179
- "application/json": components["schemas"]["Error"];
36180
- };
36181
- };
36182
- };
36183
- };
36184
- "get-organization-auth-method-ldap": {
36185
- parameters: {
36186
- query?: never;
36187
- header?: never;
36188
- path: {
36189
- /** @description The name of the organization. */
36190
- organization: string;
36191
- /** @description The name of the authentication method to get. */
36192
- authName: string;
37572
+ "application/json": components["schemas"]["Ldap"];
36193
37573
  };
36194
- cookie?: never;
36195
37574
  };
36196
- requestBody?: never;
36197
37575
  responses: {
36198
37576
  /** @description OK */
36199
37577
  200: {
@@ -36215,32 +37593,30 @@ export interface operations {
36215
37593
  };
36216
37594
  };
36217
37595
  };
36218
- "update-organization-auth-method-ldap": {
37596
+ "test-saved-organization-auth-method-ldap": {
36219
37597
  parameters: {
36220
37598
  query?: never;
36221
37599
  header?: never;
36222
37600
  path: {
36223
37601
  /** @description The name of the organization. */
36224
37602
  organization: string;
36225
- /** @description Name of the authentication method to update */
37603
+ /** @description Name of the authentication method to test */
36226
37604
  authName: string;
36227
37605
  };
36228
37606
  cookie?: never;
36229
37607
  };
36230
37608
  requestBody: {
36231
37609
  content: {
36232
- "application/json": components["schemas"]["Ldap"];
37610
+ "application/json": components["schemas"]["LdapSavedConnectionTest"];
36233
37611
  };
36234
37612
  };
36235
37613
  responses: {
36236
- /** @description OK */
36237
- 200: {
37614
+ /** @description No Content */
37615
+ 204: {
36238
37616
  headers: {
36239
37617
  [name: string]: unknown;
36240
37618
  };
36241
- content: {
36242
- "application/json": components["schemas"]["Ldap"];
36243
- };
37619
+ content?: never;
36244
37620
  };
36245
37621
  /** @description Error */
36246
37622
  default: {
@@ -36800,6 +38176,78 @@ export interface operations {
36800
38176
  };
36801
38177
  };
36802
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
+ };
36803
38251
  "patch-cloud-account-billing-last-update": {
36804
38252
  parameters: {
36805
38253
  query?: never;
@@ -37814,7 +39262,7 @@ export interface operations {
37814
39262
  /** @description Case-insensitive search across actor username, target name, and request ID; an exact event or session id also matches. */
37815
39263
  search?: string;
37816
39264
  /** @description Export format. */
37817
- format?: "csv" | "json";
39265
+ format?: "csv" | "json" | "text";
37818
39266
  };
37819
39267
  header?: never;
37820
39268
  path: {
@@ -38748,7 +40196,7 @@ export interface operations {
38748
40196
  };
38749
40197
  requestBody: {
38750
40198
  content: {
38751
- "application/json": components["schemas"]["UpdateNamespaceInputBody"];
40199
+ "application/json": components["schemas"]["NamespaceBillingBody"];
38752
40200
  };
38753
40201
  };
38754
40202
  responses: {
@@ -39422,14 +40870,14 @@ export interface operations {
39422
40870
  path: {
39423
40871
  /** @description The name of the organization. */
39424
40872
  organization: string;
39425
- /** @description The Kubernetes infrastructure name */
40873
+ /** @description The infrastructure name */
39426
40874
  infraName: string;
39427
40875
  };
39428
40876
  cookie?: never;
39429
40877
  };
39430
40878
  requestBody: {
39431
40879
  content: {
39432
- "application/json": components["schemas"]["CostTrackingPricesBody"];
40880
+ "application/json": components["schemas"]["CostTrackingRatesBody"];
39433
40881
  };
39434
40882
  };
39435
40883
  responses: {
@@ -39439,7 +40887,7 @@ export interface operations {
39439
40887
  [name: string]: unknown;
39440
40888
  };
39441
40889
  content: {
39442
- "application/json": components["schemas"]["CostTrackingPricesBody"];
40890
+ "application/json": components["schemas"]["CostTrackingRatesBody"];
39443
40891
  };
39444
40892
  };
39445
40893
  /** @description Error */
@@ -43385,6 +44833,42 @@ export interface operations {
43385
44833
  };
43386
44834
  };
43387
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
+ };
43388
44872
  "set-user-admin": {
43389
44873
  parameters: {
43390
44874
  query?: never;
@@ -43683,6 +45167,42 @@ export interface operations {
43683
45167
  };
43684
45168
  };
43685
45169
  };
45170
+ "reconnect-copilot-provider": {
45171
+ parameters: {
45172
+ query?: never;
45173
+ header?: never;
45174
+ path: {
45175
+ /** @description The name of the organization. */
45176
+ organization: string;
45177
+ /** @description Username of the target user. */
45178
+ user: string;
45179
+ /** @description Copilot provider name */
45180
+ name: string;
45181
+ };
45182
+ cookie?: never;
45183
+ };
45184
+ requestBody?: never;
45185
+ responses: {
45186
+ /** @description OK */
45187
+ 200: {
45188
+ headers: {
45189
+ [name: string]: unknown;
45190
+ };
45191
+ content: {
45192
+ "application/json": components["schemas"]["AiProviderResponse"];
45193
+ };
45194
+ };
45195
+ /** @description Error */
45196
+ default: {
45197
+ headers: {
45198
+ [name: string]: unknown;
45199
+ };
45200
+ content: {
45201
+ "application/json": components["schemas"]["Error"];
45202
+ };
45203
+ };
45204
+ };
45205
+ };
43686
45206
  "add-ai-provider-deployment": {
43687
45207
  parameters: {
43688
45208
  query?: never;
@@ -44599,7 +46119,80 @@ export interface operations {
44599
46119
  [name: string]: unknown;
44600
46120
  };
44601
46121
  content: {
44602
- "application/json": components["schemas"]["AzureSASToken"];
46122
+ "application/json": components["schemas"]["AzureSASToken"];
46123
+ };
46124
+ };
46125
+ /** @description Error */
46126
+ default: {
46127
+ headers: {
46128
+ [name: string]: unknown;
46129
+ };
46130
+ content: {
46131
+ "application/json": components["schemas"]["Error"];
46132
+ };
46133
+ };
46134
+ };
46135
+ };
46136
+ "get-token-azure-bucket": {
46137
+ parameters: {
46138
+ query?: never;
46139
+ header?: never;
46140
+ path: {
46141
+ /** @description The name of the organization. */
46142
+ organization: string;
46143
+ /** @description Username of the target user. */
46144
+ user: string;
46145
+ /** @description The name of the storage resource. */
46146
+ name: string;
46147
+ };
46148
+ cookie?: never;
46149
+ };
46150
+ requestBody?: never;
46151
+ responses: {
46152
+ /** @description OK */
46153
+ 200: {
46154
+ headers: {
46155
+ "Cache-Control"?: string;
46156
+ [name: string]: unknown;
46157
+ };
46158
+ content: {
46159
+ "application/json": components["schemas"]["AzureBucketToken"];
46160
+ };
46161
+ };
46162
+ /** @description Error */
46163
+ default: {
46164
+ headers: {
46165
+ [name: string]: unknown;
46166
+ };
46167
+ content: {
46168
+ "application/json": components["schemas"]["Error"];
46169
+ };
46170
+ };
46171
+ };
46172
+ };
46173
+ "get-azure-disk": {
46174
+ parameters: {
46175
+ query?: never;
46176
+ header?: never;
46177
+ path: {
46178
+ /** @description The name of the organization. */
46179
+ organization: string;
46180
+ /** @description Username of the target user. */
46181
+ user: string;
46182
+ /** @description The name of the storage resource. */
46183
+ name: string;
46184
+ };
46185
+ cookie?: never;
46186
+ };
46187
+ requestBody?: never;
46188
+ responses: {
46189
+ /** @description OK */
46190
+ 200: {
46191
+ headers: {
46192
+ [name: string]: unknown;
46193
+ };
46194
+ content: {
46195
+ "application/json": components["schemas"]["AzureDisk"];
44603
46196
  };
44604
46197
  };
44605
46198
  /** @description Error */
@@ -44613,7 +46206,7 @@ export interface operations {
44613
46206
  };
44614
46207
  };
44615
46208
  };
44616
- "get-token-azure-bucket": {
46209
+ "get-azure-managedlustre": {
44617
46210
  parameters: {
44618
46211
  query?: never;
44619
46212
  header?: never;
@@ -44632,11 +46225,10 @@ export interface operations {
44632
46225
  /** @description OK */
44633
46226
  200: {
44634
46227
  headers: {
44635
- "Cache-Control"?: string;
44636
46228
  [name: string]: unknown;
44637
46229
  };
44638
46230
  content: {
44639
- "application/json": components["schemas"]["AzureBucketToken"];
46231
+ "application/json": components["schemas"]["AzureManagedLustre"];
44640
46232
  };
44641
46233
  };
44642
46234
  /** @description Error */
@@ -44650,7 +46242,7 @@ export interface operations {
44650
46242
  };
44651
46243
  };
44652
46244
  };
44653
- "get-azure-disk": {
46245
+ "get-azure-netappfiles": {
44654
46246
  parameters: {
44655
46247
  query?: never;
44656
46248
  header?: never;
@@ -44672,7 +46264,7 @@ export interface operations {
44672
46264
  [name: string]: unknown;
44673
46265
  };
44674
46266
  content: {
44675
- "application/json": components["schemas"]["AzureDisk"];
46267
+ "application/json": components["schemas"]["AzureNetAppFiles"];
44676
46268
  };
44677
46269
  };
44678
46270
  /** @description Error */
@@ -44686,66 +46278,30 @@ export interface operations {
44686
46278
  };
44687
46279
  };
44688
46280
  };
44689
- "get-azure-managedlustre": {
46281
+ "set-user-billing-admin": {
44690
46282
  parameters: {
44691
46283
  query?: never;
44692
46284
  header?: never;
44693
46285
  path: {
44694
- /** @description The name of the organization. */
46286
+ /** @description Organization name */
44695
46287
  organization: string;
44696
- /** @description Username of the target user. */
46288
+ /** @description Username of the user to grant or revoke billing admin */
44697
46289
  user: string;
44698
- /** @description The name of the storage resource. */
44699
- name: string;
44700
46290
  };
44701
46291
  cookie?: never;
44702
46292
  };
44703
- requestBody?: never;
44704
- responses: {
44705
- /** @description OK */
44706
- 200: {
44707
- headers: {
44708
- [name: string]: unknown;
44709
- };
44710
- content: {
44711
- "application/json": components["schemas"]["AzureManagedLustre"];
44712
- };
44713
- };
44714
- /** @description Error */
44715
- default: {
44716
- headers: {
44717
- [name: string]: unknown;
44718
- };
44719
- content: {
44720
- "application/json": components["schemas"]["Error"];
44721
- };
44722
- };
44723
- };
44724
- };
44725
- "get-azure-netappfiles": {
44726
- parameters: {
44727
- query?: never;
44728
- header?: never;
44729
- path: {
44730
- /** @description The name of the organization. */
44731
- organization: string;
44732
- /** @description Username of the target user. */
44733
- user: string;
44734
- /** @description The name of the storage resource. */
44735
- name: string;
46293
+ requestBody: {
46294
+ content: {
46295
+ "application/json": components["schemas"]["SetBillingAdminInputBody"];
44736
46296
  };
44737
- cookie?: never;
44738
46297
  };
44739
- requestBody?: never;
44740
46298
  responses: {
44741
- /** @description OK */
44742
- 200: {
46299
+ /** @description No Content */
46300
+ 204: {
44743
46301
  headers: {
44744
46302
  [name: string]: unknown;
44745
46303
  };
44746
- content: {
44747
- "application/json": components["schemas"]["AzureNetAppFiles"];
44748
- };
46304
+ content?: never;
44749
46305
  };
44750
46306
  /** @description Error */
44751
46307
  default: {
@@ -48314,6 +49870,44 @@ export interface operations {
48314
49870
  };
48315
49871
  };
48316
49872
  };
49873
+ "rename-user-session": {
49874
+ parameters: {
49875
+ query?: never;
49876
+ header?: never;
49877
+ path: {
49878
+ /** @description The name of the organization. */
49879
+ organization: string;
49880
+ /** @description Username of the target user. */
49881
+ user: string;
49882
+ /** @description Session name. */
49883
+ name: string;
49884
+ };
49885
+ cookie?: never;
49886
+ };
49887
+ requestBody: {
49888
+ content: {
49889
+ "application/json": components["schemas"]["RenameSessionBody"];
49890
+ };
49891
+ };
49892
+ responses: {
49893
+ /** @description No Content */
49894
+ 204: {
49895
+ headers: {
49896
+ [name: string]: unknown;
49897
+ };
49898
+ content?: never;
49899
+ };
49900
+ /** @description Error */
49901
+ default: {
49902
+ headers: {
49903
+ [name: string]: unknown;
49904
+ };
49905
+ content: {
49906
+ "application/json": components["schemas"]["Error"];
49907
+ };
49908
+ };
49909
+ };
49910
+ };
48317
49911
  "restart-user-session": {
48318
49912
  parameters: {
48319
49913
  query?: never;
@@ -49055,7 +50649,43 @@ export interface operations {
49055
50649
  user: string;
49056
50650
  /** @description The name of the storage resource. */
49057
50651
  name: string;
49058
- /** @description The type of storage to delete. */
50652
+ /** @description The type of the storage. */
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";
50654
+ };
50655
+ cookie?: never;
50656
+ };
50657
+ requestBody?: never;
50658
+ responses: {
50659
+ /** @description No Content */
50660
+ 204: {
50661
+ headers: {
50662
+ [name: string]: unknown;
50663
+ };
50664
+ content?: never;
50665
+ };
50666
+ /** @description Error */
50667
+ default: {
50668
+ headers: {
50669
+ [name: string]: unknown;
50670
+ };
50671
+ content: {
50672
+ "application/json": components["schemas"]["Error"];
50673
+ };
50674
+ };
50675
+ };
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. */
49059
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";
49060
50690
  };
49061
50691
  cookie?: never;
@@ -49080,6 +50710,48 @@ export interface operations {
49080
50710
  };
49081
50711
  };
49082
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
+ };
49083
50755
  "get-organization-variables": {
49084
50756
  parameters: {
49085
50757
  query?: never;
@@ -51085,6 +52757,44 @@ export interface operations {
51085
52757
  };
51086
52758
  };
51087
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
+ };
51088
52798
  "post-provision-status": {
51089
52799
  parameters: {
51090
52800
  query?: never;
@@ -52863,6 +54573,38 @@ export interface operations {
52863
54573
  };
52864
54574
  };
52865
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
+ };
52866
54608
  "get-auth-session-deprecated": {
52867
54609
  parameters: {
52868
54610
  query?: never;
@@ -52930,6 +54672,35 @@ export interface operations {
52930
54672
  };
52931
54673
  };
52932
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
+ };
52933
54704
  "create-ssh-public-key-legacy": {
52934
54705
  parameters: {
52935
54706
  query?: never;