@parallelworks/client 7.84.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 +1916 -958
  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;
@@ -9722,85 +9924,29 @@ export interface paths {
9722
9924
  patch?: never;
9723
9925
  trace?: never;
9724
9926
  };
9725
- "/api/organizations/{organization}/users/{user}/netappontap": {
9927
+ "/api/organizations/{organization}/users/{user}/network-interfaces": {
9726
9928
  parameters: {
9727
9929
  query?: never;
9728
9930
  header?: never;
9729
9931
  path?: never;
9730
9932
  cookie?: never;
9731
9933
  };
9732
- /**
9733
- * List Storage: NetApp ONTAPs
9734
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9735
- *
9736
- * Returns all NetApp ONTAP storage systems for a user
9737
- */
9738
- get: operations["list-netappontap"];
9739
- put?: never;
9740
- /**
9741
- * Create Storage: NetApp ONTAP
9742
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9743
- *
9744
- * Creates a new NetApp ONTAP storage
9745
- */
9746
- post: operations["create-netappontap"];
9747
- delete?: never;
9748
- options?: never;
9749
- head?: never;
9750
- patch?: never;
9751
- trace?: never;
9752
- };
9753
- "/api/organizations/{organization}/users/{user}/netappontap/{name}": {
9754
- parameters: {
9755
- query?: never;
9756
- header?: never;
9757
- path?: never;
9758
- cookie?: never;
9759
- };
9760
- /**
9761
- * Get Storage: NetApp ONTAP
9762
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9763
- *
9764
- * Returns a NetApp ONTAP
9765
- */
9766
- get: operations["get-netappontap"];
9767
- put?: never;
9768
- post?: never;
9769
- delete?: never;
9770
- options?: never;
9771
- head?: never;
9772
- patch?: never;
9773
- trace?: never;
9774
- };
9775
- "/api/organizations/{organization}/users/{user}/netappontap/{ontapName}/volumes": {
9776
- parameters: {
9777
- query?: never;
9778
- header?: never;
9779
- path?: never;
9780
- cookie?: never;
9781
- };
9782
- /**
9783
- * Get NetApp ONTAP volumes
9784
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9785
- *
9786
- * Returns a list of volumes from NetApp ONTAP storage.
9787
- */
9788
- get: operations["get-netapp-ontap-volumes"];
9934
+ get?: never;
9789
9935
  put?: never;
9790
9936
  /**
9791
- * Create NetApp ONTAP volume
9937
+ * Create network interface
9792
9938
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9793
9939
  *
9794
- * 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.
9795
9941
  */
9796
- post: operations["create-netapp-ontap-volume"];
9942
+ post: operations["create-network-interface"];
9797
9943
  delete?: never;
9798
9944
  options?: never;
9799
9945
  head?: never;
9800
9946
  patch?: never;
9801
9947
  trace?: never;
9802
9948
  };
9803
- "/api/organizations/{organization}/users/{user}/netappontap/{ontapName}/volumes/{volumeId}": {
9949
+ "/api/organizations/{organization}/users/{user}/network-interfaces/{name}": {
9804
9950
  parameters: {
9805
9951
  query?: never;
9806
9952
  header?: never;
@@ -9811,12 +9957,12 @@ export interface paths {
9811
9957
  put?: never;
9812
9958
  post?: never;
9813
9959
  /**
9814
- * Delete NetApp ONTAP volume
9960
+ * Delete network interface
9815
9961
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
9816
9962
  *
9817
- * Deletes a volume from NetApp ONTAP storage.
9963
+ * Deletes the specified network interface, releasing it and its public IP.
9818
9964
  */
9819
- delete: operations["delete-netapp-ontap-volume"];
9965
+ delete: operations["delete-network-interface"];
9820
9966
  options?: never;
9821
9967
  head?: never;
9822
9968
  patch?: never;
@@ -13440,14 +13586,14 @@ export interface components {
13440
13586
  region?: string;
13441
13587
  /** @description Replace an existing version's variables instead of adding a new version. */
13442
13588
  replace?: boolean;
13443
- /** Format: int64 */
13589
+ /** @description Root disk size in GiB. */
13444
13590
  rootSize?: number;
13445
13591
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13446
13592
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13447
- slurmResumeTimeout?: unknown;
13448
- slurmReturnToService?: unknown;
13449
- slurmSuspendTime?: unknown;
13450
- slurmSuspendTimeout?: unknown;
13593
+ slurmResumeTimeout?: number;
13594
+ slurmReturnToService?: number;
13595
+ slurmSuspendTime?: number;
13596
+ slurmSuspendTimeout?: number;
13451
13597
  userBootstrap?: string;
13452
13598
  userBootstrapCompute?: boolean;
13453
13599
  userBootstrapController?: boolean;
@@ -13522,23 +13668,22 @@ export interface components {
13522
13668
  controllerInstanceType?: string;
13523
13669
  disks?: components["schemas"]["ClusterDisk"][] | null;
13524
13670
  healthCheck?: string;
13671
+ /** @description Mount point of the controller's local disk; only applies when the controller instance type has a local disk. */
13525
13672
  localDiskMountPoint?: string;
13673
+ /** @description Export the controller's local disk over NFS; only applies when the controller instance type has a local disk. */
13526
13674
  localDiskNFS?: boolean;
13527
- localdiskLabel?: {
13528
- [key: string]: unknown;
13529
- };
13530
13675
  partitions?: components["schemas"]["AzureSlurmPartition"][] | null;
13531
13676
  region?: string;
13532
13677
  /** @description Replace an existing version's variables instead of adding a new version. */
13533
13678
  replace?: boolean;
13534
- /** Format: int64 */
13679
+ /** @description Root disk size in GiB. */
13535
13680
  rootSize?: number;
13536
13681
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13537
13682
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13538
- slurmResumeTimeout?: unknown;
13539
- slurmReturnToService?: unknown;
13540
- slurmSuspendTime?: unknown;
13541
- slurmSuspendTimeout?: unknown;
13683
+ slurmResumeTimeout?: number;
13684
+ slurmReturnToService?: number;
13685
+ slurmSuspendTime?: number;
13686
+ slurmSuspendTimeout?: number;
13542
13687
  userBootstrap?: string;
13543
13688
  userBootstrapCompute?: boolean;
13544
13689
  userBootstrapController?: boolean;
@@ -13625,22 +13770,19 @@ export interface components {
13625
13770
  controllerInstanceType?: string;
13626
13771
  controllerTier1?: boolean;
13627
13772
  disks?: components["schemas"]["ClusterDisk"][] | null;
13628
- googleLabel?: {
13629
- [key: string]: unknown;
13630
- };
13631
13773
  healthCheck?: string;
13632
13774
  partitions?: components["schemas"]["GoogleSlurmPartition"][] | null;
13633
13775
  region?: string;
13634
13776
  /** @description Replace an existing version's variables instead of adding a new version. */
13635
13777
  replace?: boolean;
13636
- /** Format: int64 */
13778
+ /** @description Root disk size in GiB. */
13637
13779
  rootSize?: number;
13638
13780
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13639
13781
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13640
- slurmResumeTimeout?: unknown;
13641
- slurmReturnToService?: unknown;
13642
- slurmSuspendTime?: unknown;
13643
- slurmSuspendTimeout?: unknown;
13782
+ slurmResumeTimeout?: number;
13783
+ slurmReturnToService?: number;
13784
+ slurmSuspendTime?: number;
13785
+ slurmSuspendTimeout?: number;
13644
13786
  userBootstrap?: string;
13645
13787
  userBootstrapCompute?: boolean;
13646
13788
  userBootstrapController?: boolean;
@@ -13657,10 +13799,6 @@ export interface components {
13657
13799
  yaml: string;
13658
13800
  };
13659
13801
  AddOpenstackSlurmVersionInputBody: {
13660
- architecture?: string;
13661
- attachedStorages?: {
13662
- [key: string]: unknown;
13663
- }[] | null;
13664
13802
  controllerImage?: string;
13665
13803
  controllerInstanceType?: string;
13666
13804
  floatingIpNetwork?: string;
@@ -13672,10 +13810,10 @@ export interface components {
13672
13810
  replace?: boolean;
13673
13811
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13674
13812
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13675
- slurmResumeTimeout?: unknown;
13676
- slurmReturnToService?: unknown;
13677
- slurmSuspendTime?: unknown;
13678
- slurmSuspendTimeout?: unknown;
13813
+ slurmResumeTimeout?: number;
13814
+ slurmReturnToService?: number;
13815
+ slurmSuspendTime?: number;
13816
+ slurmSuspendTimeout?: number;
13679
13817
  userBootstrap?: string;
13680
13818
  userBootstrapCompute?: boolean;
13681
13819
  userBootstrapController?: boolean;
@@ -13701,25 +13839,23 @@ export interface components {
13701
13839
  architecture?: string;
13702
13840
  controllerImage?: string;
13703
13841
  controllerInstanceType?: string;
13704
- /** Format: int64 */
13842
+ /** @description Memory in GiB when the controller instance type is a flexible shape. */
13705
13843
  controllerMemoryGb?: number;
13706
- /** Format: int64 */
13844
+ /** @description OCPU count when the controller instance type is a flexible shape. */
13707
13845
  controllerOcpus?: number;
13708
- disks?: components["schemas"]["ClusterDisk"][] | null;
13709
13846
  healthCheck?: string;
13710
- isFlex?: boolean;
13711
13847
  partitions?: components["schemas"]["OracleSlurmPartition"][] | null;
13712
13848
  region?: string;
13713
13849
  /** @description Replace an existing version's variables instead of adding a new version. */
13714
13850
  replace?: boolean;
13715
- /** Format: int64 */
13851
+ /** @description Root disk size in GiB. */
13716
13852
  rootSize?: number;
13717
13853
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
13718
13854
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
13719
- slurmResumeTimeout?: unknown;
13720
- slurmReturnToService?: unknown;
13721
- slurmSuspendTime?: unknown;
13722
- slurmSuspendTimeout?: unknown;
13855
+ slurmResumeTimeout?: number;
13856
+ slurmReturnToService?: number;
13857
+ slurmSuspendTime?: number;
13858
+ slurmSuspendTimeout?: number;
13723
13859
  userBootstrap?: string;
13724
13860
  userBootstrapCompute?: boolean;
13725
13861
  userBootstrapController?: boolean;
@@ -13753,10 +13889,6 @@ export interface components {
13753
13889
  replace?: boolean;
13754
13890
  /** @description Repository URL. */
13755
13891
  repo?: string;
13756
- /** @description Skip the git checkout step. */
13757
- skipCheckout?: boolean;
13758
- /** @description Sparse-checkout paths. */
13759
- sparsecheckout?: string[] | null;
13760
13892
  /** @description Path to the thumbnail image within the repo. */
13761
13893
  thumbnail?: string;
13762
13894
  /** @description Version label to add (must start with v). */
@@ -14541,6 +14673,12 @@ export interface components {
14541
14673
  readonly workspaceId?: string;
14542
14674
  };
14543
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;
14544
14682
  architecture?: string;
14545
14683
  controllerImage?: string;
14546
14684
  controllerInstanceType?: string;
@@ -14548,20 +14686,23 @@ export interface components {
14548
14686
  debugMode?: boolean;
14549
14687
  /** @description Desktop session settings. */
14550
14688
  desktopSession?: components["schemas"]["DesktopSessionSettings"];
14551
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
14689
+ disks?: components["schemas"]["ClusterControllerDisk"][] | null;
14552
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;
14553
14693
  partitions?: components["schemas"]["ClusterAwsSlurmPartition"][] | null;
14554
14694
  region?: string;
14695
+ /** @description Root disk size in GiB. */
14555
14696
  rootSize?: number;
14556
14697
  slurmResumeTimeout?: number;
14557
14698
  slurmReturnToService?: number;
14558
14699
  slurmSuspendTime?: number;
14559
14700
  slurmSuspendTimeout?: number;
14560
14701
  /**
14561
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
14702
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
14562
14703
  * @enum {string}
14563
14704
  */
14564
- subtype: "aws-slurm";
14705
+ type: "aws-slurm";
14565
14706
  userBootstrap?: string;
14566
14707
  userBootstrapCompute?: boolean;
14567
14708
  userBootstrapController?: boolean;
@@ -14570,22 +14711,17 @@ export interface components {
14570
14711
  AwsSlurmPartition: {
14571
14712
  architecture?: string;
14572
14713
  capacityBlock?: boolean;
14573
- capacityReservation?: boolean;
14574
14714
  capacityReservationId?: string;
14575
- default?: unknown;
14715
+ default?: boolean;
14576
14716
  disks?: components["schemas"]["ClusterDisk"][] | null;
14577
- efa?: boolean;
14578
14717
  elasticImage?: string;
14579
14718
  instanceType?: string;
14580
- /** Format: int64 */
14581
14719
  maxNodes?: number;
14582
14720
  multiZone?: boolean;
14583
- multipleNetworkCards?: boolean;
14584
14721
  name?: string;
14585
14722
  placementGroup?: string;
14586
14723
  preemptible?: boolean;
14587
14724
  provisioningMode?: string;
14588
- /** Format: int64 */
14589
14725
  suspendTime?: number;
14590
14726
  usePlacementGroup?: boolean;
14591
14727
  zone?: string;
@@ -14599,14 +14735,14 @@ export interface components {
14599
14735
  healthCheck?: string;
14600
14736
  partitions?: components["schemas"]["AwsSlurmPartition"][] | null;
14601
14737
  region?: string;
14602
- /** Format: int64 */
14738
+ /** @description Root disk size in GiB. */
14603
14739
  rootSize?: number;
14604
14740
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
14605
14741
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
14606
- slurmResumeTimeout?: unknown;
14607
- slurmReturnToService?: unknown;
14608
- slurmSuspendTime?: unknown;
14609
- slurmSuspendTimeout?: unknown;
14742
+ slurmResumeTimeout?: number;
14743
+ slurmReturnToService?: number;
14744
+ slurmSuspendTime?: number;
14745
+ slurmSuspendTimeout?: number;
14610
14746
  /**
14611
14747
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
14612
14748
  * @enum {string}
@@ -15170,6 +15306,12 @@ export interface components {
15170
15306
  url: string;
15171
15307
  };
15172
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;
15173
15315
  architecture?: string;
15174
15316
  controllerImage?: string;
15175
15317
  controllerInstanceType?: string;
@@ -15177,45 +15319,46 @@ export interface components {
15177
15319
  debugMode?: boolean;
15178
15320
  /** @description Desktop session settings. */
15179
15321
  desktopSession?: components["schemas"]["DesktopSessionSettings"];
15180
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
15322
+ disks?: components["schemas"]["ClusterControllerDisk"][] | null;
15181
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;
15182
15330
  partitions?: components["schemas"]["ClusterAzureSlurmPartition"][] | null;
15183
15331
  region?: string;
15332
+ /** @description Root disk size in GiB. */
15184
15333
  rootSize?: number;
15185
15334
  slurmResumeTimeout?: number;
15186
15335
  slurmReturnToService?: number;
15187
15336
  slurmSuspendTime?: number;
15188
15337
  slurmSuspendTimeout?: number;
15189
15338
  /**
15190
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
15339
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
15191
15340
  * @enum {string}
15192
15341
  */
15193
- subtype: "azure-slurm";
15342
+ type: "azure-slurm";
15194
15343
  userBootstrap?: string;
15195
15344
  userBootstrapCompute?: boolean;
15196
15345
  userBootstrapController?: boolean;
15197
15346
  zone?: string;
15198
15347
  };
15199
15348
  AzureSlurmPartition: {
15200
- acceleratedNetworking?: boolean;
15201
15349
  architecture?: string;
15202
- default?: unknown;
15350
+ default?: boolean;
15203
15351
  disks?: components["schemas"]["ClusterDisk"][] | null;
15204
15352
  elasticImage?: string;
15205
- has_acc_networking_feature?: boolean;
15206
15353
  instanceType?: string;
15354
+ /** @description Mount point for the instance's local (temporary) disk. */
15207
15355
  localDiskMountPoint?: string;
15208
- /** Format: int64 */
15209
15356
  maxNodes?: number;
15210
15357
  name?: string;
15211
15358
  preemptible?: boolean;
15212
15359
  provisioningMode?: string;
15213
- reservation?: boolean;
15214
15360
  reservationId?: string;
15215
- show_local_disk?: boolean;
15216
- /** Format: int64 */
15217
15361
  suspendTime?: number;
15218
- useLocalDisk?: boolean;
15219
15362
  zone?: string;
15220
15363
  };
15221
15364
  AzureSlurmVersionSettings: {
@@ -15224,21 +15367,20 @@ export interface components {
15224
15367
  controllerInstanceType?: string;
15225
15368
  disks?: components["schemas"]["ClusterDisk"][] | null;
15226
15369
  healthCheck?: string;
15370
+ /** @description Mount point of the controller's local disk; only applies when the controller instance type has a local disk. */
15227
15371
  localDiskMountPoint?: string;
15372
+ /** @description Export the controller's local disk over NFS; only applies when the controller instance type has a local disk. */
15228
15373
  localDiskNFS?: boolean;
15229
- localdiskLabel?: {
15230
- [key: string]: unknown;
15231
- };
15232
15374
  partitions?: components["schemas"]["AzureSlurmPartition"][] | null;
15233
15375
  region?: string;
15234
- /** Format: int64 */
15376
+ /** @description Root disk size in GiB. */
15235
15377
  rootSize?: number;
15236
15378
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
15237
15379
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
15238
- slurmResumeTimeout?: unknown;
15239
- slurmReturnToService?: unknown;
15240
- slurmSuspendTime?: unknown;
15241
- slurmSuspendTimeout?: unknown;
15380
+ slurmResumeTimeout?: number;
15381
+ slurmReturnToService?: number;
15382
+ slurmSuspendTime?: number;
15383
+ slurmSuspendTimeout?: number;
15242
15384
  /**
15243
15385
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
15244
15386
  * @enum {string}
@@ -15432,6 +15574,8 @@ export interface components {
15432
15574
  canGetCredentials: boolean;
15433
15575
  /** @description Whether credentials the requesting user obtains for this bucket allow writing objects (owner, or shared with the Admin or Mount Storage permission) */
15434
15576
  canWrite: boolean;
15577
+ /** @description The cloud account name to which the bucket belongs. */
15578
+ cloudAccount?: string;
15435
15579
  /** @description Cloud service provider of the bucket */
15436
15580
  csp: string;
15437
15581
  /** @description Display name of the bucket */
@@ -15453,8 +15597,6 @@ export interface components {
15453
15597
  * @description Deprecated: Use 'user' instead. Username of the bucket owner.
15454
15598
  */
15455
15599
  namespace: string;
15456
- /** @description The network name to which the bucket is attached. */
15457
- network?: string;
15458
15600
  /** @description Region where the bucket is located */
15459
15601
  region: string;
15460
15602
  /** @description Indicates if the bucket is sessionless */
@@ -15534,6 +15676,11 @@ export interface components {
15534
15676
  BucketResource: {
15535
15677
  /** @description Name of the bucket. */
15536
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;
15537
15684
  /**
15538
15685
  * @description The description of the storage.
15539
15686
  * @example This is a sample storage.
@@ -15551,11 +15698,6 @@ export interface components {
15551
15698
  * @example myGroup
15552
15699
  */
15553
15700
  group: string;
15554
- /**
15555
- * @description The network name to which the storage is attached.
15556
- * @example my-network
15557
- */
15558
- network: string;
15559
15701
  /** @description Region the storage will be provisioned in. */
15560
15702
  region: string;
15561
15703
  /**
@@ -16012,6 +16154,7 @@ export interface components {
16012
16154
  organization: string;
16013
16155
  peeredToPlatform: boolean;
16014
16156
  provisioningMode?: string;
16157
+ rdmaProfile?: string;
16015
16158
  regions: components["schemas"]["ConfigRegion"][] | null;
16016
16159
  status: string;
16017
16160
  /** Format: date-time */
@@ -16021,6 +16164,7 @@ export interface components {
16021
16164
  id: string;
16022
16165
  name: string;
16023
16166
  provisioningMode?: string;
16167
+ rdmaProfile?: string;
16024
16168
  regions: components["schemas"]["ConfigRegion"][] | null;
16025
16169
  status: string;
16026
16170
  };
@@ -16060,13 +16204,18 @@ export interface components {
16060
16204
  /** @description Sub-variant identifier */
16061
16205
  variant?: string;
16062
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
+ };
16063
16213
  ClusterAwsSlurmPartition: {
16064
16214
  architecture?: string;
16065
16215
  capacityBlock?: boolean;
16066
- capacityReservation?: boolean;
16067
16216
  capacityReservationId?: string;
16068
16217
  default?: boolean;
16069
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16218
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16070
16219
  elasticImage?: string;
16071
16220
  instanceType?: string;
16072
16221
  maxNodes?: number;
@@ -16083,28 +16232,81 @@ export interface components {
16083
16232
  ClusterAzureSlurmPartition: {
16084
16233
  architecture?: string;
16085
16234
  default?: boolean;
16086
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16235
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16087
16236
  elasticImage?: string;
16088
16237
  instanceType?: string;
16238
+ /** @description Mount point for the instance's local (temporary) disk. */
16239
+ localDiskMountPoint?: string;
16089
16240
  maxNodes?: number;
16090
16241
  name?: string;
16091
16242
  preemptible?: boolean;
16092
16243
  provisioningMode?: string;
16093
- reservation?: boolean;
16094
16244
  reservationId?: string;
16095
16245
  suspendTime?: number;
16096
16246
  zone?: string;
16097
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
+ };
16098
16303
  ClusterDisk: {
16099
16304
  encrypted?: boolean;
16100
- /** Format: int64 */
16101
16305
  iops?: number;
16102
16306
  mountPoint?: string;
16103
16307
  nfsExport?: boolean;
16104
- restore_snapshot?: boolean;
16105
- /** Format: int64 */
16308
+ /** @description Disk size in GiB. */
16106
16309
  sizeGb?: number;
16107
- /** Format: int64 */
16108
16310
  throughput?: number;
16109
16311
  type?: string;
16110
16312
  };
@@ -16123,7 +16325,7 @@ export interface components {
16123
16325
  ClusterGoogleSlurmPartition: {
16124
16326
  architecture?: string;
16125
16327
  default?: boolean;
16126
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16328
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16127
16329
  elasticImage?: string;
16128
16330
  flexStartWaitTime?: number;
16129
16331
  gpuCount?: number;
@@ -16134,11 +16336,10 @@ export interface components {
16134
16336
  maxNodes?: number;
16135
16337
  multiZone?: boolean;
16136
16338
  name?: string;
16137
- os?: string;
16138
16339
  placementGroup?: string;
16139
16340
  preemptible?: boolean;
16140
16341
  provisioningMode?: string;
16141
- reservation?: boolean;
16342
+ rdmaNetwork?: string;
16142
16343
  reservationId?: string;
16143
16344
  suspendTime?: number;
16144
16345
  tier1?: boolean;
@@ -16179,23 +16380,14 @@ export interface components {
16179
16380
  /** Format: date-time */
16180
16381
  timestamp: string;
16181
16382
  };
16182
- ClusterNodeDisk: {
16183
- encrypted?: boolean;
16184
- iops?: number;
16185
- mountPoint?: string;
16186
- nfsExport?: boolean;
16187
- sizeGb?: number;
16188
- /** @description Platform snapshot id the disk is restored from; empty when the disk starts blank. */
16189
- snapshot?: string;
16190
- throughput?: number;
16191
- type?: string;
16192
- };
16193
16383
  ClusterNodeResponse: {
16194
16384
  /**
16195
16385
  * Format: date-time
16196
16386
  * @description The node creation timestamp
16197
16387
  */
16198
16388
  createdAt?: string;
16389
+ /** @description The cloud provider's identifier for the node */
16390
+ cspId?: string;
16199
16391
  /** @description The node ID */
16200
16392
  id: string;
16201
16393
  /** @description The node hostname */
@@ -16213,7 +16405,7 @@ export interface components {
16213
16405
  architecture?: string;
16214
16406
  associateFloatingIp?: boolean;
16215
16407
  default?: boolean;
16216
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16408
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16217
16409
  elasticImage?: string;
16218
16410
  instanceType?: string;
16219
16411
  maxNodes?: number;
@@ -16222,16 +16414,30 @@ export interface components {
16222
16414
  ClusterOracleSlurmPartition: {
16223
16415
  architecture?: string;
16224
16416
  default?: boolean;
16225
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
16417
+ disks?: components["schemas"]["ClusterPartitionDisk"][] | null;
16226
16418
  elasticImage?: string;
16227
16419
  instanceType?: string;
16228
16420
  maxNodes?: number;
16421
+ /** @description Memory in GiB when the instance type is a flexible shape. */
16229
16422
  memoryGb?: number;
16230
16423
  name?: string;
16424
+ /** @description OCPU count when the instance type is a flexible shape. */
16231
16425
  ocpus?: number;
16232
16426
  suspendTime?: number;
16233
16427
  zone?: string;
16234
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
+ };
16235
16441
  ClusterResponse: {
16236
16442
  /**
16237
16443
  * @description Cost tracking status for the cluster
@@ -16284,36 +16490,26 @@ export interface components {
16284
16490
  iops?: number;
16285
16491
  mountPoint?: string;
16286
16492
  nfsExport?: boolean;
16287
- restore_snapshot?: boolean;
16288
16493
  /** Format: int64 */
16289
16494
  sizeGb?: number;
16290
16495
  snapshot?: string;
16291
16496
  /** Format: int64 */
16292
16497
  throughput?: number;
16293
16498
  type?: string;
16294
- } & {
16295
- [key: string]: unknown;
16296
16499
  };
16297
16500
  ClusterUpdatePartition: {
16298
- acceleratedNetworking?: boolean;
16299
16501
  architecture?: string;
16300
16502
  capacityBlock?: boolean;
16301
- capacityReservation?: boolean;
16302
16503
  capacityReservationId?: string;
16303
- customSuspendTime?: boolean;
16304
- default?: unknown;
16504
+ default?: boolean;
16305
16505
  disks?: components["schemas"]["ClusterUpdateDisk"][] | null;
16306
- efa?: boolean;
16307
16506
  elasticImage?: string;
16308
16507
  /** Format: int64 */
16309
16508
  flexStartWaitTime?: number;
16310
16509
  /** Format: int64 */
16311
16510
  gpuCount?: number;
16312
16511
  gpuType?: string;
16313
- gvnic?: boolean;
16314
- has_acc_networking_feature?: boolean;
16315
16512
  instanceType?: string;
16316
- isFlex?: boolean;
16317
16513
  localDiskMountPoint?: string;
16318
16514
  maxDistance?: string;
16319
16515
  /** Format: int64 */
@@ -16322,30 +16518,25 @@ export interface components {
16322
16518
  maxNodes?: number;
16323
16519
  /** Format: int64 */
16324
16520
  memoryGb?: number;
16325
- migrateOnMaintenance?: boolean;
16326
16521
  multiZone?: boolean;
16327
- multipleNetworkCards?: boolean;
16328
16522
  name?: string;
16329
16523
  /** Format: int64 */
16330
16524
  ocpus?: number;
16331
- os?: string;
16332
16525
  placementGroup?: string;
16333
16526
  preemptible?: boolean;
16334
16527
  provisioningMode?: string;
16335
- reservation?: boolean;
16528
+ rdmaNetwork?: string;
16336
16529
  reservationId?: string;
16337
- show_local_disk?: boolean;
16338
16530
  /** Format: int64 */
16339
16531
  suspendTime?: number;
16340
16532
  tier1?: boolean;
16341
- useLocalDisk?: boolean;
16342
16533
  usePlacementGroup?: boolean;
16343
16534
  zone?: string;
16344
16535
  zones?: string[] | null;
16345
- } & {
16346
- [key: string]: unknown;
16347
16536
  };
16348
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"];
16349
16540
  /** @description Slurm partition definitions */
16350
16541
  partitions?: components["schemas"]["ClusterUpdatePartition"][];
16351
16542
  /** @description Max seconds to wait for nodes to start */
@@ -16720,6 +16911,112 @@ export interface components {
16720
16911
  /** @description Short, human-readable alert title. */
16721
16912
  title: string;
16722
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
+ };
16723
17020
  CreateCloudAccountBody: {
16724
17021
  /** @description AWS access key ID */
16725
17022
  awsAccessKeyId?: string;
@@ -16837,6 +17134,99 @@ export interface components {
16837
17134
  */
16838
17135
  schedulerType: "slurm" | "pbs";
16839
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
+ };
16840
17230
  CreateIndexBody: {
16841
17231
  /**
16842
17232
  * Format: int64
@@ -16886,23 +17276,6 @@ export interface components {
16886
17276
  /** @description Namespace name */
16887
17277
  name: string;
16888
17278
  };
16889
- CreateNetAppOntapInputBody: {
16890
- /** @description Admin account username */
16891
- adminAccount: string;
16892
- /** @description Admin account password */
16893
- adminPassword: string;
16894
- /** @description Description of the NetApp ONTAP */
16895
- description?: string;
16896
- /**
16897
- * @description Name of the NetApp ONTAP
16898
- * @example my-ontap
16899
- */
16900
- name: string;
16901
- /** @description IP address or hostname of the NetApp ONTAP server */
16902
- serverAddress: string;
16903
- /** @description Tags for the NetApp ONTAP */
16904
- tags?: string;
16905
- };
16906
17279
  CreateNetworkBody: {
16907
17280
  /** @description Name of the network */
16908
17281
  name: string;
@@ -16912,10 +17285,14 @@ export interface components {
16912
17285
  peeredToPlatform: boolean;
16913
17286
  /** @description Provisioning mode for the network */
16914
17287
  provisioningMode: string;
17288
+ /** @description RDMA network profile: 'irdma' (Falcon, for H4D). Empty for a standard VPC. Google only. */
17289
+ rdmaProfile?: string;
16915
17290
  /** @description List of regions and their CIDR blocks */
16916
17291
  regions: components["schemas"]["NetworkRegion"][] | null;
16917
17292
  /** @description Transit Gateway ID (required for private mode on AWS when peered to platform) */
16918
17293
  transitGatewayId: string;
17294
+ /** @description Zone for a zonal RDMA network profile (required when rdmaProfile is set). */
17295
+ zone?: string;
16919
17296
  };
16920
17297
  CreateNotificationBody: {
16921
17298
  /** @description Optional URL to link the notification to */
@@ -16948,6 +17325,104 @@ export interface components {
16948
17325
  /** @description Usernames that did not receive the notification */
16949
17326
  failedToNotifyUsers?: string[] | null;
16950
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
+ };
16951
17426
  CreateOrgAIProviderBody: {
16952
17427
  /** @description Organization-scoped provider credential */
16953
17428
  apiKey?: string;
@@ -17169,33 +17644,6 @@ export interface components {
17169
17644
  */
17170
17645
  value: string;
17171
17646
  };
17172
- CreateVolumeRequestBody: {
17173
- /**
17174
- * @description Aggregate name where the volume will be created
17175
- * @example aggr1
17176
- */
17177
- aggregate: string;
17178
- /**
17179
- * @description Export path for the volume (must start with /)
17180
- * @example /my-volume
17181
- */
17182
- path: string;
17183
- /**
17184
- * @description Size of the volume in GB
17185
- * @example 100
17186
- */
17187
- size: string;
17188
- /**
17189
- * @description Storage VM name
17190
- * @example svm1
17191
- */
17192
- svm: string;
17193
- /**
17194
- * @description Name of the volume to create
17195
- * @example my-volume
17196
- */
17197
- volumeName: string;
17198
- };
17199
17647
  CreateWebhookBody: {
17200
17648
  /** @description Optional description of the webhook. */
17201
17649
  description?: string;
@@ -17232,8 +17680,6 @@ export interface components {
17232
17680
  name: string;
17233
17681
  /** @description Remote workflow configuration (required for remote type) */
17234
17682
  remote?: components["schemas"]["RemoteWorkflowSettings"];
17235
- /** @description Skip automatic repository checkout during job preparation */
17236
- skipCheckout?: boolean;
17237
17683
  /**
17238
17684
  * @description Selected workflow subtype (required for remote type)
17239
17685
  * @enum {string}
@@ -17897,9 +18343,14 @@ export interface components {
17897
18343
  variables: components["schemas"]["ExistingClusterVariables"];
17898
18344
  };
17899
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";
17900
18351
  /** @description Desktop session settings. */
17901
18352
  desktopSession?: components["schemas"]["DesktopSessionSettings"];
17902
- /** @description Jump (bastion) host. */
18353
+ /** @description Jump (bastion) host; omit to connect directly. */
17903
18354
  jumpNodeHost?: string;
17904
18355
  /** @description Jump (bastion) user. */
17905
18356
  jumpNodeUser?: string;
@@ -17909,13 +18360,13 @@ export interface components {
17909
18360
  slurmLoginNodes?: components["schemas"]["PoolSlurmLoginNode"][] | null;
17910
18361
  /** @description SLURM username (supports __USER__). */
17911
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;
17912
18365
  /**
17913
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
18366
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17914
18367
  * @enum {string}
17915
18368
  */
17916
- subtype: "existing";
17917
- /** @description Cluster directories mounted into the user workspace. */
17918
- workspaceMounts?: components["schemas"]["PoolWorkspaceMount"][] | null;
18369
+ type: "existing";
17919
18370
  };
17920
18371
  ExistingClusterLoginNode: {
17921
18372
  /** @description Login node hostname */
@@ -18065,6 +18516,8 @@ export interface components {
18065
18516
  ephemeral?: boolean;
18066
18517
  /** @description Name for the forked resource. */
18067
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;
18068
18521
  /** @description Version of the marketplace item to fork. */
18069
18522
  version: string;
18070
18523
  };
@@ -18105,10 +18558,12 @@ export interface components {
18105
18558
  * @example 2
18106
18559
  */
18107
18560
  activeNodes: number;
18108
- /** @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. */
18109
18562
  agentVersion?: string;
18110
18563
  /** @description The allocation threshold for the cluster's group (only for cloud clusters). */
18111
18564
  allocationThreshold?: components["schemas"]["AllocationThreshold"];
18565
+ /** @description Whether the requesting user may change this cluster's configuration. */
18566
+ canEdit?: boolean;
18112
18567
  /**
18113
18568
  * @description The SSH connection string for the resource.
18114
18569
  * @example user@192.168.1.1
@@ -18141,7 +18596,7 @@ export interface components {
18141
18596
  */
18142
18597
  group?: string;
18143
18598
  /** @description The unique identifier of the resource. */
18144
- id?: string;
18599
+ id: string;
18145
18600
  /** @description The image URL of the resource. */
18146
18601
  imageUrl?: string;
18147
18602
  /**
@@ -18152,6 +18607,12 @@ export interface components {
18152
18607
  ipAddress: string;
18153
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). */
18154
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;
18155
18616
  /**
18156
18617
  * Format: int64
18157
18618
  * @description The maximum number of nodes the cluster can scale to.
@@ -18163,6 +18624,8 @@ export interface components {
18163
18624
  * @example mycluster
18164
18625
  */
18165
18626
  name: string;
18627
+ /** @description Cloud-cluster only: the id of the network the cluster is provisioned into. */
18628
+ network?: string;
18166
18629
  /**
18167
18630
  * @description Existing-cluster only: the operating system auto-detected on the controller node.
18168
18631
  * @example linux
@@ -18211,6 +18674,8 @@ export interface components {
18211
18674
  * @enum {string|null}
18212
18675
  */
18213
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;
18214
18679
  /**
18215
18680
  * @description The owner of the resource.
18216
18681
  * @example Jake.Thayne
@@ -18581,6 +19046,12 @@ export interface components {
18581
19046
  zone?: string;
18582
19047
  };
18583
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;
18584
19055
  architecture?: string;
18585
19056
  controllerImage?: string;
18586
19057
  controllerInstanceType?: string;
@@ -18589,20 +19060,23 @@ export interface components {
18589
19060
  debugMode?: boolean;
18590
19061
  /** @description Desktop session settings. */
18591
19062
  desktopSession?: components["schemas"]["DesktopSessionSettings"];
18592
- disks?: components["schemas"]["ClusterNodeDisk"][] | null;
19063
+ disks?: components["schemas"]["ClusterControllerDisk"][] | null;
18593
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;
18594
19067
  partitions?: components["schemas"]["ClusterGoogleSlurmPartition"][] | null;
18595
19068
  region?: string;
19069
+ /** @description Root disk size in GiB. */
18596
19070
  rootSize?: number;
18597
19071
  slurmResumeTimeout?: number;
18598
19072
  slurmReturnToService?: number;
18599
19073
  slurmSuspendTime?: number;
18600
19074
  slurmSuspendTimeout?: number;
18601
19075
  /**
18602
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
19076
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
18603
19077
  * @enum {string}
18604
19078
  */
18605
- subtype: "google-slurm";
19079
+ type: "google-slurm";
18606
19080
  userBootstrap?: string;
18607
19081
  userBootstrapCompute?: boolean;
18608
19082
  userBootstrapController?: boolean;
@@ -18610,32 +19084,23 @@ export interface components {
18610
19084
  };
18611
19085
  GoogleSlurmPartition: {
18612
19086
  architecture?: string;
18613
- customSuspendTime?: boolean;
18614
- default?: unknown;
19087
+ default?: boolean;
18615
19088
  disks?: components["schemas"]["ClusterDisk"][] | null;
18616
19089
  elasticImage?: string;
18617
- /** Format: int64 */
18618
19090
  flexStartWaitTime?: number;
18619
- /** Format: int64 */
18620
19091
  gpuCount?: number;
18621
19092
  gpuType?: string;
18622
- gvnic?: boolean;
18623
19093
  instanceType?: string;
18624
19094
  maxDistance?: string;
18625
- /** Format: int64 */
18626
19095
  maxDuration?: number;
18627
- /** Format: int64 */
18628
19096
  maxNodes?: number;
18629
- migrateOnMaintenance?: boolean;
18630
19097
  multiZone?: boolean;
18631
19098
  name?: string;
18632
- os?: string;
18633
19099
  placementGroup?: string;
18634
19100
  preemptible?: boolean;
18635
19101
  provisioningMode?: string;
18636
- reservation?: boolean;
19102
+ rdmaNetwork?: string;
18637
19103
  reservationId?: string;
18638
- /** Format: int64 */
18639
19104
  suspendTime?: number;
18640
19105
  tier1?: boolean;
18641
19106
  usePlacementGroup?: boolean;
@@ -18648,20 +19113,17 @@ export interface components {
18648
19113
  controllerInstanceType?: string;
18649
19114
  controllerTier1?: boolean;
18650
19115
  disks?: components["schemas"]["ClusterDisk"][] | null;
18651
- googleLabel?: {
18652
- [key: string]: unknown;
18653
- };
18654
19116
  healthCheck?: string;
18655
19117
  partitions?: components["schemas"]["GoogleSlurmPartition"][] | null;
18656
19118
  region?: string;
18657
- /** Format: int64 */
19119
+ /** @description Root disk size in GiB. */
18658
19120
  rootSize?: number;
18659
19121
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
18660
19122
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
18661
- slurmResumeTimeout?: unknown;
18662
- slurmReturnToService?: unknown;
18663
- slurmSuspendTime?: unknown;
18664
- slurmSuspendTimeout?: unknown;
19123
+ slurmResumeTimeout?: number;
19124
+ slurmReturnToService?: number;
19125
+ slurmSuspendTime?: number;
19126
+ slurmSuspendTimeout?: number;
18665
19127
  /**
18666
19128
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
18667
19129
  * @enum {string}
@@ -19807,7 +20269,10 @@ export interface components {
19807
20269
  imageUrl: string;
19808
20270
  /** @description Platform name of the Lustre */
19809
20271
  name: string;
19810
- /** @description User who created the Lustre */
20272
+ /**
20273
+ * @deprecated
20274
+ * @description Deprecated: Use 'user' instead. Username of the Lustre owner.
20275
+ */
19811
20276
  namespace: string;
19812
20277
  /** @description VPC Network associated with the Lustre */
19813
20278
  network?: string;
@@ -19837,6 +20302,8 @@ export interface components {
19837
20302
  type: string;
19838
20303
  /** @description Parallel Works URI for the Lustre (pw://user/name) */
19839
20304
  uri: string;
20305
+ /** @description Username of the Lustre owner */
20306
+ user: string;
19840
20307
  /** @description Zone of the Lustre */
19841
20308
  zone?: string;
19842
20309
  };
@@ -20589,12 +21056,6 @@ export interface components {
20589
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. */
20590
21057
  workspacePath: string;
20591
21058
  };
20592
- MountWorkspaceDirectoryBody: {
20593
- /** @description The cluster directory to mount to the workspace. */
20594
- clusterPath: string;
20595
- /** @description The folder in the workspace to mount to the cluster. */
20596
- workspacePath: string;
20597
- };
20598
21059
  Name: {
20599
21060
  familyName?: string;
20600
21061
  formatted?: string;
@@ -20645,77 +21106,6 @@ export interface components {
20645
21106
  */
20646
21107
  totalNamespaces: number;
20647
21108
  };
20648
- NetAppOntap: {
20649
- /** @description Resources the storage is attached to. */
20650
- attachedTo?: components["schemas"]["StorageAttachment"][];
20651
- /** @description Cloud service provider of the storage. */
20652
- csp: string;
20653
- /** @description Indicates if the storage is currently being provisioned. */
20654
- currentlyProvisioning: boolean;
20655
- /** @description Description of the storage. */
20656
- description?: string;
20657
- /** @description Display name of the storage. */
20658
- displayName?: string;
20659
- /** @description Indicates if the storage is a favorite for the requesting user. */
20660
- favorite: boolean;
20661
- /** @description Indicates if the storage is in a GovCloud environment. */
20662
- govCloud?: boolean;
20663
- /** @description Group the storage bills to. */
20664
- group?: string;
20665
- /** @description ID of the storage. */
20666
- id: string;
20667
- /** @description URL of the icon used for the storage. This will be empty if the default image is used. */
20668
- imageUrl?: string;
20669
- /** @description Name of the storage. */
20670
- name: string;
20671
- /** @description Network the storage uses to provision. */
20672
- network?: string;
20673
- /** @description Error message if the storage provisioning failed. */
20674
- provisionError?: string;
20675
- /** @description Indicates if the storage has been provisioned. */
20676
- provisioned: boolean;
20677
- /** @description Runtime alert information for the storage. */
20678
- runtimeAlert?: components["schemas"]["RunAlert"];
20679
- /** @description IP address of the NetApp ONTAP management host */
20680
- serverAddress?: string;
20681
- /** @description Session cost limit information for the storage. */
20682
- sessionCostLimit?: components["schemas"]["SessionAlert"];
20683
- /**
20684
- * Format: int64
20685
- * @description Session number of the storage.
20686
- */
20687
- sessionNumber?: number;
20688
- /** @description Indicates if the storage is sessionless. */
20689
- sessionless: boolean;
20690
- /** @description Sharing permissions of the storage. */
20691
- shared: components["schemas"]["Shared"][] | null;
20692
- /** @description Current status of the storage. */
20693
- status?: string;
20694
- /** @description List of Storage Virtual Machines (SVMs) and their aggregates */
20695
- svms?: components["schemas"]["OntapSvm"][] | null;
20696
- /** @description Tags associated with the storage. */
20697
- tags?: string[];
20698
- /** @description Type of storage. */
20699
- type: string;
20700
- /** @description User associated with the storage. */
20701
- user: string;
20702
- };
20703
- NetAppOntapResponse: {
20704
- /** @description Cloud service provider */
20705
- csp: string;
20706
- /** @description Unique identifier of the NetApp ONTAP */
20707
- id: string;
20708
- /** @description Name of the NetApp ONTAP */
20709
- name: string;
20710
- /** @description User namespace */
20711
- namespace: string;
20712
- /** @description Whether the NetApp ONTAP is provisioned */
20713
- provisioned: boolean;
20714
- /** @description Storage type */
20715
- type: string;
20716
- /** @description List of volumes */
20717
- volumes?: components["schemas"]["VolumeSummary"][];
20718
- };
20719
21109
  Network: {
20720
21110
  /** @description The ID of the cloud account associated with the network. */
20721
21111
  cloudAccount: string;
@@ -20745,12 +21135,101 @@ export interface components {
20745
21135
  provisioned: boolean;
20746
21136
  /** @description The provisioning mode of the network. */
20747
21137
  provisioningMode: string;
21138
+ /** @description RDMA network profile ('irdma'); empty for a standard network. */
21139
+ rdmaProfile?: string;
20748
21140
  /** @description The list of regions available for the network. */
20749
21141
  regions: string[] | null;
20750
21142
  /** @description The tags associated with the network. */
20751
21143
  tags: string[] | null;
20752
21144
  /** @description The ID of the transit gateway associated with the network. */
20753
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;
20754
21233
  };
20755
21234
  NetworkPermissions: {
20756
21235
  /** @description The names of the groups that have access */
@@ -20788,7 +21267,10 @@ export interface components {
20788
21267
  imageUrl: string;
20789
21268
  /** @description Platform name of the NFS */
20790
21269
  name: string;
20791
- /** @description User who created the NFS */
21270
+ /**
21271
+ * @deprecated
21272
+ * @description Deprecated: Use 'user' instead. Username of the NFS owner.
21273
+ */
20792
21274
  namespace: string;
20793
21275
  /** @description Region of the NFS */
20794
21276
  region?: string;
@@ -20809,6 +21291,37 @@ export interface components {
20809
21291
  type: string;
20810
21292
  /** @description Parallel Works URI for the NFS (pw://user/name) */
20811
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;
20812
21325
  };
20813
21326
  NodeAccessManagementBody: {
20814
21327
  /** @description Enable pam_mkhomedir for automatic home directory creation */
@@ -21078,31 +21591,6 @@ export interface components {
21078
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 */
21079
21592
  usernameClaim?: string;
21080
21593
  };
21081
- OntapAggregate: {
21082
- /**
21083
- * Format: int64
21084
- * @description Available size in bytes
21085
- */
21086
- availableSize: number;
21087
- /** @description Name of the aggregate */
21088
- name: string;
21089
- /** @description SnapLock type of the aggregate */
21090
- snapLockType: string;
21091
- /** @description State of the aggregate */
21092
- state: string;
21093
- /** @description Type of the aggregate */
21094
- type: string;
21095
- /** @description UUID of the aggregate */
21096
- uuid: string;
21097
- };
21098
- OntapSvm: {
21099
- /** @description List of aggregates available in the SVM */
21100
- aggregates: components["schemas"]["OntapAggregate"][] | null;
21101
- /** @description Name of the SVM */
21102
- name: string;
21103
- /** @description UUID of the SVM */
21104
- uuid: string;
21105
- };
21106
21594
  OpenIDConfiguration: {
21107
21595
  /** @description JSON array containing a list of claim names */
21108
21596
  claims_supported: string[] | null;
@@ -21149,7 +21637,12 @@ export interface components {
21149
21637
  zones: string[] | null;
21150
21638
  };
21151
21639
  OpenstackSlurmDefinition: {
21152
- 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;
21153
21646
  controllerImage?: string;
21154
21647
  controllerInstanceType?: string;
21155
21648
  /** @description Admin-set provisioning debug flag. */
@@ -21166,10 +21659,10 @@ export interface components {
21166
21659
  slurmSuspendTime?: number;
21167
21660
  slurmSuspendTimeout?: number;
21168
21661
  /**
21169
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
21662
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
21170
21663
  * @enum {string}
21171
21664
  */
21172
- subtype: "openstack-slurm";
21665
+ type: "openstack-slurm";
21173
21666
  userBootstrap?: string;
21174
21667
  userBootstrapCompute?: boolean;
21175
21668
  userBootstrapController?: boolean;
@@ -21177,20 +21670,14 @@ export interface components {
21177
21670
  OpenstackSlurmPartition: {
21178
21671
  architecture?: string;
21179
21672
  associateFloatingIp?: boolean;
21180
- controllerInstanceType?: string;
21181
- default?: unknown;
21673
+ default?: boolean;
21182
21674
  disks?: components["schemas"]["ClusterDisk"][] | null;
21183
21675
  elasticImage?: string;
21184
21676
  instanceType?: string;
21185
- /** Format: int64 */
21186
21677
  maxNodes?: number;
21187
21678
  name?: string;
21188
21679
  };
21189
21680
  OpenstackSlurmVersionSettings: {
21190
- architecture?: string;
21191
- attachedStorages?: {
21192
- [key: string]: unknown;
21193
- }[] | null;
21194
21681
  controllerImage?: string;
21195
21682
  controllerInstanceType?: string;
21196
21683
  floatingIpNetwork?: string;
@@ -21200,10 +21687,10 @@ export interface components {
21200
21687
  region?: string;
21201
21688
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
21202
21689
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
21203
- slurmResumeTimeout?: unknown;
21204
- slurmReturnToService?: unknown;
21205
- slurmSuspendTime?: unknown;
21206
- slurmSuspendTimeout?: unknown;
21690
+ slurmResumeTimeout?: number;
21691
+ slurmReturnToService?: number;
21692
+ slurmSuspendTime?: number;
21693
+ slurmSuspendTimeout?: number;
21207
21694
  /**
21208
21695
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
21209
21696
  * @enum {string}
@@ -21387,10 +21874,18 @@ export interface components {
21387
21874
  subtype: "oracle-oraclefs";
21388
21875
  };
21389
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;
21390
21883
  architecture?: string;
21391
21884
  controllerImage?: string;
21392
21885
  controllerInstanceType?: string;
21886
+ /** @description Memory in GiB when the controller instance type is a flexible shape. */
21393
21887
  controllerMemoryGb?: number;
21888
+ /** @description OCPU count when the controller instance type is a flexible shape. */
21394
21889
  controllerOcpus?: number;
21395
21890
  /** @description Admin-set provisioning debug flag. */
21396
21891
  debugMode?: boolean;
@@ -21399,16 +21894,17 @@ export interface components {
21399
21894
  healthCheck?: string;
21400
21895
  partitions?: components["schemas"]["ClusterOracleSlurmPartition"][] | null;
21401
21896
  region?: string;
21897
+ /** @description Root disk size in GiB. */
21402
21898
  rootSize?: number;
21403
21899
  slurmResumeTimeout?: number;
21404
21900
  slurmReturnToService?: number;
21405
21901
  slurmSuspendTime?: number;
21406
21902
  slurmSuspendTimeout?: number;
21407
21903
  /**
21408
- * @description Subtype discriminator. (enum property replaced by openapi-typescript)
21904
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
21409
21905
  * @enum {string}
21410
21906
  */
21411
- subtype: "oracle-slurm";
21907
+ type: "oracle-slurm";
21412
21908
  userBootstrap?: string;
21413
21909
  userBootstrapCompute?: boolean;
21414
21910
  userBootstrapController?: boolean;
@@ -21416,44 +21912,38 @@ export interface components {
21416
21912
  };
21417
21913
  OracleSlurmPartition: {
21418
21914
  architecture?: string;
21419
- default?: unknown;
21915
+ default?: boolean;
21420
21916
  disks?: components["schemas"]["ClusterDisk"][] | null;
21421
21917
  elasticImage?: string;
21422
21918
  instanceType?: string;
21423
- isFlex?: boolean;
21424
- /** Format: int64 */
21425
21919
  maxNodes?: number;
21426
- /** Format: int64 */
21920
+ /** @description Memory in GiB when the instance type is a flexible shape. */
21427
21921
  memoryGb?: number;
21428
21922
  name?: string;
21429
- /** Format: int64 */
21923
+ /** @description OCPU count when the instance type is a flexible shape. */
21430
21924
  ocpus?: number;
21431
- /** Format: int64 */
21432
21925
  suspendTime?: number;
21433
- usePlacementGroup?: boolean;
21434
21926
  zone?: string;
21435
21927
  };
21436
21928
  OracleSlurmVersionSettings: {
21437
21929
  architecture?: string;
21438
21930
  controllerImage?: string;
21439
21931
  controllerInstanceType?: string;
21440
- /** Format: int64 */
21932
+ /** @description Memory in GiB when the controller instance type is a flexible shape. */
21441
21933
  controllerMemoryGb?: number;
21442
- /** Format: int64 */
21934
+ /** @description OCPU count when the controller instance type is a flexible shape. */
21443
21935
  controllerOcpus?: number;
21444
- disks?: components["schemas"]["ClusterDisk"][] | null;
21445
21936
  healthCheck?: string;
21446
- isFlex?: boolean;
21447
21937
  partitions?: components["schemas"]["OracleSlurmPartition"][] | null;
21448
21938
  region?: string;
21449
- /** Format: int64 */
21939
+ /** @description Root disk size in GiB. */
21450
21940
  rootSize?: number;
21451
21941
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
21452
21942
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
21453
- slurmResumeTimeout?: unknown;
21454
- slurmReturnToService?: unknown;
21455
- slurmSuspendTime?: unknown;
21456
- slurmSuspendTimeout?: unknown;
21943
+ slurmResumeTimeout?: number;
21944
+ slurmReturnToService?: number;
21945
+ slurmSuspendTime?: number;
21946
+ slurmSuspendTimeout?: number;
21457
21947
  /**
21458
21948
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
21459
21949
  * @enum {string}
@@ -22041,6 +22531,39 @@ export interface components {
22041
22531
  team?: string;
22042
22532
  teamName?: string;
22043
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
+ };
22044
22567
  PlatformDomain: {
22045
22568
  /**
22046
22569
  * Format: date-time
@@ -22454,10 +22977,6 @@ export interface components {
22454
22977
  PoolSlurmLoginNode: {
22455
22978
  node: string | null;
22456
22979
  };
22457
- PoolWorkspaceMount: {
22458
- clusterPath: string | null;
22459
- workspacePath: string | null;
22460
- };
22461
22980
  PostClusterConnectInputBody: Record<string, never>;
22462
22981
  PostClusterConnectOutputBody: {
22463
22982
  /** @description Status message */
@@ -22745,7 +23264,10 @@ export interface components {
22745
23264
  attributes: components["schemas"]["ProvisionStatusAttribute"][] | null;
22746
23265
  /** @description Child provision status records for expandable steps. */
22747
23266
  children?: components["schemas"]["ProvisionStatusChildResponse"][] | null;
22748
- /** @description The creation timestamp in RFC3339 format. */
23267
+ /**
23268
+ * Format: date-time
23269
+ * @description The creation timestamp.
23270
+ */
22749
23271
  createdAt: string;
22750
23272
  /** @description Error message if the provision step failed. */
22751
23273
  error: string;
@@ -22764,7 +23286,10 @@ export interface components {
22764
23286
  name: string;
22765
23287
  /** @description The current status of the provision step (e.g., pending, provisioning, provisioned, failed, skipped, deleting, deleted, warning). */
22766
23288
  status: string;
22767
- /** @description The last update timestamp in RFC3339 format. */
23289
+ /**
23290
+ * Format: date-time
23291
+ * @description The last update timestamp.
23292
+ */
22768
23293
  updatedAt: string;
22769
23294
  };
22770
23295
  ProvisionStatusStruct: {
@@ -22949,16 +23474,16 @@ export interface components {
22949
23474
  /** @description Publish under the organization display name (org admins only). */
22950
23475
  publishedAsOrg?: boolean;
22951
23476
  region?: string;
22952
- /** Format: int64 */
23477
+ /** @description Root disk size in GiB. */
22953
23478
  rootSize?: number;
22954
23479
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
22955
23480
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
22956
23481
  /** @description URL-friendly identifier. */
22957
23482
  slug: string;
22958
- slurmResumeTimeout?: unknown;
22959
- slurmReturnToService?: unknown;
22960
- slurmSuspendTime?: unknown;
22961
- slurmSuspendTimeout?: unknown;
23483
+ slurmResumeTimeout?: number;
23484
+ slurmReturnToService?: number;
23485
+ slurmSuspendTime?: number;
23486
+ slurmSuspendTimeout?: number;
22962
23487
  /** @description User-defined tags for categorization and search. */
22963
23488
  tags?: string[] | null;
22964
23489
  userBootstrap?: string;
@@ -23150,11 +23675,10 @@ export interface components {
23150
23675
  healthCheck?: string;
23151
23676
  /** @description Icon image URL. */
23152
23677
  imageUrl?: string;
23678
+ /** @description Mount point of the controller's local disk; only applies when the controller instance type has a local disk. */
23153
23679
  localDiskMountPoint?: string;
23680
+ /** @description Export the controller's local disk over NFS; only applies when the controller instance type has a local disk. */
23154
23681
  localDiskNFS?: boolean;
23155
- localdiskLabel?: {
23156
- [key: string]: unknown;
23157
- };
23158
23682
  /** @description Markdown description body. */
23159
23683
  markdownRaw?: string;
23160
23684
  /** @description Display name on the marketplace. */
@@ -23165,16 +23689,16 @@ export interface components {
23165
23689
  /** @description Publish under the organization display name (org admins only). */
23166
23690
  publishedAsOrg?: boolean;
23167
23691
  region?: string;
23168
- /** Format: int64 */
23692
+ /** @description Root disk size in GiB. */
23169
23693
  rootSize?: number;
23170
23694
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
23171
23695
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
23172
23696
  /** @description URL-friendly identifier. */
23173
23697
  slug: string;
23174
- slurmResumeTimeout?: unknown;
23175
- slurmReturnToService?: unknown;
23176
- slurmSuspendTime?: unknown;
23177
- slurmSuspendTimeout?: unknown;
23698
+ slurmResumeTimeout?: number;
23699
+ slurmReturnToService?: number;
23700
+ slurmSuspendTime?: number;
23701
+ slurmSuspendTimeout?: number;
23178
23702
  /** @description User-defined tags for categorization and search. */
23179
23703
  tags?: string[] | null;
23180
23704
  userBootstrap?: string;
@@ -23373,9 +23897,6 @@ export interface components {
23373
23897
  disks?: components["schemas"]["ClusterDisk"][] | null;
23374
23898
  /** @description Mark as featured (platform admins only). */
23375
23899
  featured?: boolean;
23376
- googleLabel?: {
23377
- [key: string]: unknown;
23378
- };
23379
23900
  healthCheck?: string;
23380
23901
  /** @description Icon image URL. */
23381
23902
  imageUrl?: string;
@@ -23389,16 +23910,16 @@ export interface components {
23389
23910
  /** @description Publish under the organization display name (org admins only). */
23390
23911
  publishedAsOrg?: boolean;
23391
23912
  region?: string;
23392
- /** Format: int64 */
23913
+ /** @description Root disk size in GiB. */
23393
23914
  rootSize?: number;
23394
23915
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
23395
23916
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
23396
23917
  /** @description URL-friendly identifier. */
23397
23918
  slug: string;
23398
- slurmResumeTimeout?: unknown;
23399
- slurmReturnToService?: unknown;
23400
- slurmSuspendTime?: unknown;
23401
- slurmSuspendTimeout?: unknown;
23919
+ slurmResumeTimeout?: number;
23920
+ slurmReturnToService?: number;
23921
+ slurmSuspendTime?: number;
23922
+ slurmSuspendTimeout?: number;
23402
23923
  /** @description User-defined tags for categorization and search. */
23403
23924
  tags?: string[] | null;
23404
23925
  userBootstrap?: string;
@@ -23443,10 +23964,6 @@ export interface components {
23443
23964
  yaml: string;
23444
23965
  };
23445
23966
  PublishOpenstackSlurmRequest: {
23446
- architecture?: string;
23447
- attachedStorages?: {
23448
- [key: string]: unknown;
23449
- }[] | null;
23450
23967
  controllerImage?: string;
23451
23968
  controllerInstanceType?: string;
23452
23969
  /** @description Short summary of the item. */
@@ -23472,10 +23989,10 @@ export interface components {
23472
23989
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
23473
23990
  /** @description URL-friendly identifier. */
23474
23991
  slug: string;
23475
- slurmResumeTimeout?: unknown;
23476
- slurmReturnToService?: unknown;
23477
- slurmSuspendTime?: unknown;
23478
- slurmSuspendTimeout?: unknown;
23992
+ slurmResumeTimeout?: number;
23993
+ slurmReturnToService?: number;
23994
+ slurmSuspendTime?: number;
23995
+ slurmSuspendTimeout?: number;
23479
23996
  /** @description User-defined tags for categorization and search. */
23480
23997
  tags?: string[] | null;
23481
23998
  userBootstrap?: string;
@@ -23550,19 +24067,17 @@ export interface components {
23550
24067
  architecture?: string;
23551
24068
  controllerImage?: string;
23552
24069
  controllerInstanceType?: string;
23553
- /** Format: int64 */
24070
+ /** @description Memory in GiB when the controller instance type is a flexible shape. */
23554
24071
  controllerMemoryGb?: number;
23555
- /** Format: int64 */
24072
+ /** @description OCPU count when the controller instance type is a flexible shape. */
23556
24073
  controllerOcpus?: number;
23557
24074
  /** @description Short summary of the item. */
23558
24075
  description?: string;
23559
- disks?: components["schemas"]["ClusterDisk"][] | null;
23560
24076
  /** @description Mark as featured (platform admins only). */
23561
24077
  featured?: boolean;
23562
24078
  healthCheck?: string;
23563
24079
  /** @description Icon image URL. */
23564
24080
  imageUrl?: string;
23565
- isFlex?: boolean;
23566
24081
  /** @description Markdown description body. */
23567
24082
  markdownRaw?: string;
23568
24083
  /** @description Display name on the marketplace. */
@@ -23573,16 +24088,16 @@ export interface components {
23573
24088
  /** @description Publish under the organization display name (org admins only). */
23574
24089
  publishedAsOrg?: boolean;
23575
24090
  region?: string;
23576
- /** Format: int64 */
24091
+ /** @description Root disk size in GiB. */
23577
24092
  rootSize?: number;
23578
24093
  runtimeAlert?: components["schemas"]["ClusterRuntimeAlert"];
23579
24094
  sessionCostLimit?: components["schemas"]["ClusterSessionCostLimit"];
23580
24095
  /** @description URL-friendly identifier. */
23581
24096
  slug: string;
23582
- slurmResumeTimeout?: unknown;
23583
- slurmReturnToService?: unknown;
23584
- slurmSuspendTime?: unknown;
23585
- slurmSuspendTimeout?: unknown;
24097
+ slurmResumeTimeout?: number;
24098
+ slurmReturnToService?: number;
24099
+ slurmSuspendTime?: number;
24100
+ slurmSuspendTimeout?: number;
23586
24101
  /** @description User-defined tags for categorization and search. */
23587
24102
  tags?: string[] | null;
23588
24103
  userBootstrap?: string;
@@ -23618,12 +24133,8 @@ export interface components {
23618
24133
  readme?: string;
23619
24134
  /** @description Repository URL. */
23620
24135
  repo?: string;
23621
- /** @description Skip the git checkout step. */
23622
- skipCheckout?: boolean;
23623
24136
  /** @description URL-friendly identifier. */
23624
24137
  slug: string;
23625
- /** @description Sparse-checkout paths. */
23626
- sparsecheckout?: string[] | null;
23627
24138
  /** @description User-defined tags for categorization and search. */
23628
24139
  tags?: string[] | null;
23629
24140
  /** @description Path to the thumbnail image within the repo. */
@@ -23689,10 +24200,58 @@ export interface components {
23689
24200
  /** @description Model configurations */
23690
24201
  modelConfigs: components["schemas"]["AIModelConfig"][] | null;
23691
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
+ };
23692
24232
  PutOrgConnectionPermissionsInputBody: {
23693
24233
  groups: string[] | null;
23694
24234
  shareWithOrganization: boolean;
23695
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
+ };
23696
24255
  PutSessionBody: {
23697
24256
  /** @description Human-readable session description. */
23698
24257
  description?: string;
@@ -23875,6 +24434,10 @@ export interface components {
23875
24434
  /** @description Namespace for ServiceAccount subjects */
23876
24435
  namespace?: string;
23877
24436
  };
24437
+ RdmaZonesBody: {
24438
+ /** @description Zones whose project offers an IRDMA (Falcon) network profile. */
24439
+ zones: string[] | null;
24440
+ };
23878
24441
  RecommendedResource: {
23879
24442
  /** @description Cloud provider (aws, google, azure) */
23880
24443
  csp?: string;
@@ -23960,8 +24523,6 @@ export interface components {
23960
24523
  readme?: string;
23961
24524
  /** @description Git repository URL. */
23962
24525
  repo?: string;
23963
- /** @description Sparse checkout paths. */
23964
- sparseCheckout?: string[] | null;
23965
24526
  /** @description Path to the thumbnail image in the repository. */
23966
24527
  thumbnail?: string;
23967
24528
  /** @description Path to the YAML file in the repository. */
@@ -23974,10 +24535,6 @@ export interface components {
23974
24535
  readme?: string;
23975
24536
  /** @description Repository URL. */
23976
24537
  repo?: string;
23977
- /** @description Skip the git checkout step. */
23978
- skipCheckout?: boolean;
23979
- /** @description Sparse-checkout paths. */
23980
- sparsecheckout?: string[] | null;
23981
24538
  /**
23982
24539
  * @description Subtype discriminator. (enum property replaced by openapi-typescript)
23983
24540
  * @enum {string}
@@ -24339,6 +24896,16 @@ export interface components {
24339
24896
  */
24340
24897
  totalCredentials: number;
24341
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
+ };
24342
24909
  RuntimeAlertInput: {
24343
24910
  /** @description Whether to enable runtime alerts. */
24344
24911
  enabled: boolean;
@@ -24772,6 +25339,20 @@ export interface components {
24772
25339
  /** @description Indicates if the session cost alert uses realtime estimated cost data. */
24773
25340
  useRealtime: boolean;
24774
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
+ };
24775
25356
  SessionCostLimitInput: {
24776
25357
  /** @description Auto-terminate when cost limit is reached. */
24777
25358
  autoTerminate?: boolean;
@@ -24977,35 +25558,6 @@ export interface components {
24977
25558
  */
24978
25559
  readonly request: components["schemas"]["ResourceQuota"];
24979
25560
  };
24980
- SingleVolume: {
24981
- /** @description List of aggregate names */
24982
- aggregates: string[] | null;
24983
- /** @description Volume name */
24984
- name: string;
24985
- /** @description Export path for the volume */
24986
- path: string;
24987
- /**
24988
- * Format: int64
24989
- * @description Available size in bytes
24990
- */
24991
- sizeAvailable: number;
24992
- /**
24993
- * Format: int64
24994
- * @description Total size in bytes
24995
- */
24996
- sizeTotal: number;
24997
- /**
24998
- * Format: int64
24999
- * @description Used size in bytes
25000
- */
25001
- sizeUsed: number;
25002
- /** @description Volume state (e.g., online, offline) */
25003
- state: string;
25004
- /** @description Storage VM information */
25005
- svm: components["schemas"]["Svm"];
25006
- /** @description Volume UUID */
25007
- uuid: string;
25008
- };
25009
25561
  SlackConfigResponse: {
25010
25562
  /** @description Whether a Slack incoming webhook is configured. */
25011
25563
  webhookConfigured: boolean;
@@ -25261,12 +25813,6 @@ export interface components {
25261
25813
  cspId: string;
25262
25814
  name: string;
25263
25815
  };
25264
- Svm: {
25265
- /** @description Storage VM name */
25266
- name: string;
25267
- /** @description Storage VM UUID */
25268
- uuid: string;
25269
- };
25270
25816
  SystemInfo: {
25271
25817
  /**
25272
25818
  * Format: int64
@@ -25526,10 +26072,6 @@ export interface components {
25526
26072
  /** @description Parent unit ID */
25527
26073
  unitId: string;
25528
26074
  };
25529
- UnmountWorkspaceDirectoryBody: {
25530
- /** @description The folder in the workspace to unmount. */
25531
- workspacePath: string;
25532
- };
25533
26075
  UnreachableSession: {
25534
26076
  name: string;
25535
26077
  owner: string;
@@ -25663,6 +26205,20 @@ export interface components {
25663
26205
  [key: string]: boolean;
25664
26206
  };
25665
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
+ };
25666
26222
  UpdateClusterInputBody: {
25667
26223
  /** @description Base64-encoded CA certificate. Leave empty when the cluster uses a publicly trusted certificate. */
25668
26224
  caCert?: string;
@@ -25953,7 +26509,7 @@ export interface components {
25953
26509
  value?: string;
25954
26510
  };
25955
26511
  UpdateWhileRunningBody: {
25956
- /** @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. */
25957
26513
  variables: components["schemas"]["ClusterUpdateVariables"];
25958
26514
  };
25959
26515
  UpdateWhileRunningResult: {
@@ -25971,8 +26527,6 @@ export interface components {
25971
26527
  imageUrl?: string;
25972
26528
  /** @description Remote workflow configuration. */
25973
26529
  remote?: components["schemas"]["RemoteWorkflowSettings"];
25974
- /** @description Skip automatic repository checkout during job preparation. */
25975
- skipCheckout?: boolean;
25976
26530
  /** @description Tags associated with the workflow. */
25977
26531
  tags?: string[];
25978
26532
  /** @description Workflow YAML definition as a YAML string. */
@@ -25985,7 +26539,9 @@ export interface components {
25985
26539
  * @description The status of the workflow run
25986
26540
  * @enum {string}
25987
26541
  */
25988
- 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;
25989
26545
  };
25990
26546
  UpdateWorkflowSavedInputsInputBody: {
25991
26547
  /** @description Saved input values. */
@@ -26387,12 +26943,6 @@ export interface components {
26387
26943
  /** @description Success message */
26388
26944
  message: string;
26389
26945
  };
26390
- VolumeSummary: {
26391
- /** @description Volume name */
26392
- name: string;
26393
- /** @description Volume UUID */
26394
- uuid: string;
26395
- };
26396
26946
  WebAuthnAuthOptions: {
26397
26947
  publicKey: components["schemas"]["WebAuthnAuthPublicKeyOptions"];
26398
26948
  };
@@ -26636,8 +27186,6 @@ export interface components {
26636
27186
  name: string;
26637
27187
  /** @description Settings for remote workflows. */
26638
27188
  remote?: components["schemas"]["RemoteWorkflowSettings"];
26639
- /** @description Whether to skip automatic repository checkout during job preparation. */
26640
- skipCheckout?: boolean;
26641
27189
  /** @description Workflow name, used for URLs. */
26642
27190
  slug?: string;
26643
27191
  /** @description Subtype of the workflow (github for remote). */
@@ -30039,6 +30587,35 @@ export interface operations {
30039
30587
  };
30040
30588
  };
30041
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
+ };
30042
30619
  "get-clusters": {
30043
30620
  parameters: {
30044
30621
  query?: never;
@@ -30068,6 +30645,39 @@ export interface operations {
30068
30645
  };
30069
30646
  };
30070
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
+ };
30071
30681
  "get-default-desktop-wallpaper": {
30072
30682
  parameters: {
30073
30683
  query?: never;
@@ -30226,6 +30836,8 @@ export interface operations {
30226
30836
  query?: {
30227
30837
  /** @description Only return groups that have access to this network. */
30228
30838
  network?: string;
30839
+ /** @description Only return groups that have access to this cloud account (by name). */
30840
+ cloudAccount?: string;
30229
30841
  };
30230
30842
  header?: never;
30231
30843
  path?: never;
@@ -33001,6 +33613,42 @@ export interface operations {
33001
33613
  };
33002
33614
  };
33003
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
+ };
33004
33652
  "get-networks": {
33005
33653
  parameters: {
33006
33654
  query?: never;
@@ -36316,6 +36964,43 @@ export interface operations {
36316
36964
  };
36317
36965
  };
36318
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
+ };
36319
37004
  "get-aws-cloud-images": {
36320
37005
  parameters: {
36321
37006
  query?: {
@@ -43140,7 +43825,264 @@ export interface operations {
43140
43825
  [name: string]: unknown;
43141
43826
  };
43142
43827
  content: {
43143
- "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"];
43144
44086
  };
43145
44087
  };
43146
44088
  /** @description Error */
@@ -43154,7 +44096,7 @@ export interface operations {
43154
44096
  };
43155
44097
  };
43156
44098
  };
43157
- "get-storage-aws-efs": {
44099
+ "get-azure-bucket": {
43158
44100
  parameters: {
43159
44101
  query?: never;
43160
44102
  header?: never;
@@ -43176,7 +44118,7 @@ export interface operations {
43176
44118
  [name: string]: unknown;
43177
44119
  };
43178
44120
  content: {
43179
- "application/json": components["schemas"]["AwsEfs"];
44121
+ "application/json": components["schemas"]["AzureBlobStorage"];
43180
44122
  };
43181
44123
  };
43182
44124
  /** @description Error */
@@ -43190,7 +44132,7 @@ export interface operations {
43190
44132
  };
43191
44133
  };
43192
44134
  };
43193
- "get-storage-aws-lustre": {
44135
+ "provision-azure-bucket": {
43194
44136
  parameters: {
43195
44137
  query?: never;
43196
44138
  header?: never;
@@ -43204,7 +44146,11 @@ export interface operations {
43204
44146
  };
43205
44147
  cookie?: never;
43206
44148
  };
43207
- requestBody?: never;
44149
+ requestBody: {
44150
+ content: {
44151
+ "application/json": components["schemas"]["BucketResource"];
44152
+ };
44153
+ };
43208
44154
  responses: {
43209
44155
  /** @description OK */
43210
44156
  200: {
@@ -43212,7 +44158,7 @@ export interface operations {
43212
44158
  [name: string]: unknown;
43213
44159
  };
43214
44160
  content: {
43215
- "application/json": components["schemas"]["AwsLustre"];
44161
+ "application/json": components["schemas"]["BucketOutput"];
43216
44162
  };
43217
44163
  };
43218
44164
  /** @description Error */
@@ -43226,7 +44172,7 @@ export interface operations {
43226
44172
  };
43227
44173
  };
43228
44174
  };
43229
- "get-storage-aws-managedlustre": {
44175
+ "add-cors-rules-azure-bucket": {
43230
44176
  parameters: {
43231
44177
  query?: never;
43232
44178
  header?: never;
@@ -43242,14 +44188,12 @@ export interface operations {
43242
44188
  };
43243
44189
  requestBody?: never;
43244
44190
  responses: {
43245
- /** @description OK */
43246
- 200: {
44191
+ /** @description No Content */
44192
+ 204: {
43247
44193
  headers: {
43248
44194
  [name: string]: unknown;
43249
44195
  };
43250
- content: {
43251
- "application/json": components["schemas"]["AwsLustre"];
43252
- };
44196
+ content?: never;
43253
44197
  };
43254
44198
  /** @description Error */
43255
44199
  default: {
@@ -43262,9 +44206,16 @@ export interface operations {
43262
44206
  };
43263
44207
  };
43264
44208
  };
43265
- "get-azure-files": {
44209
+ "get-presigned-url-azure-bucket-object": {
43266
44210
  parameters: {
43267
- 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
+ };
43268
44219
  header?: never;
43269
44220
  path: {
43270
44221
  /** @description The name of the organization. */
@@ -43284,7 +44235,7 @@ export interface operations {
43284
44235
  [name: string]: unknown;
43285
44236
  };
43286
44237
  content: {
43287
- "application/json": components["schemas"]["AzureFiles"];
44238
+ "application/json": string;
43288
44239
  };
43289
44240
  };
43290
44241
  /** @description Error */
@@ -43298,7 +44249,7 @@ export interface operations {
43298
44249
  };
43299
44250
  };
43300
44251
  };
43301
- "add-cors-rules-azure-azfiles": {
44252
+ "get-sas-token-azure-bucket": {
43302
44253
  parameters: {
43303
44254
  query?: never;
43304
44255
  header?: never;
@@ -43314,12 +44265,14 @@ export interface operations {
43314
44265
  };
43315
44266
  requestBody?: never;
43316
44267
  responses: {
43317
- /** @description Accepted */
43318
- 202: {
44268
+ /** @description OK */
44269
+ 200: {
43319
44270
  headers: {
43320
44271
  [name: string]: unknown;
43321
44272
  };
43322
- content?: never;
44273
+ content: {
44274
+ "application/json": components["schemas"]["AzureSASToken"];
44275
+ };
43323
44276
  };
43324
44277
  /** @description Error */
43325
44278
  default: {
@@ -43332,16 +44285,9 @@ export interface operations {
43332
44285
  };
43333
44286
  };
43334
44287
  };
43335
- "get-presigned-url-azure-azfiles-object": {
44288
+ "get-token-azure-bucket": {
43336
44289
  parameters: {
43337
- query: {
43338
- /** @description The path of the file inside the share. */
43339
- objectName: string;
43340
- /** @description The expiration time in seconds for the pre-signed URL. Default and maximum is 12 hours. */
43341
- expiresIn?: number;
43342
- /** @description The permissions for the pre-signed URL. Default is read (r). Combine: r,w,d,c. */
43343
- permissions?: string;
43344
- };
44290
+ query?: never;
43345
44291
  header?: never;
43346
44292
  path: {
43347
44293
  /** @description The name of the organization. */
@@ -43358,10 +44304,11 @@ export interface operations {
43358
44304
  /** @description OK */
43359
44305
  200: {
43360
44306
  headers: {
44307
+ "Cache-Control"?: string;
43361
44308
  [name: string]: unknown;
43362
44309
  };
43363
44310
  content: {
43364
- "application/json": string;
44311
+ "application/json": components["schemas"]["AzureBucketToken"];
43365
44312
  };
43366
44313
  };
43367
44314
  /** @description Error */
@@ -43375,7 +44322,7 @@ export interface operations {
43375
44322
  };
43376
44323
  };
43377
44324
  };
43378
- "get-sas-token-azure-azfiles": {
44325
+ "get-azure-disk": {
43379
44326
  parameters: {
43380
44327
  query?: never;
43381
44328
  header?: never;
@@ -43397,7 +44344,7 @@ export interface operations {
43397
44344
  [name: string]: unknown;
43398
44345
  };
43399
44346
  content: {
43400
- "application/json": components["schemas"]["AzureFilesSAS"];
44347
+ "application/json": components["schemas"]["AzureDisk"];
43401
44348
  };
43402
44349
  };
43403
44350
  /** @description Error */
@@ -43411,7 +44358,7 @@ export interface operations {
43411
44358
  };
43412
44359
  };
43413
44360
  };
43414
- "get-azure-bucket": {
44361
+ "get-azure-managedlustre": {
43415
44362
  parameters: {
43416
44363
  query?: never;
43417
44364
  header?: never;
@@ -43433,7 +44380,7 @@ export interface operations {
43433
44380
  [name: string]: unknown;
43434
44381
  };
43435
44382
  content: {
43436
- "application/json": components["schemas"]["AzureBlobStorage"];
44383
+ "application/json": components["schemas"]["AzureManagedLustre"];
43437
44384
  };
43438
44385
  };
43439
44386
  /** @description Error */
@@ -43447,7 +44394,7 @@ export interface operations {
43447
44394
  };
43448
44395
  };
43449
44396
  };
43450
- "provision-azure-bucket": {
44397
+ "get-azure-netappfiles": {
43451
44398
  parameters: {
43452
44399
  query?: never;
43453
44400
  header?: never;
@@ -43461,11 +44408,43 @@ export interface operations {
43461
44408
  };
43462
44409
  cookie?: never;
43463
44410
  };
43464
- requestBody: {
43465
- content: {
43466
- "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
+ };
43467
44430
  };
43468
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;
43469
44448
  responses: {
43470
44449
  /** @description OK */
43471
44450
  200: {
@@ -43473,7 +44452,7 @@ export interface operations {
43473
44452
  [name: string]: unknown;
43474
44453
  };
43475
44454
  content: {
43476
- "application/json": components["schemas"]["BucketOutput"];
44455
+ "application/json": components["schemas"]["GeneralCluster"];
43477
44456
  };
43478
44457
  };
43479
44458
  /** @description Error */
@@ -43487,7 +44466,7 @@ export interface operations {
43487
44466
  };
43488
44467
  };
43489
44468
  };
43490
- "add-cors-rules-azure-bucket": {
44469
+ "delete-cluster": {
43491
44470
  parameters: {
43492
44471
  query?: never;
43493
44472
  header?: never;
@@ -43496,8 +44475,8 @@ export interface operations {
43496
44475
  organization: string;
43497
44476
  /** @description Username of the target user. */
43498
44477
  user: string;
43499
- /** @description The name of the storage resource. */
43500
- name: string;
44478
+ /** @description The name of the cluster to delete */
44479
+ clusterName: string;
43501
44480
  };
43502
44481
  cookie?: never;
43503
44482
  };
@@ -43521,15 +44500,51 @@ export interface operations {
43521
44500
  };
43522
44501
  };
43523
44502
  };
43524
- "get-presigned-url-azure-bucket-object": {
44503
+ "update-cluster": {
43525
44504
  parameters: {
43526
- query: {
43527
- /** @description The name of the Azure object to get pre-signed URL. */
43528
- objectName: string;
43529
- /** @description The expiration time in seconds for the pre-signed URL. Default and maximum is 12 hours. */
43530
- expiresIn?: number;
43531
- /** @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. */
43532
- 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;
43533
44548
  };
43534
44549
  header?: never;
43535
44550
  path: {
@@ -43537,20 +44552,19 @@ export interface operations {
43537
44552
  organization: string;
43538
44553
  /** @description Username of the target user. */
43539
44554
  user: string;
43540
- /** @description The name of the storage resource. */
43541
- name: string;
44555
+ clusterName: string;
43542
44556
  };
43543
44557
  cookie?: never;
43544
44558
  };
43545
44559
  requestBody?: never;
43546
44560
  responses: {
43547
- /** @description OK */
43548
- 200: {
44561
+ /** @description Accepted */
44562
+ 202: {
43549
44563
  headers: {
43550
44564
  [name: string]: unknown;
43551
44565
  };
43552
44566
  content: {
43553
- "application/json": string;
44567
+ "application/json": components["schemas"]["UpgradeAgentResponseBody"];
43554
44568
  };
43555
44569
  };
43556
44570
  /** @description Error */
@@ -43564,17 +44578,17 @@ export interface operations {
43564
44578
  };
43565
44579
  };
43566
44580
  };
43567
- "get-sas-token-azure-bucket": {
44581
+ "get-cluster-alerts": {
43568
44582
  parameters: {
43569
44583
  query?: never;
43570
44584
  header?: never;
43571
44585
  path: {
43572
44586
  /** @description The name of the organization. */
43573
44587
  organization: string;
43574
- /** @description Username of the target user. */
44588
+ /** @description The username of the user that owns the cluster */
43575
44589
  user: string;
43576
- /** @description The name of the storage resource. */
43577
- name: string;
44590
+ /** @description The cluster name */
44591
+ clusterName: string;
43578
44592
  };
43579
44593
  cookie?: never;
43580
44594
  };
@@ -43586,7 +44600,7 @@ export interface operations {
43586
44600
  [name: string]: unknown;
43587
44601
  };
43588
44602
  content: {
43589
- "application/json": components["schemas"]["AzureSASToken"];
44603
+ "application/json": components["schemas"]["ClusterAlerts"];
43590
44604
  };
43591
44605
  };
43592
44606
  /** @description Error */
@@ -43600,30 +44614,33 @@ export interface operations {
43600
44614
  };
43601
44615
  };
43602
44616
  };
43603
- "get-token-azure-bucket": {
44617
+ "update-cluster-alerts": {
43604
44618
  parameters: {
43605
44619
  query?: never;
43606
44620
  header?: never;
43607
44621
  path: {
43608
44622
  /** @description The name of the organization. */
43609
44623
  organization: string;
43610
- /** @description Username of the target user. */
44624
+ /** @description The username of the user that owns the cluster */
43611
44625
  user: string;
43612
- /** @description The name of the storage resource. */
43613
- name: string;
44626
+ /** @description The cluster name */
44627
+ clusterName: string;
43614
44628
  };
43615
44629
  cookie?: never;
43616
44630
  };
43617
- requestBody?: never;
44631
+ requestBody: {
44632
+ content: {
44633
+ "application/json": components["schemas"]["ClusterAlerts"];
44634
+ };
44635
+ };
43618
44636
  responses: {
43619
44637
  /** @description OK */
43620
44638
  200: {
43621
44639
  headers: {
43622
- "Cache-Control"?: string;
43623
44640
  [name: string]: unknown;
43624
44641
  };
43625
44642
  content: {
43626
- "application/json": components["schemas"]["AzureBucketToken"];
44643
+ "application/json": components["schemas"]["ClusterAlerts"];
43627
44644
  };
43628
44645
  };
43629
44646
  /** @description Error */
@@ -43637,17 +44654,17 @@ export interface operations {
43637
44654
  };
43638
44655
  };
43639
44656
  };
43640
- "get-azure-disk": {
44657
+ "get-cluster-attached-storages": {
43641
44658
  parameters: {
43642
44659
  query?: never;
43643
44660
  header?: never;
43644
44661
  path: {
43645
44662
  /** @description The name of the organization. */
43646
44663
  organization: string;
43647
- /** @description Username of the target user. */
44664
+ /** @description The username of the user that owns the cluster */
43648
44665
  user: string;
43649
- /** @description The name of the storage resource. */
43650
- name: string;
44666
+ /** @description The cluster name */
44667
+ clusterName: string;
43651
44668
  };
43652
44669
  cookie?: never;
43653
44670
  };
@@ -43659,7 +44676,7 @@ export interface operations {
43659
44676
  [name: string]: unknown;
43660
44677
  };
43661
44678
  content: {
43662
- "application/json": components["schemas"]["AzureDisk"];
44679
+ "application/json": (components["schemas"]["PlatformAttachedStorage"] | components["schemas"]["NfsAttachedStorage"])[] | null;
43663
44680
  };
43664
44681
  };
43665
44682
  /** @description Error */
@@ -43673,21 +44690,25 @@ export interface operations {
43673
44690
  };
43674
44691
  };
43675
44692
  };
43676
- "get-azure-managedlustre": {
44693
+ "update-cluster-attached-storages": {
43677
44694
  parameters: {
43678
44695
  query?: never;
43679
44696
  header?: never;
43680
44697
  path: {
43681
44698
  /** @description The name of the organization. */
43682
44699
  organization: string;
43683
- /** @description Username of the target user. */
44700
+ /** @description The username of the user that owns the cluster */
43684
44701
  user: string;
43685
- /** @description The name of the storage resource. */
43686
- name: string;
44702
+ /** @description The cluster name */
44703
+ clusterName: string;
43687
44704
  };
43688
44705
  cookie?: never;
43689
44706
  };
43690
- requestBody?: never;
44707
+ requestBody: {
44708
+ content: {
44709
+ "application/json": (components["schemas"]["PutPlatformAttachedStorage"] | components["schemas"]["PutNfsAttachedStorage"])[] | null;
44710
+ };
44711
+ };
43691
44712
  responses: {
43692
44713
  /** @description OK */
43693
44714
  200: {
@@ -43695,7 +44716,7 @@ export interface operations {
43695
44716
  [name: string]: unknown;
43696
44717
  };
43697
44718
  content: {
43698
- "application/json": components["schemas"]["AzureManagedLustre"];
44719
+ "application/json": (components["schemas"]["PlatformAttachedStorage"] | components["schemas"]["NfsAttachedStorage"])[] | null;
43699
44720
  };
43700
44721
  };
43701
44722
  /** @description Error */
@@ -43709,21 +44730,25 @@ export interface operations {
43709
44730
  };
43710
44731
  };
43711
44732
  };
43712
- "get-azure-netappfiles": {
44733
+ "attach-cluster-storage": {
43713
44734
  parameters: {
43714
44735
  query?: never;
43715
44736
  header?: never;
43716
44737
  path: {
43717
44738
  /** @description The name of the organization. */
43718
44739
  organization: string;
43719
- /** @description Username of the target user. */
44740
+ /** @description The username of the user that owns the cluster */
43720
44741
  user: string;
43721
- /** @description The name of the storage resource. */
43722
- name: string;
44742
+ /** @description The cluster name */
44743
+ clusterName: string;
43723
44744
  };
43724
44745
  cookie?: never;
43725
44746
  };
43726
- requestBody?: never;
44747
+ requestBody: {
44748
+ content: {
44749
+ "application/json": components["schemas"]["PutPlatformAttachedStorage"] | components["schemas"]["PutNfsAttachedStorage"];
44750
+ };
44751
+ };
43727
44752
  responses: {
43728
44753
  /** @description OK */
43729
44754
  200: {
@@ -43731,7 +44756,7 @@ export interface operations {
43731
44756
  [name: string]: unknown;
43732
44757
  };
43733
44758
  content: {
43734
- "application/json": components["schemas"]["AzureNetAppFiles"];
44759
+ "application/json": (components["schemas"]["PlatformAttachedStorage"] | components["schemas"]["NfsAttachedStorage"])[] | null;
43735
44760
  };
43736
44761
  };
43737
44762
  /** @description Error */
@@ -43745,7 +44770,7 @@ export interface operations {
43745
44770
  };
43746
44771
  };
43747
44772
  };
43748
- "get-cluster": {
44773
+ "get-cluster-definition": {
43749
44774
  parameters: {
43750
44775
  query?: never;
43751
44776
  header?: never;
@@ -43767,7 +44792,7 @@ export interface operations {
43767
44792
  [name: string]: unknown;
43768
44793
  };
43769
44794
  content: {
43770
- "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"];
43771
44796
  };
43772
44797
  };
43773
44798
  /** @description Error */
@@ -43781,31 +44806,33 @@ export interface operations {
43781
44806
  };
43782
44807
  };
43783
44808
  };
43784
- "upgrade-cluster-agent": {
44809
+ "update-cluster-definition": {
43785
44810
  parameters: {
43786
- query?: {
43787
- /** @description Bypass the active-session and running-workflow busy check. */
43788
- force?: boolean;
43789
- };
44811
+ query?: never;
43790
44812
  header?: never;
43791
44813
  path: {
43792
44814
  /** @description The name of the organization. */
43793
44815
  organization: string;
43794
- /** @description Username of the target user. */
44816
+ /** @description The username of the user that owns the cluster */
43795
44817
  user: string;
44818
+ /** @description The cluster name */
43796
44819
  clusterName: string;
43797
44820
  };
43798
44821
  cookie?: never;
43799
44822
  };
43800
- 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
+ };
43801
44828
  responses: {
43802
- /** @description Accepted */
43803
- 202: {
44829
+ /** @description OK */
44830
+ 200: {
43804
44831
  headers: {
43805
44832
  [name: string]: unknown;
43806
44833
  };
43807
44834
  content: {
43808
- "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"];
43809
44836
  };
43810
44837
  };
43811
44838
  /** @description Error */
@@ -43819,7 +44846,7 @@ export interface operations {
43819
44846
  };
43820
44847
  };
43821
44848
  };
43822
- "get-cluster-definition": {
44849
+ "get-cluster-deployment": {
43823
44850
  parameters: {
43824
44851
  query?: never;
43825
44852
  header?: never;
@@ -43830,6 +44857,8 @@ export interface operations {
43830
44857
  user: string;
43831
44858
  /** @description The cluster name */
43832
44859
  clusterName: string;
44860
+ /** @description The deployment number or 'latest' */
44861
+ deploymentNumber: string;
43833
44862
  };
43834
44863
  cookie?: never;
43835
44864
  };
@@ -43841,7 +44870,7 @@ export interface operations {
43841
44870
  [name: string]: unknown;
43842
44871
  };
43843
44872
  content: {
43844
- "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"];
43845
44874
  };
43846
44875
  };
43847
44876
  /** @description Error */
@@ -44042,6 +45071,8 @@ export interface operations {
44042
45071
  query?: {
44043
45072
  /** @description Optional filter by node type */
44044
45073
  type?: "controller" | "compute";
45074
+ /** @description Include failed nodes, which are omitted by default */
45075
+ includeFailed?: boolean;
44045
45076
  };
44046
45077
  header?: never;
44047
45078
  path: {
@@ -44157,7 +45188,14 @@ export interface operations {
44157
45188
  parameters: {
44158
45189
  query?: never;
44159
45190
  header?: never;
44160
- 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
+ };
44161
45199
  cookie?: never;
44162
45200
  };
44163
45201
  requestBody: {
@@ -44184,6 +45222,40 @@ export interface operations {
44184
45222
  };
44185
45223
  };
44186
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
+ };
44187
45259
  "get-cluster-scheduler-jobs": {
44188
45260
  parameters: {
44189
45261
  query?: {
@@ -44459,6 +45531,40 @@ export interface operations {
44459
45531
  };
44460
45532
  };
44461
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
+ };
44462
45568
  "update-cluster-while-running": {
44463
45569
  parameters: {
44464
45570
  query?: never;
@@ -44499,7 +45605,7 @@ export interface operations {
44499
45605
  };
44500
45606
  };
44501
45607
  };
44502
- "mount-cluster-dir-to-user-workspace": {
45608
+ "get-cluster-workspace-mounts": {
44503
45609
  parameters: {
44504
45610
  query?: never;
44505
45611
  header?: never;
@@ -44513,18 +45619,16 @@ export interface operations {
44513
45619
  };
44514
45620
  cookie?: never;
44515
45621
  };
44516
- requestBody: {
44517
- content: {
44518
- "application/json": components["schemas"]["MountWorkspaceDirectoryBody"];
44519
- };
44520
- };
45622
+ requestBody?: never;
44521
45623
  responses: {
44522
- /** @description No Content */
44523
- 204: {
45624
+ /** @description OK */
45625
+ 200: {
44524
45626
  headers: {
44525
45627
  [name: string]: unknown;
44526
45628
  };
44527
- content?: never;
45629
+ content: {
45630
+ "application/json": components["schemas"]["ClusterWorkspaceMount"][] | null;
45631
+ };
44528
45632
  };
44529
45633
  /** @description Error */
44530
45634
  default: {
@@ -44537,7 +45641,7 @@ export interface operations {
44537
45641
  };
44538
45642
  };
44539
45643
  };
44540
- "unmount-cluster-dir-from-user-workspace": {
45644
+ "update-cluster-workspace-mounts": {
44541
45645
  parameters: {
44542
45646
  query?: never;
44543
45647
  header?: never;
@@ -44553,16 +45657,18 @@ export interface operations {
44553
45657
  };
44554
45658
  requestBody: {
44555
45659
  content: {
44556
- "application/json": components["schemas"]["UnmountWorkspaceDirectoryBody"];
45660
+ "application/json": components["schemas"]["ClusterWorkspaceMount"][] | null;
44557
45661
  };
44558
45662
  };
44559
45663
  responses: {
44560
- /** @description No Content */
44561
- 204: {
45664
+ /** @description OK */
45665
+ 200: {
44562
45666
  headers: {
44563
45667
  [name: string]: unknown;
44564
45668
  };
44565
- content?: never;
45669
+ content: {
45670
+ "application/json": components["schemas"]["ClusterWorkspaceMount"][] | null;
45671
+ };
44566
45672
  };
44567
45673
  /** @description Error */
44568
45674
  default: {
@@ -45087,195 +46193,7 @@ export interface operations {
45087
46193
  [name: string]: unknown;
45088
46194
  };
45089
46195
  content: {
45090
- "application/json": components["schemas"]["GoogleBucket"];
45091
- };
45092
- };
45093
- /** @description Error */
45094
- default: {
45095
- headers: {
45096
- [name: string]: unknown;
45097
- };
45098
- content: {
45099
- "application/json": components["schemas"]["Error"];
45100
- };
45101
- };
45102
- };
45103
- };
45104
- "provision-google-bucket": {
45105
- parameters: {
45106
- query?: never;
45107
- header?: never;
45108
- path: {
45109
- /** @description The name of the organization. */
45110
- organization: string;
45111
- /** @description Username of the target user. */
45112
- user: string;
45113
- /** @description The name of the storage resource. */
45114
- name: string;
45115
- };
45116
- cookie?: never;
45117
- };
45118
- requestBody: {
45119
- content: {
45120
- "application/json": components["schemas"]["BucketResource"];
45121
- };
45122
- };
45123
- responses: {
45124
- /** @description OK */
45125
- 200: {
45126
- headers: {
45127
- [name: string]: unknown;
45128
- };
45129
- content: {
45130
- "application/json": components["schemas"]["BucketOutput"];
45131
- };
45132
- };
45133
- /** @description Error */
45134
- default: {
45135
- headers: {
45136
- [name: string]: unknown;
45137
- };
45138
- content: {
45139
- "application/json": components["schemas"]["Error"];
45140
- };
45141
- };
45142
- };
45143
- };
45144
- "add-cors-rules-google-bucket": {
45145
- parameters: {
45146
- query?: never;
45147
- header?: never;
45148
- path: {
45149
- /** @description The name of the organization. */
45150
- organization: string;
45151
- /** @description Username of the target user. */
45152
- user: string;
45153
- /** @description The name of the storage resource. */
45154
- name: string;
45155
- };
45156
- cookie?: never;
45157
- };
45158
- requestBody?: never;
45159
- responses: {
45160
- /** @description Accepted */
45161
- 202: {
45162
- headers: {
45163
- [name: string]: unknown;
45164
- };
45165
- content?: never;
45166
- };
45167
- /** @description Error */
45168
- default: {
45169
- headers: {
45170
- [name: string]: unknown;
45171
- };
45172
- content: {
45173
- "application/json": components["schemas"]["Error"];
45174
- };
45175
- };
45176
- };
45177
- };
45178
- "get-presigned-url-google-bucket-object": {
45179
- parameters: {
45180
- query: {
45181
- /** @description The name of the Google object to get pre-signed URL. */
45182
- objectName: string;
45183
- /** @description The expiration time in seconds for the pre-signed URL. Default is 12 hours. */
45184
- expiresIn?: number;
45185
- };
45186
- header?: never;
45187
- path: {
45188
- /** @description The name of the organization. */
45189
- organization: string;
45190
- /** @description Username of the target user. */
45191
- user: string;
45192
- /** @description The name of the storage resource. */
45193
- name: string;
45194
- };
45195
- cookie?: never;
45196
- };
45197
- requestBody?: never;
45198
- responses: {
45199
- /** @description OK */
45200
- 200: {
45201
- headers: {
45202
- [name: string]: unknown;
45203
- };
45204
- content: {
45205
- "application/json": string;
45206
- };
45207
- };
45208
- /** @description Error */
45209
- default: {
45210
- headers: {
45211
- [name: string]: unknown;
45212
- };
45213
- content: {
45214
- "application/json": components["schemas"]["Error"];
45215
- };
45216
- };
45217
- };
45218
- };
45219
- "get-token-google-bucket": {
45220
- parameters: {
45221
- query?: never;
45222
- header?: never;
45223
- path: {
45224
- /** @description The name of the organization. */
45225
- organization: string;
45226
- /** @description Username of the target user. */
45227
- user: string;
45228
- /** @description The name of the storage resource. */
45229
- name: string;
45230
- };
45231
- cookie?: never;
45232
- };
45233
- requestBody?: never;
45234
- responses: {
45235
- /** @description OK */
45236
- 200: {
45237
- headers: {
45238
- "Cache-Control"?: string;
45239
- [name: string]: unknown;
45240
- };
45241
- content: {
45242
- "application/json": components["schemas"]["GoogleBucketToken"];
45243
- };
45244
- };
45245
- /** @description Error */
45246
- default: {
45247
- headers: {
45248
- [name: string]: unknown;
45249
- };
45250
- content: {
45251
- "application/json": components["schemas"]["Error"];
45252
- };
45253
- };
45254
- };
45255
- };
45256
- "get-google-disk": {
45257
- parameters: {
45258
- query?: never;
45259
- header?: never;
45260
- path: {
45261
- /** @description The name of the organization. */
45262
- organization: string;
45263
- /** @description Username of the target user. */
45264
- user: string;
45265
- /** @description The name of the storage resource. */
45266
- name: string;
45267
- };
45268
- cookie?: never;
45269
- };
45270
- requestBody?: never;
45271
- responses: {
45272
- /** @description OK */
45273
- 200: {
45274
- headers: {
45275
- [name: string]: unknown;
45276
- };
45277
- content: {
45278
- "application/json": components["schemas"]["GoogleDisk"];
46196
+ "application/json": components["schemas"]["GoogleBucket"];
45279
46197
  };
45280
46198
  };
45281
46199
  /** @description Error */
@@ -45289,7 +46207,7 @@ export interface operations {
45289
46207
  };
45290
46208
  };
45291
46209
  };
45292
- "get-google-filestore": {
46210
+ "provision-google-bucket": {
45293
46211
  parameters: {
45294
46212
  query?: never;
45295
46213
  header?: never;
@@ -45303,7 +46221,11 @@ export interface operations {
45303
46221
  };
45304
46222
  cookie?: never;
45305
46223
  };
45306
- requestBody?: never;
46224
+ requestBody: {
46225
+ content: {
46226
+ "application/json": components["schemas"]["BucketResource"];
46227
+ };
46228
+ };
45307
46229
  responses: {
45308
46230
  /** @description OK */
45309
46231
  200: {
@@ -45311,7 +46233,7 @@ export interface operations {
45311
46233
  [name: string]: unknown;
45312
46234
  };
45313
46235
  content: {
45314
- "application/json": components["schemas"]["GoogleFilestore"];
46236
+ "application/json": components["schemas"]["BucketOutput"];
45315
46237
  };
45316
46238
  };
45317
46239
  /** @description Error */
@@ -45325,22 +46247,60 @@ export interface operations {
45325
46247
  };
45326
46248
  };
45327
46249
  };
45328
- "create-google-managed-lustre": {
46250
+ "add-cors-rules-google-bucket": {
45329
46251
  parameters: {
45330
46252
  query?: never;
45331
46253
  header?: never;
45332
46254
  path: {
45333
46255
  /** @description The name of the organization. */
45334
46256
  organization: string;
46257
+ /** @description Username of the target user. */
45335
46258
  user: string;
46259
+ /** @description The name of the storage resource. */
46260
+ name: string;
45336
46261
  };
45337
46262
  cookie?: never;
45338
46263
  };
45339
- requestBody: {
45340
- content: {
45341
- "application/json": components["schemas"]["GoogleManagedLustre"];
46264
+ requestBody?: never;
46265
+ responses: {
46266
+ /** @description Accepted */
46267
+ 202: {
46268
+ headers: {
46269
+ [name: string]: unknown;
46270
+ };
46271
+ content?: never;
46272
+ };
46273
+ /** @description Error */
46274
+ default: {
46275
+ headers: {
46276
+ [name: string]: unknown;
46277
+ };
46278
+ content: {
46279
+ "application/json": components["schemas"]["Error"];
46280
+ };
45342
46281
  };
45343
46282
  };
46283
+ };
46284
+ "get-presigned-url-google-bucket-object": {
46285
+ parameters: {
46286
+ query: {
46287
+ /** @description The name of the Google object to get pre-signed URL. */
46288
+ objectName: string;
46289
+ /** @description The expiration time in seconds for the pre-signed URL. Default is 12 hours. */
46290
+ expiresIn?: number;
46291
+ };
46292
+ header?: never;
46293
+ path: {
46294
+ /** @description The name of the organization. */
46295
+ organization: string;
46296
+ /** @description Username of the target user. */
46297
+ user: string;
46298
+ /** @description The name of the storage resource. */
46299
+ name: string;
46300
+ };
46301
+ cookie?: never;
46302
+ };
46303
+ requestBody?: never;
45344
46304
  responses: {
45345
46305
  /** @description OK */
45346
46306
  200: {
@@ -45348,7 +46308,7 @@ export interface operations {
45348
46308
  [name: string]: unknown;
45349
46309
  };
45350
46310
  content: {
45351
- "application/json": components["schemas"]["GoogleManagedLustre"];
46311
+ "application/json": string;
45352
46312
  };
45353
46313
  };
45354
46314
  /** @description Error */
@@ -45362,26 +46322,31 @@ export interface operations {
45362
46322
  };
45363
46323
  };
45364
46324
  };
45365
- "delete-google-managed-lustre": {
46325
+ "get-token-google-bucket": {
45366
46326
  parameters: {
45367
46327
  query?: never;
45368
46328
  header?: never;
45369
46329
  path: {
45370
46330
  /** @description The name of the organization. */
45371
46331
  organization: string;
46332
+ /** @description Username of the target user. */
45372
46333
  user: string;
45373
- managedLustreName: string;
46334
+ /** @description The name of the storage resource. */
46335
+ name: string;
45374
46336
  };
45375
46337
  cookie?: never;
45376
46338
  };
45377
46339
  requestBody?: never;
45378
46340
  responses: {
45379
- /** @description No Content */
45380
- 204: {
46341
+ /** @description OK */
46342
+ 200: {
45381
46343
  headers: {
46344
+ "Cache-Control"?: string;
45382
46345
  [name: string]: unknown;
45383
46346
  };
45384
- content?: never;
46347
+ content: {
46348
+ "application/json": components["schemas"]["GoogleBucketToken"];
46349
+ };
45385
46350
  };
45386
46351
  /** @description Error */
45387
46352
  default: {
@@ -45394,7 +46359,7 @@ export interface operations {
45394
46359
  };
45395
46360
  };
45396
46361
  };
45397
- "get-instances": {
46362
+ "get-google-disk": {
45398
46363
  parameters: {
45399
46364
  query?: never;
45400
46365
  header?: never;
@@ -45403,6 +46368,8 @@ export interface operations {
45403
46368
  organization: string;
45404
46369
  /** @description Username of the target user. */
45405
46370
  user: string;
46371
+ /** @description The name of the storage resource. */
46372
+ name: string;
45406
46373
  };
45407
46374
  cookie?: never;
45408
46375
  };
@@ -45414,7 +46381,7 @@ export interface operations {
45414
46381
  [name: string]: unknown;
45415
46382
  };
45416
46383
  content: {
45417
- "application/json": components["schemas"]["Instance"][] | null;
46384
+ "application/json": components["schemas"]["GoogleDisk"];
45418
46385
  };
45419
46386
  };
45420
46387
  /** @description Error */
@@ -45428,7 +46395,7 @@ export interface operations {
45428
46395
  };
45429
46396
  };
45430
46397
  };
45431
- "create-instance": {
46398
+ "get-google-filestore": {
45432
46399
  parameters: {
45433
46400
  query?: never;
45434
46401
  header?: never;
@@ -45437,14 +46404,12 @@ export interface operations {
45437
46404
  organization: string;
45438
46405
  /** @description Username of the target user. */
45439
46406
  user: string;
46407
+ /** @description The name of the storage resource. */
46408
+ name: string;
45440
46409
  };
45441
46410
  cookie?: never;
45442
46411
  };
45443
- requestBody: {
45444
- content: {
45445
- "application/json": components["schemas"]["Instance"];
45446
- };
45447
- };
46412
+ requestBody?: never;
45448
46413
  responses: {
45449
46414
  /** @description OK */
45450
46415
  200: {
@@ -45452,7 +46417,7 @@ export interface operations {
45452
46417
  [name: string]: unknown;
45453
46418
  };
45454
46419
  content: {
45455
- "application/json": components["schemas"]["Instance"];
46420
+ "application/json": components["schemas"]["GoogleFilestore"];
45456
46421
  };
45457
46422
  };
45458
46423
  /** @description Error */
@@ -45466,21 +46431,22 @@ export interface operations {
45466
46431
  };
45467
46432
  };
45468
46433
  };
45469
- "get-instance": {
46434
+ "create-google-managed-lustre": {
45470
46435
  parameters: {
45471
46436
  query?: never;
45472
46437
  header?: never;
45473
46438
  path: {
45474
46439
  /** @description The name of the organization. */
45475
46440
  organization: string;
45476
- /** @description Username of the target user. */
45477
46441
  user: string;
45478
- /** @description The name of the instance to get. */
45479
- instanceName: string;
45480
46442
  };
45481
46443
  cookie?: never;
45482
46444
  };
45483
- requestBody?: never;
46445
+ requestBody: {
46446
+ content: {
46447
+ "application/json": components["schemas"]["GoogleManagedLustre"];
46448
+ };
46449
+ };
45484
46450
  responses: {
45485
46451
  /** @description OK */
45486
46452
  200: {
@@ -45488,7 +46454,7 @@ export interface operations {
45488
46454
  [name: string]: unknown;
45489
46455
  };
45490
46456
  content: {
45491
- "application/json": components["schemas"]["Instance"];
46457
+ "application/json": components["schemas"]["GoogleManagedLustre"];
45492
46458
  };
45493
46459
  };
45494
46460
  /** @description Error */
@@ -45502,17 +46468,15 @@ export interface operations {
45502
46468
  };
45503
46469
  };
45504
46470
  };
45505
- "delete-instance": {
46471
+ "delete-google-managed-lustre": {
45506
46472
  parameters: {
45507
46473
  query?: never;
45508
46474
  header?: never;
45509
46475
  path: {
45510
46476
  /** @description The name of the organization. */
45511
46477
  organization: string;
45512
- /** @description Username of the target user. */
45513
46478
  user: string;
45514
- /** @description The name of the instance to delete. */
45515
- instanceName: string;
46479
+ managedLustreName: string;
45516
46480
  };
45517
46481
  cookie?: never;
45518
46482
  };
@@ -45536,7 +46500,7 @@ export interface operations {
45536
46500
  };
45537
46501
  };
45538
46502
  };
45539
- "create-instance-snapshot": {
46503
+ "get-instances": {
45540
46504
  parameters: {
45541
46505
  query?: never;
45542
46506
  header?: never;
@@ -45545,16 +46509,10 @@ export interface operations {
45545
46509
  organization: string;
45546
46510
  /** @description Username of the target user. */
45547
46511
  user: string;
45548
- /** @description The name of the instance */
45549
- instanceName: string;
45550
46512
  };
45551
46513
  cookie?: never;
45552
46514
  };
45553
- requestBody: {
45554
- content: {
45555
- "application/json": components["schemas"]["CreateInstanceSnapshotBody"];
45556
- };
45557
- };
46515
+ requestBody?: never;
45558
46516
  responses: {
45559
46517
  /** @description OK */
45560
46518
  200: {
@@ -45562,7 +46520,7 @@ export interface operations {
45562
46520
  [name: string]: unknown;
45563
46521
  };
45564
46522
  content: {
45565
- "application/json": components["schemas"]["CreateSnapshotOutputBody"];
46523
+ "application/json": components["schemas"]["Instance"][] | null;
45566
46524
  };
45567
46525
  };
45568
46526
  /** @description Error */
@@ -45576,7 +46534,7 @@ export interface operations {
45576
46534
  };
45577
46535
  };
45578
46536
  };
45579
- "create-ip": {
46537
+ "create-instance": {
45580
46538
  parameters: {
45581
46539
  query?: never;
45582
46540
  header?: never;
@@ -45590,7 +46548,7 @@ export interface operations {
45590
46548
  };
45591
46549
  requestBody: {
45592
46550
  content: {
45593
- "application/json": components["schemas"]["Ip"];
46551
+ "application/json": components["schemas"]["Instance"];
45594
46552
  };
45595
46553
  };
45596
46554
  responses: {
@@ -45600,7 +46558,7 @@ export interface operations {
45600
46558
  [name: string]: unknown;
45601
46559
  };
45602
46560
  content: {
45603
- "application/json": components["schemas"]["Ip"];
46561
+ "application/json": components["schemas"]["Instance"];
45604
46562
  };
45605
46563
  };
45606
46564
  /** @description Error */
@@ -45614,7 +46572,7 @@ export interface operations {
45614
46572
  };
45615
46573
  };
45616
46574
  };
45617
- "delete-ip": {
46575
+ "get-instance": {
45618
46576
  parameters: {
45619
46577
  query?: never;
45620
46578
  header?: never;
@@ -45623,19 +46581,21 @@ export interface operations {
45623
46581
  organization: string;
45624
46582
  /** @description Username of the target user. */
45625
46583
  user: string;
45626
- /** @description The name of the IP resource to delete. */
45627
- name: string;
46584
+ /** @description The name of the instance to get. */
46585
+ instanceName: string;
45628
46586
  };
45629
46587
  cookie?: never;
45630
46588
  };
45631
46589
  requestBody?: never;
45632
46590
  responses: {
45633
- /** @description No Content */
45634
- 204: {
46591
+ /** @description OK */
46592
+ 200: {
45635
46593
  headers: {
45636
46594
  [name: string]: unknown;
45637
46595
  };
45638
- content?: never;
46596
+ content: {
46597
+ "application/json": components["schemas"]["Instance"];
46598
+ };
45639
46599
  };
45640
46600
  /** @description Error */
45641
46601
  default: {
@@ -45648,28 +46608,28 @@ export interface operations {
45648
46608
  };
45649
46609
  };
45650
46610
  };
45651
- "get-user-language": {
46611
+ "delete-instance": {
45652
46612
  parameters: {
45653
46613
  query?: never;
45654
46614
  header?: never;
45655
46615
  path: {
45656
46616
  /** @description The name of the organization. */
45657
46617
  organization: string;
45658
- /** @description The username of the user */
46618
+ /** @description Username of the target user. */
45659
46619
  user: string;
46620
+ /** @description The name of the instance to delete. */
46621
+ instanceName: string;
45660
46622
  };
45661
46623
  cookie?: never;
45662
46624
  };
45663
46625
  requestBody?: never;
45664
46626
  responses: {
45665
- /** @description OK */
45666
- 200: {
46627
+ /** @description No Content */
46628
+ 204: {
45667
46629
  headers: {
45668
46630
  [name: string]: unknown;
45669
46631
  };
45670
- content: {
45671
- "application/json": string;
45672
- };
46632
+ content?: never;
45673
46633
  };
45674
46634
  /** @description Error */
45675
46635
  default: {
@@ -45682,21 +46642,23 @@ export interface operations {
45682
46642
  };
45683
46643
  };
45684
46644
  };
45685
- "set-user-language": {
46645
+ "create-instance-snapshot": {
45686
46646
  parameters: {
45687
46647
  query?: never;
45688
46648
  header?: never;
45689
46649
  path: {
45690
46650
  /** @description The name of the organization. */
45691
46651
  organization: string;
45692
- /** @description The username of the user */
46652
+ /** @description Username of the target user. */
45693
46653
  user: string;
46654
+ /** @description The name of the instance */
46655
+ instanceName: string;
45694
46656
  };
45695
46657
  cookie?: never;
45696
46658
  };
45697
46659
  requestBody: {
45698
46660
  content: {
45699
- "application/json": components["schemas"]["LanguageInputBody"];
46661
+ "application/json": components["schemas"]["CreateInstanceSnapshotBody"];
45700
46662
  };
45701
46663
  };
45702
46664
  responses: {
@@ -45706,7 +46668,7 @@ export interface operations {
45706
46668
  [name: string]: unknown;
45707
46669
  };
45708
46670
  content: {
45709
- "application/json": string;
46671
+ "application/json": components["schemas"]["CreateSnapshotOutputBody"];
45710
46672
  };
45711
46673
  };
45712
46674
  /** @description Error */
@@ -45720,30 +46682,32 @@ export interface operations {
45720
46682
  };
45721
46683
  };
45722
46684
  };
45723
- "revoke-user-login-sessions": {
46685
+ "create-ip": {
45724
46686
  parameters: {
45725
46687
  query?: never;
45726
46688
  header?: never;
45727
46689
  path: {
45728
46690
  /** @description The name of the organization. */
45729
46691
  organization: string;
45730
- /** @description The username of the user */
46692
+ /** @description Username of the target user. */
45731
46693
  user: string;
45732
46694
  };
45733
46695
  cookie?: never;
45734
46696
  };
45735
- requestBody?: {
46697
+ requestBody: {
45736
46698
  content: {
45737
- "application/json": components["schemas"]["RevokeLoginSessionOption"];
46699
+ "application/json": components["schemas"]["Ip"];
45738
46700
  };
45739
46701
  };
45740
46702
  responses: {
45741
- /** @description No Content */
45742
- 204: {
46703
+ /** @description OK */
46704
+ 200: {
45743
46705
  headers: {
45744
46706
  [name: string]: unknown;
45745
46707
  };
45746
- content?: never;
46708
+ content: {
46709
+ "application/json": components["schemas"]["Ip"];
46710
+ };
45747
46711
  };
45748
46712
  /** @description Error */
45749
46713
  default: {
@@ -45756,7 +46720,7 @@ export interface operations {
45756
46720
  };
45757
46721
  };
45758
46722
  };
45759
- "create-machine-learning-workspaces": {
46723
+ "delete-ip": {
45760
46724
  parameters: {
45761
46725
  query?: never;
45762
46726
  header?: never;
@@ -45765,23 +46729,19 @@ export interface operations {
45765
46729
  organization: string;
45766
46730
  /** @description Username of the target user. */
45767
46731
  user: string;
46732
+ /** @description The name of the IP resource to delete. */
46733
+ name: string;
45768
46734
  };
45769
46735
  cookie?: never;
45770
46736
  };
45771
- requestBody: {
45772
- content: {
45773
- "application/json": components["schemas"]["MachineLearningWorkspace"];
45774
- };
45775
- };
46737
+ requestBody?: never;
45776
46738
  responses: {
45777
- /** @description OK */
45778
- 200: {
46739
+ /** @description No Content */
46740
+ 204: {
45779
46741
  headers: {
45780
46742
  [name: string]: unknown;
45781
46743
  };
45782
- content: {
45783
- "application/json": components["schemas"]["MachineLearningWorkspace"];
45784
- };
46744
+ content?: never;
45785
46745
  };
45786
46746
  /** @description Error */
45787
46747
  default: {
@@ -45794,17 +46754,15 @@ export interface operations {
45794
46754
  };
45795
46755
  };
45796
46756
  };
45797
- "get-aws-machine-learning-workspace": {
46757
+ "get-user-language": {
45798
46758
  parameters: {
45799
46759
  query?: never;
45800
46760
  header?: never;
45801
46761
  path: {
45802
46762
  /** @description The name of the organization. */
45803
46763
  organization: string;
45804
- /** @description Username of the target user. */
46764
+ /** @description The username of the user */
45805
46765
  user: string;
45806
- /** @description The name of the Machine Learning Workspace resource. */
45807
- name: string;
45808
46766
  };
45809
46767
  cookie?: never;
45810
46768
  };
@@ -45816,7 +46774,7 @@ export interface operations {
45816
46774
  [name: string]: unknown;
45817
46775
  };
45818
46776
  content: {
45819
- "application/json": components["schemas"]["AwsSagemakerDetail"];
46777
+ "application/json": string;
45820
46778
  };
45821
46779
  };
45822
46780
  /** @description Error */
@@ -45830,21 +46788,23 @@ export interface operations {
45830
46788
  };
45831
46789
  };
45832
46790
  };
45833
- "get-azure-machine-learning-workspace": {
46791
+ "set-user-language": {
45834
46792
  parameters: {
45835
46793
  query?: never;
45836
46794
  header?: never;
45837
46795
  path: {
45838
46796
  /** @description The name of the organization. */
45839
46797
  organization: string;
45840
- /** @description Username of the target user. */
46798
+ /** @description The username of the user */
45841
46799
  user: string;
45842
- /** @description The name of the Machine Learning Workspace resource. */
45843
- name: string;
45844
46800
  };
45845
46801
  cookie?: never;
45846
46802
  };
45847
- requestBody?: never;
46803
+ requestBody: {
46804
+ content: {
46805
+ "application/json": components["schemas"]["LanguageInputBody"];
46806
+ };
46807
+ };
45848
46808
  responses: {
45849
46809
  /** @description OK */
45850
46810
  200: {
@@ -45852,7 +46812,7 @@ export interface operations {
45852
46812
  [name: string]: unknown;
45853
46813
  };
45854
46814
  content: {
45855
- "application/json": components["schemas"]["AzureMachineLearningDetail"];
46815
+ "application/json": string;
45856
46816
  };
45857
46817
  };
45858
46818
  /** @description Error */
@@ -45866,21 +46826,23 @@ export interface operations {
45866
46826
  };
45867
46827
  };
45868
46828
  };
45869
- "delete-machine-learning-workspaces-by-name": {
46829
+ "revoke-user-login-sessions": {
45870
46830
  parameters: {
45871
46831
  query?: never;
45872
46832
  header?: never;
45873
46833
  path: {
45874
46834
  /** @description The name of the organization. */
45875
46835
  organization: string;
45876
- /** @description Username of the target user. */
46836
+ /** @description The username of the user */
45877
46837
  user: string;
45878
- /** @description The name of the Machine Learning Workspace resource. */
45879
- name: string;
45880
46838
  };
45881
46839
  cookie?: never;
45882
46840
  };
45883
- requestBody?: never;
46841
+ requestBody?: {
46842
+ content: {
46843
+ "application/json": components["schemas"]["RevokeLoginSessionOption"];
46844
+ };
46845
+ };
45884
46846
  responses: {
45885
46847
  /** @description No Content */
45886
46848
  204: {
@@ -45900,7 +46862,7 @@ export interface operations {
45900
46862
  };
45901
46863
  };
45902
46864
  };
45903
- "get-presigned-url-machine-learning-workspace": {
46865
+ "create-machine-learning-workspaces": {
45904
46866
  parameters: {
45905
46867
  query?: never;
45906
46868
  header?: never;
@@ -45909,12 +46871,14 @@ export interface operations {
45909
46871
  organization: string;
45910
46872
  /** @description Username of the target user. */
45911
46873
  user: string;
45912
- /** @description The name of the Machine Learning Workspace resource. */
45913
- name: string;
45914
46874
  };
45915
46875
  cookie?: never;
45916
46876
  };
45917
- requestBody?: never;
46877
+ requestBody: {
46878
+ content: {
46879
+ "application/json": components["schemas"]["MachineLearningWorkspace"];
46880
+ };
46881
+ };
45918
46882
  responses: {
45919
46883
  /** @description OK */
45920
46884
  200: {
@@ -45922,7 +46886,7 @@ export interface operations {
45922
46886
  [name: string]: unknown;
45923
46887
  };
45924
46888
  content: {
45925
- "application/json": components["schemas"]["UrlResponse"];
46889
+ "application/json": components["schemas"]["MachineLearningWorkspace"];
45926
46890
  };
45927
46891
  };
45928
46892
  /** @description Error */
@@ -45936,7 +46900,7 @@ export interface operations {
45936
46900
  };
45937
46901
  };
45938
46902
  };
45939
- "list-netappontap": {
46903
+ "get-aws-machine-learning-workspace": {
45940
46904
  parameters: {
45941
46905
  query?: never;
45942
46906
  header?: never;
@@ -45945,6 +46909,8 @@ export interface operations {
45945
46909
  organization: string;
45946
46910
  /** @description Username of the target user. */
45947
46911
  user: string;
46912
+ /** @description The name of the Machine Learning Workspace resource. */
46913
+ name: string;
45948
46914
  };
45949
46915
  cookie?: never;
45950
46916
  };
@@ -45956,7 +46922,7 @@ export interface operations {
45956
46922
  [name: string]: unknown;
45957
46923
  };
45958
46924
  content: {
45959
- "application/json": components["schemas"]["NetAppOntapResponse"][] | null;
46925
+ "application/json": components["schemas"]["AwsSagemakerDetail"];
45960
46926
  };
45961
46927
  };
45962
46928
  /** @description Error */
@@ -45970,7 +46936,7 @@ export interface operations {
45970
46936
  };
45971
46937
  };
45972
46938
  };
45973
- "create-netappontap": {
46939
+ "get-azure-machine-learning-workspace": {
45974
46940
  parameters: {
45975
46941
  query?: never;
45976
46942
  header?: never;
@@ -45979,14 +46945,12 @@ export interface operations {
45979
46945
  organization: string;
45980
46946
  /** @description Username of the target user. */
45981
46947
  user: string;
46948
+ /** @description The name of the Machine Learning Workspace resource. */
46949
+ name: string;
45982
46950
  };
45983
46951
  cookie?: never;
45984
46952
  };
45985
- requestBody: {
45986
- content: {
45987
- "application/json": components["schemas"]["CreateNetAppOntapInputBody"];
45988
- };
45989
- };
46953
+ requestBody?: never;
45990
46954
  responses: {
45991
46955
  /** @description OK */
45992
46956
  200: {
@@ -45994,7 +46958,7 @@ export interface operations {
45994
46958
  [name: string]: unknown;
45995
46959
  };
45996
46960
  content: {
45997
- "application/json": components["schemas"]["NetAppOntapResponse"];
46961
+ "application/json": components["schemas"]["AzureMachineLearningDetail"];
45998
46962
  };
45999
46963
  };
46000
46964
  /** @description Error */
@@ -46008,7 +46972,7 @@ export interface operations {
46008
46972
  };
46009
46973
  };
46010
46974
  };
46011
- "get-netappontap": {
46975
+ "delete-machine-learning-workspaces-by-name": {
46012
46976
  parameters: {
46013
46977
  query?: never;
46014
46978
  header?: never;
@@ -46017,21 +46981,19 @@ export interface operations {
46017
46981
  organization: string;
46018
46982
  /** @description Username of the target user. */
46019
46983
  user: string;
46020
- /** @description The name of the storage resource. */
46984
+ /** @description The name of the Machine Learning Workspace resource. */
46021
46985
  name: string;
46022
46986
  };
46023
46987
  cookie?: never;
46024
46988
  };
46025
46989
  requestBody?: never;
46026
46990
  responses: {
46027
- /** @description OK */
46028
- 200: {
46991
+ /** @description No Content */
46992
+ 204: {
46029
46993
  headers: {
46030
46994
  [name: string]: unknown;
46031
46995
  };
46032
- content: {
46033
- "application/json": components["schemas"]["NetAppOntap"];
46034
- };
46996
+ content?: never;
46035
46997
  };
46036
46998
  /** @description Error */
46037
46999
  default: {
@@ -46044,17 +47006,17 @@ export interface operations {
46044
47006
  };
46045
47007
  };
46046
47008
  };
46047
- "get-netapp-ontap-volumes": {
47009
+ "get-presigned-url-machine-learning-workspace": {
46048
47010
  parameters: {
46049
47011
  query?: never;
46050
47012
  header?: never;
46051
47013
  path: {
46052
47014
  /** @description The name of the organization. */
46053
47015
  organization: string;
46054
- /** @description The user that owns this NetApp ONTAP storage. */
47016
+ /** @description Username of the target user. */
46055
47017
  user: string;
46056
- /** @description NetApp ONTAP storage name */
46057
- ontapName: string;
47018
+ /** @description The name of the Machine Learning Workspace resource. */
47019
+ name: string;
46058
47020
  };
46059
47021
  cookie?: never;
46060
47022
  };
@@ -46066,7 +47028,7 @@ export interface operations {
46066
47028
  [name: string]: unknown;
46067
47029
  };
46068
47030
  content: {
46069
- "application/json": components["schemas"]["SingleVolume"][] | null;
47031
+ "application/json": components["schemas"]["UrlResponse"];
46070
47032
  };
46071
47033
  };
46072
47034
  /** @description Error */
@@ -46080,23 +47042,21 @@ export interface operations {
46080
47042
  };
46081
47043
  };
46082
47044
  };
46083
- "create-netapp-ontap-volume": {
47045
+ "create-network-interface": {
46084
47046
  parameters: {
46085
47047
  query?: never;
46086
47048
  header?: never;
46087
47049
  path: {
46088
47050
  /** @description The name of the organization. */
46089
47051
  organization: string;
46090
- /** @description The user that owns this NetApp ONTAP storage. */
47052
+ /** @description Username of the target user. */
46091
47053
  user: string;
46092
- /** @description NetApp ONTAP storage name */
46093
- ontapName: string;
46094
47054
  };
46095
47055
  cookie?: never;
46096
47056
  };
46097
47057
  requestBody: {
46098
47058
  content: {
46099
- "application/json": components["schemas"]["CreateVolumeRequestBody"];
47059
+ "application/json": components["schemas"]["NetworkInterface"];
46100
47060
  };
46101
47061
  };
46102
47062
  responses: {
@@ -46106,7 +47066,7 @@ export interface operations {
46106
47066
  [name: string]: unknown;
46107
47067
  };
46108
47068
  content: {
46109
- "application/json": components["schemas"]["SingleVolume"];
47069
+ "application/json": components["schemas"]["NetworkInterface"];
46110
47070
  };
46111
47071
  };
46112
47072
  /** @description Error */
@@ -46120,19 +47080,17 @@ export interface operations {
46120
47080
  };
46121
47081
  };
46122
47082
  };
46123
- "delete-netapp-ontap-volume": {
47083
+ "delete-network-interface": {
46124
47084
  parameters: {
46125
47085
  query?: never;
46126
47086
  header?: never;
46127
47087
  path: {
46128
47088
  /** @description The name of the organization. */
46129
47089
  organization: string;
46130
- /** @description The username of the user that owns this NetApp ONTAP storage. */
47090
+ /** @description Username of the target user. */
46131
47091
  user: string;
46132
- /** @description NetApp ONTAP storage name */
46133
- ontapName: string;
46134
- /** @description Volume UUID to delete */
46135
- volumeId: string;
47092
+ /** @description The name of the network interface resource to delete. */
47093
+ name: string;
46136
47094
  };
46137
47095
  cookie?: never;
46138
47096
  };