qovery-typescript-axios 1.1.843 → 1.1.845
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 +41 -4
- package/dist/api.d.ts +41 -4
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +41 -4
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3893,13 +3893,13 @@ export interface ClusterFeatureKarpenterParameters {
|
|
|
3893
3893
|
*/
|
|
3894
3894
|
'disk_size_in_gib': number;
|
|
3895
3895
|
/**
|
|
3896
|
-
*
|
|
3896
|
+
* Unit is operation/seconds. The disk IOPS to be used for the node configuration
|
|
3897
3897
|
* @type {number}
|
|
3898
3898
|
* @memberof ClusterFeatureKarpenterParameters
|
|
3899
3899
|
*/
|
|
3900
3900
|
'disk_iops'?: number;
|
|
3901
3901
|
/**
|
|
3902
|
-
*
|
|
3902
|
+
* Unit is in MB/s. The disk throughput to be used for the node configuration
|
|
3903
3903
|
* @type {number}
|
|
3904
3904
|
* @memberof ClusterFeatureKarpenterParameters
|
|
3905
3905
|
*/
|
|
@@ -10023,6 +10023,18 @@ export interface EnvironmentStatus {
|
|
|
10023
10023
|
* @memberof EnvironmentStatus
|
|
10024
10024
|
*/
|
|
10025
10025
|
'deployment_status'?: EnvironmentDeploymentStatusEnum;
|
|
10026
|
+
/**
|
|
10027
|
+
*
|
|
10028
|
+
* @type {string}
|
|
10029
|
+
* @memberof EnvironmentStatus
|
|
10030
|
+
*/
|
|
10031
|
+
'deployment_request_id'?: string | null;
|
|
10032
|
+
/**
|
|
10033
|
+
*
|
|
10034
|
+
* @type {Array<StageStepMetrics>}
|
|
10035
|
+
* @memberof EnvironmentStatus
|
|
10036
|
+
*/
|
|
10037
|
+
'metrics'?: Array<StageStepMetrics> | null;
|
|
10026
10038
|
}
|
|
10027
10039
|
|
|
10028
10040
|
|
|
@@ -13719,6 +13731,18 @@ export interface KarpenterGpuNodePoolOverride {
|
|
|
13719
13731
|
* @memberof KarpenterGpuNodePoolOverride
|
|
13720
13732
|
*/
|
|
13721
13733
|
'disk_size_in_gib'?: number;
|
|
13734
|
+
/**
|
|
13735
|
+
* Unit is operation/seconds. The disk IOPS to be used for the GPU node pool configuration
|
|
13736
|
+
* @type {number}
|
|
13737
|
+
* @memberof KarpenterGpuNodePoolOverride
|
|
13738
|
+
*/
|
|
13739
|
+
'disk_iops'?: number;
|
|
13740
|
+
/**
|
|
13741
|
+
* Unit is in MB/s. The disk throughput to be used for the GPU node pool configuration
|
|
13742
|
+
* @type {number}
|
|
13743
|
+
* @memberof KarpenterGpuNodePoolOverride
|
|
13744
|
+
*/
|
|
13745
|
+
'disk_throughput'?: number;
|
|
13722
13746
|
/**
|
|
13723
13747
|
*
|
|
13724
13748
|
* @type {boolean}
|
|
@@ -19740,6 +19764,12 @@ export type StageStatusEnum = typeof StageStatusEnum[keyof typeof StageStatusEnu
|
|
|
19740
19764
|
* @interface StageStepMetric
|
|
19741
19765
|
*/
|
|
19742
19766
|
export interface StageStepMetric {
|
|
19767
|
+
/**
|
|
19768
|
+
*
|
|
19769
|
+
* @type {string}
|
|
19770
|
+
* @memberof StageStepMetric
|
|
19771
|
+
*/
|
|
19772
|
+
'stage_id'?: string;
|
|
19743
19773
|
/**
|
|
19744
19774
|
*
|
|
19745
19775
|
* @type {StageStepMetricNameEnum}
|
|
@@ -19762,12 +19792,13 @@ export interface StageStepMetric {
|
|
|
19762
19792
|
|
|
19763
19793
|
|
|
19764
19794
|
/**
|
|
19765
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19795
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19766
19796
|
* @export
|
|
19767
19797
|
* @enum {string}
|
|
19768
19798
|
*/
|
|
19769
19799
|
|
|
19770
19800
|
export const StageStepMetricNameEnum = {
|
|
19801
|
+
TOTAL: 'TOTAL',
|
|
19771
19802
|
QUEUEING: 'QUEUEING',
|
|
19772
19803
|
PROVISION_BUILDER: 'PROVISION_BUILDER'
|
|
19773
19804
|
} as const;
|
|
@@ -19782,7 +19813,13 @@ export type StageStepMetricNameEnum = typeof StageStepMetricNameEnum[keyof typeo
|
|
|
19782
19813
|
*/
|
|
19783
19814
|
export interface StageStepMetrics {
|
|
19784
19815
|
/**
|
|
19785
|
-
*
|
|
19816
|
+
*
|
|
19817
|
+
* @type {string}
|
|
19818
|
+
* @memberof StageStepMetrics
|
|
19819
|
+
*/
|
|
19820
|
+
'stage_id'?: string;
|
|
19821
|
+
/**
|
|
19822
|
+
* The total duration in seconds of the stage deployment or null if the deployment is not completed.
|
|
19786
19823
|
* @type {number}
|
|
19787
19824
|
* @memberof StageStepMetrics
|
|
19788
19825
|
*/
|
package/dist/api.d.ts
CHANGED
|
@@ -3767,13 +3767,13 @@ export interface ClusterFeatureKarpenterParameters {
|
|
|
3767
3767
|
*/
|
|
3768
3768
|
'disk_size_in_gib': number;
|
|
3769
3769
|
/**
|
|
3770
|
-
*
|
|
3770
|
+
* Unit is operation/seconds. The disk IOPS to be used for the node configuration
|
|
3771
3771
|
* @type {number}
|
|
3772
3772
|
* @memberof ClusterFeatureKarpenterParameters
|
|
3773
3773
|
*/
|
|
3774
3774
|
'disk_iops'?: number;
|
|
3775
3775
|
/**
|
|
3776
|
-
*
|
|
3776
|
+
* Unit is in MB/s. The disk throughput to be used for the node configuration
|
|
3777
3777
|
* @type {number}
|
|
3778
3778
|
* @memberof ClusterFeatureKarpenterParameters
|
|
3779
3779
|
*/
|
|
@@ -9715,6 +9715,18 @@ export interface EnvironmentStatus {
|
|
|
9715
9715
|
* @memberof EnvironmentStatus
|
|
9716
9716
|
*/
|
|
9717
9717
|
'deployment_status'?: EnvironmentDeploymentStatusEnum;
|
|
9718
|
+
/**
|
|
9719
|
+
*
|
|
9720
|
+
* @type {string}
|
|
9721
|
+
* @memberof EnvironmentStatus
|
|
9722
|
+
*/
|
|
9723
|
+
'deployment_request_id'?: string | null;
|
|
9724
|
+
/**
|
|
9725
|
+
*
|
|
9726
|
+
* @type {Array<StageStepMetrics>}
|
|
9727
|
+
* @memberof EnvironmentStatus
|
|
9728
|
+
*/
|
|
9729
|
+
'metrics'?: Array<StageStepMetrics> | null;
|
|
9718
9730
|
}
|
|
9719
9731
|
/**
|
|
9720
9732
|
* Origin of the organization event
|
|
@@ -13297,6 +13309,18 @@ export interface KarpenterGpuNodePoolOverride {
|
|
|
13297
13309
|
* @memberof KarpenterGpuNodePoolOverride
|
|
13298
13310
|
*/
|
|
13299
13311
|
'disk_size_in_gib'?: number;
|
|
13312
|
+
/**
|
|
13313
|
+
* Unit is operation/seconds. The disk IOPS to be used for the GPU node pool configuration
|
|
13314
|
+
* @type {number}
|
|
13315
|
+
* @memberof KarpenterGpuNodePoolOverride
|
|
13316
|
+
*/
|
|
13317
|
+
'disk_iops'?: number;
|
|
13318
|
+
/**
|
|
13319
|
+
* Unit is in MB/s. The disk throughput to be used for the GPU node pool configuration
|
|
13320
|
+
* @type {number}
|
|
13321
|
+
* @memberof KarpenterGpuNodePoolOverride
|
|
13322
|
+
*/
|
|
13323
|
+
'disk_throughput'?: number;
|
|
13300
13324
|
/**
|
|
13301
13325
|
*
|
|
13302
13326
|
* @type {boolean}
|
|
@@ -19098,6 +19122,12 @@ export type StageStatusEnum = typeof StageStatusEnum[keyof typeof StageStatusEnu
|
|
|
19098
19122
|
* @interface StageStepMetric
|
|
19099
19123
|
*/
|
|
19100
19124
|
export interface StageStepMetric {
|
|
19125
|
+
/**
|
|
19126
|
+
*
|
|
19127
|
+
* @type {string}
|
|
19128
|
+
* @memberof StageStepMetric
|
|
19129
|
+
*/
|
|
19130
|
+
'stage_id'?: string;
|
|
19101
19131
|
/**
|
|
19102
19132
|
*
|
|
19103
19133
|
* @type {StageStepMetricNameEnum}
|
|
@@ -19118,11 +19148,12 @@ export interface StageStepMetric {
|
|
|
19118
19148
|
'duration_sec'?: number;
|
|
19119
19149
|
}
|
|
19120
19150
|
/**
|
|
19121
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19151
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19122
19152
|
* @export
|
|
19123
19153
|
* @enum {string}
|
|
19124
19154
|
*/
|
|
19125
19155
|
export declare const StageStepMetricNameEnum: {
|
|
19156
|
+
readonly TOTAL: "TOTAL";
|
|
19126
19157
|
readonly QUEUEING: "QUEUEING";
|
|
19127
19158
|
readonly PROVISION_BUILDER: "PROVISION_BUILDER";
|
|
19128
19159
|
};
|
|
@@ -19134,7 +19165,13 @@ export type StageStepMetricNameEnum = typeof StageStepMetricNameEnum[keyof typeo
|
|
|
19134
19165
|
*/
|
|
19135
19166
|
export interface StageStepMetrics {
|
|
19136
19167
|
/**
|
|
19137
|
-
*
|
|
19168
|
+
*
|
|
19169
|
+
* @type {string}
|
|
19170
|
+
* @memberof StageStepMetrics
|
|
19171
|
+
*/
|
|
19172
|
+
'stage_id'?: string;
|
|
19173
|
+
/**
|
|
19174
|
+
* The total duration in seconds of the stage deployment or null if the deployment is not completed.
|
|
19138
19175
|
* @type {number}
|
|
19139
19176
|
* @memberof StageStepMetrics
|
|
19140
19177
|
*/
|
package/dist/api.js
CHANGED
|
@@ -1186,11 +1186,12 @@ exports.StageStatusEnum = {
|
|
|
1186
1186
|
CANCELED: 'CANCELED'
|
|
1187
1187
|
};
|
|
1188
1188
|
/**
|
|
1189
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
1189
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
1190
1190
|
* @export
|
|
1191
1191
|
* @enum {string}
|
|
1192
1192
|
*/
|
|
1193
1193
|
exports.StageStepMetricNameEnum = {
|
|
1194
|
+
TOTAL: 'TOTAL',
|
|
1194
1195
|
QUEUEING: 'QUEUEING',
|
|
1195
1196
|
PROVISION_BUILDER: 'PROVISION_BUILDER'
|
|
1196
1197
|
};
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3767,13 +3767,13 @@ export interface ClusterFeatureKarpenterParameters {
|
|
|
3767
3767
|
*/
|
|
3768
3768
|
'disk_size_in_gib': number;
|
|
3769
3769
|
/**
|
|
3770
|
-
*
|
|
3770
|
+
* Unit is operation/seconds. The disk IOPS to be used for the node configuration
|
|
3771
3771
|
* @type {number}
|
|
3772
3772
|
* @memberof ClusterFeatureKarpenterParameters
|
|
3773
3773
|
*/
|
|
3774
3774
|
'disk_iops'?: number;
|
|
3775
3775
|
/**
|
|
3776
|
-
*
|
|
3776
|
+
* Unit is in MB/s. The disk throughput to be used for the node configuration
|
|
3777
3777
|
* @type {number}
|
|
3778
3778
|
* @memberof ClusterFeatureKarpenterParameters
|
|
3779
3779
|
*/
|
|
@@ -9715,6 +9715,18 @@ export interface EnvironmentStatus {
|
|
|
9715
9715
|
* @memberof EnvironmentStatus
|
|
9716
9716
|
*/
|
|
9717
9717
|
'deployment_status'?: EnvironmentDeploymentStatusEnum;
|
|
9718
|
+
/**
|
|
9719
|
+
*
|
|
9720
|
+
* @type {string}
|
|
9721
|
+
* @memberof EnvironmentStatus
|
|
9722
|
+
*/
|
|
9723
|
+
'deployment_request_id'?: string | null;
|
|
9724
|
+
/**
|
|
9725
|
+
*
|
|
9726
|
+
* @type {Array<StageStepMetrics>}
|
|
9727
|
+
* @memberof EnvironmentStatus
|
|
9728
|
+
*/
|
|
9729
|
+
'metrics'?: Array<StageStepMetrics> | null;
|
|
9718
9730
|
}
|
|
9719
9731
|
/**
|
|
9720
9732
|
* Origin of the organization event
|
|
@@ -13297,6 +13309,18 @@ export interface KarpenterGpuNodePoolOverride {
|
|
|
13297
13309
|
* @memberof KarpenterGpuNodePoolOverride
|
|
13298
13310
|
*/
|
|
13299
13311
|
'disk_size_in_gib'?: number;
|
|
13312
|
+
/**
|
|
13313
|
+
* Unit is operation/seconds. The disk IOPS to be used for the GPU node pool configuration
|
|
13314
|
+
* @type {number}
|
|
13315
|
+
* @memberof KarpenterGpuNodePoolOverride
|
|
13316
|
+
*/
|
|
13317
|
+
'disk_iops'?: number;
|
|
13318
|
+
/**
|
|
13319
|
+
* Unit is in MB/s. The disk throughput to be used for the GPU node pool configuration
|
|
13320
|
+
* @type {number}
|
|
13321
|
+
* @memberof KarpenterGpuNodePoolOverride
|
|
13322
|
+
*/
|
|
13323
|
+
'disk_throughput'?: number;
|
|
13300
13324
|
/**
|
|
13301
13325
|
*
|
|
13302
13326
|
* @type {boolean}
|
|
@@ -19098,6 +19122,12 @@ export type StageStatusEnum = typeof StageStatusEnum[keyof typeof StageStatusEnu
|
|
|
19098
19122
|
* @interface StageStepMetric
|
|
19099
19123
|
*/
|
|
19100
19124
|
export interface StageStepMetric {
|
|
19125
|
+
/**
|
|
19126
|
+
*
|
|
19127
|
+
* @type {string}
|
|
19128
|
+
* @memberof StageStepMetric
|
|
19129
|
+
*/
|
|
19130
|
+
'stage_id'?: string;
|
|
19101
19131
|
/**
|
|
19102
19132
|
*
|
|
19103
19133
|
* @type {StageStepMetricNameEnum}
|
|
@@ -19118,11 +19148,12 @@ export interface StageStepMetric {
|
|
|
19118
19148
|
'duration_sec'?: number;
|
|
19119
19149
|
}
|
|
19120
19150
|
/**
|
|
19121
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19151
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19122
19152
|
* @export
|
|
19123
19153
|
* @enum {string}
|
|
19124
19154
|
*/
|
|
19125
19155
|
export declare const StageStepMetricNameEnum: {
|
|
19156
|
+
readonly TOTAL: "TOTAL";
|
|
19126
19157
|
readonly QUEUEING: "QUEUEING";
|
|
19127
19158
|
readonly PROVISION_BUILDER: "PROVISION_BUILDER";
|
|
19128
19159
|
};
|
|
@@ -19134,7 +19165,13 @@ export type StageStepMetricNameEnum = typeof StageStepMetricNameEnum[keyof typeo
|
|
|
19134
19165
|
*/
|
|
19135
19166
|
export interface StageStepMetrics {
|
|
19136
19167
|
/**
|
|
19137
|
-
*
|
|
19168
|
+
*
|
|
19169
|
+
* @type {string}
|
|
19170
|
+
* @memberof StageStepMetrics
|
|
19171
|
+
*/
|
|
19172
|
+
'stage_id'?: string;
|
|
19173
|
+
/**
|
|
19174
|
+
* The total duration in seconds of the stage deployment or null if the deployment is not completed.
|
|
19138
19175
|
* @type {number}
|
|
19139
19176
|
* @memberof StageStepMetrics
|
|
19140
19177
|
*/
|
package/dist/esm/api.js
CHANGED
|
@@ -1173,11 +1173,12 @@ export const StageStatusEnum = {
|
|
|
1173
1173
|
CANCELED: 'CANCELED'
|
|
1174
1174
|
};
|
|
1175
1175
|
/**
|
|
1176
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
1176
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
1177
1177
|
* @export
|
|
1178
1178
|
* @enum {string}
|
|
1179
1179
|
*/
|
|
1180
1180
|
export const StageStepMetricNameEnum = {
|
|
1181
|
+
TOTAL: 'TOTAL',
|
|
1181
1182
|
QUEUEING: 'QUEUEING',
|
|
1182
1183
|
PROVISION_BUILDER: 'PROVISION_BUILDER'
|
|
1183
1184
|
};
|