@parallelworks/client 7.83.0 → 7.86.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 +1812 -789
  2. package/package.json +1 -1
@@ -1801,6 +1801,28 @@ export interface paths {
1801
1801
  patch?: never;
1802
1802
  trace?: never;
1803
1803
  };
1804
+ "/api/cloud-accounts": {
1805
+ parameters: {
1806
+ query?: never;
1807
+ header?: never;
1808
+ path?: never;
1809
+ cookie?: never;
1810
+ };
1811
+ /**
1812
+ * List accessible cloud accounts
1813
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
1814
+ *
1815
+ * Returns the cloud accounts the user can access.
1816
+ */
1817
+ get: operations["list-user-cloud-accounts"];
1818
+ put?: never;
1819
+ post?: never;
1820
+ delete?: never;
1821
+ options?: never;
1822
+ head?: never;
1823
+ patch?: never;
1824
+ trace?: never;
1825
+ };
1804
1826
  "/api/clusters": {
1805
1827
  parameters: {
1806
1828
  query?: never;
@@ -1816,7 +1838,13 @@ export interface paths {
1816
1838
  */
1817
1839
  get: operations["get-clusters"];
1818
1840
  put?: never;
1819
- post?: never;
1841
+ /**
1842
+ * Create Cluster
1843
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
1844
+ *
1845
+ * Creates a cluster owned by the requesting user. The configuration may be included up front or filled in later through the definition endpoint.
1846
+ */
1847
+ post: operations["create-cluster"];
1820
1848
  delete?: never;
1821
1849
  options?: never;
1822
1850
  head?: never;
@@ -2830,7 +2858,7 @@ export interface paths {
2830
2858
  * Fork Marketplace Item
2831
2859
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
2832
2860
  *
2833
- * Creates an owned resource from a marketplace item: an editable workflow copy, or a storage/compute resource.
2861
+ * Creates an owned resource from a marketplace item: an editable workflow copy, or a storage/compute resource. Organization administrators may create the resource for another member of their organization.
2834
2862
  */
2835
2863
  post: operations["fork-marketplace-item"];
2836
2864
  delete?: never;
@@ -3621,6 +3649,28 @@ export interface paths {
3621
3649
  patch?: never;
3622
3650
  trace?: never;
3623
3651
  };
3652
+ "/api/network-interfaces": {
3653
+ parameters: {
3654
+ query?: never;
3655
+ header?: never;
3656
+ path?: never;
3657
+ cookie?: never;
3658
+ };
3659
+ /**
3660
+ * List network interfaces
3661
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
3662
+ *
3663
+ * Returns the list of network interfaces
3664
+ */
3665
+ get: operations["list-network-interfaces"];
3666
+ put?: never;
3667
+ post?: never;
3668
+ delete?: never;
3669
+ options?: never;
3670
+ head?: never;
3671
+ patch?: never;
3672
+ trace?: never;
3673
+ };
3624
3674
  "/api/networks": {
3625
3675
  parameters: {
3626
3676
  query?: never;
@@ -5155,6 +5205,28 @@ export interface paths {
5155
5205
  patch?: never;
5156
5206
  trace?: never;
5157
5207
  };
5208
+ "/api/organizations/{organization}/cloud-accounts/{name}/rdma-zones": {
5209
+ parameters: {
5210
+ query?: never;
5211
+ header?: never;
5212
+ path?: never;
5213
+ cookie?: never;
5214
+ };
5215
+ /**
5216
+ * List RDMA-capable zones for a cloud account
5217
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
5218
+ *
5219
+ * Returns zones whose project offers an IRDMA (Falcon) network profile.
5220
+ */
5221
+ get: operations["get-cloud-account-rdma-zones"];
5222
+ put?: never;
5223
+ post?: never;
5224
+ delete?: never;
5225
+ options?: never;
5226
+ head?: never;
5227
+ patch?: never;
5228
+ trace?: never;
5229
+ };
5158
5230
  "/api/organizations/{organization}/clouds/aws/regions/{region}/cloudimages": {
5159
5231
  parameters: {
5160
5232
  query?: never;
@@ -8616,10 +8688,22 @@ export interface paths {
8616
8688
  get: operations["get-cluster"];
8617
8689
  put?: never;
8618
8690
  post?: never;
8619
- delete?: never;
8691
+ /**
8692
+ * Delete cluster
8693
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8694
+ *
8695
+ * Deletes a cluster. A cloud cluster must be turned off first; an existing cluster is disconnected from the platform as part of the delete.
8696
+ */
8697
+ delete: operations["delete-cluster"];
8620
8698
  options?: never;
8621
8699
  head?: never;
8622
- patch?: never;
8700
+ /**
8701
+ * Update Cluster
8702
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8703
+ *
8704
+ * Updates a cluster's name, display name, description, tags, network, or group. Omitted fields are left unchanged.
8705
+ */
8706
+ patch: operations["update-cluster"];
8623
8707
  trace?: never;
8624
8708
  };
8625
8709
  "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/agent/upgrade": {
@@ -8644,6 +8728,68 @@ export interface paths {
8644
8728
  patch?: never;
8645
8729
  trace?: never;
8646
8730
  };
8731
+ "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/alerts": {
8732
+ parameters: {
8733
+ query?: never;
8734
+ header?: never;
8735
+ path?: never;
8736
+ cookie?: never;
8737
+ };
8738
+ /**
8739
+ * Get Cluster Alerts
8740
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8741
+ *
8742
+ * Returns a cluster's run-time alert and session cost limit settings.
8743
+ */
8744
+ get: operations["get-cluster-alerts"];
8745
+ /**
8746
+ * Update Cluster Alerts
8747
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8748
+ *
8749
+ * Replaces a cluster's run-time alert and session cost limit settings.
8750
+ */
8751
+ put: operations["update-cluster-alerts"];
8752
+ post?: never;
8753
+ delete?: never;
8754
+ options?: never;
8755
+ head?: never;
8756
+ patch?: never;
8757
+ trace?: never;
8758
+ };
8759
+ "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/attached-storages": {
8760
+ parameters: {
8761
+ query?: never;
8762
+ header?: never;
8763
+ path?: never;
8764
+ cookie?: never;
8765
+ };
8766
+ /**
8767
+ * Get Cluster Attached Storages
8768
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8769
+ *
8770
+ * Returns the filesystems mounted on a cluster as a discriminated union of platform storage resources and custom NFS exports.
8771
+ */
8772
+ get: operations["get-cluster-attached-storages"];
8773
+ /**
8774
+ * Update Cluster Attached Storages
8775
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8776
+ *
8777
+ * Replaces the filesystems mounted on a cloud cluster. Bucket mounts are forced read-only when the caller's or owner's bucket access is read-only. Existing clusters have no attached storages.
8778
+ */
8779
+ put: operations["update-cluster-attached-storages"];
8780
+ /**
8781
+ * Attach Cluster Storage
8782
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8783
+ *
8784
+ * Mounts one filesystem on a cloud cluster, leaving the rest untouched. Mounting a filesystem that is already mounted at the same path succeeds without changing anything. A cluster's own agent may call this for the cluster it runs on.
8785
+ */
8786
+ post: operations["attach-cluster-storage"];
8787
+ delete?: never;
8788
+ options?: never;
8789
+ head?: never;
8790
+ patch?: never;
8791
+ trace?: never;
8792
+ };
8647
8793
  "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/definition": {
8648
8794
  parameters: {
8649
8795
  query?: never;
@@ -8658,7 +8804,13 @@ export interface paths {
8658
8804
  * Returns a cloud or existing cluster's typed configuration variables as a per-CSP discriminated union.
8659
8805
  */
8660
8806
  get: operations["get-cluster-definition"];
8661
- put?: never;
8807
+ /**
8808
+ * Update Cluster Definition
8809
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8810
+ *
8811
+ * Replaces a cluster's configuration. A cloud cluster must be off. Fields omitted from the request are cleared.
8812
+ */
8813
+ put: operations["update-cluster-definition"];
8662
8814
  post?: never;
8663
8815
  delete?: never;
8664
8816
  options?: never;
@@ -8673,7 +8825,13 @@ export interface paths {
8673
8825
  path?: never;
8674
8826
  cookie?: never;
8675
8827
  };
8676
- get?: never;
8828
+ /**
8829
+ * Get cluster deployment
8830
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
8831
+ *
8832
+ * Returns a cluster deployment with its step-by-step progress and the storages it provisioned.
8833
+ */
8834
+ get: operations["get-cluster-deployment"];
8677
8835
  put?: never;
8678
8836
  post?: never;
8679
8837
  delete?: never;
@@ -8815,7 +8973,7 @@ export interface paths {
8815
8973
  * Get Cluster Permissions
8816
8974
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8817
8975
  *
8818
- * Returns access permissions for a cloud or existing cluster owned by the user.
8976
+ * Returns access permissions for a cloud cluster owned by the user. Existing clusters cannot be shared.
8819
8977
  */
8820
8978
  get: operations["get-user-cluster-permissions"];
8821
8979
  put?: never;
@@ -8827,11 +8985,33 @@ export interface paths {
8827
8985
  * Update Cluster Permissions
8828
8986
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8829
8987
  *
8830
- * Replaces access permissions for a cloud or existing cluster owned by the user.
8988
+ * Replaces access permissions for a cloud cluster owned by the user. Existing clusters cannot be shared.
8831
8989
  */
8832
8990
  patch: operations["update-user-cluster-permissions"];
8833
8991
  trace?: never;
8834
8992
  };
8993
+ "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/resume": {
8994
+ parameters: {
8995
+ query?: never;
8996
+ header?: never;
8997
+ path?: never;
8998
+ cookie?: never;
8999
+ };
9000
+ get?: never;
9001
+ put?: never;
9002
+ /**
9003
+ * Resume cluster
9004
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9005
+ *
9006
+ * Resumes a stopped cloud cluster, restarting its controller. Provisioning a cluster for the first time is a different operation.
9007
+ */
9008
+ post: operations["resume-cluster"];
9009
+ delete?: never;
9010
+ options?: never;
9011
+ head?: never;
9012
+ patch?: never;
9013
+ trace?: never;
9014
+ };
8835
9015
  "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/scheduler-jobs": {
8836
9016
  parameters: {
8837
9017
  query?: never;
@@ -8986,6 +9166,28 @@ export interface paths {
8986
9166
  patch?: never;
8987
9167
  trace?: never;
8988
9168
  };
9169
+ "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/stop": {
9170
+ parameters: {
9171
+ query?: never;
9172
+ header?: never;
9173
+ path?: never;
9174
+ cookie?: never;
9175
+ };
9176
+ get?: never;
9177
+ put?: never;
9178
+ /**
9179
+ * Stop cluster
9180
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9181
+ *
9182
+ * Stops a cloud cluster's controller. The cluster keeps its provisioned resources and can be started again.
9183
+ */
9184
+ post: operations["stop-cluster"];
9185
+ delete?: never;
9186
+ options?: never;
9187
+ head?: never;
9188
+ patch?: never;
9189
+ trace?: never;
9190
+ };
8989
9191
  "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/update-while-running": {
8990
9192
  parameters: {
8991
9193
  query?: never;
@@ -8999,7 +9201,7 @@ export interface paths {
8999
9201
  * Apply a configuration update to a running cluster
9000
9202
  * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
9001
9203
  *
9002
- * Applies partition and user bootstrap variable changes to a running cluster through the agent tunnel.
9204
+ * Applies partition, user bootstrap and desktop session variable changes to a running cluster through the agent tunnel.
9003
9205
  */
9004
9206
  post: operations["update-cluster-while-running"];
9005
9207
  delete?: never;
@@ -9008,29 +9210,29 @@ export interface paths {
9008
9210
  patch?: never;
9009
9211
  trace?: never;
9010
9212
  };
9011
- "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/workspace-mount": {
9213
+ "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/workspace-mounts": {
9012
9214
  parameters: {
9013
9215
  query?: never;
9014
9216
  header?: never;
9015
9217
  path?: never;
9016
9218
  cookie?: never;
9017
9219
  };
9018
- get?: never;
9019
- put?: never;
9020
9220
  /**
9021
- * Mount additional cluster directory to the user workspace
9221
+ * Get cluster workspace mounts
9022
9222
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9023
9223
  *
9024
- * Mounts a cluster directory to the cluster owner's user workspace.
9224
+ * Returns the cluster directories mounted into the user workspace.
9025
9225
  */
9026
- post: operations["mount-cluster-dir-to-user-workspace"];
9226
+ get: operations["get-cluster-workspace-mounts"];
9027
9227
  /**
9028
- * Remove cluster mount from user workspace
9228
+ * Update cluster workspace mounts
9029
9229
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9030
9230
  *
9031
- * Removes a cluster mount from the cluster owner's user workspace.
9231
+ * Replaces the cluster directories mounted into the user workspace.
9032
9232
  */
9033
- delete: operations["unmount-cluster-dir-from-user-workspace"];
9233
+ put: operations["update-cluster-workspace-mounts"];
9234
+ post?: never;
9235
+ delete?: never;
9034
9236
  options?: never;
9035
9237
  head?: never;
9036
9238
  patch?: never;
@@ -9186,6 +9388,28 @@ export interface paths {
9186
9388
  patch?: never;
9187
9389
  trace?: never;
9188
9390
  };
9391
+ "/api/organizations/{organization}/users/{user}/environments": {
9392
+ parameters: {
9393
+ query?: never;
9394
+ header?: never;
9395
+ path?: never;
9396
+ cookie?: never;
9397
+ };
9398
+ /**
9399
+ * List all environments
9400
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
9401
+ *
9402
+ * Returns every environment across the clusters the user can schedule on, for the compute picker.
9403
+ */
9404
+ get: operations["list-all-environments"];
9405
+ put?: never;
9406
+ post?: never;
9407
+ delete?: never;
9408
+ options?: never;
9409
+ head?: never;
9410
+ patch?: never;
9411
+ trace?: never;
9412
+ };
9189
9413
  "/api/organizations/{organization}/users/{user}/external-auth": {
9190
9414
  parameters: {
9191
9415
  query?: never;
@@ -9700,85 +9924,29 @@ export interface paths {
9700
9924
  patch?: never;
9701
9925
  trace?: never;
9702
9926
  };
9703
- "/api/organizations/{organization}/users/{user}/netappontap": {
9704
- parameters: {
9705
- query?: never;
9706
- header?: never;
9707
- path?: never;
9708
- cookie?: never;
9709
- };
9710
- /**
9711
- * List Storage: NetApp ONTAPs
9712
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9713
- *
9714
- * Returns all NetApp ONTAP storage systems for a user
9715
- */
9716
- get: operations["list-netappontap"];
9717
- put?: never;
9718
- /**
9719
- * Create Storage: NetApp ONTAP
9720
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9721
- *
9722
- * Creates a new NetApp ONTAP storage
9723
- */
9724
- post: operations["create-netappontap"];
9725
- delete?: never;
9726
- options?: never;
9727
- head?: never;
9728
- patch?: never;
9729
- trace?: never;
9730
- };
9731
- "/api/organizations/{organization}/users/{user}/netappontap/{name}": {
9732
- parameters: {
9733
- query?: never;
9734
- header?: never;
9735
- path?: never;
9736
- cookie?: never;
9737
- };
9738
- /**
9739
- * Get Storage: NetApp ONTAP
9740
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9741
- *
9742
- * Returns a NetApp ONTAP
9743
- */
9744
- get: operations["get-netappontap"];
9745
- put?: never;
9746
- post?: never;
9747
- delete?: never;
9748
- options?: never;
9749
- head?: never;
9750
- patch?: never;
9751
- trace?: never;
9752
- };
9753
- "/api/organizations/{organization}/users/{user}/netappontap/{ontapName}/volumes": {
9927
+ "/api/organizations/{organization}/users/{user}/network-interfaces": {
9754
9928
  parameters: {
9755
9929
  query?: never;
9756
9930
  header?: never;
9757
9931
  path?: never;
9758
9932
  cookie?: never;
9759
9933
  };
9760
- /**
9761
- * Get NetApp ONTAP volumes
9762
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9763
- *
9764
- * Returns a list of volumes from NetApp ONTAP storage.
9765
- */
9766
- get: operations["get-netapp-ontap-volumes"];
9934
+ get?: never;
9767
9935
  put?: never;
9768
9936
  /**
9769
- * Create NetApp ONTAP volume
9937
+ * Create network interface
9770
9938
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9771
9939
  *
9772
- * Creates a new volume on NetApp ONTAP storage.
9940
+ * Creates a new network interface with a static MAC address. It gets a static public IP unless its network is private.
9773
9941
  */
9774
- post: operations["create-netapp-ontap-volume"];
9942
+ post: operations["create-network-interface"];
9775
9943
  delete?: never;
9776
9944
  options?: never;
9777
9945
  head?: never;
9778
9946
  patch?: never;
9779
9947
  trace?: never;
9780
9948
  };
9781
- "/api/organizations/{organization}/users/{user}/netappontap/{ontapName}/volumes/{volumeId}": {
9949
+ "/api/organizations/{organization}/users/{user}/network-interfaces/{name}": {
9782
9950
  parameters: {
9783
9951
  query?: never;
9784
9952
  header?: never;
@@ -9789,12 +9957,12 @@ export interface paths {
9789
9957
  put?: never;
9790
9958
  post?: never;
9791
9959
  /**
9792
- * Delete NetApp ONTAP volume
9960
+ * Delete network interface
9793
9961
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9794
9962
  *
9795
- * Deletes a volume from NetApp ONTAP storage.
9963
+ * Deletes the specified network interface, releasing it and its public IP.
9796
9964
  */
9797
- delete: operations["delete-netapp-ontap-volume"];
9965
+ delete: operations["delete-network-interface"];
9798
9966
  options?: never;
9799
9967
  head?: never;
9800
9968
  patch?: never;
@@ -13418,14 +13586,14 @@ export interface components {
13418
13586
  region?: string;
13419
13587
  /** @description Replace an existing version's variables instead of adding a new version. */
13420
13588
  replace?: boolean;
13421
- /** Format: int64 */
13589
+ /** @description Root disk size in GiB. */
13422
13590
  rootSize?: number;
13423
13591
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13424
13592
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13425
- slurmResumeTimeout?: unknown;
13426
- slurmReturnToService?: unknown;
13427
- slurmSuspendTime?: unknown;
13428
- slurmSuspendTimeout?: unknown;
13593
+ slurmResumeTimeout?: number;
13594
+ slurmReturnToService?: number;
13595
+ slurmSuspendTime?: number;
13596
+ slurmSuspendTimeout?: number;
13429
13597
  userBootstrap?: string;
13430
13598
  userBootstrapCompute?: boolean;
13431
13599
  userBootstrapController?: boolean;
@@ -13500,23 +13668,22 @@ export interface components {
13500
13668
  controllerInstanceType?: string;
13501
13669
  disks?: components["schemas"]["ClusterDisk"][] | null;
13502
13670
  healthCheck?: string;
13671
+ /** @description Mount point of the controller's local disk; only applies when the controller instance type has a local disk. */
13503
13672
  localDiskMountPoint?: string;
13673
+ /** @description Export the controller's local disk over NFS; only applies when the controller instance type has a local disk. */
13504
13674
  localDiskNFS?: boolean;
13505
- localdiskLabel?: {
13506
- [key: string]: unknown;
13507
- };
13508
13675
  partitions?: components["schemas"]["AzureSlurmPartition"][] | null;
13509
13676
  region?: string;
13510
13677
  /** @description Replace an existing version's variables instead of adding a new version. */
13511
13678
  replace?: boolean;
13512
- /** Format: int64 */
13679
+ /** @description Root disk size in GiB. */
13513
13680
  rootSize?: number;
13514
13681
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13515
13682
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13516
- slurmResumeTimeout?: unknown;
13517
- slurmReturnToService?: unknown;
13518
- slurmSuspendTime?: unknown;
13519
- slurmSuspendTimeout?: unknown;
13683
+ slurmResumeTimeout?: number;
13684
+ slurmReturnToService?: number;
13685
+ slurmSuspendTime?: number;
13686
+ slurmSuspendTimeout?: number;
13520
13687
  userBootstrap?: string;
13521
13688
  userBootstrapCompute?: boolean;
13522
13689
  userBootstrapController?: boolean;
@@ -13603,22 +13770,19 @@ export interface components {
13603
13770
  controllerInstanceType?: string;
13604
13771
  controllerTier1?: boolean;
13605
13772
  disks?: components["schemas"]["ClusterDisk"][] | null;
13606
- googleLabel?: {
13607
- [key: string]: unknown;
13608
- };
13609
13773
  healthCheck?: string;
13610
13774
  partitions?: components["schemas"]["GoogleSlurmPartition"][] | null;
13611
13775
  region?: string;
13612
13776
  /** @description Replace an existing version's variables instead of adding a new version. */
13613
13777
  replace?: boolean;
13614
- /** Format: int64 */
13778
+ /** @description Root disk size in GiB. */
13615
13779
  rootSize?: number;
13616
13780
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13617
13781
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13618
- slurmResumeTimeout?: unknown;
13619
- slurmReturnToService?: unknown;
13620
- slurmSuspendTime?: unknown;
13621
- slurmSuspendTimeout?: unknown;
13782
+ slurmResumeTimeout?: number;
13783
+ slurmReturnToService?: number;
13784
+ slurmSuspendTime?: number;
13785
+ slurmSuspendTimeout?: number;
13622
13786
  userBootstrap?: string;
13623
13787
  userBootstrapCompute?: boolean;
13624
13788
  userBootstrapController?: boolean;
@@ -13635,10 +13799,6 @@ export interface components {
13635
13799
  yaml: string;
13636
13800
  };
13637
13801
  AddOpenstackSlurmVersionInputBody: {
13638
- architecture?: string;
13639
- attachedStorages?: {
13640
- [key: string]: unknown;
13641
- }[] | null;
13642
13802
  controllerImage?: string;
13643
13803
  controllerInstanceType?: string;
13644
13804
  floatingIpNetwork?: string;
@@ -13650,10 +13810,10 @@ export interface components {
13650
13810
  replace?: boolean;
13651
13811
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13652
13812
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13653
- slurmResumeTimeout?: unknown;
13654
- slurmReturnToService?: unknown;
13655
- slurmSuspendTime?: unknown;
13656
- slurmSuspendTimeout?: unknown;
13813
+ slurmResumeTimeout?: number;
13814
+ slurmReturnToService?: number;
13815
+ slurmSuspendTime?: number;
13816
+ slurmSuspendTimeout?: number;
13657
13817
  userBootstrap?: string;
13658
13818
  userBootstrapCompute?: boolean;
13659
13819
  userBootstrapController?: boolean;
@@ -13679,25 +13839,23 @@ export interface components {
13679
13839
  architecture?: string;
13680
13840
  controllerImage?: string;
13681
13841
  controllerInstanceType?: string;
13682
- /** Format: int64 */
13842
+ /** @description Memory in GiB when the controller instance type is a flexible shape. */
13683
13843
  controllerMemoryGb?: number;
13684
- /** Format: int64 */
13844
+ /** @description OCPU count when the controller instance type is a flexible shape. */
13685
13845
  controllerOcpus?: number;
13686
- disks?: components["schemas"]["ClusterDisk"][] | null;
13687
13846
  healthCheck?: string;
13688
- isFlex?: boolean;
13689
13847
  partitions?: components["schemas"]["OracleSlurmPartition"][] | null;
13690
13848
  region?: string;
13691
13849
  /** @description Replace an existing version's variables instead of adding a new version. */
13692
13850
  replace?: boolean;
13693
- /** Format: int64 */
13851
+ /** @description Root disk size in GiB. */
13694
13852
  rootSize?: number;
13695
13853
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13696
13854
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13697
- slurmResumeTimeout?: unknown;
13698
- slurmReturnToService?: unknown;
13699
- slurmSuspendTime?: unknown;
13700
- slurmSuspendTimeout?: unknown;
13855
+ slurmResumeTimeout?: number;
13856
+ slurmReturnToService?: number;
13857
+ slurmSuspendTime?: number;
13858
+ slurmSuspendTimeout?: number;
13701
13859
  userBootstrap?: string;
13702
13860
  userBootstrapCompute?: boolean;
13703
13861
  userBootstrapController?: boolean;
@@ -13731,10 +13889,6 @@ export interface components {
13731
13889
  replace?: boolean;
13732
13890
  /** @description Repository URL. */
13733
13891
  repo?: string;
13734
- /** @description Skip the git checkout step. */
13735
- skipCheckout?: boolean;
13736
- /** @description Sparse-checkout paths. */
13737
- sparsecheckout?: string[] | null;
13738
13892
  /** @description Path to the thumbnail image within the repo. */
13739
13893
  thumbnail?: string;
13740
13894
  /** @description Version label to add (must start with v). */
@@ -14519,6 +14673,12 @@ export interface components {
14519
14673
  readonly workspaceId?: string;
14520
14674
  };
14521
14675
  AwsSlurmDefinition: {
14676
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
14677
+ ansible_fetch_command?: string;
14678
+ /** @description Marketplace-injected fetch command output location. */
14679
+ ansible_fetch_command_output?: string;
14680
+ /** @description Marketplace-injected fetch destination. */
14681
+ ansible_fetch_location?: string;
14522
14682
  architecture?: string;
14523
14683
  controllerImage?: string;
14524
14684
  controllerInstanceType?: string;
@@ -14526,20 +14686,23 @@ export interface components {
14526
14686
  debugMode?: boolean;
14527
14687
  /** @description Desktop session settings. */
14528
14688
  desktopSession?: components["schemas"]["DesktopSessionSettings"];
14529
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
14689
+ disks?: components["schemas"]["ClusterControllerDisk"][] | null;
14530
14690
  healthCheck?: string;
14691
+ /** @description Id of the attached IP address or network interface. Clusters saved before network-interface support hold the raw IP address instead. */
14692
+ ipAddress?: string;
14531
14693
  partitions?: components["schemas"]["ClusterAwsSlurmPartition"][] | null;
14532
14694
  region?: string;
14695
+ /** @description Root disk size in GiB. */
14533
14696
  rootSize?: number;
14534
14697
  slurmResumeTimeout?: number;
14535
14698
  slurmReturnToService?: number;
14536
14699
  slurmSuspendTime?: number;
14537
14700
  slurmSuspendTimeout?: number;
14538
14701
  /**
14539
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
14702
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
14540
14703
  * @enum {string}
14541
14704
  */
14542
- subtype: "aws-slurm";
14705
+ type: "aws-slurm";
14543
14706
  userBootstrap?: string;
14544
14707
  userBootstrapCompute?: boolean;
14545
14708
  userBootstrapController?: boolean;
@@ -14548,22 +14711,17 @@ export interface components {
14548
14711
  AwsSlurmPartition: {
14549
14712
  architecture?: string;
14550
14713
  capacityBlock?: boolean;
14551
- capacityReservation?: boolean;
14552
14714
  capacityReservationId?: string;
14553
- default?: unknown;
14715
+ default?: boolean;
14554
14716
  disks?: components["schemas"]["ClusterDisk"][] | null;
14555
- efa?: boolean;
14556
14717
  elasticImage?: string;
14557
14718
  instanceType?: string;
14558
- /** Format: int64 */
14559
14719
  maxNodes?: number;
14560
14720
  multiZone?: boolean;
14561
- multipleNetworkCards?: boolean;
14562
14721
  name?: string;
14563
14722
  placementGroup?: string;
14564
14723
  preemptible?: boolean;
14565
14724
  provisioningMode?: string;
14566
- /** Format: int64 */
14567
14725
  suspendTime?: number;
14568
14726
  usePlacementGroup?: boolean;
14569
14727
  zone?: string;
@@ -14577,14 +14735,14 @@ export interface components {
14577
14735
  healthCheck?: string;
14578
14736
  partitions?: components["schemas"]["AwsSlurmPartition"][] | null;
14579
14737
  region?: string;
14580
- /** Format: int64 */
14738
+ /** @description Root disk size in GiB. */
14581
14739
  rootSize?: number;
14582
14740
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
14583
14741
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
14584
- slurmResumeTimeout?: unknown;
14585
- slurmReturnToService?: unknown;
14586
- slurmSuspendTime?: unknown;
14587
- slurmSuspendTimeout?: unknown;
14742
+ slurmResumeTimeout?: number;
14743
+ slurmReturnToService?: number;
14744
+ slurmSuspendTime?: number;
14745
+ slurmSuspendTimeout?: number;
14588
14746
  /**
14589
14747
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
14590
14748
  * @enum {string}
@@ -15148,6 +15306,12 @@ export interface components {
15148
15306
  url: string;
15149
15307
  };
15150
15308
  AzureSlurmDefinition: {
15309
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
15310
+ ansible_fetch_command?: string;
15311
+ /** @description Marketplace-injected fetch command output location. */
15312
+ ansible_fetch_command_output?: string;
15313
+ /** @description Marketplace-injected fetch destination. */
15314
+ ansible_fetch_location?: string;
15151
15315
  architecture?: string;
15152
15316
  controllerImage?: string;
15153
15317
  controllerInstanceType?: string;
@@ -15155,45 +15319,46 @@ export interface components {
15155
15319
  debugMode?: boolean;
15156
15320
  /** @description Desktop session settings. */
15157
15321
  desktopSession?: components["schemas"]["DesktopSessionSettings"];
15158
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
15322
+ disks?: components["schemas"]["ClusterControllerDisk"][] | null;
15159
15323
  healthCheck?: string;
15324
+ /** @description Id of the attached IP address or network interface. Clusters saved before network-interface support hold the raw IP address instead. */
15325
+ ipAddress?: string;
15326
+ /** @description Mount point of the controller's local disk; only applies when the controller instance type has a local disk. */
15327
+ localDiskMountPoint?: string;
15328
+ /** @description Export the controller's local disk over NFS; only applies when the controller instance type has a local disk. */
15329
+ localDiskNFS?: boolean;
15160
15330
  partitions?: components["schemas"]["ClusterAzureSlurmPartition"][] | null;
15161
15331
  region?: string;
15332
+ /** @description Root disk size in GiB. */
15162
15333
  rootSize?: number;
15163
15334
  slurmResumeTimeout?: number;
15164
15335
  slurmReturnToService?: number;
15165
15336
  slurmSuspendTime?: number;
15166
15337
  slurmSuspendTimeout?: number;
15167
15338
  /**
15168
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
15339
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
15169
15340
  * @enum {string}
15170
15341
  */
15171
- subtype: "azure-slurm";
15342
+ type: "azure-slurm";
15172
15343
  userBootstrap?: string;
15173
15344
  userBootstrapCompute?: boolean;
15174
15345
  userBootstrapController?: boolean;
15175
15346
  zone?: string;
15176
15347
  };
15177
15348
  AzureSlurmPartition: {
15178
- acceleratedNetworking?: boolean;
15179
15349
  architecture?: string;
15180
- default?: unknown;
15350
+ default?: boolean;
15181
15351
  disks?: components["schemas"]["ClusterDisk"][] | null;
15182
15352
  elasticImage?: string;
15183
- has_acc_networking_feature?: boolean;
15184
15353
  instanceType?: string;
15354
+ /** @description Mount point for the instance's local (temporary) disk. */
15185
15355
  localDiskMountPoint?: string;
15186
- /** Format: int64 */
15187
15356
  maxNodes?: number;
15188
15357
  name?: string;
15189
15358
  preemptible?: boolean;
15190
15359
  provisioningMode?: string;
15191
- reservation?: boolean;
15192
15360
  reservationId?: string;
15193
- show_local_disk?: boolean;
15194
- /** Format: int64 */
15195
15361
  suspendTime?: number;
15196
- useLocalDisk?: boolean;
15197
15362
  zone?: string;
15198
15363
  };
15199
15364
  AzureSlurmVersionSettings: {
@@ -15202,21 +15367,20 @@ export interface components {
15202
15367
  controllerInstanceType?: string;
15203
15368
  disks?: components["schemas"]["ClusterDisk"][] | null;
15204
15369
  healthCheck?: string;
15370
+ /** @description Mount point of the controller's local disk; only applies when the controller instance type has a local disk. */
15205
15371
  localDiskMountPoint?: string;
15372
+ /** @description Export the controller's local disk over NFS; only applies when the controller instance type has a local disk. */
15206
15373
  localDiskNFS?: boolean;
15207
- localdiskLabel?: {
15208
- [key: string]: unknown;
15209
- };
15210
15374
  partitions?: components["schemas"]["AzureSlurmPartition"][] | null;
15211
15375
  region?: string;
15212
- /** Format: int64 */
15376
+ /** @description Root disk size in GiB. */
15213
15377
  rootSize?: number;
15214
15378
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
15215
15379
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
15216
- slurmResumeTimeout?: unknown;
15217
- slurmReturnToService?: unknown;
15218
- slurmSuspendTime?: unknown;
15219
- slurmSuspendTimeout?: unknown;
15380
+ slurmResumeTimeout?: number;
15381
+ slurmReturnToService?: number;
15382
+ slurmSuspendTime?: number;
15383
+ slurmSuspendTimeout?: number;
15220
15384
  /**
15221
15385
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
15222
15386
  * @enum {string}
@@ -15410,6 +15574,8 @@ export interface components {
15410
15574
  canGetCredentials: boolean;
15411
15575
  /** @description Whether credentials the requesting user obtains for this bucket allow writing objects (owner, or shared with the Admin or Mount Storage permission) */
15412
15576
  canWrite: boolean;
15577
+ /** @description The cloud account name to which the bucket belongs. */
15578
+ cloudAccount?: string;
15413
15579
  /** @description Cloud service provider of the bucket */
15414
15580
  csp: string;
15415
15581
  /** @description Display name of the bucket */
@@ -15431,8 +15597,6 @@ export interface components {
15431
15597
  * @description Deprecated: Use 'user' instead. Username of the bucket owner.
15432
15598
  */
15433
15599
  namespace: string;
15434
- /** @description The network name to which the bucket is attached. */
15435
- network?: string;
15436
15600
  /** @description Region where the bucket is located */
15437
15601
  region: string;
15438
15602
  /** @description Indicates if the bucket is sessionless */
@@ -15512,6 +15676,11 @@ export interface components {
15512
15676
  BucketResource: {
15513
15677
  /** @description Name of the bucket. */
15514
15678
  bucketName?: string;
15679
+ /**
15680
+ * @description The name of the cloud account to which the bucket belongs.
15681
+ * @example my-cloud-account
15682
+ */
15683
+ cloudAccount: string;
15515
15684
  /**
15516
15685
  * @description The description of the storage.
15517
15686
  * @example This is a sample storage.
@@ -15529,11 +15698,6 @@ export interface components {
15529
15698
  * @example myGroup
15530
15699
  */
15531
15700
  group: string;
15532
- /**
15533
- * @description The network name to which the storage is attached.
15534
- * @example my-network
15535
- */
15536
- network: string;
15537
15701
  /** @description Region the storage will be provisioned in. */
15538
15702
  region: string;
15539
15703
  /**
@@ -15990,6 +16154,7 @@ export interface components {
15990
16154
  organization: string;
15991
16155
  peeredToPlatform: boolean;
15992
16156
  provisioningMode?: string;
16157
+ rdmaProfile?: string;
15993
16158
  regions: components["schemas"]["ConfigRegion"][] | null;
15994
16159
  status: string;
15995
16160
  /** Format: date-time */
@@ -15999,6 +16164,7 @@ export interface components {
15999
16164
  id: string;
16000
16165
  name: string;
16001
16166
  provisioningMode?: string;
16167
+ rdmaProfile?: string;
16002
16168
  regions: components["schemas"]["ConfigRegion"][] | null;
16003
16169
  status: string;
16004
16170
  };
@@ -16038,13 +16204,18 @@ export interface components {
16038
16204
  /** @description Sub-variant identifier */
16039
16205
  variant?: string;
16040
16206
  };
16207
+ ClusterAlerts: {
16208
+ /** @description Notifies the owner at a fixed interval while the cluster is running. */
16209
+ runTimeAlert: components["schemas"]["RunTimeAlert"];
16210
+ /** @description Notifies the owner, and optionally terminates the cluster, when a session's cost reaches a threshold. */
16211
+ sessionCostLimit: components["schemas"]["SessionCostLimit"];
16212
+ };
16041
16213
  ClusterAwsSlurmPartition: {
16042
16214
  architecture?: string;
16043
16215
  capacityBlock?: boolean;
16044
- capacityReservation?: boolean;
16045
16216
  capacityReservationId?: string;
16046
16217
  default?: boolean;
16047
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16218
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16048
16219
  elasticImage?: string;
16049
16220
  instanceType?: string;
16050
16221
  maxNodes?: number;
@@ -16061,28 +16232,81 @@ export interface components {
16061
16232
  ClusterAzureSlurmPartition: {
16062
16233
  architecture?: string;
16063
16234
  default?: boolean;
16064
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16235
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16065
16236
  elasticImage?: string;
16066
16237
  instanceType?: string;
16238
+ /** @description Mount point for the instance's local (temporary) disk. */
16239
+ localDiskMountPoint?: string;
16067
16240
  maxNodes?: number;
16068
16241
  name?: string;
16069
16242
  preemptible?: boolean;
16070
16243
  provisioningMode?: string;
16071
- reservation?: boolean;
16072
16244
  reservationId?: string;
16073
16245
  suspendTime?: number;
16074
16246
  zone?: string;
16075
16247
  };
16248
+ ClusterControllerDisk: {
16249
+ /** @description Id of the attached persistent disk; empty for an inline disk. */
16250
+ diskId?: string;
16251
+ encrypted?: boolean;
16252
+ iops?: number;
16253
+ mountPoint?: string;
16254
+ nfsExport?: boolean;
16255
+ /** @description Disk size in GiB. */
16256
+ sizeGb?: number;
16257
+ /** @description Id of the snapshot the disk is restored from; empty when the disk starts blank. */
16258
+ snapshot?: string;
16259
+ throughput?: number;
16260
+ type?: string;
16261
+ };
16262
+ ClusterDeployment: {
16263
+ /**
16264
+ * Format: date-time
16265
+ * @description When the deployment started
16266
+ */
16267
+ createdAt: string;
16268
+ /**
16269
+ * Format: int64
16270
+ * @description The deployment number
16271
+ */
16272
+ deploymentNumber: number;
16273
+ /** @description The deployment ID */
16274
+ id: string;
16275
+ /** @description Step-by-step progress of the deployment */
16276
+ provisionStatus: components["schemas"]["ClusterDeploymentProvisionStatus"];
16277
+ /** @description The current status of the deployment */
16278
+ status?: string;
16279
+ /** @description Storages provisioned by the deployment */
16280
+ storages: components["schemas"]["ClusterDeploymentStorage"][] | null;
16281
+ };
16282
+ ClusterDeploymentProvisionStatus: {
16283
+ /** @description Progress records for tearing the cluster down */
16284
+ deletion?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
16285
+ /** @description Progress records for provisioning the cluster */
16286
+ provision?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
16287
+ /** @description Progress records for the cluster scheduler */
16288
+ scheduler?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
16289
+ /** @description Progress records for provisioning storage */
16290
+ storage?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
16291
+ };
16292
+ ClusterDeploymentStorage: {
16293
+ /** @description The ID of the storage resource */
16294
+ id: string;
16295
+ /**
16296
+ * Format: int64
16297
+ * @description The position of the storage among the deployment's storages
16298
+ */
16299
+ index: number;
16300
+ /** @description The name of the storage resource */
16301
+ name: string;
16302
+ };
16076
16303
  ClusterDisk: {
16077
16304
  encrypted?: boolean;
16078
- /** Format: int64 */
16079
16305
  iops?: number;
16080
16306
  mountPoint?: string;
16081
16307
  nfsExport?: boolean;
16082
- restore_snapshot?: boolean;
16083
- /** Format: int64 */
16308
+ /** @description Disk size in GiB. */
16084
16309
  sizeGb?: number;
16085
- /** Format: int64 */
16086
16310
  throughput?: number;
16087
16311
  type?: string;
16088
16312
  };
@@ -16101,7 +16325,7 @@ export interface components {
16101
16325
  ClusterGoogleSlurmPartition: {
16102
16326
  architecture?: string;
16103
16327
  default?: boolean;
16104
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16328
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16105
16329
  elasticImage?: string;
16106
16330
  flexStartWaitTime?: number;
16107
16331
  gpuCount?: number;
@@ -16112,11 +16336,10 @@ export interface components {
16112
16336
  maxNodes?: number;
16113
16337
  multiZone?: boolean;
16114
16338
  name?: string;
16115
- os?: string;
16116
16339
  placementGroup?: string;
16117
16340
  preemptible?: boolean;
16118
16341
  provisioningMode?: string;
16119
- reservation?: boolean;
16342
+ rdmaNetwork?: string;
16120
16343
  reservationId?: string;
16121
16344
  suspendTime?: number;
16122
16345
  tier1?: boolean;
@@ -16157,23 +16380,14 @@ export interface components {
16157
16380
  /** Format: date-time */
16158
16381
  timestamp: string;
16159
16382
  };
16160
- ClusterNodeDisk: {
16161
- encrypted?: boolean;
16162
- iops?: number;
16163
- mountPoint?: string;
16164
- nfsExport?: boolean;
16165
- sizeGb?: number;
16166
- /** @description Platform snapshot id the disk is restored from; empty when the disk starts blank. */
16167
- snapshot?: string;
16168
- throughput?: number;
16169
- type?: string;
16170
- };
16171
16383
  ClusterNodeResponse: {
16172
16384
  /**
16173
16385
  * Format: date-time
16174
16386
  * @description The node creation timestamp
16175
16387
  */
16176
16388
  createdAt?: string;
16389
+ /** @description The cloud provider's identifier for the node */
16390
+ cspId?: string;
16177
16391
  /** @description The node ID */
16178
16392
  id: string;
16179
16393
  /** @description The node hostname */
@@ -16191,7 +16405,7 @@ export interface components {
16191
16405
  architecture?: string;
16192
16406
  associateFloatingIp?: boolean;
16193
16407
  default?: boolean;
16194
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16408
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16195
16409
  elasticImage?: string;
16196
16410
  instanceType?: string;
16197
16411
  maxNodes?: number;
@@ -16200,16 +16414,30 @@ export interface components {
16200
16414
  ClusterOracleSlurmPartition: {
16201
16415
  architecture?: string;
16202
16416
  default?: boolean;
16203
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16417
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16204
16418
  elasticImage?: string;
16205
16419
  instanceType?: string;
16206
16420
  maxNodes?: number;
16421
+ /** @description Memory in GiB when the instance type is a flexible shape. */
16207
16422
  memoryGb?: number;
16208
16423
  name?: string;
16424
+ /** @description OCPU count when the instance type is a flexible shape. */
16209
16425
  ocpus?: number;
16210
16426
  suspendTime?: number;
16211
16427
  zone?: string;
16212
16428
  };
16429
+ ClusterPartitionDisk: {
16430
+ encrypted?: boolean;
16431
+ iops?: number;
16432
+ mountPoint?: string;
16433
+ nfsExport?: boolean;
16434
+ /** @description Disk size in GiB. */
16435
+ sizeGb?: number;
16436
+ /** @description Id of the snapshot the disk is restored from; empty when the disk starts blank. */
16437
+ snapshot?: string;
16438
+ throughput?: number;
16439
+ type?: string;
16440
+ };
16213
16441
  ClusterResponse: {
16214
16442
  /**
16215
16443
  * @description Cost tracking status for the cluster
@@ -16262,36 +16490,26 @@ export interface components {
16262
16490
  iops?: number;
16263
16491
  mountPoint?: string;
16264
16492
  nfsExport?: boolean;
16265
- restore_snapshot?: boolean;
16266
16493
  /** Format: int64 */
16267
16494
  sizeGb?: number;
16268
16495
  snapshot?: string;
16269
16496
  /** Format: int64 */
16270
16497
  throughput?: number;
16271
16498
  type?: string;
16272
- } & {
16273
- [key: string]: unknown;
16274
16499
  };
16275
16500
  ClusterUpdatePartition: {
16276
- acceleratedNetworking?: boolean;
16277
16501
  architecture?: string;
16278
16502
  capacityBlock?: boolean;
16279
- capacityReservation?: boolean;
16280
16503
  capacityReservationId?: string;
16281
- customSuspendTime?: boolean;
16282
- default?: unknown;
16504
+ default?: boolean;
16283
16505
  disks?: components["schemas"]["ClusterUpdateDisk"][] | null;
16284
- efa?: boolean;
16285
16506
  elasticImage?: string;
16286
16507
  /** Format: int64 */
16287
16508
  flexStartWaitTime?: number;
16288
16509
  /** Format: int64 */
16289
16510
  gpuCount?: number;
16290
16511
  gpuType?: string;
16291
- gvnic?: boolean;
16292
- has_acc_networking_feature?: boolean;
16293
16512
  instanceType?: string;
16294
- isFlex?: boolean;
16295
16513
  localDiskMountPoint?: string;
16296
16514
  maxDistance?: string;
16297
16515
  /** Format: int64 */
@@ -16300,30 +16518,25 @@ export interface components {
16300
16518
  maxNodes?: number;
16301
16519
  /** Format: int64 */
16302
16520
  memoryGb?: number;
16303
- migrateOnMaintenance?: boolean;
16304
16521
  multiZone?: boolean;
16305
- multipleNetworkCards?: boolean;
16306
16522
  name?: string;
16307
16523
  /** Format: int64 */
16308
16524
  ocpus?: number;
16309
- os?: string;
16310
16525
  placementGroup?: string;
16311
16526
  preemptible?: boolean;
16312
16527
  provisioningMode?: string;
16313
- reservation?: boolean;
16528
+ rdmaNetwork?: string;
16314
16529
  reservationId?: string;
16315
- show_local_disk?: boolean;
16316
16530
  /** Format: int64 */
16317
16531
  suspendTime?: number;
16318
16532
  tier1?: boolean;
16319
- useLocalDisk?: boolean;
16320
16533
  usePlacementGroup?: boolean;
16321
16534
  zone?: string;
16322
16535
  zones?: string[] | null;
16323
- } & {
16324
- [key: string]: unknown;
16325
16536
  };
16326
16537
  ClusterUpdateVariables: {
16538
+ /** @description Desktop session settings. Applied to sessions started after the update; running sessions keep their current settings. */
16539
+ desktopSession?: components["schemas"]["DesktopSessionSettings"];
16327
16540
  /** @description Slurm partition definitions */
16328
16541
  partitions?: components["schemas"]["ClusterUpdatePartition"][];
16329
16542
  /** @description Max seconds to wait for nodes to start */
@@ -16698,6 +16911,112 @@ export interface components {
16698
16911
  /** @description Short, human-readable alert title. */
16699
16912
  title: string;
16700
16913
  };
16914
+ CreateAwsSlurmClusterBody: {
16915
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
16916
+ ansible_fetch_command?: string;
16917
+ /** @description Marketplace-injected fetch command output location. */
16918
+ ansible_fetch_command_output?: string;
16919
+ /** @description Marketplace-injected fetch destination. */
16920
+ ansible_fetch_location?: string;
16921
+ architecture?: string;
16922
+ controllerImage?: string;
16923
+ controllerInstanceType?: string;
16924
+ /** @description Admin-set provisioning debug flag. */
16925
+ debugMode?: boolean;
16926
+ /** @description Description. */
16927
+ description?: string;
16928
+ /** @description Desktop session settings. */
16929
+ desktopSession?: components["schemas"]["DesktopSessionSettings"];
16930
+ disks?: components["schemas"]["ClusterControllerDisk"][] | null;
16931
+ /** @description Display name; defaults to the cluster name. */
16932
+ displayName?: string;
16933
+ /** @description Name of the cluster this one was duplicated from; recorded in the audit trail. */
16934
+ duplicatedFrom?: string;
16935
+ healthCheck?: string;
16936
+ /** @description Id of the attached IP address or network interface. Clusters saved before network-interface support hold the raw IP address instead. */
16937
+ ipAddress?: string;
16938
+ /**
16939
+ * @description Cluster name; only lowercase letters and numbers.
16940
+ * @example mycluster
16941
+ */
16942
+ name: string;
16943
+ partitions?: components["schemas"]["ClusterAwsSlurmPartition"][] | null;
16944
+ region?: string;
16945
+ /** @description Root disk size in GiB. */
16946
+ rootSize?: number;
16947
+ /** @description Notifies the owner at a fixed interval while the cluster is running; cloud clusters only. */
16948
+ runTimeAlert?: components["schemas"]["RunTimeAlert"];
16949
+ slurmResumeTimeout?: number;
16950
+ slurmReturnToService?: number;
16951
+ slurmSuspendTime?: number;
16952
+ slurmSuspendTimeout?: number;
16953
+ /** @description Tags. */
16954
+ tags?: string[];
16955
+ /**
16956
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
16957
+ * @enum {string}
16958
+ */
16959
+ type: "aws-slurm";
16960
+ userBootstrap?: string;
16961
+ userBootstrapCompute?: boolean;
16962
+ userBootstrapController?: boolean;
16963
+ zone?: string;
16964
+ };
16965
+ CreateAzureSlurmClusterBody: {
16966
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
16967
+ ansible_fetch_command?: string;
16968
+ /** @description Marketplace-injected fetch command output location. */
16969
+ ansible_fetch_command_output?: string;
16970
+ /** @description Marketplace-injected fetch destination. */
16971
+ ansible_fetch_location?: string;
16972
+ architecture?: string;
16973
+ controllerImage?: string;
16974
+ controllerInstanceType?: string;
16975
+ /** @description Admin-set provisioning debug flag. */
16976
+ debugMode?: boolean;
16977
+ /** @description Description. */
16978
+ description?: string;
16979
+ /** @description Desktop session settings. */
16980
+ desktopSession?: components["schemas"]["DesktopSessionSettings"];
16981
+ disks?: components["schemas"]["ClusterControllerDisk"][] | null;
16982
+ /** @description Display name; defaults to the cluster name. */
16983
+ displayName?: string;
16984
+ /** @description Name of the cluster this one was duplicated from; recorded in the audit trail. */
16985
+ duplicatedFrom?: string;
16986
+ healthCheck?: string;
16987
+ /** @description Id of the attached IP address or network interface. Clusters saved before network-interface support hold the raw IP address instead. */
16988
+ ipAddress?: string;
16989
+ /** @description Mount point of the controller's local disk; only applies when the controller instance type has a local disk. */
16990
+ localDiskMountPoint?: string;
16991
+ /** @description Export the controller's local disk over NFS; only applies when the controller instance type has a local disk. */
16992
+ localDiskNFS?: boolean;
16993
+ /**
16994
+ * @description Cluster name; only lowercase letters and numbers.
16995
+ * @example mycluster
16996
+ */
16997
+ name: string;
16998
+ partitions?: components["schemas"]["ClusterAzureSlurmPartition"][] | null;
16999
+ region?: string;
17000
+ /** @description Root disk size in GiB. */
17001
+ rootSize?: number;
17002
+ /** @description Notifies the owner at a fixed interval while the cluster is running; cloud clusters only. */
17003
+ runTimeAlert?: components["schemas"]["RunTimeAlert"];
17004
+ slurmResumeTimeout?: number;
17005
+ slurmReturnToService?: number;
17006
+ slurmSuspendTime?: number;
17007
+ slurmSuspendTimeout?: number;
17008
+ /** @description Tags. */
17009
+ tags?: string[];
17010
+ /**
17011
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17012
+ * @enum {string}
17013
+ */
17014
+ type: "azure-slurm";
17015
+ userBootstrap?: string;
17016
+ userBootstrapCompute?: boolean;
17017
+ userBootstrapController?: boolean;
17018
+ zone?: string;
17019
+ };
16701
17020
  CreateCloudAccountBody: {
16702
17021
  /** @description AWS access key ID */
16703
17022
  awsAccessKeyId?: string;
@@ -16815,6 +17134,99 @@ export interface components {
16815
17134
  */
16816
17135
  schedulerType: "slurm" | "pbs";
16817
17136
  };
17137
+ CreateExistingClusterBody: {
17138
+ /**
17139
+ * @description How the platform authenticates to the cluster.
17140
+ * @enum {string}
17141
+ */
17142
+ authMethod?: "workspace-key" | "pw-cli" | "proxy-certificates" | "ssh-key";
17143
+ /** @description Description. */
17144
+ description?: string;
17145
+ /** @description Desktop session settings. */
17146
+ desktopSession?: components["schemas"]["DesktopSessionSettings"];
17147
+ /** @description Display name; defaults to the cluster name. */
17148
+ displayName?: string;
17149
+ /** @description Name of the cluster this one was duplicated from; recorded in the audit trail. */
17150
+ duplicatedFrom?: string;
17151
+ /** @description Jump (bastion) host; omit to connect directly. */
17152
+ jumpNodeHost?: string;
17153
+ /** @description Jump (bastion) user. */
17154
+ jumpNodeUser?: string;
17155
+ /**
17156
+ * @description Cluster name; only lowercase letters and numbers.
17157
+ * @example mycluster
17158
+ */
17159
+ name: string;
17160
+ /** @description Notifies the owner at a fixed interval while the cluster is running; cloud clusters only. */
17161
+ runTimeAlert?: components["schemas"]["RunTimeAlert"];
17162
+ /** @description Scheduler type, e.g. slurm. */
17163
+ schedulerType?: string;
17164
+ /** @description Login nodes. */
17165
+ slurmLoginNodes?: components["schemas"]["PoolSlurmLoginNode"][] | null;
17166
+ /** @description SLURM username (supports __USER__). */
17167
+ slurmUsername?: string;
17168
+ /** @description Name of the owner's SSH key to authenticate with; only applies when the auth method is ssh-key. */
17169
+ sshKey?: string;
17170
+ /** @description Tags. */
17171
+ tags?: string[];
17172
+ /**
17173
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17174
+ * @enum {string}
17175
+ */
17176
+ type: "existing";
17177
+ };
17178
+ CreateGoogleSlurmClusterBody: {
17179
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
17180
+ ansible_fetch_command?: string;
17181
+ /** @description Marketplace-injected fetch command output location. */
17182
+ ansible_fetch_command_output?: string;
17183
+ /** @description Marketplace-injected fetch destination. */
17184
+ ansible_fetch_location?: string;
17185
+ architecture?: string;
17186
+ controllerImage?: string;
17187
+ controllerInstanceType?: string;
17188
+ controllerTier1?: boolean;
17189
+ /** @description Admin-set provisioning debug flag. */
17190
+ debugMode?: boolean;
17191
+ /** @description Description. */
17192
+ description?: string;
17193
+ /** @description Desktop session settings. */
17194
+ desktopSession?: components["schemas"]["DesktopSessionSettings"];
17195
+ disks?: components["schemas"]["ClusterControllerDisk"][] | null;
17196
+ /** @description Display name; defaults to the cluster name. */
17197
+ displayName?: string;
17198
+ /** @description Name of the cluster this one was duplicated from; recorded in the audit trail. */
17199
+ duplicatedFrom?: string;
17200
+ healthCheck?: string;
17201
+ /** @description Id of the attached IP address or network interface. Clusters saved before network-interface support hold the raw IP address instead. */
17202
+ ipAddress?: string;
17203
+ /**
17204
+ * @description Cluster name; only lowercase letters and numbers.
17205
+ * @example mycluster
17206
+ */
17207
+ name: string;
17208
+ partitions?: components["schemas"]["ClusterGoogleSlurmPartition"][] | null;
17209
+ region?: string;
17210
+ /** @description Root disk size in GiB. */
17211
+ rootSize?: number;
17212
+ /** @description Notifies the owner at a fixed interval while the cluster is running; cloud clusters only. */
17213
+ runTimeAlert?: components["schemas"]["RunTimeAlert"];
17214
+ slurmResumeTimeout?: number;
17215
+ slurmReturnToService?: number;
17216
+ slurmSuspendTime?: number;
17217
+ slurmSuspendTimeout?: number;
17218
+ /** @description Tags. */
17219
+ tags?: string[];
17220
+ /**
17221
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17222
+ * @enum {string}
17223
+ */
17224
+ type: "google-slurm";
17225
+ userBootstrap?: string;
17226
+ userBootstrapCompute?: boolean;
17227
+ userBootstrapController?: boolean;
17228
+ zone?: string;
17229
+ };
16818
17230
  CreateIndexBody: {
16819
17231
  /**
16820
17232
  * Format: int64
@@ -16864,23 +17276,6 @@ export interface components {
16864
17276
  /** @description Namespace name */
16865
17277
  name: string;
16866
17278
  };
16867
- CreateNetAppOntapInputBody: {
16868
- /** @description Admin account username */
16869
- adminAccount: string;
16870
- /** @description Admin account password */
16871
- adminPassword: string;
16872
- /** @description Description of the NetApp ONTAP */
16873
- description?: string;
16874
- /**
16875
- * @description Name of the NetApp ONTAP
16876
- * @example my-ontap
16877
- */
16878
- name: string;
16879
- /** @description IP address or hostname of the NetApp ONTAP server */
16880
- serverAddress: string;
16881
- /** @description Tags for the NetApp ONTAP */
16882
- tags?: string;
16883
- };
16884
17279
  CreateNetworkBody: {
16885
17280
  /** @description Name of the network */
16886
17281
  name: string;
@@ -16890,10 +17285,14 @@ export interface components {
16890
17285
  peeredToPlatform: boolean;
16891
17286
  /** @description Provisioning mode for the network */
16892
17287
  provisioningMode: string;
17288
+ /** @description RDMA network profile: 'irdma' (Falcon, for H4D). Empty for a standard VPC. Google only. */
17289
+ rdmaProfile?: string;
16893
17290
  /** @description List of regions and their CIDR blocks */
16894
17291
  regions: components["schemas"]["NetworkRegion"][] | null;
16895
17292
  /** @description Transit Gateway ID (required for private mode on AWS when peered to platform) */
16896
17293
  transitGatewayId: string;
17294
+ /** @description Zone for a zonal RDMA network profile (required when rdmaProfile is set). */
17295
+ zone?: string;
16897
17296
  };
16898
17297
  CreateNotificationBody: {
16899
17298
  /** @description Optional URL to link the notification to */
@@ -16926,6 +17325,104 @@ export interface components {
16926
17325
  /** @description Usernames that did not receive the notification */
16927
17326
  failedToNotifyUsers?: string[] | null;
16928
17327
  };
17328
+ CreateOpenstackSlurmClusterBody: {
17329
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
17330
+ ansible_fetch_command?: string;
17331
+ /** @description Marketplace-injected fetch command output location. */
17332
+ ansible_fetch_command_output?: string;
17333
+ /** @description Marketplace-injected fetch destination. */
17334
+ ansible_fetch_location?: string;
17335
+ controllerImage?: string;
17336
+ controllerInstanceType?: string;
17337
+ /** @description Admin-set provisioning debug flag. */
17338
+ debugMode?: boolean;
17339
+ /** @description Description. */
17340
+ description?: string;
17341
+ /** @description Desktop session settings. */
17342
+ desktopSession?: components["schemas"]["DesktopSessionSettings"];
17343
+ /** @description Display name; defaults to the cluster name. */
17344
+ displayName?: string;
17345
+ /** @description Name of the cluster this one was duplicated from; recorded in the audit trail. */
17346
+ duplicatedFrom?: string;
17347
+ floatingIpNetwork?: string;
17348
+ healthCheck?: string;
17349
+ /**
17350
+ * @description Cluster name; only lowercase letters and numbers.
17351
+ * @example mycluster
17352
+ */
17353
+ name: string;
17354
+ networkId?: string;
17355
+ partitions?: components["schemas"]["ClusterOpenstackSlurmPartition"][] | null;
17356
+ region?: string;
17357
+ /** @description Notifies the owner at a fixed interval while the cluster is running; cloud clusters only. */
17358
+ runTimeAlert?: components["schemas"]["RunTimeAlert"];
17359
+ slurmResumeTimeout?: number;
17360
+ slurmReturnToService?: number;
17361
+ slurmSuspendTime?: number;
17362
+ slurmSuspendTimeout?: number;
17363
+ /** @description Tags. */
17364
+ tags?: string[];
17365
+ /**
17366
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17367
+ * @enum {string}
17368
+ */
17369
+ type: "openstack-slurm";
17370
+ userBootstrap?: string;
17371
+ userBootstrapCompute?: boolean;
17372
+ userBootstrapController?: boolean;
17373
+ };
17374
+ CreateOracleSlurmClusterBody: {
17375
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
17376
+ ansible_fetch_command?: string;
17377
+ /** @description Marketplace-injected fetch command output location. */
17378
+ ansible_fetch_command_output?: string;
17379
+ /** @description Marketplace-injected fetch destination. */
17380
+ ansible_fetch_location?: string;
17381
+ architecture?: string;
17382
+ controllerImage?: string;
17383
+ controllerInstanceType?: string;
17384
+ /** @description Memory in GiB when the controller instance type is a flexible shape. */
17385
+ controllerMemoryGb?: number;
17386
+ /** @description OCPU count when the controller instance type is a flexible shape. */
17387
+ controllerOcpus?: number;
17388
+ /** @description Admin-set provisioning debug flag. */
17389
+ debugMode?: boolean;
17390
+ /** @description Description. */
17391
+ description?: string;
17392
+ /** @description Desktop session settings. */
17393
+ desktopSession?: components["schemas"]["DesktopSessionSettings"];
17394
+ /** @description Display name; defaults to the cluster name. */
17395
+ displayName?: string;
17396
+ /** @description Name of the cluster this one was duplicated from; recorded in the audit trail. */
17397
+ duplicatedFrom?: string;
17398
+ healthCheck?: string;
17399
+ /**
17400
+ * @description Cluster name; only lowercase letters and numbers.
17401
+ * @example mycluster
17402
+ */
17403
+ name: string;
17404
+ partitions?: components["schemas"]["ClusterOracleSlurmPartition"][] | null;
17405
+ region?: string;
17406
+ /** @description Root disk size in GiB. */
17407
+ rootSize?: number;
17408
+ /** @description Notifies the owner at a fixed interval while the cluster is running; cloud clusters only. */
17409
+ runTimeAlert?: components["schemas"]["RunTimeAlert"];
17410
+ slurmResumeTimeout?: number;
17411
+ slurmReturnToService?: number;
17412
+ slurmSuspendTime?: number;
17413
+ slurmSuspendTimeout?: number;
17414
+ /** @description Tags. */
17415
+ tags?: string[];
17416
+ /**
17417
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17418
+ * @enum {string}
17419
+ */
17420
+ type: "oracle-slurm";
17421
+ userBootstrap?: string;
17422
+ userBootstrapCompute?: boolean;
17423
+ userBootstrapController?: boolean;
17424
+ zone?: string;
17425
+ };
16929
17426
  CreateOrgAIProviderBody: {
16930
17427
  /** @description Organization-scoped provider credential */
16931
17428
  apiKey?: string;
@@ -17147,33 +17644,6 @@ export interface components {
17147
17644
  */
17148
17645
  value: string;
17149
17646
  };
17150
- CreateVolumeRequestBody: {
17151
- /**
17152
- * @description Aggregate name where the volume will be created
17153
- * @example aggr1
17154
- */
17155
- aggregate: string;
17156
- /**
17157
- * @description Export path for the volume (must start with /)
17158
- * @example /my-volume
17159
- */
17160
- path: string;
17161
- /**
17162
- * @description Size of the volume in GB
17163
- * @example 100
17164
- */
17165
- size: string;
17166
- /**
17167
- * @description Storage VM name
17168
- * @example svm1
17169
- */
17170
- svm: string;
17171
- /**
17172
- * @description Name of the volume to create
17173
- * @example my-volume
17174
- */
17175
- volumeName: string;
17176
- };
17177
17647
  CreateWebhookBody: {
17178
17648
  /** @description Optional description of the webhook. */
17179
17649
  description?: string;
@@ -17210,8 +17680,6 @@ export interface components {
17210
17680
  name: string;
17211
17681
  /** @description Remote workflow configuration (required for remote type) */
17212
17682
  remote?: components["schemas"]["RemoteWorkflowSettings"];
17213
- /** @description Skip automatic repository checkout during job preparation */
17214
- skipCheckout?: boolean;
17215
17683
  /**
17216
17684
  * @description Selected workflow subtype (required for remote type)
17217
17685
  * @enum {string}
@@ -17607,8 +18075,14 @@ export interface components {
17607
18075
  * @description Number of available nodes.
17608
18076
  */
17609
18077
  readonly availNodes?: number;
18078
+ /** @description Display name of the environment's cluster. Populated only by the all-environments listing. */
18079
+ readonly clusterDisplayName?: string;
17610
18080
  /** @description The cluster this environment belongs to. */
17611
18081
  readonly clusterId: string;
18082
+ /** @description Canonical name of the environment's cluster. Populated only by the all-environments listing. */
18083
+ readonly clusterName?: string;
18084
+ /** @description Owner username of the environment's cluster, empty for managed clusters. Populated only by the all-environments listing. */
18085
+ readonly clusterUser?: string;
17612
18086
  /**
17613
18087
  * Format: date-time
17614
18088
  * @description Creation time.
@@ -17869,9 +18343,14 @@ export interface components {
17869
18343
  variables: components["schemas"]["ExistingClusterVariables"];
17870
18344
  };
17871
18345
  ExistingClusterDefinition: {
18346
+ /**
18347
+ * @description How the platform authenticates to the cluster.
18348
+ * @enum {string}
18349
+ */
18350
+ authMethod?: "workspace-key" | "pw-cli" | "proxy-certificates" | "ssh-key";
17872
18351
  /** @description Desktop session settings. */
17873
18352
  desktopSession?: components["schemas"]["DesktopSessionSettings"];
17874
- /** @description Jump (bastion) host. */
18353
+ /** @description Jump (bastion) host; omit to connect directly. */
17875
18354
  jumpNodeHost?: string;
17876
18355
  /** @description Jump (bastion) user. */
17877
18356
  jumpNodeUser?: string;
@@ -17881,13 +18360,13 @@ export interface components {
17881
18360
  slurmLoginNodes?: components["schemas"]["PoolSlurmLoginNode"][] | null;
17882
18361
  /** @description SLURM username (supports __USER__). */
17883
18362
  slurmUsername?: string;
18363
+ /** @description Name of the owner's SSH key to authenticate with; only applies when the auth method is ssh-key. */
18364
+ sshKey?: string;
17884
18365
  /**
17885
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
18366
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17886
18367
  * @enum {string}
17887
18368
  */
17888
- subtype: "existing";
17889
- /** @description Cluster directories mounted into the user workspace. */
17890
- workspaceMounts?: components["schemas"]["PoolWorkspaceMount"][] | null;
18369
+ type: "existing";
17891
18370
  };
17892
18371
  ExistingClusterLoginNode: {
17893
18372
  /** @description Login node hostname */
@@ -18037,6 +18516,8 @@ export interface components {
18037
18516
  ephemeral?: boolean;
18038
18517
  /** @description Name for the forked resource. */
18039
18518
  newName: string;
18519
+ /** @description Username to create the resource for. Defaults to you; to name someone else you must be an administrator of their organization. */
18520
+ owner?: string;
18040
18521
  /** @description Version of the marketplace item to fork. */
18041
18522
  version: string;
18042
18523
  };
@@ -18077,10 +18558,12 @@ export interface components {
18077
18558
  * @example 2
18078
18559
  */
18079
18560
  activeNodes: number;
18080
- /** @description Existing-cluster only: the agent version currently registered for this cluster's tunnel. Empty when no agent is reporting. */
18561
+ /** @description The agent version currently reported for this cluster. Empty when no agent is reporting. */
18081
18562
  agentVersion?: string;
18082
18563
  /** @description The allocation threshold for the cluster's group (only for cloud clusters). */
18083
18564
  allocationThreshold?: components["schemas"]["AllocationThreshold"];
18565
+ /** @description Whether the requesting user may change this cluster's configuration. */
18566
+ canEdit?: boolean;
18084
18567
  /**
18085
18568
  * @description The SSH connection string for the resource.
18086
18569
  * @example user@192.168.1.1
@@ -18113,7 +18596,7 @@ export interface components {
18113
18596
  */
18114
18597
  group?: string;
18115
18598
  /** @description The unique identifier of the resource. */
18116
- id?: string;
18599
+ id: string;
18117
18600
  /** @description The image URL of the resource. */
18118
18601
  imageUrl?: string;
18119
18602
  /**
@@ -18124,6 +18607,12 @@ export interface components {
18124
18607
  ipAddress: string;
18125
18608
  /** @description Existing-cluster only: the configured auth method (an SSH key name, or a sentinel such as "pwcli" for clusters that connect via the CLI on the node). */
18126
18609
  key?: string;
18610
+ /**
18611
+ * Format: int64
18612
+ * @description The number of the cluster's most recent deployment. Absent when the cluster has never been deployed.
18613
+ * @example 7
18614
+ */
18615
+ latestDeploymentNumber?: number;
18127
18616
  /**
18128
18617
  * Format: int64
18129
18618
  * @description The maximum number of nodes the cluster can scale to.
@@ -18135,6 +18624,8 @@ export interface components {
18135
18624
  * @example mycluster
18136
18625
  */
18137
18626
  name: string;
18627
+ /** @description Cloud-cluster only: the id of the network the cluster is provisioned into. */
18628
+ network?: string;
18138
18629
  /**
18139
18630
  * @description Existing-cluster only: the operating system auto-detected on the controller node.
18140
18631
  * @example linux
@@ -18183,6 +18674,8 @@ export interface components {
18183
18674
  * @enum {string|null}
18184
18675
  */
18185
18676
  type: "aws-slurm" | "azure-slurm" | "google-slurm" | "openstack-slurm" | "oracle-slurm" | "managed-cluster" | "existing" | null;
18677
+ /** @description True when a failed status came from a configuration update of a running cluster rather than from a failed start, which is the difference between a retryable update and a cluster that must be destroyed. */
18678
+ updateFailed: boolean;
18186
18679
  /**
18187
18680
  * @description The owner of the resource.
18188
18681
  * @example Jake.Thayne
@@ -18553,6 +19046,12 @@ export interface components {
18553
19046
  zone?: string;
18554
19047
  };
18555
19048
  GoogleSlurmDefinition: {
19049
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
19050
+ ansible_fetch_command?: string;
19051
+ /** @description Marketplace-injected fetch command output location. */
19052
+ ansible_fetch_command_output?: string;
19053
+ /** @description Marketplace-injected fetch destination. */
19054
+ ansible_fetch_location?: string;
18556
19055
  architecture?: string;
18557
19056
  controllerImage?: string;
18558
19057
  controllerInstanceType?: string;
@@ -18561,20 +19060,23 @@ export interface components {
18561
19060
  debugMode?: boolean;
18562
19061
  /** @description Desktop session settings. */
18563
19062
  desktopSession?: components["schemas"]["DesktopSessionSettings"];
18564
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
19063
+ disks?: components["schemas"]["ClusterControllerDisk"][] | null;
18565
19064
  healthCheck?: string;
19065
+ /** @description Id of the attached IP address or network interface. Clusters saved before network-interface support hold the raw IP address instead. */
19066
+ ipAddress?: string;
18566
19067
  partitions?: components["schemas"]["ClusterGoogleSlurmPartition"][] | null;
18567
19068
  region?: string;
19069
+ /** @description Root disk size in GiB. */
18568
19070
  rootSize?: number;
18569
19071
  slurmResumeTimeout?: number;
18570
19072
  slurmReturnToService?: number;
18571
19073
  slurmSuspendTime?: number;
18572
19074
  slurmSuspendTimeout?: number;
18573
19075
  /**
18574
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
19076
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
18575
19077
  * @enum {string}
18576
19078
  */
18577
- subtype: "google-slurm";
19079
+ type: "google-slurm";
18578
19080
  userBootstrap?: string;
18579
19081
  userBootstrapCompute?: boolean;
18580
19082
  userBootstrapController?: boolean;
@@ -18582,32 +19084,23 @@ export interface components {
18582
19084
  };
18583
19085
  GoogleSlurmPartition: {
18584
19086
  architecture?: string;
18585
- customSuspendTime?: boolean;
18586
- default?: unknown;
19087
+ default?: boolean;
18587
19088
  disks?: components["schemas"]["ClusterDisk"][] | null;
18588
19089
  elasticImage?: string;
18589
- /** Format: int64 */
18590
19090
  flexStartWaitTime?: number;
18591
- /** Format: int64 */
18592
19091
  gpuCount?: number;
18593
19092
  gpuType?: string;
18594
- gvnic?: boolean;
18595
19093
  instanceType?: string;
18596
19094
  maxDistance?: string;
18597
- /** Format: int64 */
18598
19095
  maxDuration?: number;
18599
- /** Format: int64 */
18600
19096
  maxNodes?: number;
18601
- migrateOnMaintenance?: boolean;
18602
19097
  multiZone?: boolean;
18603
19098
  name?: string;
18604
- os?: string;
18605
19099
  placementGroup?: string;
18606
19100
  preemptible?: boolean;
18607
19101
  provisioningMode?: string;
18608
- reservation?: boolean;
19102
+ rdmaNetwork?: string;
18609
19103
  reservationId?: string;
18610
- /** Format: int64 */
18611
19104
  suspendTime?: number;
18612
19105
  tier1?: boolean;
18613
19106
  usePlacementGroup?: boolean;
@@ -18620,20 +19113,17 @@ export interface components {
18620
19113
  controllerInstanceType?: string;
18621
19114
  controllerTier1?: boolean;
18622
19115
  disks?: components["schemas"]["ClusterDisk"][] | null;
18623
- googleLabel?: {
18624
- [key: string]: unknown;
18625
- };
18626
19116
  healthCheck?: string;
18627
19117
  partitions?: components["schemas"]["GoogleSlurmPartition"][] | null;
18628
19118
  region?: string;
18629
- /** Format: int64 */
19119
+ /** @description Root disk size in GiB. */
18630
19120
  rootSize?: number;
18631
19121
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
18632
19122
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
18633
- slurmResumeTimeout?: unknown;
18634
- slurmReturnToService?: unknown;
18635
- slurmSuspendTime?: unknown;
18636
- slurmSuspendTimeout?: unknown;
19123
+ slurmResumeTimeout?: number;
19124
+ slurmReturnToService?: number;
19125
+ slurmSuspendTime?: number;
19126
+ slurmSuspendTimeout?: number;
18637
19127
  /**
18638
19128
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
18639
19129
  * @enum {string}
@@ -19779,7 +20269,10 @@ export interface components {
19779
20269
  imageUrl: string;
19780
20270
  /** @description Platform name of the Lustre */
19781
20271
  name: string;
19782
- /** @description User who created the Lustre */
20272
+ /**
20273
+ * @deprecated
20274
+ * @description Deprecated: Use 'user' instead. Username of the Lustre owner.
20275
+ */
19783
20276
  namespace: string;
19784
20277
  /** @description VPC Network associated with the Lustre */
19785
20278
  network?: string;
@@ -19809,6 +20302,8 @@ export interface components {
19809
20302
  type: string;
19810
20303
  /** @description Parallel Works URI for the Lustre (pw://user/name) */
19811
20304
  uri: string;
20305
+ /** @description Username of the Lustre owner */
20306
+ user: string;
19812
20307
  /** @description Zone of the Lustre */
19813
20308
  zone?: string;
19814
20309
  };
@@ -20561,12 +21056,6 @@ export interface components {
20561
21056
  /** @description The path inside your workspace where the resource is mounted. __USER__, __CLUSTER__, and __INSTANCE__ are placeholders that get filled in with your username, cluster name, or instance name. */
20562
21057
  workspacePath: string;
20563
21058
  };
20564
- MountWorkspaceDirectoryBody: {
20565
- /** @description The cluster directory to mount to the workspace. */
20566
- clusterPath: string;
20567
- /** @description The folder in the workspace to mount to the cluster. */
20568
- workspacePath: string;
20569
- };
20570
21059
  Name: {
20571
21060
  familyName?: string;
20572
21061
  formatted?: string;
@@ -20617,77 +21106,6 @@ export interface components {
20617
21106
  */
20618
21107
  totalNamespaces: number;
20619
21108
  };
20620
- NetAppOntap: {
20621
- /** @description Resources the storage is attached to. */
20622
- attachedTo?: components["schemas"]["StorageAttachment"][];
20623
- /** @description Cloud service provider of the storage. */
20624
- csp: string;
20625
- /** @description Indicates if the storage is currently being provisioned. */
20626
- currentlyProvisioning: boolean;
20627
- /** @description Description of the storage. */
20628
- description?: string;
20629
- /** @description Display name of the storage. */
20630
- displayName?: string;
20631
- /** @description Indicates if the storage is a favorite for the requesting user. */
20632
- favorite: boolean;
20633
- /** @description Indicates if the storage is in a GovCloud environment. */
20634
- govCloud?: boolean;
20635
- /** @description Group the storage bills to. */
20636
- group?: string;
20637
- /** @description ID of the storage. */
20638
- id: string;
20639
- /** @description URL of the icon used for the storage. This will be empty if the default image is used. */
20640
- imageUrl?: string;
20641
- /** @description Name of the storage. */
20642
- name: string;
20643
- /** @description Network the storage uses to provision. */
20644
- network?: string;
20645
- /** @description Error message if the storage provisioning failed. */
20646
- provisionError?: string;
20647
- /** @description Indicates if the storage has been provisioned. */
20648
- provisioned: boolean;
20649
- /** @description Runtime alert information for the storage. */
20650
- runtimeAlert?: components["schemas"]["RunAlert"];
20651
- /** @description IP address of the NetApp ONTAP management host */
20652
- serverAddress?: string;
20653
- /** @description Session cost limit information for the storage. */
20654
- sessionCostLimit?: components["schemas"]["SessionAlert"];
20655
- /**
20656
- * Format: int64
20657
- * @description Session number of the storage.
20658
- */
20659
- sessionNumber?: number;
20660
- /** @description Indicates if the storage is sessionless. */
20661
- sessionless: boolean;
20662
- /** @description Sharing permissions of the storage. */
20663
- shared: components["schemas"]["Shared"][] | null;
20664
- /** @description Current status of the storage. */
20665
- status?: string;
20666
- /** @description List of Storage Virtual Machines (SVMs) and their aggregates */
20667
- svms?: components["schemas"]["OntapSvm"][] | null;
20668
- /** @description Tags associated with the storage. */
20669
- tags?: string[];
20670
- /** @description Type of storage. */
20671
- type: string;
20672
- /** @description User associated with the storage. */
20673
- user: string;
20674
- };
20675
- NetAppOntapResponse: {
20676
- /** @description Cloud service provider */
20677
- csp: string;
20678
- /** @description Unique identifier of the NetApp ONTAP */
20679
- id: string;
20680
- /** @description Name of the NetApp ONTAP */
20681
- name: string;
20682
- /** @description User namespace */
20683
- namespace: string;
20684
- /** @description Whether the NetApp ONTAP is provisioned */
20685
- provisioned: boolean;
20686
- /** @description Storage type */
20687
- type: string;
20688
- /** @description List of volumes */
20689
- volumes?: components["schemas"]["VolumeSummary"][];
20690
- };
20691
21109
  Network: {
20692
21110
  /** @description The ID of the cloud account associated with the network. */
20693
21111
  cloudAccount: string;
@@ -20717,12 +21135,101 @@ export interface components {
20717
21135
  provisioned: boolean;
20718
21136
  /** @description The provisioning mode of the network. */
20719
21137
  provisioningMode: string;
21138
+ /** @description RDMA network profile ('irdma'); empty for a standard network. */
21139
+ rdmaProfile?: string;
20720
21140
  /** @description The list of regions available for the network. */
20721
21141
  regions: string[] | null;
20722
21142
  /** @description The tags associated with the network. */
20723
21143
  tags: string[] | null;
20724
21144
  /** @description The ID of the transit gateway associated with the network. */
20725
21145
  transitGatewayId: string;
21146
+ /** @description Zone for a zonal RDMA network. */
21147
+ zone?: string;
21148
+ };
21149
+ NetworkInterface: {
21150
+ /**
21151
+ * @description The resource to which this network interface is attached.
21152
+ * @example Jake.Thayne/myCompute
21153
+ */
21154
+ readonly attachedTo?: string;
21155
+ /**
21156
+ * @description The cloud service provider for the network interface.
21157
+ * @example aws
21158
+ */
21159
+ csp: string;
21160
+ /**
21161
+ * @description The description of the network interface resource.
21162
+ * @example This is a sample network interface resource.
21163
+ */
21164
+ description: string;
21165
+ /**
21166
+ * @description The group name to which the network interface will be associated.
21167
+ * @example myGroup
21168
+ */
21169
+ group: string;
21170
+ /**
21171
+ * @description The unique identifier of the network interface resource.
21172
+ * @example 60c72b2f9b1e8d001c8e4f3a
21173
+ */
21174
+ readonly id?: string;
21175
+ /**
21176
+ * @description The MAC address of the network interface. For Azure it is assigned on first attach.
21177
+ * @example 02:42:ac:11:00:02
21178
+ */
21179
+ readonly macAddress?: string;
21180
+ /**
21181
+ * @description The name of the network interface resource.
21182
+ * @example myNic
21183
+ */
21184
+ name: string;
21185
+ /**
21186
+ * @description The network name in which the network interface is created.
21187
+ * @example my-network
21188
+ */
21189
+ network: string;
21190
+ /**
21191
+ * @description The private IP address of the network interface.
21192
+ * @example 10.0.0.5
21193
+ */
21194
+ readonly privateIp?: string;
21195
+ /**
21196
+ * @description The current provisioning status of the network interface.
21197
+ * @example provisioned
21198
+ */
21199
+ readonly provisionStatus?: string;
21200
+ /**
21201
+ * @description Whether the network interface is provisioned.
21202
+ * @example true
21203
+ */
21204
+ readonly provisioned?: boolean;
21205
+ /**
21206
+ * @description The static public IP address associated with the network interface, if the network is public.
21207
+ * @example 34.208.10.5
21208
+ */
21209
+ readonly publicIp?: string;
21210
+ /**
21211
+ * @description The region where the network interface will be provisioned.
21212
+ * @example us-west-2
21213
+ */
21214
+ region: string;
21215
+ /**
21216
+ * @description The tags associated with the network interface resource.
21217
+ * @example [
21218
+ * "\"tag1\"",
21219
+ * "\"tag2\""
21220
+ * ]
21221
+ */
21222
+ tags: string[] | null;
21223
+ /**
21224
+ * @description The username of the user that owns this resource.
21225
+ * @example Jake.Thayne
21226
+ */
21227
+ readonly user?: string;
21228
+ /**
21229
+ * @description The availability zone of the network interface (AWS only).
21230
+ * @example us-west-2a
21231
+ */
21232
+ zone?: string;
20726
21233
  };
20727
21234
  NetworkPermissions: {
20728
21235
  /** @description The names of the groups that have access */
@@ -20760,7 +21267,10 @@ export interface components {
20760
21267
  imageUrl: string;
20761
21268
  /** @description Platform name of the NFS */
20762
21269
  name: string;
20763
- /** @description User who created the NFS */
21270
+ /**
21271
+ * @deprecated
21272
+ * @description Deprecated: Use 'user' instead. Username of the NFS owner.
21273
+ */
20764
21274
  namespace: string;
20765
21275
  /** @description Region of the NFS */
20766
21276
  region?: string;
@@ -20781,6 +21291,37 @@ export interface components {
20781
21291
  type: string;
20782
21292
  /** @description Parallel Works URI for the NFS (pw://user/name) */
20783
21293
  uri: string;
21294
+ /** @description Username of the NFS owner */
21295
+ user: string;
21296
+ };
21297
+ NfsAttachedStorage: {
21298
+ /**
21299
+ * @description Kind discriminator. (enum property replaced by openapi-typescript)
21300
+ * @enum {string}
21301
+ */
21302
+ kind: "nfs";
21303
+ /**
21304
+ * @description The path the filesystem is mounted at on the cluster.
21305
+ * @example /home
21306
+ */
21307
+ mountPoint: string | null;
21308
+ /**
21309
+ * @description Mount options passed to the NFS client.
21310
+ * @example defaults
21311
+ */
21312
+ nfsOptions?: string;
21313
+ /** @description Whether the mount is read-only. */
21314
+ readOnly?: boolean;
21315
+ /**
21316
+ * @description Hostname or IP address of the NFS server.
21317
+ * @example 10.0.0.5
21318
+ */
21319
+ server?: string;
21320
+ /**
21321
+ * @description The path exported by the NFS server; the root is used when empty.
21322
+ * @example /export/home
21323
+ */
21324
+ serverPath?: string;
20784
21325
  };
20785
21326
  NodeAccessManagementBody: {
20786
21327
  /** @description Enable pam_mkhomedir for automatic home directory creation */
@@ -21050,31 +21591,6 @@ export interface components {
21050
21591
  /** @description Userinfo claim used for the platform username of new users, defaults to "username"; falls back to the local part of the email when the claim is missing */
21051
21592
  usernameClaim?: string;
21052
21593
  };
21053
- OntapAggregate: {
21054
- /**
21055
- * Format: int64
21056
- * @description Available size in bytes
21057
- */
21058
- availableSize: number;
21059
- /** @description Name of the aggregate */
21060
- name: string;
21061
- /** @description SnapLock type of the aggregate */
21062
- snapLockType: string;
21063
- /** @description State of the aggregate */
21064
- state: string;
21065
- /** @description Type of the aggregate */
21066
- type: string;
21067
- /** @description UUID of the aggregate */
21068
- uuid: string;
21069
- };
21070
- OntapSvm: {
21071
- /** @description List of aggregates available in the SVM */
21072
- aggregates: components["schemas"]["OntapAggregate"][] | null;
21073
- /** @description Name of the SVM */
21074
- name: string;
21075
- /** @description UUID of the SVM */
21076
- uuid: string;
21077
- };
21078
21594
  OpenIDConfiguration: {
21079
21595
  /** @description JSON array containing a list of claim names */
21080
21596
  claims_supported: string[] | null;
@@ -21121,7 +21637,12 @@ export interface components {
21121
21637
  zones: string[] | null;
21122
21638
  };
21123
21639
  OpenstackSlurmDefinition: {
21124
- architecture?: string;
21640
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
21641
+ ansible_fetch_command?: string;
21642
+ /** @description Marketplace-injected fetch command output location. */
21643
+ ansible_fetch_command_output?: string;
21644
+ /** @description Marketplace-injected fetch destination. */
21645
+ ansible_fetch_location?: string;
21125
21646
  controllerImage?: string;
21126
21647
  controllerInstanceType?: string;
21127
21648
  /** @description Admin-set provisioning debug flag. */
@@ -21138,10 +21659,10 @@ export interface components {
21138
21659
  slurmSuspendTime?: number;
21139
21660
  slurmSuspendTimeout?: number;
21140
21661
  /**
21141
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
21662
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
21142
21663
  * @enum {string}
21143
21664
  */
21144
- subtype: "openstack-slurm";
21665
+ type: "openstack-slurm";
21145
21666
  userBootstrap?: string;
21146
21667
  userBootstrapCompute?: boolean;
21147
21668
  userBootstrapController?: boolean;
@@ -21149,20 +21670,14 @@ export interface components {
21149
21670
  OpenstackSlurmPartition: {
21150
21671
  architecture?: string;
21151
21672
  associateFloatingIp?: boolean;
21152
- controllerInstanceType?: string;
21153
- default?: unknown;
21673
+ default?: boolean;
21154
21674
  disks?: components["schemas"]["ClusterDisk"][] | null;
21155
21675
  elasticImage?: string;
21156
21676
  instanceType?: string;
21157
- /** Format: int64 */
21158
21677
  maxNodes?: number;
21159
21678
  name?: string;
21160
21679
  };
21161
21680
  OpenstackSlurmVersionSettings: {
21162
- architecture?: string;
21163
- attachedStorages?: {
21164
- [key: string]: unknown;
21165
- }[] | null;
21166
21681
  controllerImage?: string;
21167
21682
  controllerInstanceType?: string;
21168
21683
  floatingIpNetwork?: string;
@@ -21172,10 +21687,10 @@ export interface components {
21172
21687
  region?: string;
21173
21688
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
21174
21689
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
21175
- slurmResumeTimeout?: unknown;
21176
- slurmReturnToService?: unknown;
21177
- slurmSuspendTime?: unknown;
21178
- slurmSuspendTimeout?: unknown;
21690
+ slurmResumeTimeout?: number;
21691
+ slurmReturnToService?: number;
21692
+ slurmSuspendTime?: number;
21693
+ slurmSuspendTimeout?: number;
21179
21694
  /**
21180
21695
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
21181
21696
  * @enum {string}
@@ -21359,10 +21874,18 @@ export interface components {
21359
21874
  subtype: "oracle-oraclefs";
21360
21875
  };
21361
21876
  OracleSlurmDefinition: {
21877
+ /** @description Marketplace-injected fetch command; omitted from a save to clear it when the cluster switches marketplace configuration. */
21878
+ ansible_fetch_command?: string;
21879
+ /** @description Marketplace-injected fetch command output location. */
21880
+ ansible_fetch_command_output?: string;
21881
+ /** @description Marketplace-injected fetch destination. */
21882
+ ansible_fetch_location?: string;
21362
21883
  architecture?: string;
21363
21884
  controllerImage?: string;
21364
21885
  controllerInstanceType?: string;
21886
+ /** @description Memory in GiB when the controller instance type is a flexible shape. */
21365
21887
  controllerMemoryGb?: number;
21888
+ /** @description OCPU count when the controller instance type is a flexible shape. */
21366
21889
  controllerOcpus?: number;
21367
21890
  /** @description Admin-set provisioning debug flag. */
21368
21891
  debugMode?: boolean;
@@ -21371,16 +21894,17 @@ export interface components {
21371
21894
  healthCheck?: string;
21372
21895
  partitions?: components["schemas"]["ClusterOracleSlurmPartition"][] | null;
21373
21896
  region?: string;
21897
+ /** @description Root disk size in GiB. */
21374
21898
  rootSize?: number;
21375
21899
  slurmResumeTimeout?: number;
21376
21900
  slurmReturnToService?: number;
21377
21901
  slurmSuspendTime?: number;
21378
21902
  slurmSuspendTimeout?: number;
21379
21903
  /**
21380
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
21904
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
21381
21905
  * @enum {string}
21382
21906
  */
21383
- subtype: "oracle-slurm";
21907
+ type: "oracle-slurm";
21384
21908
  userBootstrap?: string;
21385
21909
  userBootstrapCompute?: boolean;
21386
21910
  userBootstrapController?: boolean;
@@ -21388,44 +21912,38 @@ export interface components {
21388
21912
  };
21389
21913
  OracleSlurmPartition: {
21390
21914
  architecture?: string;
21391
- default?: unknown;
21915
+ default?: boolean;
21392
21916
  disks?: components["schemas"]["ClusterDisk"][] | null;
21393
21917
  elasticImage?: string;
21394
21918
  instanceType?: string;
21395
- isFlex?: boolean;
21396
- /** Format: int64 */
21397
21919
  maxNodes?: number;
21398
- /** Format: int64 */
21920
+ /** @description Memory in GiB when the instance type is a flexible shape. */
21399
21921
  memoryGb?: number;
21400
21922
  name?: string;
21401
- /** Format: int64 */
21923
+ /** @description OCPU count when the instance type is a flexible shape. */
21402
21924
  ocpus?: number;
21403
- /** Format: int64 */
21404
21925
  suspendTime?: number;
21405
- usePlacementGroup?: boolean;
21406
21926
  zone?: string;
21407
21927
  };
21408
21928
  OracleSlurmVersionSettings: {
21409
21929
  architecture?: string;
21410
21930
  controllerImage?: string;
21411
21931
  controllerInstanceType?: string;
21412
- /** Format: int64 */
21932
+ /** @description Memory in GiB when the controller instance type is a flexible shape. */
21413
21933
  controllerMemoryGb?: number;
21414
- /** Format: int64 */
21934
+ /** @description OCPU count when the controller instance type is a flexible shape. */
21415
21935
  controllerOcpus?: number;
21416
- disks?: components["schemas"]["ClusterDisk"][] | null;
21417
21936
  healthCheck?: string;
21418
- isFlex?: boolean;
21419
21937
  partitions?: components["schemas"]["OracleSlurmPartition"][] | null;
21420
21938
  region?: string;
21421
- /** Format: int64 */
21939
+ /** @description Root disk size in GiB. */
21422
21940
  rootSize?: number;
21423
21941
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
21424
21942
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
21425
- slurmResumeTimeout?: unknown;
21426
- slurmReturnToService?: unknown;
21427
- slurmSuspendTime?: unknown;
21428
- slurmSuspendTimeout?: unknown;
21943
+ slurmResumeTimeout?: number;
21944
+ slurmReturnToService?: number;
21945
+ slurmSuspendTime?: number;
21946
+ slurmSuspendTimeout?: number;
21429
21947
  /**
21430
21948
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
21431
21949
  * @enum {string}
@@ -22013,6 +22531,39 @@ export interface components {
22013
22531
  team?: string;
22014
22532
  teamName?: string;
22015
22533
  };
22534
+ PlatformAttachedStorage: {
22535
+ /** @description The resolved export path on the storage resource. */
22536
+ export?: string;
22537
+ /**
22538
+ * @description Kind discriminator. (enum property replaced by openapi-typescript)
22539
+ * @enum {string}
22540
+ */
22541
+ kind: "storage";
22542
+ /**
22543
+ * @description The path the filesystem is mounted at on the cluster.
22544
+ * @example /data
22545
+ */
22546
+ mountPoint: string | null;
22547
+ /**
22548
+ * @description The name of the storage resource. Absent when the mount references a storage resource that no longer exists.
22549
+ * @example my-bucket
22550
+ */
22551
+ name?: string;
22552
+ /** @description Whether the mount uses read-only credentials. */
22553
+ readOnly?: boolean;
22554
+ /**
22555
+ * @description The id of the platform storage resource being mounted.
22556
+ * @example 66f1a2b3c4d5e6f7a8b9c0d1
22557
+ */
22558
+ storageId: string;
22559
+ /**
22560
+ * @description The type of the storage resource. Absent when the mount references a storage resource that no longer exists.
22561
+ * @example bucket
22562
+ */
22563
+ storageType?: string;
22564
+ /** @description The resolved volume on the storage resource. */
22565
+ volume?: string;
22566
+ };
22016
22567
  PlatformDomain: {
22017
22568
  /**
22018
22569
  * Format: date-time
@@ -22426,10 +22977,6 @@ export interface components {
22426
22977
  PoolSlurmLoginNode: {
22427
22978
  node: string | null;
22428
22979
  };
22429
- PoolWorkspaceMount: {
22430
- clusterPath: string | null;
22431
- workspacePath: string | null;
22432
- };
22433
22980
  PostClusterConnectInputBody: Record<string, never>;
22434
22981
  PostClusterConnectOutputBody: {
22435
22982
  /** @description Status message */
@@ -22717,7 +23264,10 @@ export interface components {
22717
23264
  attributes: components["schemas"]["ProvisionStatusAttribute"][] | null;
22718
23265
  /** @description Child provision status records for expandable steps. */
22719
23266
  children?: components["schemas"]["ProvisionStatusChildResponse"][] | null;
22720
- /** @description The creation timestamp in RFC3339 format. */
23267
+ /**
23268
+ * Format: date-time
23269
+ * @description The creation timestamp.
23270
+ */
22721
23271
  createdAt: string;
22722
23272
  /** @description Error message if the provision step failed. */
22723
23273
  error: string;
@@ -22736,7 +23286,10 @@ export interface components {
22736
23286
  name: string;
22737
23287
  /** @description The current status of the provision step (e.g., pending, provisioning, provisioned, failed, skipped, deleting, deleted, warning). */
22738
23288
  status: string;
22739
- /** @description The last update timestamp in RFC3339 format. */
23289
+ /**
23290
+ * Format: date-time
23291
+ * @description The last update timestamp.
23292
+ */
22740
23293
  updatedAt: string;
22741
23294
  };
22742
23295
  ProvisionStatusStruct: {
@@ -22921,16 +23474,16 @@ export interface components {
22921
23474
  /** @description Publish under the organization display name (org admins only). */
22922
23475
  publishedAsOrg?: boolean;
22923
23476
  region?: string;
22924
- /** Format: int64 */
23477
+ /** @description Root disk size in GiB. */
22925
23478
  rootSize?: number;
22926
23479
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
22927
23480
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
22928
23481
  /** @description URL-friendly identifier. */
22929
23482
  slug: string;
22930
- slurmResumeTimeout?: unknown;
22931
- slurmReturnToService?: unknown;
22932
- slurmSuspendTime?: unknown;
22933
- slurmSuspendTimeout?: unknown;
23483
+ slurmResumeTimeout?: number;
23484
+ slurmReturnToService?: number;
23485
+ slurmSuspendTime?: number;
23486
+ slurmSuspendTimeout?: number;
22934
23487
  /** @description User-defined tags for categorization and search. */
22935
23488
  tags?: string[] | null;
22936
23489
  userBootstrap?: string;
@@ -23122,11 +23675,10 @@ export interface components {
23122
23675
  healthCheck?: string;
23123
23676
  /** @description Icon image URL. */
23124
23677
  imageUrl?: string;
23678
+ /** @description Mount point of the controller's local disk; only applies when the controller instance type has a local disk. */
23125
23679
  localDiskMountPoint?: string;
23680
+ /** @description Export the controller's local disk over NFS; only applies when the controller instance type has a local disk. */
23126
23681
  localDiskNFS?: boolean;
23127
- localdiskLabel?: {
23128
- [key: string]: unknown;
23129
- };
23130
23682
  /** @description Markdown description body. */
23131
23683
  markdownRaw?: string;
23132
23684
  /** @description Display name on the marketplace. */
@@ -23137,16 +23689,16 @@ export interface components {
23137
23689
  /** @description Publish under the organization display name (org admins only). */
23138
23690
  publishedAsOrg?: boolean;
23139
23691
  region?: string;
23140
- /** Format: int64 */
23692
+ /** @description Root disk size in GiB. */
23141
23693
  rootSize?: number;
23142
23694
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
23143
23695
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
23144
23696
  /** @description URL-friendly identifier. */
23145
23697
  slug: string;
23146
- slurmResumeTimeout?: unknown;
23147
- slurmReturnToService?: unknown;
23148
- slurmSuspendTime?: unknown;
23149
- slurmSuspendTimeout?: unknown;
23698
+ slurmResumeTimeout?: number;
23699
+ slurmReturnToService?: number;
23700
+ slurmSuspendTime?: number;
23701
+ slurmSuspendTimeout?: number;
23150
23702
  /** @description User-defined tags for categorization and search. */
23151
23703
  tags?: string[] | null;
23152
23704
  userBootstrap?: string;
@@ -23345,9 +23897,6 @@ export interface components {
23345
23897
  disks?: components["schemas"]["ClusterDisk"][] | null;
23346
23898
  /** @description Mark as featured (platform admins only). */
23347
23899
  featured?: boolean;
23348
- googleLabel?: {
23349
- [key: string]: unknown;
23350
- };
23351
23900
  healthCheck?: string;
23352
23901
  /** @description Icon image URL. */
23353
23902
  imageUrl?: string;
@@ -23361,16 +23910,16 @@ export interface components {
23361
23910
  /** @description Publish under the organization display name (org admins only). */
23362
23911
  publishedAsOrg?: boolean;
23363
23912
  region?: string;
23364
- /** Format: int64 */
23913
+ /** @description Root disk size in GiB. */
23365
23914
  rootSize?: number;
23366
23915
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
23367
23916
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
23368
23917
  /** @description URL-friendly identifier. */
23369
23918
  slug: string;
23370
- slurmResumeTimeout?: unknown;
23371
- slurmReturnToService?: unknown;
23372
- slurmSuspendTime?: unknown;
23373
- slurmSuspendTimeout?: unknown;
23919
+ slurmResumeTimeout?: number;
23920
+ slurmReturnToService?: number;
23921
+ slurmSuspendTime?: number;
23922
+ slurmSuspendTimeout?: number;
23374
23923
  /** @description User-defined tags for categorization and search. */
23375
23924
  tags?: string[] | null;
23376
23925
  userBootstrap?: string;
@@ -23415,10 +23964,6 @@ export interface components {
23415
23964
  yaml: string;
23416
23965
  };
23417
23966
  PublishOpenstackSlurmRequest: {
23418
- architecture?: string;
23419
- attachedStorages?: {
23420
- [key: string]: unknown;
23421
- }[] | null;
23422
23967
  controllerImage?: string;
23423
23968
  controllerInstanceType?: string;
23424
23969
  /** @description Short summary of the item. */
@@ -23444,10 +23989,10 @@ export interface components {
23444
23989
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
23445
23990
  /** @description URL-friendly identifier. */
23446
23991
  slug: string;
23447
- slurmResumeTimeout?: unknown;
23448
- slurmReturnToService?: unknown;
23449
- slurmSuspendTime?: unknown;
23450
- slurmSuspendTimeout?: unknown;
23992
+ slurmResumeTimeout?: number;
23993
+ slurmReturnToService?: number;
23994
+ slurmSuspendTime?: number;
23995
+ slurmSuspendTimeout?: number;
23451
23996
  /** @description User-defined tags for categorization and search. */
23452
23997
  tags?: string[] | null;
23453
23998
  userBootstrap?: string;
@@ -23522,19 +24067,17 @@ export interface components {
23522
24067
  architecture?: string;
23523
24068
  controllerImage?: string;
23524
24069
  controllerInstanceType?: string;
23525
- /** Format: int64 */
24070
+ /** @description Memory in GiB when the controller instance type is a flexible shape. */
23526
24071
  controllerMemoryGb?: number;
23527
- /** Format: int64 */
24072
+ /** @description OCPU count when the controller instance type is a flexible shape. */
23528
24073
  controllerOcpus?: number;
23529
24074
  /** @description Short summary of the item. */
23530
24075
  description?: string;
23531
- disks?: components["schemas"]["ClusterDisk"][] | null;
23532
24076
  /** @description Mark as featured (platform admins only). */
23533
24077
  featured?: boolean;
23534
24078
  healthCheck?: string;
23535
24079
  /** @description Icon image URL. */
23536
24080
  imageUrl?: string;
23537
- isFlex?: boolean;
23538
24081
  /** @description Markdown description body. */
23539
24082
  markdownRaw?: string;
23540
24083
  /** @description Display name on the marketplace. */
@@ -23545,16 +24088,16 @@ export interface components {
23545
24088
  /** @description Publish under the organization display name (org admins only). */
23546
24089
  publishedAsOrg?: boolean;
23547
24090
  region?: string;
23548
- /** Format: int64 */
24091
+ /** @description Root disk size in GiB. */
23549
24092
  rootSize?: number;
23550
24093
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
23551
24094
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
23552
24095
  /** @description URL-friendly identifier. */
23553
24096
  slug: string;
23554
- slurmResumeTimeout?: unknown;
23555
- slurmReturnToService?: unknown;
23556
- slurmSuspendTime?: unknown;
23557
- slurmSuspendTimeout?: unknown;
24097
+ slurmResumeTimeout?: number;
24098
+ slurmReturnToService?: number;
24099
+ slurmSuspendTime?: number;
24100
+ slurmSuspendTimeout?: number;
23558
24101
  /** @description User-defined tags for categorization and search. */
23559
24102
  tags?: string[] | null;
23560
24103
  userBootstrap?: string;
@@ -23590,12 +24133,8 @@ export interface components {
23590
24133
  readme?: string;
23591
24134
  /** @description Repository URL. */
23592
24135
  repo?: string;
23593
- /** @description Skip the git checkout step. */
23594
- skipCheckout?: boolean;
23595
24136
  /** @description URL-friendly identifier. */
23596
24137
  slug: string;
23597
- /** @description Sparse-checkout paths. */
23598
- sparsecheckout?: string[] | null;
23599
24138
  /** @description User-defined tags for categorization and search. */
23600
24139
  tags?: string[] | null;
23601
24140
  /** @description Path to the thumbnail image within the repo. */
@@ -23661,10 +24200,58 @@ export interface components {
23661
24200
  /** @description Model configurations */
23662
24201
  modelConfigs: components["schemas"]["AIModelConfig"][] | null;
23663
24202
  };
24203
+ PutNfsAttachedStorage: {
24204
+ /**
24205
+ * @description Kind discriminator. (enum property replaced by openapi-typescript)
24206
+ * @enum {string}
24207
+ */
24208
+ kind: "nfs";
24209
+ /**
24210
+ * @description The path to mount the filesystem at on the cluster.
24211
+ * @example /home
24212
+ */
24213
+ mountPoint: string;
24214
+ /**
24215
+ * @description Mount options passed to the NFS client.
24216
+ * @example defaults
24217
+ */
24218
+ nfsOptions?: string;
24219
+ /** @description Mount the export read-only. */
24220
+ readOnly?: boolean;
24221
+ /**
24222
+ * @description Hostname or IP address of the NFS server.
24223
+ * @example 10.0.0.5
24224
+ */
24225
+ server: string;
24226
+ /**
24227
+ * @description The path exported by the NFS server; the root is used when empty.
24228
+ * @example /export/home
24229
+ */
24230
+ serverPath?: string;
24231
+ };
23664
24232
  PutOrgConnectionPermissionsInputBody: {
23665
24233
  groups: string[] | null;
23666
24234
  shareWithOrganization: boolean;
23667
24235
  };
24236
+ PutPlatformAttachedStorage: {
24237
+ /**
24238
+ * @description Kind discriminator. (enum property replaced by openapi-typescript)
24239
+ * @enum {string}
24240
+ */
24241
+ kind: "storage";
24242
+ /**
24243
+ * @description The path to mount the filesystem at on the cluster.
24244
+ * @example /data
24245
+ */
24246
+ mountPoint: string;
24247
+ /** @description Mount a bucket with read-only credentials; omit to keep the mount's current choice. Forced on when the caller's or owner's bucket access is read-only. */
24248
+ readOnly?: boolean;
24249
+ /**
24250
+ * @description The id of the platform storage resource to mount.
24251
+ * @example 66f1a2b3c4d5e6f7a8b9c0d1
24252
+ */
24253
+ storageId: string;
24254
+ };
23668
24255
  PutSessionBody: {
23669
24256
  /** @description Human-readable session description. */
23670
24257
  description?: string;
@@ -23847,6 +24434,10 @@ export interface components {
23847
24434
  /** @description Namespace for ServiceAccount subjects */
23848
24435
  namespace?: string;
23849
24436
  };
24437
+ RdmaZonesBody: {
24438
+ /** @description Zones whose project offers an IRDMA (Falcon) network profile. */
24439
+ zones: string[] | null;
24440
+ };
23850
24441
  RecommendedResource: {
23851
24442
  /** @description Cloud provider (aws, google, azure) */
23852
24443
  csp?: string;
@@ -23932,8 +24523,6 @@ export interface components {
23932
24523
  readme?: string;
23933
24524
  /** @description Git repository URL. */
23934
24525
  repo?: string;
23935
- /** @description Sparse checkout paths. */
23936
- sparseCheckout?: string[] | null;
23937
24526
  /** @description Path to the thumbnail image in the repository. */
23938
24527
  thumbnail?: string;
23939
24528
  /** @description Path to the YAML file in the repository. */
@@ -23946,10 +24535,6 @@ export interface components {
23946
24535
  readme?: string;
23947
24536
  /** @description Repository URL. */
23948
24537
  repo?: string;
23949
- /** @description Skip the git checkout step. */
23950
- skipCheckout?: boolean;
23951
- /** @description Sparse-checkout paths. */
23952
- sparsecheckout?: string[] | null;
23953
24538
  /**
23954
24539
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
23955
24540
  * @enum {string}
@@ -24311,6 +24896,16 @@ export interface components {
24311
24896
  */
24312
24897
  totalCredentials: number;
24313
24898
  };
24899
+ RunTimeAlert: {
24900
+ /** @description Whether run-time alerting is on. */
24901
+ enabled: boolean;
24902
+ /**
24903
+ * Format: int64
24904
+ * @description Hours between alerts.
24905
+ * @example 24
24906
+ */
24907
+ intervalHours: number;
24908
+ };
24314
24909
  RuntimeAlertInput: {
24315
24910
  /** @description Whether to enable runtime alerts. */
24316
24911
  enabled: boolean;
@@ -24744,6 +25339,20 @@ export interface components {
24744
25339
  /** @description Indicates if the session cost alert uses realtime estimated cost data. */
24745
25340
  useRealtime: boolean;
24746
25341
  };
25342
+ SessionCostLimit: {
25343
+ /** @description Whether reaching the limit destroys the cluster instead of only alerting. */
25344
+ autoTerminate: boolean;
25345
+ /** @description Whether the session cost limit is on. */
25346
+ enabled: boolean;
25347
+ /**
25348
+ * Format: double
25349
+ * @description The cost threshold that triggers the limit.
25350
+ * @example 500
25351
+ */
25352
+ limit: number;
25353
+ /** @description Whether the limit is evaluated against realtime cost rather than billed cost. */
25354
+ useRealtime: boolean;
25355
+ };
24747
25356
  SessionCostLimitInput: {
24748
25357
  /** @description Auto-terminate when cost limit is reached. */
24749
25358
  autoTerminate?: boolean;
@@ -24949,35 +25558,6 @@ export interface components {
24949
25558
  */
24950
25559
  readonly request: components["schemas"]["ResourceQuota"];
24951
25560
  };
24952
- SingleVolume: {
24953
- /** @description List of aggregate names */
24954
- aggregates: string[] | null;
24955
- /** @description Volume name */
24956
- name: string;
24957
- /** @description Export path for the volume */
24958
- path: string;
24959
- /**
24960
- * Format: int64
24961
- * @description Available size in bytes
24962
- */
24963
- sizeAvailable: number;
24964
- /**
24965
- * Format: int64
24966
- * @description Total size in bytes
24967
- */
24968
- sizeTotal: number;
24969
- /**
24970
- * Format: int64
24971
- * @description Used size in bytes
24972
- */
24973
- sizeUsed: number;
24974
- /** @description Volume state (e.g., online, offline) */
24975
- state: string;
24976
- /** @description Storage VM information */
24977
- svm: components["schemas"]["Svm"];
24978
- /** @description Volume UUID */
24979
- uuid: string;
24980
- };
24981
25561
  SlackConfigResponse: {
24982
25562
  /** @description Whether a Slack incoming webhook is configured. */
24983
25563
  webhookConfigured: boolean;
@@ -25233,12 +25813,6 @@ export interface components {
25233
25813
  cspId: string;
25234
25814
  name: string;
25235
25815
  };
25236
- Svm: {
25237
- /** @description Storage VM name */
25238
- name: string;
25239
- /** @description Storage VM UUID */
25240
- uuid: string;
25241
- };
25242
25816
  SystemInfo: {
25243
25817
  /**
25244
25818
  * Format: int64
@@ -25498,10 +26072,6 @@ export interface components {
25498
26072
  /** @description Parent unit ID */
25499
26073
  unitId: string;
25500
26074
  };
25501
- UnmountWorkspaceDirectoryBody: {
25502
- /** @description The folder in the workspace to unmount. */
25503
- workspacePath: string;
25504
- };
25505
26075
  UnreachableSession: {
25506
26076
  name: string;
25507
26077
  owner: string;
@@ -25635,6 +26205,20 @@ export interface components {
25635
26205
  [key: string]: boolean;
25636
26206
  };
25637
26207
  };
26208
+ UpdateClusterBody: {
26209
+ /** @description Description. */
26210
+ description?: string;
26211
+ /** @description Display name; an empty string falls back to the cluster name. */
26212
+ displayName?: string;
26213
+ /** @description Name of the group the cluster's usage is attributed to; cloud clusters only. */
26214
+ group?: string;
26215
+ /** @description New cluster name; only lowercase letters and numbers. A cloud cluster must be destroyed before renaming. */
26216
+ name?: string;
26217
+ /** @description Name of the network the cluster provisions into; cloud clusters only. */
26218
+ network?: string;
26219
+ /** @description Tags; replaces the full list. */
26220
+ tags?: string[];
26221
+ };
25638
26222
  UpdateClusterInputBody: {
25639
26223
  /** @description Base64-encoded CA certificate. Leave empty when the cluster uses a publicly trusted certificate. */
25640
26224
  caCert?: string;
@@ -25925,7 +26509,7 @@ export interface components {
25925
26509
  value?: string;
25926
26510
  };
25927
26511
  UpdateWhileRunningBody: {
25928
- /** @description Cluster variables to apply to the running cluster. Only partition and user bootstrap variables may change. */
26512
+ /** @description Cluster variables to apply to the running cluster. Only partition, user bootstrap and desktop session variables may change. */
25929
26513
  variables: components["schemas"]["ClusterUpdateVariables"];
25930
26514
  };
25931
26515
  UpdateWhileRunningResult: {
@@ -25943,8 +26527,6 @@ export interface components {
25943
26527
  imageUrl?: string;
25944
26528
  /** @description Remote workflow configuration. */
25945
26529
  remote?: components["schemas"]["RemoteWorkflowSettings"];
25946
- /** @description Skip automatic repository checkout during job preparation. */
25947
- skipCheckout?: boolean;
25948
26530
  /** @description Tags associated with the workflow. */
25949
26531
  tags?: string[];
25950
26532
  /** @description Workflow YAML definition as a YAML string. */
@@ -25957,7 +26539,9 @@ export interface components {
25957
26539
  * @description The status of the workflow run
25958
26540
  * @enum {string}
25959
26541
  */
25960
- status?: "canceling";
26542
+ status?: "canceling" | "error";
26543
+ /** @description Why the run reached this status. Used by a run that fails before its executor has a connection to report over. */
26544
+ statusReason?: string;
25961
26545
  };
25962
26546
  UpdateWorkflowSavedInputsInputBody: {
25963
26547
  /** @description Saved input values. */
@@ -26359,12 +26943,6 @@ export interface components {
26359
26943
  /** @description Success message */
26360
26944
  message: string;
26361
26945
  };
26362
- VolumeSummary: {
26363
- /** @description Volume name */
26364
- name: string;
26365
- /** @description Volume UUID */
26366
- uuid: string;
26367
- };
26368
26946
  WebAuthnAuthOptions: {
26369
26947
  publicKey: components["schemas"]["WebAuthnAuthPublicKeyOptions"];
26370
26948
  };
@@ -26608,8 +27186,6 @@ export interface components {
26608
27186
  name: string;
26609
27187
  /** @description Settings for remote workflows. */
26610
27188
  remote?: components["schemas"]["RemoteWorkflowSettings"];
26611
- /** @description Whether to skip automatic repository checkout during job preparation. */
26612
- skipCheckout?: boolean;
26613
27189
  /** @description Workflow name, used for URLs. */
26614
27190
  slug?: string;
26615
27191
  /** @description Subtype of the workflow (github for remote). */
@@ -30011,6 +30587,35 @@ export interface operations {
30011
30587
  };
30012
30588
  };
30013
30589
  };
30590
+ "list-user-cloud-accounts": {
30591
+ parameters: {
30592
+ query?: never;
30593
+ header?: never;
30594
+ path?: never;
30595
+ cookie?: never;
30596
+ };
30597
+ requestBody?: never;
30598
+ responses: {
30599
+ /** @description OK */
30600
+ 200: {
30601
+ headers: {
30602
+ [name: string]: unknown;
30603
+ };
30604
+ content: {
30605
+ "application/json": components["schemas"]["CloudAccountListItem"][] | null;
30606
+ };
30607
+ };
30608
+ /** @description Error */
30609
+ default: {
30610
+ headers: {
30611
+ [name: string]: unknown;
30612
+ };
30613
+ content: {
30614
+ "application/json": components["schemas"]["Error"];
30615
+ };
30616
+ };
30617
+ };
30618
+ };
30014
30619
  "get-clusters": {
30015
30620
  parameters: {
30016
30621
  query?: never;
@@ -30040,6 +30645,39 @@ export interface operations {
30040
30645
  };
30041
30646
  };
30042
30647
  };
30648
+ "create-cluster": {
30649
+ parameters: {
30650
+ query?: never;
30651
+ header?: never;
30652
+ path?: never;
30653
+ cookie?: never;
30654
+ };
30655
+ requestBody: {
30656
+ content: {
30657
+ "application/json": components["schemas"]["CreateExistingClusterBody"] | components["schemas"]["CreateAwsSlurmClusterBody"] | components["schemas"]["CreateGoogleSlurmClusterBody"] | components["schemas"]["CreateAzureSlurmClusterBody"] | components["schemas"]["CreateOracleSlurmClusterBody"] | components["schemas"]["CreateOpenstackSlurmClusterBody"];
30658
+ };
30659
+ };
30660
+ responses: {
30661
+ /** @description OK */
30662
+ 200: {
30663
+ headers: {
30664
+ [name: string]: unknown;
30665
+ };
30666
+ content: {
30667
+ "application/json": components["schemas"]["GeneralCluster"];
30668
+ };
30669
+ };
30670
+ /** @description Error */
30671
+ default: {
30672
+ headers: {
30673
+ [name: string]: unknown;
30674
+ };
30675
+ content: {
30676
+ "application/json": components["schemas"]["Error"];
30677
+ };
30678
+ };
30679
+ };
30680
+ };
30043
30681
  "get-default-desktop-wallpaper": {
30044
30682
  parameters: {
30045
30683
  query?: never;
@@ -30198,6 +30836,8 @@ export interface operations {
30198
30836
  query?: {
30199
30837
  /** @description Only return groups that have access to this network. */
30200
30838
  network?: string;
30839
+ /** @description Only return groups that have access to this cloud account (by name). */
30840
+ cloudAccount?: string;
30201
30841
  };
30202
30842
  header?: never;
30203
30843
  path?: never;
@@ -32973,6 +33613,42 @@ export interface operations {
32973
33613
  };
32974
33614
  };
32975
33615
  };
33616
+ "list-network-interfaces": {
33617
+ parameters: {
33618
+ query?: {
33619
+ /** @description The cloud service provider for the network interface. */
33620
+ csp?: string;
33621
+ /** @description The region where the network interface is provisioned. */
33622
+ region?: string;
33623
+ /** @description If provided, will filter the response based on the provisioned status. */
33624
+ provisioned?: boolean;
33625
+ };
33626
+ header?: never;
33627
+ path?: never;
33628
+ cookie?: never;
33629
+ };
33630
+ requestBody?: never;
33631
+ responses: {
33632
+ /** @description OK */
33633
+ 200: {
33634
+ headers: {
33635
+ [name: string]: unknown;
33636
+ };
33637
+ content: {
33638
+ "application/json": components["schemas"]["NetworkInterface"][] | null;
33639
+ };
33640
+ };
33641
+ /** @description Error */
33642
+ default: {
33643
+ headers: {
33644
+ [name: string]: unknown;
33645
+ };
33646
+ content: {
33647
+ "application/json": components["schemas"]["Error"];
33648
+ };
33649
+ };
33650
+ };
33651
+ };
32976
33652
  "get-networks": {
32977
33653
  parameters: {
32978
33654
  query?: never;
@@ -36288,6 +36964,43 @@ export interface operations {
36288
36964
  };
36289
36965
  };
36290
36966
  };
36967
+ "get-cloud-account-rdma-zones": {
36968
+ parameters: {
36969
+ query?: {
36970
+ /** @description Only return zones within this region */
36971
+ region?: string;
36972
+ };
36973
+ header?: never;
36974
+ path: {
36975
+ /** @description The name of the organization. */
36976
+ organization: string;
36977
+ /** @description Name of the cloud account */
36978
+ name: string;
36979
+ };
36980
+ cookie?: never;
36981
+ };
36982
+ requestBody?: never;
36983
+ responses: {
36984
+ /** @description OK */
36985
+ 200: {
36986
+ headers: {
36987
+ [name: string]: unknown;
36988
+ };
36989
+ content: {
36990
+ "application/json": components["schemas"]["RdmaZonesBody"];
36991
+ };
36992
+ };
36993
+ /** @description Error */
36994
+ default: {
36995
+ headers: {
36996
+ [name: string]: unknown;
36997
+ };
36998
+ content: {
36999
+ "application/json": components["schemas"]["Error"];
37000
+ };
37001
+ };
37002
+ };
37003
+ };
36291
37004
  "get-aws-cloud-images": {
36292
37005
  parameters: {
36293
37006
  query?: {
@@ -43112,7 +43825,264 @@ export interface operations {
43112
43825
  [name: string]: unknown;
43113
43826
  };
43114
43827
  content: {
43115
- "application/json": components["schemas"]["AwsDisk"];
43828
+ "application/json": components["schemas"]["AwsDisk"];
43829
+ };
43830
+ };
43831
+ /** @description Error */
43832
+ default: {
43833
+ headers: {
43834
+ [name: string]: unknown;
43835
+ };
43836
+ content: {
43837
+ "application/json": components["schemas"]["Error"];
43838
+ };
43839
+ };
43840
+ };
43841
+ };
43842
+ "get-storage-aws-efs": {
43843
+ parameters: {
43844
+ query?: never;
43845
+ header?: never;
43846
+ path: {
43847
+ /** @description The name of the organization. */
43848
+ organization: string;
43849
+ /** @description Username of the target user. */
43850
+ user: string;
43851
+ /** @description The name of the storage resource. */
43852
+ name: string;
43853
+ };
43854
+ cookie?: never;
43855
+ };
43856
+ requestBody?: never;
43857
+ responses: {
43858
+ /** @description OK */
43859
+ 200: {
43860
+ headers: {
43861
+ [name: string]: unknown;
43862
+ };
43863
+ content: {
43864
+ "application/json": components["schemas"]["AwsEfs"];
43865
+ };
43866
+ };
43867
+ /** @description Error */
43868
+ default: {
43869
+ headers: {
43870
+ [name: string]: unknown;
43871
+ };
43872
+ content: {
43873
+ "application/json": components["schemas"]["Error"];
43874
+ };
43875
+ };
43876
+ };
43877
+ };
43878
+ "get-storage-aws-lustre": {
43879
+ parameters: {
43880
+ query?: never;
43881
+ header?: never;
43882
+ path: {
43883
+ /** @description The name of the organization. */
43884
+ organization: string;
43885
+ /** @description Username of the target user. */
43886
+ user: string;
43887
+ /** @description The name of the storage resource. */
43888
+ name: string;
43889
+ };
43890
+ cookie?: never;
43891
+ };
43892
+ requestBody?: never;
43893
+ responses: {
43894
+ /** @description OK */
43895
+ 200: {
43896
+ headers: {
43897
+ [name: string]: unknown;
43898
+ };
43899
+ content: {
43900
+ "application/json": components["schemas"]["AwsLustre"];
43901
+ };
43902
+ };
43903
+ /** @description Error */
43904
+ default: {
43905
+ headers: {
43906
+ [name: string]: unknown;
43907
+ };
43908
+ content: {
43909
+ "application/json": components["schemas"]["Error"];
43910
+ };
43911
+ };
43912
+ };
43913
+ };
43914
+ "get-storage-aws-managedlustre": {
43915
+ parameters: {
43916
+ query?: never;
43917
+ header?: never;
43918
+ path: {
43919
+ /** @description The name of the organization. */
43920
+ organization: string;
43921
+ /** @description Username of the target user. */
43922
+ user: string;
43923
+ /** @description The name of the storage resource. */
43924
+ name: string;
43925
+ };
43926
+ cookie?: never;
43927
+ };
43928
+ requestBody?: never;
43929
+ responses: {
43930
+ /** @description OK */
43931
+ 200: {
43932
+ headers: {
43933
+ [name: string]: unknown;
43934
+ };
43935
+ content: {
43936
+ "application/json": components["schemas"]["AwsLustre"];
43937
+ };
43938
+ };
43939
+ /** @description Error */
43940
+ default: {
43941
+ headers: {
43942
+ [name: string]: unknown;
43943
+ };
43944
+ content: {
43945
+ "application/json": components["schemas"]["Error"];
43946
+ };
43947
+ };
43948
+ };
43949
+ };
43950
+ "get-azure-files": {
43951
+ parameters: {
43952
+ query?: never;
43953
+ header?: never;
43954
+ path: {
43955
+ /** @description The name of the organization. */
43956
+ organization: string;
43957
+ /** @description Username of the target user. */
43958
+ user: string;
43959
+ /** @description The name of the storage resource. */
43960
+ name: string;
43961
+ };
43962
+ cookie?: never;
43963
+ };
43964
+ requestBody?: never;
43965
+ responses: {
43966
+ /** @description OK */
43967
+ 200: {
43968
+ headers: {
43969
+ [name: string]: unknown;
43970
+ };
43971
+ content: {
43972
+ "application/json": components["schemas"]["AzureFiles"];
43973
+ };
43974
+ };
43975
+ /** @description Error */
43976
+ default: {
43977
+ headers: {
43978
+ [name: string]: unknown;
43979
+ };
43980
+ content: {
43981
+ "application/json": components["schemas"]["Error"];
43982
+ };
43983
+ };
43984
+ };
43985
+ };
43986
+ "add-cors-rules-azure-azfiles": {
43987
+ parameters: {
43988
+ query?: never;
43989
+ header?: never;
43990
+ path: {
43991
+ /** @description The name of the organization. */
43992
+ organization: string;
43993
+ /** @description Username of the target user. */
43994
+ user: string;
43995
+ /** @description The name of the storage resource. */
43996
+ name: string;
43997
+ };
43998
+ cookie?: never;
43999
+ };
44000
+ requestBody?: never;
44001
+ responses: {
44002
+ /** @description Accepted */
44003
+ 202: {
44004
+ headers: {
44005
+ [name: string]: unknown;
44006
+ };
44007
+ content?: never;
44008
+ };
44009
+ /** @description Error */
44010
+ default: {
44011
+ headers: {
44012
+ [name: string]: unknown;
44013
+ };
44014
+ content: {
44015
+ "application/json": components["schemas"]["Error"];
44016
+ };
44017
+ };
44018
+ };
44019
+ };
44020
+ "get-presigned-url-azure-azfiles-object": {
44021
+ parameters: {
44022
+ query: {
44023
+ /** @description The path of the file inside the share. */
44024
+ objectName: string;
44025
+ /** @description The expiration time in seconds for the pre-signed URL. Default and maximum is 12 hours. */
44026
+ expiresIn?: number;
44027
+ /** @description The permissions for the pre-signed URL. Default is read (r). Combine: r,w,d,c. */
44028
+ permissions?: string;
44029
+ };
44030
+ header?: never;
44031
+ path: {
44032
+ /** @description The name of the organization. */
44033
+ organization: string;
44034
+ /** @description Username of the target user. */
44035
+ user: string;
44036
+ /** @description The name of the storage resource. */
44037
+ name: string;
44038
+ };
44039
+ cookie?: never;
44040
+ };
44041
+ requestBody?: never;
44042
+ responses: {
44043
+ /** @description OK */
44044
+ 200: {
44045
+ headers: {
44046
+ [name: string]: unknown;
44047
+ };
44048
+ content: {
44049
+ "application/json": string;
44050
+ };
44051
+ };
44052
+ /** @description Error */
44053
+ default: {
44054
+ headers: {
44055
+ [name: string]: unknown;
44056
+ };
44057
+ content: {
44058
+ "application/json": components["schemas"]["Error"];
44059
+ };
44060
+ };
44061
+ };
44062
+ };
44063
+ "get-sas-token-azure-azfiles": {
44064
+ parameters: {
44065
+ query?: never;
44066
+ header?: never;
44067
+ path: {
44068
+ /** @description The name of the organization. */
44069
+ organization: string;
44070
+ /** @description Username of the target user. */
44071
+ user: string;
44072
+ /** @description The name of the storage resource. */
44073
+ name: string;
44074
+ };
44075
+ cookie?: never;
44076
+ };
44077
+ requestBody?: never;
44078
+ responses: {
44079
+ /** @description OK */
44080
+ 200: {
44081
+ headers: {
44082
+ [name: string]: unknown;
44083
+ };
44084
+ content: {
44085
+ "application/json": components["schemas"]["AzureFilesSAS"];
43116
44086
  };
43117
44087
  };
43118
44088
  /** @description Error */
@@ -43126,7 +44096,7 @@ export interface operations {
43126
44096
  };
43127
44097
  };
43128
44098
  };
43129
- "get-storage-aws-efs": {
44099
+ "get-azure-bucket": {
43130
44100
  parameters: {
43131
44101
  query?: never;
43132
44102
  header?: never;
@@ -43148,7 +44118,7 @@ export interface operations {
43148
44118
  [name: string]: unknown;
43149
44119
  };
43150
44120
  content: {
43151
- "application/json": components["schemas"]["AwsEfs"];
44121
+ "application/json": components["schemas"]["AzureBlobStorage"];
43152
44122
  };
43153
44123
  };
43154
44124
  /** @description Error */
@@ -43162,7 +44132,7 @@ export interface operations {
43162
44132
  };
43163
44133
  };
43164
44134
  };
43165
- "get-storage-aws-lustre": {
44135
+ "provision-azure-bucket": {
43166
44136
  parameters: {
43167
44137
  query?: never;
43168
44138
  header?: never;
@@ -43176,7 +44146,11 @@ export interface operations {
43176
44146
  };
43177
44147
  cookie?: never;
43178
44148
  };
43179
- requestBody?: never;
44149
+ requestBody: {
44150
+ content: {
44151
+ "application/json": components["schemas"]["BucketResource"];
44152
+ };
44153
+ };
43180
44154
  responses: {
43181
44155
  /** @description OK */
43182
44156
  200: {
@@ -43184,7 +44158,7 @@ export interface operations {
43184
44158
  [name: string]: unknown;
43185
44159
  };
43186
44160
  content: {
43187
- "application/json": components["schemas"]["AwsLustre"];
44161
+ "application/json": components["schemas"]["BucketOutput"];
43188
44162
  };
43189
44163
  };
43190
44164
  /** @description Error */
@@ -43198,7 +44172,7 @@ export interface operations {
43198
44172
  };
43199
44173
  };
43200
44174
  };
43201
- "get-storage-aws-managedlustre": {
44175
+ "add-cors-rules-azure-bucket": {
43202
44176
  parameters: {
43203
44177
  query?: never;
43204
44178
  header?: never;
@@ -43214,14 +44188,12 @@ export interface operations {
43214
44188
  };
43215
44189
  requestBody?: never;
43216
44190
  responses: {
43217
- /** @description OK */
43218
- 200: {
44191
+ /** @description No Content */
44192
+ 204: {
43219
44193
  headers: {
43220
44194
  [name: string]: unknown;
43221
44195
  };
43222
- content: {
43223
- "application/json": components["schemas"]["AwsLustre"];
43224
- };
44196
+ content?: never;
43225
44197
  };
43226
44198
  /** @description Error */
43227
44199
  default: {
@@ -43234,9 +44206,16 @@ export interface operations {
43234
44206
  };
43235
44207
  };
43236
44208
  };
43237
- "get-azure-files": {
44209
+ "get-presigned-url-azure-bucket-object": {
43238
44210
  parameters: {
43239
- query?: never;
44211
+ query: {
44212
+ /** @description The name of the Azure object to get pre-signed URL. */
44213
+ objectName: string;
44214
+ /** @description The expiration time in seconds for the pre-signed URL. Default and maximum is 12 hours. */
44215
+ expiresIn?: number;
44216
+ /** @description The permissions for the pre-signed URL. Default is read (r). Other permissions include write (w), delete (d), list (l), add (a), create (c). Combine multiple permissions as needed. */
44217
+ permissions?: string;
44218
+ };
43240
44219
  header?: never;
43241
44220
  path: {
43242
44221
  /** @description The name of the organization. */
@@ -43256,7 +44235,7 @@ export interface operations {
43256
44235
  [name: string]: unknown;
43257
44236
  };
43258
44237
  content: {
43259
- "application/json": components["schemas"]["AzureFiles"];
44238
+ "application/json": string;
43260
44239
  };
43261
44240
  };
43262
44241
  /** @description Error */
@@ -43270,7 +44249,7 @@ export interface operations {
43270
44249
  };
43271
44250
  };
43272
44251
  };
43273
- "add-cors-rules-azure-azfiles": {
44252
+ "get-sas-token-azure-bucket": {
43274
44253
  parameters: {
43275
44254
  query?: never;
43276
44255
  header?: never;
@@ -43286,12 +44265,14 @@ export interface operations {
43286
44265
  };
43287
44266
  requestBody?: never;
43288
44267
  responses: {
43289
- /** @description Accepted */
43290
- 202: {
44268
+ /** @description OK */
44269
+ 200: {
43291
44270
  headers: {
43292
44271
  [name: string]: unknown;
43293
44272
  };
43294
- content?: never;
44273
+ content: {
44274
+ "application/json": components["schemas"]["AzureSASToken"];
44275
+ };
43295
44276
  };
43296
44277
  /** @description Error */
43297
44278
  default: {
@@ -43304,16 +44285,9 @@ export interface operations {
43304
44285
  };
43305
44286
  };
43306
44287
  };
43307
- "get-presigned-url-azure-azfiles-object": {
44288
+ "get-token-azure-bucket": {
43308
44289
  parameters: {
43309
- query: {
43310
- /** @description The path of the file inside the share. */
43311
- objectName: string;
43312
- /** @description The expiration time in seconds for the pre-signed URL. Default and maximum is 12 hours. */
43313
- expiresIn?: number;
43314
- /** @description The permissions for the pre-signed URL. Default is read (r). Combine: r,w,d,c. */
43315
- permissions?: string;
43316
- };
44290
+ query?: never;
43317
44291
  header?: never;
43318
44292
  path: {
43319
44293
  /** @description The name of the organization. */
@@ -43330,10 +44304,11 @@ export interface operations {
43330
44304
  /** @description OK */
43331
44305
  200: {
43332
44306
  headers: {
44307
+ "Cache-Control"?: string;
43333
44308
  [name: string]: unknown;
43334
44309
  };
43335
44310
  content: {
43336
- "application/json": string;
44311
+ "application/json": components["schemas"]["AzureBucketToken"];
43337
44312
  };
43338
44313
  };
43339
44314
  /** @description Error */
@@ -43347,7 +44322,7 @@ export interface operations {
43347
44322
  };
43348
44323
  };
43349
44324
  };
43350
- "get-sas-token-azure-azfiles": {
44325
+ "get-azure-disk": {
43351
44326
  parameters: {
43352
44327
  query?: never;
43353
44328
  header?: never;
@@ -43369,7 +44344,7 @@ export interface operations {
43369
44344
  [name: string]: unknown;
43370
44345
  };
43371
44346
  content: {
43372
- "application/json": components["schemas"]["AzureFilesSAS"];
44347
+ "application/json": components["schemas"]["AzureDisk"];
43373
44348
  };
43374
44349
  };
43375
44350
  /** @description Error */
@@ -43383,7 +44358,7 @@ export interface operations {
43383
44358
  };
43384
44359
  };
43385
44360
  };
43386
- "get-azure-bucket": {
44361
+ "get-azure-managedlustre": {
43387
44362
  parameters: {
43388
44363
  query?: never;
43389
44364
  header?: never;
@@ -43405,7 +44380,7 @@ export interface operations {
43405
44380
  [name: string]: unknown;
43406
44381
  };
43407
44382
  content: {
43408
- "application/json": components["schemas"]["AzureBlobStorage"];
44383
+ "application/json": components["schemas"]["AzureManagedLustre"];
43409
44384
  };
43410
44385
  };
43411
44386
  /** @description Error */
@@ -43419,7 +44394,7 @@ export interface operations {
43419
44394
  };
43420
44395
  };
43421
44396
  };
43422
- "provision-azure-bucket": {
44397
+ "get-azure-netappfiles": {
43423
44398
  parameters: {
43424
44399
  query?: never;
43425
44400
  header?: never;
@@ -43433,11 +44408,43 @@ export interface operations {
43433
44408
  };
43434
44409
  cookie?: never;
43435
44410
  };
43436
- requestBody: {
43437
- content: {
43438
- "application/json": components["schemas"]["BucketResource"];
44411
+ requestBody?: never;
44412
+ responses: {
44413
+ /** @description OK */
44414
+ 200: {
44415
+ headers: {
44416
+ [name: string]: unknown;
44417
+ };
44418
+ content: {
44419
+ "application/json": components["schemas"]["AzureNetAppFiles"];
44420
+ };
44421
+ };
44422
+ /** @description Error */
44423
+ default: {
44424
+ headers: {
44425
+ [name: string]: unknown;
44426
+ };
44427
+ content: {
44428
+ "application/json": components["schemas"]["Error"];
44429
+ };
43439
44430
  };
43440
44431
  };
44432
+ };
44433
+ "get-cluster": {
44434
+ parameters: {
44435
+ query?: never;
44436
+ header?: never;
44437
+ path: {
44438
+ /** @description The name of the organization. */
44439
+ organization: string;
44440
+ /** @description The username of the user that owns the cluster */
44441
+ user: string;
44442
+ /** @description The cluster name */
44443
+ clusterName: string;
44444
+ };
44445
+ cookie?: never;
44446
+ };
44447
+ requestBody?: never;
43441
44448
  responses: {
43442
44449
  /** @description OK */
43443
44450
  200: {
@@ -43445,7 +44452,7 @@ export interface operations {
43445
44452
  [name: string]: unknown;
43446
44453
  };
43447
44454
  content: {
43448
- "application/json": components["schemas"]["BucketOutput"];
44455
+ "application/json": components["schemas"]["GeneralCluster"];
43449
44456
  };
43450
44457
  };
43451
44458
  /** @description Error */
@@ -43459,7 +44466,7 @@ export interface operations {
43459
44466
  };
43460
44467
  };
43461
44468
  };
43462
- "add-cors-rules-azure-bucket": {
44469
+ "delete-cluster": {
43463
44470
  parameters: {
43464
44471
  query?: never;
43465
44472
  header?: never;
@@ -43468,8 +44475,8 @@ export interface operations {
43468
44475
  organization: string;
43469
44476
  /** @description Username of the target user. */
43470
44477
  user: string;
43471
- /** @description The name of the storage resource. */
43472
- name: string;
44478
+ /** @description The name of the cluster to delete */
44479
+ clusterName: string;
43473
44480
  };
43474
44481
  cookie?: never;
43475
44482
  };
@@ -43493,15 +44500,51 @@ export interface operations {
43493
44500
  };
43494
44501
  };
43495
44502
  };
43496
- "get-presigned-url-azure-bucket-object": {
44503
+ "update-cluster": {
43497
44504
  parameters: {
43498
- query: {
43499
- /** @description The name of the Azure object to get pre-signed URL. */
43500
- objectName: string;
43501
- /** @description The expiration time in seconds for the pre-signed URL. Default and maximum is 12 hours. */
43502
- expiresIn?: number;
43503
- /** @description The permissions for the pre-signed URL. Default is read (r). Other permissions include write (w), delete (d), list (l), add (a), create (c). Combine multiple permissions as needed. */
43504
- permissions?: string;
44505
+ query?: never;
44506
+ header?: never;
44507
+ path: {
44508
+ /** @description The name of the organization. */
44509
+ organization: string;
44510
+ /** @description The username of the user that owns the cluster */
44511
+ user: string;
44512
+ /** @description The cluster name */
44513
+ clusterName: string;
44514
+ };
44515
+ cookie?: never;
44516
+ };
44517
+ requestBody: {
44518
+ content: {
44519
+ "application/json": components["schemas"]["UpdateClusterBody"];
44520
+ };
44521
+ };
44522
+ responses: {
44523
+ /** @description OK */
44524
+ 200: {
44525
+ headers: {
44526
+ [name: string]: unknown;
44527
+ };
44528
+ content: {
44529
+ "application/json": components["schemas"]["UpdateClusterBody"];
44530
+ };
44531
+ };
44532
+ /** @description Error */
44533
+ default: {
44534
+ headers: {
44535
+ [name: string]: unknown;
44536
+ };
44537
+ content: {
44538
+ "application/json": components["schemas"]["Error"];
44539
+ };
44540
+ };
44541
+ };
44542
+ };
44543
+ "upgrade-cluster-agent": {
44544
+ parameters: {
44545
+ query?: {
44546
+ /** @description Bypass the active-session and running-workflow busy check. */
44547
+ force?: boolean;
43505
44548
  };
43506
44549
  header?: never;
43507
44550
  path: {
@@ -43509,20 +44552,19 @@ export interface operations {
43509
44552
  organization: string;
43510
44553
  /** @description Username of the target user. */
43511
44554
  user: string;
43512
- /** @description The name of the storage resource. */
43513
- name: string;
44555
+ clusterName: string;
43514
44556
  };
43515
44557
  cookie?: never;
43516
44558
  };
43517
44559
  requestBody?: never;
43518
44560
  responses: {
43519
- /** @description OK */
43520
- 200: {
44561
+ /** @description Accepted */
44562
+ 202: {
43521
44563
  headers: {
43522
44564
  [name: string]: unknown;
43523
44565
  };
43524
44566
  content: {
43525
- "application/json": string;
44567
+ "application/json": components["schemas"]["UpgradeAgentResponseBody"];
43526
44568
  };
43527
44569
  };
43528
44570
  /** @description Error */
@@ -43536,17 +44578,17 @@ export interface operations {
43536
44578
  };
43537
44579
  };
43538
44580
  };
43539
- "get-sas-token-azure-bucket": {
44581
+ "get-cluster-alerts": {
43540
44582
  parameters: {
43541
44583
  query?: never;
43542
44584
  header?: never;
43543
44585
  path: {
43544
44586
  /** @description The name of the organization. */
43545
44587
  organization: string;
43546
- /** @description Username of the target user. */
44588
+ /** @description The username of the user that owns the cluster */
43547
44589
  user: string;
43548
- /** @description The name of the storage resource. */
43549
- name: string;
44590
+ /** @description The cluster name */
44591
+ clusterName: string;
43550
44592
  };
43551
44593
  cookie?: never;
43552
44594
  };
@@ -43558,7 +44600,7 @@ export interface operations {
43558
44600
  [name: string]: unknown;
43559
44601
  };
43560
44602
  content: {
43561
- "application/json": components["schemas"]["AzureSASToken"];
44603
+ "application/json": components["schemas"]["ClusterAlerts"];
43562
44604
  };
43563
44605
  };
43564
44606
  /** @description Error */
@@ -43572,30 +44614,33 @@ export interface operations {
43572
44614
  };
43573
44615
  };
43574
44616
  };
43575
- "get-token-azure-bucket": {
44617
+ "update-cluster-alerts": {
43576
44618
  parameters: {
43577
44619
  query?: never;
43578
44620
  header?: never;
43579
44621
  path: {
43580
44622
  /** @description The name of the organization. */
43581
44623
  organization: string;
43582
- /** @description Username of the target user. */
44624
+ /** @description The username of the user that owns the cluster */
43583
44625
  user: string;
43584
- /** @description The name of the storage resource. */
43585
- name: string;
44626
+ /** @description The cluster name */
44627
+ clusterName: string;
43586
44628
  };
43587
44629
  cookie?: never;
43588
44630
  };
43589
- requestBody?: never;
44631
+ requestBody: {
44632
+ content: {
44633
+ "application/json": components["schemas"]["ClusterAlerts"];
44634
+ };
44635
+ };
43590
44636
  responses: {
43591
44637
  /** @description OK */
43592
44638
  200: {
43593
44639
  headers: {
43594
- "Cache-Control"?: string;
43595
44640
  [name: string]: unknown;
43596
44641
  };
43597
44642
  content: {
43598
- "application/json": components["schemas"]["AzureBucketToken"];
44643
+ "application/json": components["schemas"]["ClusterAlerts"];
43599
44644
  };
43600
44645
  };
43601
44646
  /** @description Error */
@@ -43609,17 +44654,17 @@ export interface operations {
43609
44654
  };
43610
44655
  };
43611
44656
  };
43612
- "get-azure-disk": {
44657
+ "get-cluster-attached-storages": {
43613
44658
  parameters: {
43614
44659
  query?: never;
43615
44660
  header?: never;
43616
44661
  path: {
43617
44662
  /** @description The name of the organization. */
43618
44663
  organization: string;
43619
- /** @description Username of the target user. */
44664
+ /** @description The username of the user that owns the cluster */
43620
44665
  user: string;
43621
- /** @description The name of the storage resource. */
43622
- name: string;
44666
+ /** @description The cluster name */
44667
+ clusterName: string;
43623
44668
  };
43624
44669
  cookie?: never;
43625
44670
  };
@@ -43631,7 +44676,7 @@ export interface operations {
43631
44676
  [name: string]: unknown;
43632
44677
  };
43633
44678
  content: {
43634
- "application/json": components["schemas"]["AzureDisk"];
44679
+ "application/json": (components["schemas"]["PlatformAttachedStorage"] | components["schemas"]["NfsAttachedStorage"])[] | null;
43635
44680
  };
43636
44681
  };
43637
44682
  /** @description Error */
@@ -43645,21 +44690,25 @@ export interface operations {
43645
44690
  };
43646
44691
  };
43647
44692
  };
43648
- "get-azure-managedlustre": {
44693
+ "update-cluster-attached-storages": {
43649
44694
  parameters: {
43650
44695
  query?: never;
43651
44696
  header?: never;
43652
44697
  path: {
43653
44698
  /** @description The name of the organization. */
43654
44699
  organization: string;
43655
- /** @description Username of the target user. */
44700
+ /** @description The username of the user that owns the cluster */
43656
44701
  user: string;
43657
- /** @description The name of the storage resource. */
43658
- name: string;
44702
+ /** @description The cluster name */
44703
+ clusterName: string;
43659
44704
  };
43660
44705
  cookie?: never;
43661
44706
  };
43662
- requestBody?: never;
44707
+ requestBody: {
44708
+ content: {
44709
+ "application/json": (components["schemas"]["PutPlatformAttachedStorage"] | components["schemas"]["PutNfsAttachedStorage"])[] | null;
44710
+ };
44711
+ };
43663
44712
  responses: {
43664
44713
  /** @description OK */
43665
44714
  200: {
@@ -43667,7 +44716,7 @@ export interface operations {
43667
44716
  [name: string]: unknown;
43668
44717
  };
43669
44718
  content: {
43670
- "application/json": components["schemas"]["AzureManagedLustre"];
44719
+ "application/json": (components["schemas"]["PlatformAttachedStorage"] | components["schemas"]["NfsAttachedStorage"])[] | null;
43671
44720
  };
43672
44721
  };
43673
44722
  /** @description Error */
@@ -43681,21 +44730,25 @@ export interface operations {
43681
44730
  };
43682
44731
  };
43683
44732
  };
43684
- "get-azure-netappfiles": {
44733
+ "attach-cluster-storage": {
43685
44734
  parameters: {
43686
44735
  query?: never;
43687
44736
  header?: never;
43688
44737
  path: {
43689
44738
  /** @description The name of the organization. */
43690
44739
  organization: string;
43691
- /** @description Username of the target user. */
44740
+ /** @description The username of the user that owns the cluster */
43692
44741
  user: string;
43693
- /** @description The name of the storage resource. */
43694
- name: string;
44742
+ /** @description The cluster name */
44743
+ clusterName: string;
43695
44744
  };
43696
44745
  cookie?: never;
43697
44746
  };
43698
- requestBody?: never;
44747
+ requestBody: {
44748
+ content: {
44749
+ "application/json": components["schemas"]["PutPlatformAttachedStorage"] | components["schemas"]["PutNfsAttachedStorage"];
44750
+ };
44751
+ };
43699
44752
  responses: {
43700
44753
  /** @description OK */
43701
44754
  200: {
@@ -43703,7 +44756,7 @@ export interface operations {
43703
44756
  [name: string]: unknown;
43704
44757
  };
43705
44758
  content: {
43706
- "application/json": components["schemas"]["AzureNetAppFiles"];
44759
+ "application/json": (components["schemas"]["PlatformAttachedStorage"] | components["schemas"]["NfsAttachedStorage"])[] | null;
43707
44760
  };
43708
44761
  };
43709
44762
  /** @description Error */
@@ -43717,7 +44770,7 @@ export interface operations {
43717
44770
  };
43718
44771
  };
43719
44772
  };
43720
- "get-cluster": {
44773
+ "get-cluster-definition": {
43721
44774
  parameters: {
43722
44775
  query?: never;
43723
44776
  header?: never;
@@ -43739,7 +44792,7 @@ export interface operations {
43739
44792
  [name: string]: unknown;
43740
44793
  };
43741
44794
  content: {
43742
- "application/json": components["schemas"]["GeneralCluster"];
44795
+ "application/json": components["schemas"]["ExistingClusterDefinition"] | components["schemas"]["AwsSlurmDefinition"] | components["schemas"]["GoogleSlurmDefinition"] | components["schemas"]["AzureSlurmDefinition"] | components["schemas"]["OracleSlurmDefinition"] | components["schemas"]["OpenstackSlurmDefinition"];
43743
44796
  };
43744
44797
  };
43745
44798
  /** @description Error */
@@ -43753,31 +44806,33 @@ export interface operations {
43753
44806
  };
43754
44807
  };
43755
44808
  };
43756
- "upgrade-cluster-agent": {
44809
+ "update-cluster-definition": {
43757
44810
  parameters: {
43758
- query?: {
43759
- /** @description Bypass the active-session and running-workflow busy check. */
43760
- force?: boolean;
43761
- };
44811
+ query?: never;
43762
44812
  header?: never;
43763
44813
  path: {
43764
44814
  /** @description The name of the organization. */
43765
44815
  organization: string;
43766
- /** @description Username of the target user. */
44816
+ /** @description The username of the user that owns the cluster */
43767
44817
  user: string;
44818
+ /** @description The cluster name */
43768
44819
  clusterName: string;
43769
44820
  };
43770
44821
  cookie?: never;
43771
44822
  };
43772
- requestBody?: never;
44823
+ requestBody: {
44824
+ content: {
44825
+ "application/json": components["schemas"]["ExistingClusterDefinition"] | components["schemas"]["AwsSlurmDefinition"] | components["schemas"]["GoogleSlurmDefinition"] | components["schemas"]["AzureSlurmDefinition"] | components["schemas"]["OracleSlurmDefinition"] | components["schemas"]["OpenstackSlurmDefinition"];
44826
+ };
44827
+ };
43773
44828
  responses: {
43774
- /** @description Accepted */
43775
- 202: {
44829
+ /** @description OK */
44830
+ 200: {
43776
44831
  headers: {
43777
44832
  [name: string]: unknown;
43778
44833
  };
43779
44834
  content: {
43780
- "application/json": components["schemas"]["UpgradeAgentResponseBody"];
44835
+ "application/json": components["schemas"]["ExistingClusterDefinition"] | components["schemas"]["AwsSlurmDefinition"] | components["schemas"]["GoogleSlurmDefinition"] | components["schemas"]["AzureSlurmDefinition"] | components["schemas"]["OracleSlurmDefinition"] | components["schemas"]["OpenstackSlurmDefinition"];
43781
44836
  };
43782
44837
  };
43783
44838
  /** @description Error */
@@ -43791,7 +44846,7 @@ export interface operations {
43791
44846
  };
43792
44847
  };
43793
44848
  };
43794
- "get-cluster-definition": {
44849
+ "get-cluster-deployment": {
43795
44850
  parameters: {
43796
44851
  query?: never;
43797
44852
  header?: never;
@@ -43802,6 +44857,8 @@ export interface operations {
43802
44857
  user: string;
43803
44858
  /** @description The cluster name */
43804
44859
  clusterName: string;
44860
+ /** @description The deployment number or 'latest' */
44861
+ deploymentNumber: string;
43805
44862
  };
43806
44863
  cookie?: never;
43807
44864
  };
@@ -43813,7 +44870,7 @@ export interface operations {
43813
44870
  [name: string]: unknown;
43814
44871
  };
43815
44872
  content: {
43816
- "application/json": components["schemas"]["ExistingClusterDefinition"] | components["schemas"]["AwsSlurmDefinition"] | components["schemas"]["GoogleSlurmDefinition"] | components["schemas"]["AzureSlurmDefinition"] | components["schemas"]["OracleSlurmDefinition"] | components["schemas"]["OpenstackSlurmDefinition"];
44873
+ "application/json": components["schemas"]["ClusterDeployment"];
43817
44874
  };
43818
44875
  };
43819
44876
  /** @description Error */
@@ -44014,6 +45071,8 @@ export interface operations {
44014
45071
  query?: {
44015
45072
  /** @description Optional filter by node type */
44016
45073
  type?: "controller" | "compute";
45074
+ /** @description Include failed nodes, which are omitted by default */
45075
+ includeFailed?: boolean;
44017
45076
  };
44018
45077
  header?: never;
44019
45078
  path: {
@@ -44129,7 +45188,14 @@ export interface operations {
44129
45188
  parameters: {
44130
45189
  query?: never;
44131
45190
  header?: never;
44132
- path?: never;
45191
+ path: {
45192
+ /** @description The name of the organization. */
45193
+ organization: string;
45194
+ /** @description The username of the user that owns the cluster */
45195
+ user: string;
45196
+ /** @description The cluster name */
45197
+ clusterName: string;
45198
+ };
44133
45199
  cookie?: never;
44134
45200
  };
44135
45201
  requestBody: {
@@ -44156,6 +45222,40 @@ export interface operations {
44156
45222
  };
44157
45223
  };
44158
45224
  };
45225
+ "resume-cluster": {
45226
+ parameters: {
45227
+ query?: never;
45228
+ header?: never;
45229
+ path: {
45230
+ /** @description The name of the organization. */
45231
+ organization: string;
45232
+ /** @description Username of the target user. */
45233
+ user: string;
45234
+ /** @description The name of the cluster to resume */
45235
+ clusterName: string;
45236
+ };
45237
+ cookie?: never;
45238
+ };
45239
+ requestBody?: never;
45240
+ responses: {
45241
+ /** @description No Content */
45242
+ 204: {
45243
+ headers: {
45244
+ [name: string]: unknown;
45245
+ };
45246
+ content?: never;
45247
+ };
45248
+ /** @description Error */
45249
+ default: {
45250
+ headers: {
45251
+ [name: string]: unknown;
45252
+ };
45253
+ content: {
45254
+ "application/json": components["schemas"]["Error"];
45255
+ };
45256
+ };
45257
+ };
45258
+ };
44159
45259
  "get-cluster-scheduler-jobs": {
44160
45260
  parameters: {
44161
45261
  query?: {
@@ -44431,6 +45531,40 @@ export interface operations {
44431
45531
  };
44432
45532
  };
44433
45533
  };
45534
+ "stop-cluster": {
45535
+ parameters: {
45536
+ query?: never;
45537
+ header?: never;
45538
+ path: {
45539
+ /** @description The name of the organization. */
45540
+ organization: string;
45541
+ /** @description Username of the target user. */
45542
+ user: string;
45543
+ /** @description The name of the cluster to stop */
45544
+ clusterName: string;
45545
+ };
45546
+ cookie?: never;
45547
+ };
45548
+ requestBody?: never;
45549
+ responses: {
45550
+ /** @description No Content */
45551
+ 204: {
45552
+ headers: {
45553
+ [name: string]: unknown;
45554
+ };
45555
+ content?: never;
45556
+ };
45557
+ /** @description Error */
45558
+ default: {
45559
+ headers: {
45560
+ [name: string]: unknown;
45561
+ };
45562
+ content: {
45563
+ "application/json": components["schemas"]["Error"];
45564
+ };
45565
+ };
45566
+ };
45567
+ };
44434
45568
  "update-cluster-while-running": {
44435
45569
  parameters: {
44436
45570
  query?: never;
@@ -44471,7 +45605,7 @@ export interface operations {
44471
45605
  };
44472
45606
  };
44473
45607
  };
44474
- "mount-cluster-dir-to-user-workspace": {
45608
+ "get-cluster-workspace-mounts": {
44475
45609
  parameters: {
44476
45610
  query?: never;
44477
45611
  header?: never;
@@ -44485,18 +45619,16 @@ export interface operations {
44485
45619
  };
44486
45620
  cookie?: never;
44487
45621
  };
44488
- requestBody: {
44489
- content: {
44490
- "application/json": components["schemas"]["MountWorkspaceDirectoryBody"];
44491
- };
44492
- };
45622
+ requestBody?: never;
44493
45623
  responses: {
44494
- /** @description No Content */
44495
- 204: {
45624
+ /** @description OK */
45625
+ 200: {
44496
45626
  headers: {
44497
45627
  [name: string]: unknown;
44498
45628
  };
44499
- content?: never;
45629
+ content: {
45630
+ "application/json": components["schemas"]["ClusterWorkspaceMount"][] | null;
45631
+ };
44500
45632
  };
44501
45633
  /** @description Error */
44502
45634
  default: {
@@ -44509,7 +45641,7 @@ export interface operations {
44509
45641
  };
44510
45642
  };
44511
45643
  };
44512
- "unmount-cluster-dir-from-user-workspace": {
45644
+ "update-cluster-workspace-mounts": {
44513
45645
  parameters: {
44514
45646
  query?: never;
44515
45647
  header?: never;
@@ -44525,16 +45657,18 @@ export interface operations {
44525
45657
  };
44526
45658
  requestBody: {
44527
45659
  content: {
44528
- "application/json": components["schemas"]["UnmountWorkspaceDirectoryBody"];
45660
+ "application/json": components["schemas"]["ClusterWorkspaceMount"][] | null;
44529
45661
  };
44530
45662
  };
44531
45663
  responses: {
44532
- /** @description No Content */
44533
- 204: {
45664
+ /** @description OK */
45665
+ 200: {
44534
45666
  headers: {
44535
45667
  [name: string]: unknown;
44536
45668
  };
44537
- content?: never;
45669
+ content: {
45670
+ "application/json": components["schemas"]["ClusterWorkspaceMount"][] | null;
45671
+ };
44538
45672
  };
44539
45673
  /** @description Error */
44540
45674
  default: {
@@ -44894,6 +46028,43 @@ export interface operations {
44894
46028
  };
44895
46029
  };
44896
46030
  };
46031
+ "list-all-environments": {
46032
+ parameters: {
46033
+ query?: {
46034
+ /** @description Filter by status. */
46035
+ status?: "active" | "inactive" | "";
46036
+ };
46037
+ header?: never;
46038
+ path: {
46039
+ /** @description The name of the organization. */
46040
+ organization: string;
46041
+ /** @description Username of the target user. */
46042
+ user: string;
46043
+ };
46044
+ cookie?: never;
46045
+ };
46046
+ requestBody?: never;
46047
+ responses: {
46048
+ /** @description OK */
46049
+ 200: {
46050
+ headers: {
46051
+ [name: string]: unknown;
46052
+ };
46053
+ content: {
46054
+ "application/json": components["schemas"]["Environment"][] | null;
46055
+ };
46056
+ };
46057
+ /** @description Error */
46058
+ default: {
46059
+ headers: {
46060
+ [name: string]: unknown;
46061
+ };
46062
+ content: {
46063
+ "application/json": components["schemas"]["Error"];
46064
+ };
46065
+ };
46066
+ };
46067
+ };
44897
46068
  "list-user-external-auth": {
44898
46069
  parameters: {
44899
46070
  query?: never;
@@ -45871,41 +47042,7 @@ export interface operations {
45871
47042
  };
45872
47043
  };
45873
47044
  };
45874
- "list-netappontap": {
45875
- parameters: {
45876
- query?: never;
45877
- header?: never;
45878
- path: {
45879
- /** @description The name of the organization. */
45880
- organization: string;
45881
- /** @description Username of the target user. */
45882
- user: string;
45883
- };
45884
- cookie?: never;
45885
- };
45886
- requestBody?: never;
45887
- responses: {
45888
- /** @description OK */
45889
- 200: {
45890
- headers: {
45891
- [name: string]: unknown;
45892
- };
45893
- content: {
45894
- "application/json": components["schemas"]["NetAppOntapResponse"][] | null;
45895
- };
45896
- };
45897
- /** @description Error */
45898
- default: {
45899
- headers: {
45900
- [name: string]: unknown;
45901
- };
45902
- content: {
45903
- "application/json": components["schemas"]["Error"];
45904
- };
45905
- };
45906
- };
45907
- };
45908
- "create-netappontap": {
47045
+ "create-network-interface": {
45909
47046
  parameters: {
45910
47047
  query?: never;
45911
47048
  header?: never;
@@ -45919,7 +47056,7 @@ export interface operations {
45919
47056
  };
45920
47057
  requestBody: {
45921
47058
  content: {
45922
- "application/json": components["schemas"]["CreateNetAppOntapInputBody"];
47059
+ "application/json": components["schemas"]["NetworkInterface"];
45923
47060
  };
45924
47061
  };
45925
47062
  responses: {
@@ -45929,7 +47066,7 @@ export interface operations {
45929
47066
  [name: string]: unknown;
45930
47067
  };
45931
47068
  content: {
45932
- "application/json": components["schemas"]["NetAppOntapResponse"];
47069
+ "application/json": components["schemas"]["NetworkInterface"];
45933
47070
  };
45934
47071
  };
45935
47072
  /** @description Error */
@@ -45943,7 +47080,7 @@ export interface operations {
45943
47080
  };
45944
47081
  };
45945
47082
  };
45946
- "get-netappontap": {
47083
+ "delete-network-interface": {
45947
47084
  parameters: {
45948
47085
  query?: never;
45949
47086
  header?: never;
@@ -45952,126 +47089,12 @@ export interface operations {
45952
47089
  organization: string;
45953
47090
  /** @description Username of the target user. */
45954
47091
  user: string;
45955
- /** @description The name of the storage resource. */
47092
+ /** @description The name of the network interface resource to delete. */
45956
47093
  name: string;
45957
47094
  };
45958
47095
  cookie?: never;
45959
47096
  };
45960
47097
  requestBody?: never;
45961
- responses: {
45962
- /** @description OK */
45963
- 200: {
45964
- headers: {
45965
- [name: string]: unknown;
45966
- };
45967
- content: {
45968
- "application/json": components["schemas"]["NetAppOntap"];
45969
- };
45970
- };
45971
- /** @description Error */
45972
- default: {
45973
- headers: {
45974
- [name: string]: unknown;
45975
- };
45976
- content: {
45977
- "application/json": components["schemas"]["Error"];
45978
- };
45979
- };
45980
- };
45981
- };
45982
- "get-netapp-ontap-volumes": {
45983
- parameters: {
45984
- query?: never;
45985
- header?: never;
45986
- path: {
45987
- /** @description The name of the organization. */
45988
- organization: string;
45989
- /** @description The user that owns this NetApp ONTAP storage. */
45990
- user: string;
45991
- /** @description NetApp ONTAP storage name */
45992
- ontapName: string;
45993
- };
45994
- cookie?: never;
45995
- };
45996
- requestBody?: never;
45997
- responses: {
45998
- /** @description OK */
45999
- 200: {
46000
- headers: {
46001
- [name: string]: unknown;
46002
- };
46003
- content: {
46004
- "application/json": components["schemas"]["SingleVolume"][] | null;
46005
- };
46006
- };
46007
- /** @description Error */
46008
- default: {
46009
- headers: {
46010
- [name: string]: unknown;
46011
- };
46012
- content: {
46013
- "application/json": components["schemas"]["Error"];
46014
- };
46015
- };
46016
- };
46017
- };
46018
- "create-netapp-ontap-volume": {
46019
- parameters: {
46020
- query?: never;
46021
- header?: never;
46022
- path: {
46023
- /** @description The name of the organization. */
46024
- organization: string;
46025
- /** @description The user that owns this NetApp ONTAP storage. */
46026
- user: string;
46027
- /** @description NetApp ONTAP storage name */
46028
- ontapName: string;
46029
- };
46030
- cookie?: never;
46031
- };
46032
- requestBody: {
46033
- content: {
46034
- "application/json": components["schemas"]["CreateVolumeRequestBody"];
46035
- };
46036
- };
46037
- responses: {
46038
- /** @description OK */
46039
- 200: {
46040
- headers: {
46041
- [name: string]: unknown;
46042
- };
46043
- content: {
46044
- "application/json": components["schemas"]["SingleVolume"];
46045
- };
46046
- };
46047
- /** @description Error */
46048
- default: {
46049
- headers: {
46050
- [name: string]: unknown;
46051
- };
46052
- content: {
46053
- "application/json": components["schemas"]["Error"];
46054
- };
46055
- };
46056
- };
46057
- };
46058
- "delete-netapp-ontap-volume": {
46059
- parameters: {
46060
- query?: never;
46061
- header?: never;
46062
- path: {
46063
- /** @description The name of the organization. */
46064
- organization: string;
46065
- /** @description The username of the user that owns this NetApp ONTAP storage. */
46066
- user: string;
46067
- /** @description NetApp ONTAP storage name */
46068
- ontapName: string;
46069
- /** @description Volume UUID to delete */
46070
- volumeId: string;
46071
- };
46072
- cookie?: never;
46073
- };
46074
- requestBody?: never;
46075
47098
  responses: {
46076
47099
  /** @description No Content */
46077
47100
  204: {