@parallelworks/client 7.89.0 → 7.91.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.
Files changed (2) hide show
  1. package/dist/types/api.d.ts +1052 -733
  2. package/package.json +1 -1
@@ -178,6 +178,50 @@ export interface paths {
178
178
  patch?: never;
179
179
  trace?: never;
180
180
  };
181
+ "/api/admin/billing/skus": {
182
+ parameters: {
183
+ query?: never;
184
+ header?: never;
185
+ path?: never;
186
+ cookie?: never;
187
+ };
188
+ /**
189
+ * List managed SKUs
190
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
191
+ *
192
+ * Returns a filtered, paginated list of managed SKUs used by billing cost categorization. Requires platform admin or billing admin.
193
+ */
194
+ get: operations["list-managed-skus"];
195
+ put?: never;
196
+ post?: never;
197
+ delete?: never;
198
+ options?: never;
199
+ head?: never;
200
+ patch?: never;
201
+ trace?: never;
202
+ };
203
+ "/api/admin/billing/skus/export": {
204
+ parameters: {
205
+ query?: never;
206
+ header?: never;
207
+ path?: never;
208
+ cookie?: never;
209
+ };
210
+ /**
211
+ * Export managed SKUs as CSV
212
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
213
+ *
214
+ * Downloads managed SKUs as CSV in the managed_skus.csv format. Requires platform admin or billing admin.
215
+ */
216
+ get: operations["export-managed-skus"];
217
+ put?: never;
218
+ post?: never;
219
+ delete?: never;
220
+ options?: never;
221
+ head?: never;
222
+ patch?: never;
223
+ trace?: never;
224
+ };
181
225
  "/api/admin/errors": {
182
226
  parameters: {
183
227
  query?: never;
@@ -2527,6 +2571,28 @@ export interface paths {
2527
2571
  patch?: never;
2528
2572
  trace?: never;
2529
2573
  };
2574
+ "/api/internal/usercontainer/workspace-mounts/status": {
2575
+ parameters: {
2576
+ query?: never;
2577
+ header?: never;
2578
+ path?: never;
2579
+ cookie?: never;
2580
+ };
2581
+ get?: never;
2582
+ put?: never;
2583
+ post?: never;
2584
+ delete?: never;
2585
+ options?: never;
2586
+ head?: never;
2587
+ /**
2588
+ * Report workspace mount status
2589
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
2590
+ *
2591
+ * The userworkspace reports each mount's success or failure so the UI can show its state.
2592
+ */
2593
+ patch: operations["report-workspace-mount-status"];
2594
+ trace?: never;
2595
+ };
2530
2596
  "/api/ips": {
2531
2597
  parameters: {
2532
2598
  query?: never;
@@ -4127,28 +4193,6 @@ export interface paths {
4127
4193
  patch?: never;
4128
4194
  trace?: never;
4129
4195
  };
4130
- "/api/onboarding/user-host": {
4131
- parameters: {
4132
- query?: never;
4133
- header?: never;
4134
- path?: never;
4135
- cookie?: never;
4136
- };
4137
- get?: never;
4138
- put?: never;
4139
- /**
4140
- * Record user host provisioning choice
4141
- * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
4142
- *
4143
- * Records the requesting user's choice to have a host provisioned in their onboarding cloud account. Provisioning is handled separately.
4144
- */
4145
- post: operations["post-onboarding-user-host"];
4146
- delete?: never;
4147
- options?: never;
4148
- head?: never;
4149
- patch?: never;
4150
- trace?: never;
4151
- };
4152
4196
  "/api/openai/v1/chat/completions": {
4153
4197
  parameters: {
4154
4198
  query?: never;
@@ -5549,6 +5593,34 @@ export interface paths {
5549
5593
  patch?: never;
5550
5594
  trace?: never;
5551
5595
  };
5596
+ "/api/organizations/{organization}/cloud-accounts/{name}/userhost": {
5597
+ parameters: {
5598
+ query?: never;
5599
+ header?: never;
5600
+ path?: never;
5601
+ cookie?: never;
5602
+ };
5603
+ get?: never;
5604
+ put?: never;
5605
+ /**
5606
+ * Provision organization user host
5607
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
5608
+ *
5609
+ * Provisions the organization's user host in the given cloud account. One user host is allowed per organization.
5610
+ */
5611
+ post: operations["create-organization-userhost"];
5612
+ /**
5613
+ * Delete organization user host
5614
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
5615
+ *
5616
+ * Tears down the organization's user host: its instance, security group, and network.
5617
+ */
5618
+ delete: operations["delete-organization-userhost"];
5619
+ options?: never;
5620
+ head?: never;
5621
+ patch?: never;
5622
+ trace?: never;
5623
+ };
5552
5624
  "/api/organizations/{organization}/clouds/aws/regions/{region}/cloudimages": {
5553
5625
  parameters: {
5554
5626
  query?: never;
@@ -8219,6 +8291,28 @@ export interface paths {
8219
8291
  patch?: never;
8220
8292
  trace?: never;
8221
8293
  };
8294
+ "/api/organizations/{organization}/userhost": {
8295
+ parameters: {
8296
+ query?: never;
8297
+ header?: never;
8298
+ path?: never;
8299
+ cookie?: never;
8300
+ };
8301
+ /**
8302
+ * Get organization user host
8303
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8304
+ *
8305
+ * Returns the organization's user host, if one is provisioned.
8306
+ */
8307
+ get: operations["get-organization-userhost"];
8308
+ put?: never;
8309
+ post?: never;
8310
+ delete?: never;
8311
+ options?: never;
8312
+ head?: never;
8313
+ patch?: never;
8314
+ trace?: never;
8315
+ };
8222
8316
  "/api/organizations/{organization}/users": {
8223
8317
  parameters: {
8224
8318
  query?: never;
@@ -9664,34 +9758,6 @@ export interface paths {
9664
9758
  patch?: never;
9665
9759
  trace?: never;
9666
9760
  };
9667
- "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/workspace-mounts": {
9668
- parameters: {
9669
- query?: never;
9670
- header?: never;
9671
- path?: never;
9672
- cookie?: never;
9673
- };
9674
- /**
9675
- * Get cluster workspace mounts
9676
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9677
- *
9678
- * Returns the cluster directories mounted into the user workspace.
9679
- */
9680
- get: operations["get-cluster-workspace-mounts"];
9681
- /**
9682
- * Update cluster workspace mounts
9683
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9684
- *
9685
- * Replaces the cluster directories mounted into the user workspace.
9686
- */
9687
- put: operations["update-cluster-workspace-mounts"];
9688
- post?: never;
9689
- delete?: never;
9690
- options?: never;
9691
- head?: never;
9692
- patch?: never;
9693
- trace?: never;
9694
- };
9695
9761
  "/api/organizations/{organization}/users/{user}/clusters/{cluster}/environments": {
9696
9762
  parameters: {
9697
9763
  query?: never;
@@ -10253,14 +10319,20 @@ export interface paths {
10253
10319
  path?: never;
10254
10320
  cookie?: never;
10255
10321
  };
10256
- get?: never;
10322
+ /**
10323
+ * List user login sessions
10324
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
10325
+ *
10326
+ * Lists the active login sessions for the specified user. IP addresses are only included when listing your own sessions.
10327
+ */
10328
+ get: operations["list-user-login-sessions"];
10257
10329
  put?: never;
10258
10330
  post?: never;
10259
10331
  /**
10260
10332
  * Revoke user login sessions
10261
- * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
10333
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
10262
10334
  *
10263
- * Revokes all login sessions for the specified user.
10335
+ * Revokes all login sessions for the specified user, except the session making the request. Only callable via browser session authentication.
10264
10336
  */
10265
10337
  delete: operations["revoke-user-login-sessions"];
10266
10338
  options?: never;
@@ -10268,6 +10340,28 @@ export interface paths {
10268
10340
  patch?: never;
10269
10341
  trace?: never;
10270
10342
  };
10343
+ "/api/organizations/{organization}/users/{user}/login-sessions/{id}": {
10344
+ parameters: {
10345
+ query?: never;
10346
+ header?: never;
10347
+ path?: never;
10348
+ cookie?: never;
10349
+ };
10350
+ get?: never;
10351
+ put?: never;
10352
+ post?: never;
10353
+ /**
10354
+ * Revoke a user login session
10355
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
10356
+ *
10357
+ * Revokes a single login session for the specified user. Only callable via browser session authentication.
10358
+ */
10359
+ delete: operations["revoke-user-login-session"];
10360
+ options?: never;
10361
+ head?: never;
10362
+ patch?: never;
10363
+ trace?: never;
10364
+ };
10271
10365
  "/api/organizations/{organization}/users/{user}/mlworkspaces": {
10272
10366
  parameters: {
10273
10367
  query?: never;
@@ -16473,34 +16567,6 @@ export interface components {
16473
16567
  /** @description Subject of the certificate leaf */
16474
16568
  subject: string;
16475
16569
  };
16476
- ChartsBody: {
16477
- /** @description List of Helm charts across all clusters */
16478
- charts: components["schemas"]["HelmChart"][] | null;
16479
- /** @description List of cluster errors, if any */
16480
- errors?: components["schemas"]["ClusterError"][] | null;
16481
- /** @description Response metadata */
16482
- metadata: components["schemas"]["ChartsMetadata"];
16483
- };
16484
- ChartsMetadata: {
16485
- /**
16486
- * Format: int64
16487
- * @description Number of clusters successfully queried
16488
- * @example 4
16489
- */
16490
- successfulClusters: number;
16491
- /**
16492
- * Format: int64
16493
- * @description Total unique Helm charts across all clusters
16494
- * @example 50
16495
- */
16496
- totalCharts: number;
16497
- /**
16498
- * Format: int64
16499
- * @description Total number of clusters queried
16500
- * @example 5
16501
- */
16502
- totalClusters: number;
16503
- };
16504
16570
  ChatCompletionChunk: {
16505
16571
  /** @description Completion choices */
16506
16572
  choices: components["schemas"]["Choice"][] | null;
@@ -16686,6 +16752,7 @@ export interface components {
16686
16752
  enableOsLogin: boolean;
16687
16753
  govCloud: boolean;
16688
16754
  name: string;
16755
+ userHostError?: string;
16689
16756
  };
16690
16757
  CloudAccountCredentialsInput: {
16691
16758
  /** @description AWS access key ID */
@@ -17141,41 +17208,6 @@ export interface components {
17141
17208
  */
17142
17209
  total: number;
17143
17210
  };
17144
- ClusterResponse: {
17145
- /**
17146
- * @description Usage metering status for the cluster
17147
- * @example on
17148
- * @enum {string}
17149
- */
17150
- costTrackingStatus?: "on" | "off" | "provisioning" | "deleting" | "failed";
17151
- /**
17152
- * Format: int64
17153
- * @description Number of CPUs in the cluster
17154
- * @example 16
17155
- */
17156
- cpus: number;
17157
- /**
17158
- * @description Unique identifier for the cluster
17159
- * @example cluster-1234
17160
- */
17161
- id: string;
17162
- /**
17163
- * @description URL of the cluster image
17164
- * @example https://example.com/cluster-image.png
17165
- */
17166
- imageUrl?: string;
17167
- /**
17168
- * Format: int64
17169
- * @description Amount of memory in the cluster in bytes
17170
- * @example 32768
17171
- */
17172
- memory: number;
17173
- /**
17174
- * @description Name of the cluster
17175
- * @example prod-cluster
17176
- */
17177
- name: string;
17178
- };
17179
17211
  ClusterRuntimeAlert: {
17180
17212
  enabled?: boolean;
17181
17213
  /** Format: int64 */
@@ -17248,12 +17280,6 @@ export interface components {
17248
17280
  /** @description Run the user bootstrap script on the controller */
17249
17281
  userBootstrapController?: boolean;
17250
17282
  };
17251
- ClusterWorkspaceMount: {
17252
- /** @description The path on the cluster. */
17253
- clusterPath: string;
17254
- /** @description The path in the workspace. */
17255
- workspacePath: string;
17256
- };
17257
17283
  CodexDeviceAuthorizationResponse: {
17258
17284
  /**
17259
17285
  * Format: date-time
@@ -17350,46 +17376,6 @@ export interface components {
17350
17376
  cidr: string;
17351
17377
  region: string;
17352
17378
  };
17353
- ConfigsBody: {
17354
- /** @description List of configs */
17355
- configs: components["schemas"]["Config"][] | null;
17356
- /** @description List of cluster errors, if any */
17357
- errors?: components["schemas"]["ClusterError"][] | null;
17358
- /** @description Response metadata */
17359
- metadata: components["schemas"]["ConfigsMetadata"];
17360
- };
17361
- ConfigsMetadata: {
17362
- /**
17363
- * Format: int64
17364
- * @description Number of clusters successfully queried
17365
- * @example 4
17366
- */
17367
- successfulClusters: number;
17368
- /**
17369
- * Format: int64
17370
- * @description Total number of clusters queried
17371
- * @example 5
17372
- */
17373
- totalClusters: number;
17374
- /**
17375
- * Format: int64
17376
- * @description Total number of ConfigMaps
17377
- * @example 60
17378
- */
17379
- totalConfigMaps: number;
17380
- /**
17381
- * Format: int64
17382
- * @description Total number of configs returned
17383
- * @example 100
17384
- */
17385
- totalConfigs: number;
17386
- /**
17387
- * Format: int64
17388
- * @description Total number of Secrets
17389
- * @example 40
17390
- */
17391
- totalSecrets: number;
17392
- };
17393
17379
  ConnectStateBody: {
17394
17380
  /** @description Failure detail when status is failed. */
17395
17381
  error?: string;
@@ -17724,6 +17710,8 @@ export interface components {
17724
17710
  azureClientSecret?: string;
17725
17711
  /** @description Azure tenant ID */
17726
17712
  azureTenantId?: string;
17713
+ /** @description When true, provision a user host for the organization in this cloud account after it is created */
17714
+ createUserhost?: boolean;
17727
17715
  /**
17728
17716
  * @description Cloud service provider
17729
17717
  * @enum {string}
@@ -17771,6 +17759,8 @@ export interface components {
17771
17759
  oracleUserOcid?: string;
17772
17760
  /** @description When true, validate the credentials against the cloud provider before creating the account and fail if they are invalid or lack required permissions */
17773
17761
  permissionCheck?: boolean;
17762
+ /** @description Region to provision the user host in. Only used when createUserhost is true; defaults to us-east-1 */
17763
+ userhostRegion?: string;
17774
17764
  };
17775
17765
  CreateClusterInputBody: {
17776
17766
  /** @description PEM-encoded CA certificate. Leave empty when the cluster uses a publicly trusted certificate. */
@@ -19118,8 +19108,6 @@ export interface components {
19118
19108
  slurmLoginNodes: components["schemas"]["ExistingClusterLoginNode"][] | null;
19119
19109
  /** @description SLURM username */
19120
19110
  slurmUsername: string;
19121
- /** @description Workspace mount points */
19122
- workspaceMounts: components["schemas"]["ExistingClusterWorkspaceMount"][] | null;
19123
19111
  };
19124
19112
  ExistingClusterVersionSettings: {
19125
19113
  /** @description Desktop session settings. */
@@ -19142,12 +19130,6 @@ export interface components {
19142
19130
  */
19143
19131
  subtype: "existing";
19144
19132
  };
19145
- ExistingClusterWorkspaceMount: {
19146
- /** @description Path on the cluster */
19147
- clusterPath: string;
19148
- /** @description Path in the workspace */
19149
- workspacePath: string;
19150
- };
19151
19133
  ExistingLoginNode: {
19152
19134
  /** @description Login node hostname. */
19153
19135
  node: string;
@@ -19194,8 +19176,6 @@ export interface components {
19194
19176
  user: string;
19195
19177
  /** @description The script input by users to bootstrap the instance. */
19196
19178
  user_bootstrap: string;
19197
- /** @description Mounts of local directories to instance directories. */
19198
- workspace_mounts: string[] | null;
19199
19179
  /** @description The zone of the instance, if applicable. */
19200
19180
  zone: string;
19201
19181
  };
@@ -19420,8 +19400,6 @@ export interface components {
19420
19400
  * @example Jake.Thayne
19421
19401
  */
19422
19402
  user?: string;
19423
- /** @description Cloud-cluster only: the workspace mount points for this cluster. */
19424
- workspaceMounts: components["schemas"]["ClusterWorkspaceMount"][] | null;
19425
19403
  };
19426
19404
  GenerateNodeTokenOutputBody: {
19427
19405
  /** @description Cluster name */
@@ -20750,6 +20728,109 @@ export interface components {
20750
20728
  /** @description List of keys used for JWT verification */
20751
20729
  keys: components["schemas"]["JWK"][] | null;
20752
20730
  };
20731
+ KubernetesChartsBody: {
20732
+ /** @description List of Helm charts across all clusters */
20733
+ charts: components["schemas"]["HelmChart"][] | null;
20734
+ /** @description List of cluster errors, if any */
20735
+ errors?: components["schemas"]["ClusterError"][] | null;
20736
+ /** @description Response metadata */
20737
+ metadata: components["schemas"]["KubernetesChartsMetadata"];
20738
+ };
20739
+ KubernetesChartsMetadata: {
20740
+ /**
20741
+ * Format: int64
20742
+ * @description Number of clusters successfully queried
20743
+ * @example 4
20744
+ */
20745
+ successfulClusters: number;
20746
+ /**
20747
+ * Format: int64
20748
+ * @description Total unique Helm charts across all clusters
20749
+ * @example 50
20750
+ */
20751
+ totalCharts: number;
20752
+ /**
20753
+ * Format: int64
20754
+ * @description Total number of clusters queried
20755
+ * @example 5
20756
+ */
20757
+ totalClusters: number;
20758
+ };
20759
+ KubernetesClusterResponse: {
20760
+ /**
20761
+ * @description Usage metering status for the cluster
20762
+ * @example on
20763
+ * @enum {string}
20764
+ */
20765
+ costTrackingStatus?: "on" | "off" | "provisioning" | "deleting" | "failed";
20766
+ /**
20767
+ * Format: int64
20768
+ * @description Number of CPUs in the cluster
20769
+ * @example 16
20770
+ */
20771
+ cpus: number;
20772
+ /**
20773
+ * @description Unique identifier for the cluster
20774
+ * @example cluster-1234
20775
+ */
20776
+ id: string;
20777
+ /**
20778
+ * @description URL of the cluster image
20779
+ * @example https://example.com/cluster-image.png
20780
+ */
20781
+ imageUrl?: string;
20782
+ /**
20783
+ * Format: int64
20784
+ * @description Amount of memory in the cluster in bytes
20785
+ * @example 32768
20786
+ */
20787
+ memory: number;
20788
+ /**
20789
+ * @description Name of the cluster
20790
+ * @example prod-cluster
20791
+ */
20792
+ name: string;
20793
+ };
20794
+ KubernetesConfigsBody: {
20795
+ /** @description List of configs */
20796
+ configs: components["schemas"]["Config"][] | null;
20797
+ /** @description List of cluster errors, if any */
20798
+ errors?: components["schemas"]["ClusterError"][] | null;
20799
+ /** @description Response metadata */
20800
+ metadata: components["schemas"]["KubernetesConfigsMetadata"];
20801
+ };
20802
+ KubernetesConfigsMetadata: {
20803
+ /**
20804
+ * Format: int64
20805
+ * @description Number of clusters successfully queried
20806
+ * @example 4
20807
+ */
20808
+ successfulClusters: number;
20809
+ /**
20810
+ * Format: int64
20811
+ * @description Total number of clusters queried
20812
+ * @example 5
20813
+ */
20814
+ totalClusters: number;
20815
+ /**
20816
+ * Format: int64
20817
+ * @description Total number of ConfigMaps
20818
+ * @example 60
20819
+ */
20820
+ totalConfigMaps: number;
20821
+ /**
20822
+ * Format: int64
20823
+ * @description Total number of configs returned
20824
+ * @example 100
20825
+ */
20826
+ totalConfigs: number;
20827
+ /**
20828
+ * Format: int64
20829
+ * @description Total number of Secrets
20830
+ * @example 40
20831
+ */
20832
+ totalSecrets: number;
20833
+ };
20753
20834
  KubernetesCpuMetrics: {
20754
20835
  /**
20755
20836
  * Format: double
@@ -20783,6 +20864,234 @@ export interface components {
20783
20864
  */
20784
20865
  timestamp: string;
20785
20866
  };
20867
+ KubernetesServiceResponse: {
20868
+ /**
20869
+ * @description Cluster name
20870
+ * @example production
20871
+ */
20872
+ cluster: string;
20873
+ /**
20874
+ * @description Cluster IP address
20875
+ * @example 10.0.0.1
20876
+ */
20877
+ clusterIP: string;
20878
+ /**
20879
+ * Format: date-time
20880
+ * @description Creation timestamp of the service
20881
+ */
20882
+ createdAt: string;
20883
+ /**
20884
+ * @description External IP address
20885
+ * @example 203.0.113.1
20886
+ */
20887
+ externalIP?: string;
20888
+ /**
20889
+ * @description Name of the service
20890
+ * @example nginx-service
20891
+ */
20892
+ name: string;
20893
+ /**
20894
+ * @description Namespace of the service
20895
+ * @example default
20896
+ */
20897
+ namespace: string;
20898
+ /**
20899
+ * @description Service ports
20900
+ * @example [
20901
+ * "80/TCP",
20902
+ * "443/TCP"
20903
+ * ]
20904
+ */
20905
+ ports: string[] | null;
20906
+ /**
20907
+ * @description Pod selector
20908
+ * @example app=nginx
20909
+ */
20910
+ selector: string;
20911
+ /**
20912
+ * @description Service type
20913
+ * @example ClusterIP
20914
+ * @enum {string}
20915
+ */
20916
+ type: "ClusterIP" | "NodePort" | "LoadBalancer" | "ExternalName";
20917
+ };
20918
+ KubernetesServicesBody: {
20919
+ /** @description List of cluster errors, if any */
20920
+ errors?: components["schemas"]["ClusterError"][] | null;
20921
+ /** @description Response metadata */
20922
+ metadata: components["schemas"]["KubernetesServicesMetadata"];
20923
+ /** @description List of services */
20924
+ services: components["schemas"]["KubernetesServiceResponse"][] | null;
20925
+ };
20926
+ KubernetesServicesMetadata: {
20927
+ /**
20928
+ * Format: int64
20929
+ * @description Number of clusters successfully queried
20930
+ * @example 4
20931
+ */
20932
+ successfulClusters: number;
20933
+ /**
20934
+ * Format: int64
20935
+ * @description Total number of clusters queried
20936
+ * @example 5
20937
+ */
20938
+ totalClusters: number;
20939
+ /**
20940
+ * Format: int64
20941
+ * @description Total number of services returned
20942
+ * @example 45
20943
+ */
20944
+ totalServices: number;
20945
+ };
20946
+ KubernetesSingleClusterResponse: {
20947
+ /**
20948
+ * @description Base64-encoded CA certificate
20949
+ * @example LS0tLS1CRUdJTi...
20950
+ */
20951
+ caCert: string;
20952
+ /** @description Cluster-wide billing rates in allocation units per core-hour and GiB-hour */
20953
+ costTrackingRates?: components["schemas"]["CostTrackingRatesBody"];
20954
+ /**
20955
+ * @description Usage metering status for the cluster
20956
+ * @example on
20957
+ * @enum {string}
20958
+ */
20959
+ costTrackingStatus?: "on" | "off" | "provisioning" | "deleting" | "failed";
20960
+ /**
20961
+ * @description Kubernetes API endpoint
20962
+ * @example https://k8s.example.com:6443
20963
+ */
20964
+ endpoint: string;
20965
+ /**
20966
+ * @description Cluster MongoDB ID
20967
+ * @example 507f1f77bcf86cd799439011
20968
+ */
20969
+ id: string;
20970
+ /**
20971
+ * @description Cluster icon URL
20972
+ * @example https://example.com/cluster.png
20973
+ */
20974
+ imageUrl?: string;
20975
+ /**
20976
+ * @description Cluster name
20977
+ * @example prod-cluster
20978
+ */
20979
+ name: string;
20980
+ /**
20981
+ * @description Infrastructure type
20982
+ * @example kubernetes
20983
+ */
20984
+ type: string;
20985
+ };
20986
+ KubernetesStorageBody: {
20987
+ /** @description List of cluster errors, if any */
20988
+ errors?: components["schemas"]["ClusterError"][] | null;
20989
+ /** @description Response metadata */
20990
+ metadata: components["schemas"]["KubernetesStorageMetadata"];
20991
+ /** @description List of storage resources */
20992
+ storage: components["schemas"]["KubernetesStorageResponse"][] | null;
20993
+ };
20994
+ KubernetesStorageMetadata: {
20995
+ /**
20996
+ * Format: int64
20997
+ * @description Number of clusters successfully queried
20998
+ * @example 4
20999
+ */
21000
+ successfulClusters: number;
21001
+ /**
21002
+ * Format: int64
21003
+ * @description Total number of clusters queried
21004
+ * @example 5
21005
+ */
21006
+ totalClusters: number;
21007
+ /**
21008
+ * Format: int64
21009
+ * @description Total number of PVCs
21010
+ * @example 30
21011
+ */
21012
+ totalPVCs: number;
21013
+ /**
21014
+ * Format: int64
21015
+ * @description Total number of PVs
21016
+ * @example 20
21017
+ */
21018
+ totalPVs: number;
21019
+ /**
21020
+ * Format: int64
21021
+ * @description Total number of storage resources returned
21022
+ * @example 50
21023
+ */
21024
+ totalStorage: number;
21025
+ };
21026
+ KubernetesStorageResponse: {
21027
+ /**
21028
+ * @description Access modes
21029
+ * @example ReadWriteOnce
21030
+ */
21031
+ accessModes: string;
21032
+ /**
21033
+ * @description Storage capacity
21034
+ * @example 10Gi
21035
+ */
21036
+ capacity: string;
21037
+ /**
21038
+ * @description Bound claim (for PVs)
21039
+ * @example default/data-mysql-0
21040
+ */
21041
+ claim?: string;
21042
+ /**
21043
+ * @description Cluster name
21044
+ * @example production
21045
+ */
21046
+ cluster: string;
21047
+ /**
21048
+ * Format: date-time
21049
+ * @description Creation timestamp of the resource
21050
+ */
21051
+ createdAt: string;
21052
+ /**
21053
+ * @description Name of the storage resource
21054
+ * @example data-mysql-0
21055
+ */
21056
+ name: string;
21057
+ /**
21058
+ * @description Kubernetes namespace (for PVCs)
21059
+ * @example default
21060
+ */
21061
+ namespace?: string;
21062
+ /**
21063
+ * @description Reclaim policy (for PVs)
21064
+ * @example Delete
21065
+ */
21066
+ reclaimPolicy?: string;
21067
+ /**
21068
+ * @description Storage status
21069
+ * @example Bound
21070
+ * @enum {string}
21071
+ */
21072
+ status: "Bound" | "Pending" | "Available" | "Released" | "Failed";
21073
+ /**
21074
+ * @description Storage class name
21075
+ * @example standard
21076
+ */
21077
+ storageClass: string;
21078
+ /**
21079
+ * @description Storage type
21080
+ * @example PVC
21081
+ * @enum {string}
21082
+ */
21083
+ type: "PVC" | "PV";
21084
+ /**
21085
+ * @description Pod using this PVC
21086
+ * @example mysql-0
21087
+ */
21088
+ usedBy?: string;
21089
+ /**
21090
+ * @description Bound volume name (for PVCs)
21091
+ * @example pvc-12345
21092
+ */
21093
+ volume?: string;
21094
+ };
20786
21095
  KubernetesTunnelInfo: {
20787
21096
  /** @description Kubernetes resource name. */
20788
21097
  name?: string;
@@ -20813,6 +21122,82 @@ export interface components {
20813
21122
  */
20814
21123
  usage: number;
20815
21124
  };
21125
+ KubernetesWorkloadResponse: {
21126
+ /**
21127
+ * @description Cluster name
21128
+ * @example production
21129
+ */
21130
+ cluster: string;
21131
+ /** @description CPU usage */
21132
+ cpu?: string;
21133
+ /**
21134
+ * Format: date-time
21135
+ * @description Creation timestamp of the workload
21136
+ */
21137
+ createdAt: string;
21138
+ /** @description Memory usage */
21139
+ memory?: string;
21140
+ /**
21141
+ * @description Name of the workload
21142
+ * @example nginx-deployment
21143
+ */
21144
+ name: string;
21145
+ /**
21146
+ * @description Kubernetes namespace of the workload
21147
+ * @example default
21148
+ */
21149
+ namespace: string;
21150
+ /**
21151
+ * @description Pod count (ready/total)
21152
+ * @example 3/3
21153
+ */
21154
+ pods: string;
21155
+ /**
21156
+ * Format: int64
21157
+ * @description Number of restarts
21158
+ */
21159
+ restarts?: number;
21160
+ /**
21161
+ * @description Status of the workload
21162
+ * @example Running
21163
+ * @enum {string}
21164
+ */
21165
+ status: "Running" | "Pending" | "Failed" | "Completed" | "Unknown";
21166
+ /**
21167
+ * @description Type of workload
21168
+ * @example Deployment
21169
+ * @enum {string}
21170
+ */
21171
+ type: "Deployment" | "StatefulSet" | "DaemonSet" | "Job" | "CronJob" | "Pod";
21172
+ };
21173
+ KubernetesWorkloadsBody: {
21174
+ /** @description List of cluster errors, if any */
21175
+ errors?: components["schemas"]["ClusterError"][] | null;
21176
+ /** @description Response metadata */
21177
+ metadata: components["schemas"]["KubernetesWorkloadsMetadata"];
21178
+ /** @description List of workloads */
21179
+ workloads: components["schemas"]["KubernetesWorkloadResponse"][] | null;
21180
+ };
21181
+ KubernetesWorkloadsMetadata: {
21182
+ /**
21183
+ * Format: int64
21184
+ * @description Number of clusters successfully queried
21185
+ * @example 4
21186
+ */
21187
+ successfulClusters: number;
21188
+ /**
21189
+ * Format: int64
21190
+ * @description Total number of clusters queried
21191
+ * @example 5
21192
+ */
21193
+ totalClusters: number;
21194
+ /**
21195
+ * Format: int64
21196
+ * @description Total number of workloads returned
21197
+ * @example 150
21198
+ */
21199
+ totalWorkloads: number;
21200
+ };
20816
21201
  LanguageInputBody: {
20817
21202
  /**
20818
21203
  * @description User's preferred language
@@ -21111,6 +21496,31 @@ export interface components {
21111
21496
  */
21112
21497
  title?: string;
21113
21498
  } | null;
21499
+ LoginSessionResponse: {
21500
+ /**
21501
+ * Format: date-time
21502
+ * @description When the session was created.
21503
+ */
21504
+ createdAt: string;
21505
+ /** @description Whether this is the session making the request. */
21506
+ current: boolean;
21507
+ /**
21508
+ * Format: date-time
21509
+ * @description When the session expires.
21510
+ */
21511
+ expiresAt?: string;
21512
+ /** @description The unique identifier for the login session. */
21513
+ id: string;
21514
+ /** @description Client IP address at login. Only included for the user's own sessions. */
21515
+ ipAddress?: string;
21516
+ /**
21517
+ * Format: date-time
21518
+ * @description When the session was last used.
21519
+ */
21520
+ lastUsedAt?: string;
21521
+ /** @description Client user agent at login. */
21522
+ userAgent?: string;
21523
+ };
21114
21524
  Lustre: {
21115
21525
  /** @description Cloud service provider of the Lustre */
21116
21526
  csp: string;
@@ -21479,6 +21889,31 @@ export interface components {
21479
21889
  /** @description Partition state */
21480
21890
  state: string;
21481
21891
  };
21892
+ ManagedSKU: {
21893
+ /** @description Cloud service provider */
21894
+ csp: string;
21895
+ /** @description CSP product description */
21896
+ description: string;
21897
+ /** @description CSP-native SKU identifier */
21898
+ id: string;
21899
+ /** @description Cost subtype (Instance, Disk, Egress, ...) */
21900
+ subtype: string;
21901
+ /** @description Cost type (Compute, Storage, Network, unknown, ...) */
21902
+ type: string;
21903
+ };
21904
+ ManagedSKUList: {
21905
+ /** @description One page of managed SKUs */
21906
+ items: components["schemas"]["ManagedSKU"][] | null;
21907
+ /** @description All distinct subtype values, for filter menus */
21908
+ subtypes: string[] | null;
21909
+ /**
21910
+ * Format: int64
21911
+ * @description Total SKUs matching the filters
21912
+ */
21913
+ total: number;
21914
+ /** @description All distinct type values, for filter menus */
21915
+ types: string[] | null;
21916
+ };
21482
21917
  ManagedSchedulerJob: {
21483
21918
  /** @description Job ID */
21484
21919
  jobId: string;
@@ -21901,10 +22336,18 @@ export interface components {
21901
22336
  MountInfoResponse: {
21902
22337
  /** @description Cloud provider hosting the resource, such as aws, google, azure, openstack, or oracle. Empty for existing clusters. */
21903
22338
  csp: string;
22339
+ /** @description Whether the cluster or instance the mount points to has been deleted. */
22340
+ deleted: boolean;
22341
+ /** @description Reason the mount failed, if it is not mounted. Empty while pending or mounted. */
22342
+ error: string;
21904
22343
  /** @description Custom icon for the cluster or instance, if one has been set. */
21905
22344
  imageUrl: string;
22345
+ /** @description Whether the userworkspace currently has this path mounted. */
22346
+ mounted: boolean;
21906
22347
  /** @description Name of the cluster or instance the mount points to. */
21907
22348
  name: string;
22349
+ /** @description ID of the cluster or instance the mount points to. */
22350
+ resourceId: string;
21908
22351
  resourcePath: string;
21909
22352
  /** @description Short name of the cluster or instance, used to fill in the __CLUSTER__ and __INSTANCE__ placeholders in the workspace path. */
21910
22353
  slug: string;
@@ -23043,6 +23486,8 @@ export interface components {
23043
23486
  owner?: string;
23044
23487
  /** @description Whether the organization is a partner organization. */
23045
23488
  partner: boolean;
23489
+ /** @description Whether the organization is a self-service organization. */
23490
+ selfService: boolean;
23046
23491
  };
23047
23492
  OrganizationCatalogEntry: {
23048
23493
  caCertificate?: string;
@@ -24068,6 +24513,10 @@ export interface components {
24068
24513
  /** @description The user who this usage event will be associated with. */
24069
24514
  user?: string;
24070
24515
  };
24516
+ PostUserHostInputBody: {
24517
+ /** @description Region to provision the user host in; defaults to us-east-1 */
24518
+ region?: string;
24519
+ };
24071
24520
  Preview: {
24072
24521
  /** @description Indicates if the preview was enabled at a platform-wide level. */
24073
24522
  platform: boolean;
@@ -25642,6 +26091,9 @@ export interface components {
25642
26091
  */
25643
26092
  who?: string;
25644
26093
  };
26094
+ ReportWorkspaceMountStatusInputBody: {
26095
+ mounts: components["schemas"]["WorkspaceMountStatus"][] | null;
26096
+ };
25645
26097
  ReservationItem: {
25646
26098
  /** @description Cloud service provider */
25647
26099
  csp: string;
@@ -25944,26 +26396,6 @@ export interface components {
25944
26396
  } & {
25945
26397
  [key: string]: unknown;
25946
26398
  };
25947
- ResponseMetadata: {
25948
- /**
25949
- * Format: int64
25950
- * @description Number of clusters successfully queried
25951
- * @example 4
25952
- */
25953
- successfulClusters: number;
25954
- /**
25955
- * Format: int64
25956
- * @description Total number of clusters queried
25957
- * @example 5
25958
- */
25959
- totalClusters: number;
25960
- /**
25961
- * Format: int64
25962
- * @description Total number of workloads returned
25963
- * @example 150
25964
- */
25965
- totalWorkloads: number;
25966
- };
25967
26399
  RestartOption: {
25968
26400
  /** @description Whether to force kill the workspace. */
25969
26401
  forceKill: boolean;
@@ -26270,85 +26702,6 @@ export interface components {
26270
26702
  */
26271
26703
  tracesSampleRate: number;
26272
26704
  };
26273
- ServiceResponse: {
26274
- /**
26275
- * @description Cluster name
26276
- * @example production
26277
- */
26278
- cluster: string;
26279
- /**
26280
- * @description Cluster IP address
26281
- * @example 10.0.0.1
26282
- */
26283
- clusterIP: string;
26284
- /**
26285
- * Format: date-time
26286
- * @description Creation timestamp of the service
26287
- */
26288
- createdAt: string;
26289
- /**
26290
- * @description External IP address
26291
- * @example 203.0.113.1
26292
- */
26293
- externalIP?: string;
26294
- /**
26295
- * @description Name of the service
26296
- * @example nginx-service
26297
- */
26298
- name: string;
26299
- /**
26300
- * @description Namespace of the service
26301
- * @example default
26302
- */
26303
- namespace: string;
26304
- /**
26305
- * @description Service ports
26306
- * @example [
26307
- * "80/TCP",
26308
- * "443/TCP"
26309
- * ]
26310
- */
26311
- ports: string[] | null;
26312
- /**
26313
- * @description Pod selector
26314
- * @example app=nginx
26315
- */
26316
- selector: string;
26317
- /**
26318
- * @description Service type
26319
- * @example ClusterIP
26320
- * @enum {string}
26321
- */
26322
- type: "ClusterIP" | "NodePort" | "LoadBalancer" | "ExternalName";
26323
- };
26324
- ServicesBody: {
26325
- /** @description List of cluster errors, if any */
26326
- errors?: components["schemas"]["ClusterError"][] | null;
26327
- /** @description Response metadata */
26328
- metadata: components["schemas"]["ServicesMetadata"];
26329
- /** @description List of services */
26330
- services: components["schemas"]["ServiceResponse"][] | null;
26331
- };
26332
- ServicesMetadata: {
26333
- /**
26334
- * Format: int64
26335
- * @description Number of clusters successfully queried
26336
- * @example 4
26337
- */
26338
- successfulClusters: number;
26339
- /**
26340
- * Format: int64
26341
- * @description Total number of clusters queried
26342
- * @example 5
26343
- */
26344
- totalClusters: number;
26345
- /**
26346
- * Format: int64
26347
- * @description Total number of services returned
26348
- * @example 45
26349
- */
26350
- totalServices: number;
26351
- };
26352
26705
  Session: {
26353
26706
  /**
26354
26707
  * Format: date-time
@@ -26651,46 +27004,6 @@ export interface components {
26651
27004
  /** @description K8s role (admin, edit, view) */
26652
27005
  role: string;
26653
27006
  };
26654
- SingleClusterResponse: {
26655
- /**
26656
- * @description Base64-encoded CA certificate
26657
- * @example LS0tLS1CRUdJTi...
26658
- */
26659
- caCert: string;
26660
- /** @description Cluster-wide billing rates in allocation units per core-hour and GiB-hour */
26661
- costTrackingRates?: components["schemas"]["CostTrackingRatesBody"];
26662
- /**
26663
- * @description Usage metering status for the cluster
26664
- * @example on
26665
- * @enum {string}
26666
- */
26667
- costTrackingStatus?: "on" | "off" | "provisioning" | "deleting" | "failed";
26668
- /**
26669
- * @description Kubernetes API endpoint
26670
- * @example https://k8s.example.com:6443
26671
- */
26672
- endpoint: string;
26673
- /**
26674
- * @description Cluster MongoDB ID
26675
- * @example 507f1f77bcf86cd799439011
26676
- */
26677
- id: string;
26678
- /**
26679
- * @description Cluster icon URL
26680
- * @example https://example.com/cluster.png
26681
- */
26682
- imageUrl?: string;
26683
- /**
26684
- * @description Cluster name
26685
- * @example prod-cluster
26686
- */
26687
- name: string;
26688
- /**
26689
- * @description Infrastructure type
26690
- * @example kubernetes
26691
- */
26692
- type: string;
26693
- };
26694
27007
  SingleQuotaResponse: {
26695
27008
  /**
26696
27009
  * Format: date-time
@@ -26838,115 +27151,6 @@ export interface components {
26838
27151
  /** @description Username of the resource owner. */
26839
27152
  user: string;
26840
27153
  };
26841
- StorageBody: {
26842
- /** @description List of cluster errors, if any */
26843
- errors?: components["schemas"]["ClusterError"][] | null;
26844
- /** @description Response metadata */
26845
- metadata: components["schemas"]["StorageMetadata"];
26846
- /** @description List of storage resources */
26847
- storage: components["schemas"]["StorageResponse"][] | null;
26848
- };
26849
- StorageMetadata: {
26850
- /**
26851
- * Format: int64
26852
- * @description Number of clusters successfully queried
26853
- * @example 4
26854
- */
26855
- successfulClusters: number;
26856
- /**
26857
- * Format: int64
26858
- * @description Total number of clusters queried
26859
- * @example 5
26860
- */
26861
- totalClusters: number;
26862
- /**
26863
- * Format: int64
26864
- * @description Total number of PVCs
26865
- * @example 30
26866
- */
26867
- totalPVCs: number;
26868
- /**
26869
- * Format: int64
26870
- * @description Total number of PVs
26871
- * @example 20
26872
- */
26873
- totalPVs: number;
26874
- /**
26875
- * Format: int64
26876
- * @description Total number of storage resources returned
26877
- * @example 50
26878
- */
26879
- totalStorage: number;
26880
- };
26881
- StorageResponse: {
26882
- /**
26883
- * @description Access modes
26884
- * @example ReadWriteOnce
26885
- */
26886
- accessModes: string;
26887
- /**
26888
- * @description Storage capacity
26889
- * @example 10Gi
26890
- */
26891
- capacity: string;
26892
- /**
26893
- * @description Bound claim (for PVs)
26894
- * @example default/data-mysql-0
26895
- */
26896
- claim?: string;
26897
- /**
26898
- * @description Cluster name
26899
- * @example production
26900
- */
26901
- cluster: string;
26902
- /**
26903
- * Format: date-time
26904
- * @description Creation timestamp of the resource
26905
- */
26906
- createdAt: string;
26907
- /**
26908
- * @description Name of the storage resource
26909
- * @example data-mysql-0
26910
- */
26911
- name: string;
26912
- /**
26913
- * @description Kubernetes namespace (for PVCs)
26914
- * @example default
26915
- */
26916
- namespace?: string;
26917
- /**
26918
- * @description Reclaim policy (for PVs)
26919
- * @example Delete
26920
- */
26921
- reclaimPolicy?: string;
26922
- /**
26923
- * @description Storage status
26924
- * @example Bound
26925
- * @enum {string}
26926
- */
26927
- status: "Bound" | "Pending" | "Available" | "Released" | "Failed";
26928
- /**
26929
- * @description Storage class name
26930
- * @example standard
26931
- */
26932
- storageClass: string;
26933
- /**
26934
- * @description Storage type
26935
- * @example PVC
26936
- * @enum {string}
26937
- */
26938
- type: "PVC" | "PV";
26939
- /**
26940
- * @description Pod using this PVC
26941
- * @example mysql-0
26942
- */
26943
- usedBy?: string;
26944
- /**
26945
- * @description Bound volume name (for PVCs)
26946
- * @example pvc-12345
26947
- */
26948
- volume?: string;
26949
- };
26950
27154
  SubdomainAvailabilityResponse: {
26951
27155
  /** @description Whether a new session created by the requesting user could be served at this host. */
26952
27156
  available: boolean;
@@ -27859,20 +28063,17 @@ export interface components {
27859
28063
  type?: string;
27860
28064
  value: string;
27861
28065
  };
27862
- UserHostBody: {
27863
- /** @description Name of the onboarding cloud account to provision hosts in */
27864
- cloudAccountName: string;
27865
- /**
27866
- * @description Cloud service provider
27867
- * @enum {string}
27868
- */
27869
- provider: "aws" | "azure" | "google" | "openstack" | "oracle";
27870
- };
27871
28066
  UserHostResponse: {
27872
- /** @description Cloud account the auto-provision policy targets */
27873
- cloudAccount: string;
27874
- /** @description Cloud service provider for the auto-provision policy */
27875
- provider: string;
28067
+ cloudAccount?: string;
28068
+ /** Format: date-time */
28069
+ createdAt?: string;
28070
+ instanceId?: string;
28071
+ provider?: string;
28072
+ provisionStatus?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
28073
+ region: string;
28074
+ status: string;
28075
+ /** Format: date-time */
28076
+ updatedAt?: string;
27876
28077
  };
27877
28078
  UserPin: {
27878
28079
  icon?: string;
@@ -28496,62 +28697,6 @@ export interface components {
28496
28697
  */
28497
28698
  value: string | null;
28498
28699
  };
28499
- WorkloadResponse: {
28500
- /**
28501
- * @description Cluster name
28502
- * @example production
28503
- */
28504
- cluster: string;
28505
- /** @description CPU usage */
28506
- cpu?: string;
28507
- /**
28508
- * Format: date-time
28509
- * @description Creation timestamp of the workload
28510
- */
28511
- createdAt: string;
28512
- /** @description Memory usage */
28513
- memory?: string;
28514
- /**
28515
- * @description Name of the workload
28516
- * @example nginx-deployment
28517
- */
28518
- name: string;
28519
- /**
28520
- * @description Kubernetes namespace of the workload
28521
- * @example default
28522
- */
28523
- namespace: string;
28524
- /**
28525
- * @description Pod count (ready/total)
28526
- * @example 3/3
28527
- */
28528
- pods: string;
28529
- /**
28530
- * Format: int64
28531
- * @description Number of restarts
28532
- */
28533
- restarts?: number;
28534
- /**
28535
- * @description Status of the workload
28536
- * @example Running
28537
- * @enum {string}
28538
- */
28539
- status: "Running" | "Pending" | "Failed" | "Completed" | "Unknown";
28540
- /**
28541
- * @description Type of workload
28542
- * @example Deployment
28543
- * @enum {string}
28544
- */
28545
- type: "Deployment" | "StatefulSet" | "DaemonSet" | "Job" | "CronJob" | "Pod";
28546
- };
28547
- WorkloadsBody: {
28548
- /** @description List of cluster errors, if any */
28549
- errors?: components["schemas"]["ClusterError"][] | null;
28550
- /** @description Response metadata */
28551
- metadata: components["schemas"]["ResponseMetadata"];
28552
- /** @description List of workloads */
28553
- workloads: components["schemas"]["WorkloadResponse"][] | null;
28554
- };
28555
28700
  WorkspaceDefaultValues: {
28556
28701
  /**
28557
28702
  * Format: double
@@ -28626,6 +28771,11 @@ export interface components {
28626
28771
  clusterPath: string;
28627
28772
  workspacePath: string;
28628
28773
  };
28774
+ WorkspaceMountStatus: {
28775
+ error: string;
28776
+ mounted: boolean;
28777
+ workspacePath: string;
28778
+ };
28629
28779
  WorkspaceSettings: {
28630
28780
  /** Format: double */
28631
28781
  cpuLimit?: number;
@@ -28944,6 +29094,78 @@ export interface operations {
28944
29094
  };
28945
29095
  };
28946
29096
  };
29097
+ "list-managed-skus": {
29098
+ parameters: {
29099
+ query?: {
29100
+ /** @description Page size */
29101
+ limit?: number;
29102
+ /** @description Page offset */
29103
+ offset?: number;
29104
+ /** @description Filter by cloud service providers */
29105
+ csp?: string[] | null;
29106
+ /** @description Filter by cost types (unknown = unclassified) */
29107
+ type?: string[] | null;
29108
+ /** @description Filter by cost subtypes */
29109
+ subtype?: string[] | null;
29110
+ /** @description Case-insensitive match on SKU id or description */
29111
+ search?: string;
29112
+ };
29113
+ header?: never;
29114
+ path?: never;
29115
+ cookie?: never;
29116
+ };
29117
+ requestBody?: never;
29118
+ responses: {
29119
+ /** @description OK */
29120
+ 200: {
29121
+ headers: {
29122
+ [name: string]: unknown;
29123
+ };
29124
+ content: {
29125
+ "application/json": components["schemas"]["ManagedSKUList"];
29126
+ };
29127
+ };
29128
+ /** @description Error */
29129
+ default: {
29130
+ headers: {
29131
+ [name: string]: unknown;
29132
+ };
29133
+ content: {
29134
+ "application/json": components["schemas"]["Error"];
29135
+ };
29136
+ };
29137
+ };
29138
+ };
29139
+ "export-managed-skus": {
29140
+ parameters: {
29141
+ query?: {
29142
+ /** @description all = every SKU, unknown = only unclassified SKUs */
29143
+ scope?: "all" | "unknown";
29144
+ };
29145
+ header?: never;
29146
+ path?: never;
29147
+ cookie?: never;
29148
+ };
29149
+ requestBody?: never;
29150
+ responses: {
29151
+ /** @description OK */
29152
+ 200: {
29153
+ headers: {
29154
+ [name: string]: unknown;
29155
+ };
29156
+ content?: never;
29157
+ };
29158
+ /** @description Error */
29159
+ default: {
29160
+ headers: {
29161
+ [name: string]: unknown;
29162
+ };
29163
+ content: {
29164
+ "application/json": components["schemas"]["Error"];
29165
+ };
29166
+ };
29167
+ };
29168
+ };
28947
29169
  "get-error-logs": {
28948
29170
  parameters: {
28949
29171
  query?: {
@@ -32132,7 +32354,7 @@ export interface operations {
32132
32354
  parameters: {
32133
32355
  query?: {
32134
32356
  /** @description Permission to filter the bucket by */
32135
- permission?: string;
32357
+ permission?: "read" | "mount" | "edit";
32136
32358
  /** @description Filter buckets by if they are provisioned or not */
32137
32359
  provisioned?: boolean;
32138
32360
  };
@@ -32193,7 +32415,10 @@ export interface operations {
32193
32415
  };
32194
32416
  "get-clusters": {
32195
32417
  parameters: {
32196
- query?: never;
32418
+ query?: {
32419
+ /** @description Whose clusters to list: mine (default), all, or user:<username>. Widening requires administrator access. */
32420
+ scope?: string;
32421
+ };
32197
32422
  header?: never;
32198
32423
  path?: never;
32199
32424
  cookie?: never;
@@ -32286,7 +32511,7 @@ export interface operations {
32286
32511
  parameters: {
32287
32512
  query?: {
32288
32513
  /** @description Permission to filter the disks by */
32289
- permission?: string;
32514
+ permission?: "read" | "mount" | "edit";
32290
32515
  /** @description Filter disks by if they are provisioned or not */
32291
32516
  provisioned?: boolean;
32292
32517
  };
@@ -32974,6 +33199,37 @@ export interface operations {
32974
33199
  };
32975
33200
  };
32976
33201
  };
33202
+ "report-workspace-mount-status": {
33203
+ parameters: {
33204
+ query?: never;
33205
+ header?: never;
33206
+ path?: never;
33207
+ cookie?: never;
33208
+ };
33209
+ requestBody: {
33210
+ content: {
33211
+ "application/json": components["schemas"]["ReportWorkspaceMountStatusInputBody"];
33212
+ };
33213
+ };
33214
+ responses: {
33215
+ /** @description No Content */
33216
+ 204: {
33217
+ headers: {
33218
+ [name: string]: unknown;
33219
+ };
33220
+ content?: never;
33221
+ };
33222
+ /** @description Error */
33223
+ default: {
33224
+ headers: {
33225
+ [name: string]: unknown;
33226
+ };
33227
+ content: {
33228
+ "application/json": components["schemas"]["Error"];
33229
+ };
33230
+ };
33231
+ };
33232
+ };
32977
33233
  "get-ips": {
32978
33234
  parameters: {
32979
33235
  query?: {
@@ -33025,7 +33281,7 @@ export interface operations {
33025
33281
  [name: string]: unknown;
33026
33282
  };
33027
33283
  content: {
33028
- "application/json": components["schemas"]["ClusterResponse"][] | null;
33284
+ "application/json": components["schemas"]["KubernetesClusterResponse"][] | null;
33029
33285
  };
33030
33286
  };
33031
33287
  /** @description Error */
@@ -33043,7 +33299,7 @@ export interface operations {
33043
33299
  parameters: {
33044
33300
  query?: {
33045
33301
  /** @description Permission to filter the Lustre by */
33046
- permission?: string;
33302
+ permission?: "read" | "mount" | "edit";
33047
33303
  /** @description Filter Lustre by if they are provisioned or not */
33048
33304
  provisioned?: boolean;
33049
33305
  };
@@ -35312,7 +35568,7 @@ export interface operations {
35312
35568
  parameters: {
35313
35569
  query?: {
35314
35570
  /** @description Permission to filter the NFS by */
35315
- permission?: "edit" | "mount";
35571
+ permission?: "read" | "mount" | "edit";
35316
35572
  /** @description Filter NFS by if they are provisioned or not */
35317
35573
  provisioned?: boolean;
35318
35574
  };
@@ -35689,39 +35945,6 @@ export interface operations {
35689
35945
  };
35690
35946
  };
35691
35947
  };
35692
- "post-onboarding-user-host": {
35693
- parameters: {
35694
- query?: never;
35695
- header?: never;
35696
- path?: never;
35697
- cookie?: never;
35698
- };
35699
- requestBody: {
35700
- content: {
35701
- "application/json": components["schemas"]["UserHostBody"];
35702
- };
35703
- };
35704
- responses: {
35705
- /** @description OK */
35706
- 200: {
35707
- headers: {
35708
- [name: string]: unknown;
35709
- };
35710
- content: {
35711
- "application/json": components["schemas"]["UserHostResponse"];
35712
- };
35713
- };
35714
- /** @description Error */
35715
- default: {
35716
- headers: {
35717
- [name: string]: unknown;
35718
- };
35719
- content: {
35720
- "application/json": components["schemas"]["Error"];
35721
- };
35722
- };
35723
- };
35724
- };
35725
35948
  chatCompletion: {
35726
35949
  parameters: {
35727
35950
  query?: never;
@@ -38777,6 +39000,76 @@ export interface operations {
38777
39000
  };
38778
39001
  };
38779
39002
  };
39003
+ "create-organization-userhost": {
39004
+ parameters: {
39005
+ query?: never;
39006
+ header?: never;
39007
+ path: {
39008
+ /** @description The name of the organization. */
39009
+ organization: string;
39010
+ /** @description Cloud account name */
39011
+ name: string;
39012
+ };
39013
+ cookie?: never;
39014
+ };
39015
+ requestBody: {
39016
+ content: {
39017
+ "application/json": components["schemas"]["PostUserHostInputBody"];
39018
+ };
39019
+ };
39020
+ responses: {
39021
+ /** @description OK */
39022
+ 200: {
39023
+ headers: {
39024
+ [name: string]: unknown;
39025
+ };
39026
+ content: {
39027
+ "application/json": components["schemas"]["UserHostResponse"];
39028
+ };
39029
+ };
39030
+ /** @description Error */
39031
+ default: {
39032
+ headers: {
39033
+ [name: string]: unknown;
39034
+ };
39035
+ content: {
39036
+ "application/json": components["schemas"]["Error"];
39037
+ };
39038
+ };
39039
+ };
39040
+ };
39041
+ "delete-organization-userhost": {
39042
+ parameters: {
39043
+ query?: never;
39044
+ header?: never;
39045
+ path: {
39046
+ /** @description The name of the organization. */
39047
+ organization: string;
39048
+ /** @description Cloud account name */
39049
+ name: string;
39050
+ };
39051
+ cookie?: never;
39052
+ };
39053
+ requestBody?: never;
39054
+ responses: {
39055
+ /** @description No Content */
39056
+ 204: {
39057
+ headers: {
39058
+ [name: string]: unknown;
39059
+ };
39060
+ content?: never;
39061
+ };
39062
+ /** @description Error */
39063
+ default: {
39064
+ headers: {
39065
+ [name: string]: unknown;
39066
+ };
39067
+ content: {
39068
+ "application/json": components["schemas"]["Error"];
39069
+ };
39070
+ };
39071
+ };
39072
+ };
38780
39073
  "get-aws-cloud-images": {
38781
39074
  parameters: {
38782
39075
  query?: {
@@ -39790,7 +40083,7 @@ export interface operations {
39790
40083
  [name: string]: unknown;
39791
40084
  };
39792
40085
  content: {
39793
- "application/json": components["schemas"]["ConfigsBody"];
40086
+ "application/json": components["schemas"]["KubernetesConfigsBody"];
39794
40087
  };
39795
40088
  };
39796
40089
  /** @description Error */
@@ -39829,7 +40122,7 @@ export interface operations {
39829
40122
  [name: string]: unknown;
39830
40123
  };
39831
40124
  content: {
39832
- "application/json": components["schemas"]["ChartsBody"];
40125
+ "application/json": components["schemas"]["KubernetesChartsBody"];
39833
40126
  };
39834
40127
  };
39835
40128
  /** @description Error */
@@ -40012,7 +40305,7 @@ export interface operations {
40012
40305
  [name: string]: unknown;
40013
40306
  };
40014
40307
  content: {
40015
- "application/json": components["schemas"]["ServicesBody"];
40308
+ "application/json": components["schemas"]["KubernetesServicesBody"];
40016
40309
  };
40017
40310
  };
40018
40311
  /** @description Error */
@@ -40053,7 +40346,7 @@ export interface operations {
40053
40346
  [name: string]: unknown;
40054
40347
  };
40055
40348
  content: {
40056
- "application/json": components["schemas"]["StorageBody"];
40349
+ "application/json": components["schemas"]["KubernetesStorageBody"];
40057
40350
  };
40058
40351
  };
40059
40352
  /** @description Error */
@@ -40094,7 +40387,7 @@ export interface operations {
40094
40387
  [name: string]: unknown;
40095
40388
  };
40096
40389
  content: {
40097
- "application/json": components["schemas"]["WorkloadsBody"];
40390
+ "application/json": components["schemas"]["KubernetesWorkloadsBody"];
40098
40391
  };
40099
40392
  };
40100
40393
  /** @description Error */
@@ -40775,7 +41068,7 @@ export interface operations {
40775
41068
  [name: string]: unknown;
40776
41069
  };
40777
41070
  content: {
40778
- "application/json": components["schemas"]["SingleClusterResponse"];
41071
+ "application/json": components["schemas"]["KubernetesSingleClusterResponse"];
40779
41072
  };
40780
41073
  };
40781
41074
  /** @description Error */
@@ -44466,7 +44759,153 @@ export interface operations {
44466
44759
  };
44467
44760
  };
44468
44761
  };
44469
- "get-unit-sku": {
44762
+ "get-unit-sku": {
44763
+ parameters: {
44764
+ query?: never;
44765
+ header?: never;
44766
+ path: {
44767
+ /** @description The name of the organization. */
44768
+ organization: string;
44769
+ /** @description Unit name */
44770
+ unit: string;
44771
+ /** @description SKU ID */
44772
+ sku: string;
44773
+ };
44774
+ cookie?: never;
44775
+ };
44776
+ requestBody?: never;
44777
+ responses: {
44778
+ /** @description OK */
44779
+ 200: {
44780
+ headers: {
44781
+ [name: string]: unknown;
44782
+ };
44783
+ content: {
44784
+ "application/json": components["schemas"]["CustomSku"];
44785
+ };
44786
+ };
44787
+ /** @description Error */
44788
+ default: {
44789
+ headers: {
44790
+ [name: string]: unknown;
44791
+ };
44792
+ content: {
44793
+ "application/json": components["schemas"]["Error"];
44794
+ };
44795
+ };
44796
+ };
44797
+ };
44798
+ "delete-unit-sku": {
44799
+ parameters: {
44800
+ query?: never;
44801
+ header?: never;
44802
+ path: {
44803
+ /** @description The name of the organization. */
44804
+ organization: string;
44805
+ /** @description Unit name */
44806
+ unit: string;
44807
+ /** @description SKU ID */
44808
+ sku: string;
44809
+ };
44810
+ cookie?: never;
44811
+ };
44812
+ requestBody?: never;
44813
+ responses: {
44814
+ /** @description No Content */
44815
+ 204: {
44816
+ headers: {
44817
+ [name: string]: unknown;
44818
+ };
44819
+ content?: never;
44820
+ };
44821
+ /** @description Error */
44822
+ default: {
44823
+ headers: {
44824
+ [name: string]: unknown;
44825
+ };
44826
+ content: {
44827
+ "application/json": components["schemas"]["Error"];
44828
+ };
44829
+ };
44830
+ };
44831
+ };
44832
+ "update-unit-sku": {
44833
+ parameters: {
44834
+ query?: never;
44835
+ header?: never;
44836
+ path: {
44837
+ /** @description The name of the organization. */
44838
+ organization: string;
44839
+ /** @description Unit name */
44840
+ unit: string;
44841
+ /** @description SKU ID */
44842
+ sku: string;
44843
+ };
44844
+ cookie?: never;
44845
+ };
44846
+ requestBody?: {
44847
+ content: {
44848
+ "application/json": components["schemas"]["PatchSkuBody"];
44849
+ };
44850
+ };
44851
+ responses: {
44852
+ /** @description OK */
44853
+ 200: {
44854
+ headers: {
44855
+ [name: string]: unknown;
44856
+ };
44857
+ content: {
44858
+ "application/json": components["schemas"]["CustomSku"];
44859
+ };
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
+ };
44872
+ "restore-unit-sku": {
44873
+ parameters: {
44874
+ query?: never;
44875
+ header?: never;
44876
+ path: {
44877
+ /** @description The name of the organization. */
44878
+ organization: string;
44879
+ /** @description Unit name */
44880
+ unit: string;
44881
+ /** @description SKU ID */
44882
+ sku: string;
44883
+ };
44884
+ cookie?: never;
44885
+ };
44886
+ requestBody?: never;
44887
+ responses: {
44888
+ /** @description OK */
44889
+ 200: {
44890
+ headers: {
44891
+ [name: string]: unknown;
44892
+ };
44893
+ content: {
44894
+ "application/json": components["schemas"]["CustomSku"];
44895
+ };
44896
+ };
44897
+ /** @description Error */
44898
+ default: {
44899
+ headers: {
44900
+ [name: string]: unknown;
44901
+ };
44902
+ content: {
44903
+ "application/json": components["schemas"]["Error"];
44904
+ };
44905
+ };
44906
+ };
44907
+ };
44908
+ "list-sku-rules": {
44470
44909
  parameters: {
44471
44910
  query?: never;
44472
44911
  header?: never;
@@ -44488,42 +44927,8 @@ export interface operations {
44488
44927
  [name: string]: unknown;
44489
44928
  };
44490
44929
  content: {
44491
- "application/json": components["schemas"]["CustomSku"];
44492
- };
44493
- };
44494
- /** @description Error */
44495
- default: {
44496
- headers: {
44497
- [name: string]: unknown;
44498
- };
44499
- content: {
44500
- "application/json": components["schemas"]["Error"];
44501
- };
44502
- };
44503
- };
44504
- };
44505
- "delete-unit-sku": {
44506
- parameters: {
44507
- query?: never;
44508
- header?: never;
44509
- path: {
44510
- /** @description The name of the organization. */
44511
- organization: string;
44512
- /** @description Unit name */
44513
- unit: string;
44514
- /** @description SKU ID */
44515
- sku: string;
44516
- };
44517
- cookie?: never;
44518
- };
44519
- requestBody?: never;
44520
- responses: {
44521
- /** @description No Content */
44522
- 204: {
44523
- headers: {
44524
- [name: string]: unknown;
44930
+ "application/json": components["schemas"]["CustomSkuRule"][] | null;
44525
44931
  };
44526
- content?: never;
44527
44932
  };
44528
44933
  /** @description Error */
44529
44934
  default: {
@@ -44536,7 +44941,7 @@ export interface operations {
44536
44941
  };
44537
44942
  };
44538
44943
  };
44539
- "update-unit-sku": {
44944
+ "create-sku-rule": {
44540
44945
  parameters: {
44541
44946
  query?: never;
44542
44947
  header?: never;
@@ -44552,45 +44957,9 @@ export interface operations {
44552
44957
  };
44553
44958
  requestBody?: {
44554
44959
  content: {
44555
- "application/json": components["schemas"]["PatchSkuBody"];
44556
- };
44557
- };
44558
- responses: {
44559
- /** @description OK */
44560
- 200: {
44561
- headers: {
44562
- [name: string]: unknown;
44563
- };
44564
- content: {
44565
- "application/json": components["schemas"]["CustomSku"];
44566
- };
44567
- };
44568
- /** @description Error */
44569
- default: {
44570
- headers: {
44571
- [name: string]: unknown;
44572
- };
44573
- content: {
44574
- "application/json": components["schemas"]["Error"];
44575
- };
44576
- };
44577
- };
44578
- };
44579
- "restore-unit-sku": {
44580
- parameters: {
44581
- query?: never;
44582
- header?: never;
44583
- path: {
44584
- /** @description The name of the organization. */
44585
- organization: string;
44586
- /** @description Unit name */
44587
- unit: string;
44588
- /** @description SKU ID */
44589
- sku: string;
44960
+ "application/json": components["schemas"]["CreateSkuRuleBody"];
44590
44961
  };
44591
- cookie?: never;
44592
44962
  };
44593
- requestBody?: never;
44594
44963
  responses: {
44595
44964
  /** @description OK */
44596
44965
  200: {
@@ -44598,7 +44967,7 @@ export interface operations {
44598
44967
  [name: string]: unknown;
44599
44968
  };
44600
44969
  content: {
44601
- "application/json": components["schemas"]["CustomSku"];
44970
+ "application/json": components["schemas"]["CustomSkuRule"];
44602
44971
  };
44603
44972
  };
44604
44973
  /** @description Error */
@@ -44612,17 +44981,13 @@ export interface operations {
44612
44981
  };
44613
44982
  };
44614
44983
  };
44615
- "list-sku-rules": {
44984
+ "get-organization-userhost": {
44616
44985
  parameters: {
44617
44986
  query?: never;
44618
44987
  header?: never;
44619
44988
  path: {
44620
44989
  /** @description The name of the organization. */
44621
44990
  organization: string;
44622
- /** @description Unit name */
44623
- unit: string;
44624
- /** @description SKU ID */
44625
- sku: string;
44626
44991
  };
44627
44992
  cookie?: never;
44628
44993
  };
@@ -44634,47 +44999,7 @@ export interface operations {
44634
44999
  [name: string]: unknown;
44635
45000
  };
44636
45001
  content: {
44637
- "application/json": components["schemas"]["CustomSkuRule"][] | null;
44638
- };
44639
- };
44640
- /** @description Error */
44641
- default: {
44642
- headers: {
44643
- [name: string]: unknown;
44644
- };
44645
- content: {
44646
- "application/json": components["schemas"]["Error"];
44647
- };
44648
- };
44649
- };
44650
- };
44651
- "create-sku-rule": {
44652
- parameters: {
44653
- query?: never;
44654
- header?: never;
44655
- path: {
44656
- /** @description The name of the organization. */
44657
- organization: string;
44658
- /** @description Unit name */
44659
- unit: string;
44660
- /** @description SKU ID */
44661
- sku: string;
44662
- };
44663
- cookie?: never;
44664
- };
44665
- requestBody?: {
44666
- content: {
44667
- "application/json": components["schemas"]["CreateSkuRuleBody"];
44668
- };
44669
- };
44670
- responses: {
44671
- /** @description OK */
44672
- 200: {
44673
- headers: {
44674
- [name: string]: unknown;
44675
- };
44676
- content: {
44677
- "application/json": components["schemas"]["CustomSkuRule"];
45002
+ "application/json": components["schemas"]["UserHostResponse"];
44678
45003
  };
44679
45004
  };
44680
45005
  /** @description Error */
@@ -47599,82 +47924,6 @@ export interface operations {
47599
47924
  };
47600
47925
  };
47601
47926
  };
47602
- "get-cluster-workspace-mounts": {
47603
- parameters: {
47604
- query?: never;
47605
- header?: never;
47606
- path: {
47607
- /** @description The name of the organization. */
47608
- organization: string;
47609
- /** @description The username of the user that owns the cluster. */
47610
- user: string;
47611
- /** @description The name of the cluster. */
47612
- clusterName: string;
47613
- };
47614
- cookie?: never;
47615
- };
47616
- requestBody?: never;
47617
- responses: {
47618
- /** @description OK */
47619
- 200: {
47620
- headers: {
47621
- [name: string]: unknown;
47622
- };
47623
- content: {
47624
- "application/json": components["schemas"]["ClusterWorkspaceMount"][] | null;
47625
- };
47626
- };
47627
- /** @description Error */
47628
- default: {
47629
- headers: {
47630
- [name: string]: unknown;
47631
- };
47632
- content: {
47633
- "application/json": components["schemas"]["Error"];
47634
- };
47635
- };
47636
- };
47637
- };
47638
- "update-cluster-workspace-mounts": {
47639
- parameters: {
47640
- query?: never;
47641
- header?: never;
47642
- path: {
47643
- /** @description The name of the organization. */
47644
- organization: string;
47645
- /** @description The username of the user that owns the cluster. */
47646
- user: string;
47647
- /** @description The name of the cluster. */
47648
- clusterName: string;
47649
- };
47650
- cookie?: never;
47651
- };
47652
- requestBody: {
47653
- content: {
47654
- "application/json": components["schemas"]["ClusterWorkspaceMount"][] | null;
47655
- };
47656
- };
47657
- responses: {
47658
- /** @description OK */
47659
- 200: {
47660
- headers: {
47661
- [name: string]: unknown;
47662
- };
47663
- content: {
47664
- "application/json": components["schemas"]["ClusterWorkspaceMount"][] | null;
47665
- };
47666
- };
47667
- /** @description Error */
47668
- default: {
47669
- headers: {
47670
- [name: string]: unknown;
47671
- };
47672
- content: {
47673
- "application/json": components["schemas"]["Error"];
47674
- };
47675
- };
47676
- };
47677
- };
47678
47927
  "list-environments": {
47679
47928
  parameters: {
47680
47929
  query?: {
@@ -48027,6 +48276,8 @@ export interface operations {
48027
48276
  query?: {
48028
48277
  /** @description Filter by status. */
48029
48278
  status?: "active" | "inactive" | "";
48279
+ /** @description Whose clusters to cover: mine, all, or user:<username>. Defaults to the user named in the path. Widening past yourself requires administrator access and covers cloud and managed clusters, never another user's connected clusters. */
48280
+ scope?: string;
48030
48281
  };
48031
48282
  header?: never;
48032
48283
  path: {
@@ -48820,6 +49071,40 @@ export interface operations {
48820
49071
  };
48821
49072
  };
48822
49073
  };
49074
+ "list-user-login-sessions": {
49075
+ parameters: {
49076
+ query?: never;
49077
+ header?: never;
49078
+ path: {
49079
+ /** @description The name of the organization. */
49080
+ organization: string;
49081
+ /** @description The username of the user */
49082
+ user: string;
49083
+ };
49084
+ cookie?: never;
49085
+ };
49086
+ requestBody?: never;
49087
+ responses: {
49088
+ /** @description OK */
49089
+ 200: {
49090
+ headers: {
49091
+ [name: string]: unknown;
49092
+ };
49093
+ content: {
49094
+ "application/json": components["schemas"]["LoginSessionResponse"][] | null;
49095
+ };
49096
+ };
49097
+ /** @description Error */
49098
+ default: {
49099
+ headers: {
49100
+ [name: string]: unknown;
49101
+ };
49102
+ content: {
49103
+ "application/json": components["schemas"]["Error"];
49104
+ };
49105
+ };
49106
+ };
49107
+ };
48823
49108
  "revoke-user-login-sessions": {
48824
49109
  parameters: {
48825
49110
  query?: never;
@@ -48856,6 +49141,40 @@ export interface operations {
48856
49141
  };
48857
49142
  };
48858
49143
  };
49144
+ "revoke-user-login-session": {
49145
+ parameters: {
49146
+ query?: never;
49147
+ header?: never;
49148
+ path: {
49149
+ /** @description The name of the organization. */
49150
+ organization: string;
49151
+ /** @description The username of the user */
49152
+ user: string;
49153
+ /** @description The ID of the login session to revoke. */
49154
+ id: string;
49155
+ };
49156
+ cookie?: never;
49157
+ };
49158
+ requestBody?: never;
49159
+ responses: {
49160
+ /** @description No Content */
49161
+ 204: {
49162
+ headers: {
49163
+ [name: string]: unknown;
49164
+ };
49165
+ content?: never;
49166
+ };
49167
+ /** @description Error */
49168
+ default: {
49169
+ headers: {
49170
+ [name: string]: unknown;
49171
+ };
49172
+ content: {
49173
+ "application/json": components["schemas"]["Error"];
49174
+ };
49175
+ };
49176
+ };
49177
+ };
48859
49178
  "create-machine-learning-workspaces": {
48860
49179
  parameters: {
48861
49180
  query?: never;