qovery-typescript-axios 1.1.814 → 1.1.816
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +36 -0
- package/dist/api.d.ts +36 -0
- package/dist/esm/api.d.ts +36 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3046,6 +3046,18 @@ export interface Cluster {
|
|
|
3046
3046
|
* @memberof Cluster
|
|
3047
3047
|
*/
|
|
3048
3048
|
'disk_size'?: number;
|
|
3049
|
+
/**
|
|
3050
|
+
* Unit is operation/seconds. The disk IOPS to be used for the node configuration
|
|
3051
|
+
* @type {number}
|
|
3052
|
+
* @memberof Cluster
|
|
3053
|
+
*/
|
|
3054
|
+
'disk_iops'?: number;
|
|
3055
|
+
/**
|
|
3056
|
+
* Unit is in MB/s. The disk thoughput to be used for the node configuration
|
|
3057
|
+
* @type {number}
|
|
3058
|
+
* @memberof Cluster
|
|
3059
|
+
*/
|
|
3060
|
+
'disk_throughput'?: number;
|
|
3049
3061
|
/**
|
|
3050
3062
|
* the instance type to be used for this cluster. The list of values can be retrieved via the endpoint /{CloudProvider}/instanceType
|
|
3051
3063
|
* @type {string}
|
|
@@ -3708,6 +3720,18 @@ export interface ClusterFeatureKarpenterParameters {
|
|
|
3708
3720
|
* @memberof ClusterFeatureKarpenterParameters
|
|
3709
3721
|
*/
|
|
3710
3722
|
'disk_size_in_gib': number;
|
|
3723
|
+
/**
|
|
3724
|
+
*
|
|
3725
|
+
* @type {number}
|
|
3726
|
+
* @memberof ClusterFeatureKarpenterParameters
|
|
3727
|
+
*/
|
|
3728
|
+
'disk_iops'?: number;
|
|
3729
|
+
/**
|
|
3730
|
+
*
|
|
3731
|
+
* @type {number}
|
|
3732
|
+
* @memberof ClusterFeatureKarpenterParameters
|
|
3733
|
+
*/
|
|
3734
|
+
'disk_throuput'?: number;
|
|
3711
3735
|
/**
|
|
3712
3736
|
*
|
|
3713
3737
|
* @type {CpuArchitectureEnum}
|
|
@@ -4636,6 +4660,18 @@ export interface ClusterRequest {
|
|
|
4636
4660
|
* @memberof ClusterRequest
|
|
4637
4661
|
*/
|
|
4638
4662
|
'disk_size'?: number;
|
|
4663
|
+
/**
|
|
4664
|
+
* Unit is operation/seconds. The disk IOPS to be used for the node configuration
|
|
4665
|
+
* @type {number}
|
|
4666
|
+
* @memberof ClusterRequest
|
|
4667
|
+
*/
|
|
4668
|
+
'disk_iops'?: number;
|
|
4669
|
+
/**
|
|
4670
|
+
* Unit is in MB/s. The disk thoughput to be used for the node configuration
|
|
4671
|
+
* @type {number}
|
|
4672
|
+
* @memberof ClusterRequest
|
|
4673
|
+
*/
|
|
4674
|
+
'disk_throughput'?: number;
|
|
4639
4675
|
/**
|
|
4640
4676
|
* the instance type to be used for this cluster. The list of values can be retrieved via the endpoint /{CloudProvider}/instanceType
|
|
4641
4677
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -2934,6 +2934,18 @@ export interface Cluster {
|
|
|
2934
2934
|
* @memberof Cluster
|
|
2935
2935
|
*/
|
|
2936
2936
|
'disk_size'?: number;
|
|
2937
|
+
/**
|
|
2938
|
+
* Unit is operation/seconds. The disk IOPS to be used for the node configuration
|
|
2939
|
+
* @type {number}
|
|
2940
|
+
* @memberof Cluster
|
|
2941
|
+
*/
|
|
2942
|
+
'disk_iops'?: number;
|
|
2943
|
+
/**
|
|
2944
|
+
* Unit is in MB/s. The disk thoughput to be used for the node configuration
|
|
2945
|
+
* @type {number}
|
|
2946
|
+
* @memberof Cluster
|
|
2947
|
+
*/
|
|
2948
|
+
'disk_throughput'?: number;
|
|
2937
2949
|
/**
|
|
2938
2950
|
* the instance type to be used for this cluster. The list of values can be retrieved via the endpoint /{CloudProvider}/instanceType
|
|
2939
2951
|
* @type {string}
|
|
@@ -3586,6 +3598,18 @@ export interface ClusterFeatureKarpenterParameters {
|
|
|
3586
3598
|
* @memberof ClusterFeatureKarpenterParameters
|
|
3587
3599
|
*/
|
|
3588
3600
|
'disk_size_in_gib': number;
|
|
3601
|
+
/**
|
|
3602
|
+
*
|
|
3603
|
+
* @type {number}
|
|
3604
|
+
* @memberof ClusterFeatureKarpenterParameters
|
|
3605
|
+
*/
|
|
3606
|
+
'disk_iops'?: number;
|
|
3607
|
+
/**
|
|
3608
|
+
*
|
|
3609
|
+
* @type {number}
|
|
3610
|
+
* @memberof ClusterFeatureKarpenterParameters
|
|
3611
|
+
*/
|
|
3612
|
+
'disk_throuput'?: number;
|
|
3589
3613
|
/**
|
|
3590
3614
|
*
|
|
3591
3615
|
* @type {CpuArchitectureEnum}
|
|
@@ -4504,6 +4528,18 @@ export interface ClusterRequest {
|
|
|
4504
4528
|
* @memberof ClusterRequest
|
|
4505
4529
|
*/
|
|
4506
4530
|
'disk_size'?: number;
|
|
4531
|
+
/**
|
|
4532
|
+
* Unit is operation/seconds. The disk IOPS to be used for the node configuration
|
|
4533
|
+
* @type {number}
|
|
4534
|
+
* @memberof ClusterRequest
|
|
4535
|
+
*/
|
|
4536
|
+
'disk_iops'?: number;
|
|
4537
|
+
/**
|
|
4538
|
+
* Unit is in MB/s. The disk thoughput to be used for the node configuration
|
|
4539
|
+
* @type {number}
|
|
4540
|
+
* @memberof ClusterRequest
|
|
4541
|
+
*/
|
|
4542
|
+
'disk_throughput'?: number;
|
|
4507
4543
|
/**
|
|
4508
4544
|
* the instance type to be used for this cluster. The list of values can be retrieved via the endpoint /{CloudProvider}/instanceType
|
|
4509
4545
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2934,6 +2934,18 @@ export interface Cluster {
|
|
|
2934
2934
|
* @memberof Cluster
|
|
2935
2935
|
*/
|
|
2936
2936
|
'disk_size'?: number;
|
|
2937
|
+
/**
|
|
2938
|
+
* Unit is operation/seconds. The disk IOPS to be used for the node configuration
|
|
2939
|
+
* @type {number}
|
|
2940
|
+
* @memberof Cluster
|
|
2941
|
+
*/
|
|
2942
|
+
'disk_iops'?: number;
|
|
2943
|
+
/**
|
|
2944
|
+
* Unit is in MB/s. The disk thoughput to be used for the node configuration
|
|
2945
|
+
* @type {number}
|
|
2946
|
+
* @memberof Cluster
|
|
2947
|
+
*/
|
|
2948
|
+
'disk_throughput'?: number;
|
|
2937
2949
|
/**
|
|
2938
2950
|
* the instance type to be used for this cluster. The list of values can be retrieved via the endpoint /{CloudProvider}/instanceType
|
|
2939
2951
|
* @type {string}
|
|
@@ -3586,6 +3598,18 @@ export interface ClusterFeatureKarpenterParameters {
|
|
|
3586
3598
|
* @memberof ClusterFeatureKarpenterParameters
|
|
3587
3599
|
*/
|
|
3588
3600
|
'disk_size_in_gib': number;
|
|
3601
|
+
/**
|
|
3602
|
+
*
|
|
3603
|
+
* @type {number}
|
|
3604
|
+
* @memberof ClusterFeatureKarpenterParameters
|
|
3605
|
+
*/
|
|
3606
|
+
'disk_iops'?: number;
|
|
3607
|
+
/**
|
|
3608
|
+
*
|
|
3609
|
+
* @type {number}
|
|
3610
|
+
* @memberof ClusterFeatureKarpenterParameters
|
|
3611
|
+
*/
|
|
3612
|
+
'disk_throuput'?: number;
|
|
3589
3613
|
/**
|
|
3590
3614
|
*
|
|
3591
3615
|
* @type {CpuArchitectureEnum}
|
|
@@ -4504,6 +4528,18 @@ export interface ClusterRequest {
|
|
|
4504
4528
|
* @memberof ClusterRequest
|
|
4505
4529
|
*/
|
|
4506
4530
|
'disk_size'?: number;
|
|
4531
|
+
/**
|
|
4532
|
+
* Unit is operation/seconds. The disk IOPS to be used for the node configuration
|
|
4533
|
+
* @type {number}
|
|
4534
|
+
* @memberof ClusterRequest
|
|
4535
|
+
*/
|
|
4536
|
+
'disk_iops'?: number;
|
|
4537
|
+
/**
|
|
4538
|
+
* Unit is in MB/s. The disk thoughput to be used for the node configuration
|
|
4539
|
+
* @type {number}
|
|
4540
|
+
* @memberof ClusterRequest
|
|
4541
|
+
*/
|
|
4542
|
+
'disk_throughput'?: number;
|
|
4507
4543
|
/**
|
|
4508
4544
|
* the instance type to be used for this cluster. The list of values can be retrieved via the endpoint /{CloudProvider}/instanceType
|
|
4509
4545
|
* @type {string}
|