qovery-typescript-axios 1.1.913 → 1.1.915
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 +123 -6
- package/dist/api.d.ts +119 -10
- package/dist/api.js +20 -12
- package/dist/esm/api.d.ts +119 -10
- package/dist/esm/api.js +8 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1024,6 +1024,12 @@ export interface Application {
|
|
|
1024
1024
|
* @memberof Application
|
|
1025
1025
|
*/
|
|
1026
1026
|
'gpu'?: number;
|
|
1027
|
+
/**
|
|
1028
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
1029
|
+
* @type {number}
|
|
1030
|
+
* @memberof Application
|
|
1031
|
+
*/
|
|
1032
|
+
'ephemeral_storage_in_gib'?: number;
|
|
1027
1033
|
/**
|
|
1028
1034
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running.
|
|
1029
1035
|
* @type {number}
|
|
@@ -1566,6 +1572,12 @@ export interface ApplicationEditRequest {
|
|
|
1566
1572
|
* @memberof ApplicationEditRequest
|
|
1567
1573
|
*/
|
|
1568
1574
|
'gpu'?: number;
|
|
1575
|
+
/**
|
|
1576
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
1577
|
+
* @type {number}
|
|
1578
|
+
* @memberof ApplicationEditRequest
|
|
1579
|
+
*/
|
|
1580
|
+
'ephemeral_storage_in_gib'?: number;
|
|
1569
1581
|
/**
|
|
1570
1582
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running.
|
|
1571
1583
|
* @type {number}
|
|
@@ -1865,6 +1877,12 @@ export interface ApplicationRequest {
|
|
|
1865
1877
|
* @memberof ApplicationRequest
|
|
1866
1878
|
*/
|
|
1867
1879
|
'gpu'?: number;
|
|
1880
|
+
/**
|
|
1881
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
1882
|
+
* @type {number}
|
|
1883
|
+
* @memberof ApplicationRequest
|
|
1884
|
+
*/
|
|
1885
|
+
'ephemeral_storage_in_gib'?: number;
|
|
1868
1886
|
/**
|
|
1869
1887
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running.
|
|
1870
1888
|
* @type {number}
|
|
@@ -3194,6 +3212,12 @@ export interface BaseJobResponse {
|
|
|
3194
3212
|
* @memberof BaseJobResponse
|
|
3195
3213
|
*/
|
|
3196
3214
|
'gpu': number;
|
|
3215
|
+
/**
|
|
3216
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
3217
|
+
* @type {number}
|
|
3218
|
+
* @memberof BaseJobResponse
|
|
3219
|
+
*/
|
|
3220
|
+
'ephemeral_storage_in_gib'?: number;
|
|
3197
3221
|
/**
|
|
3198
3222
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
3199
3223
|
* @type {number}
|
|
@@ -3505,11 +3529,11 @@ export interface BlueprintCreateRequest {
|
|
|
3505
3529
|
*/
|
|
3506
3530
|
'variables'?: Array<BlueprintVariableRequest>;
|
|
3507
3531
|
/**
|
|
3508
|
-
*
|
|
3509
|
-
* @type {
|
|
3532
|
+
*
|
|
3533
|
+
* @type {BlueprintSpecOverrides}
|
|
3510
3534
|
* @memberof BlueprintCreateRequest
|
|
3511
3535
|
*/
|
|
3512
|
-
'spec_overrides'?:
|
|
3536
|
+
'spec_overrides'?: BlueprintSpecOverrides;
|
|
3513
3537
|
}
|
|
3514
3538
|
/**
|
|
3515
3539
|
*
|
|
@@ -4113,6 +4137,69 @@ export interface BlueprintResponse {
|
|
|
4113
4137
|
*/
|
|
4114
4138
|
'environment_id': string;
|
|
4115
4139
|
}
|
|
4140
|
+
/**
|
|
4141
|
+
* Engine-level overrides applied on top of the blueprint manifest. Only fields whose corresponding manifest field is `overridable: true` are accepted; submitting a non-overridable field returns 422. **Terraform / OpenTofu blueprints** `engine_version` is **required** on create. The value must be one of the versions listed in `spec.engine.terraform.allowedValues` (or `opentofu.allowedValues`) in the manifest. **Helm blueprints** `engine_version`, `credentials`, and `backend` are ignored. Only `timeout` and the resource fields apply.
|
|
4142
|
+
* @export
|
|
4143
|
+
* @interface BlueprintSpecOverrides
|
|
4144
|
+
*/
|
|
4145
|
+
export interface BlueprintSpecOverrides {
|
|
4146
|
+
/**
|
|
4147
|
+
* Terraform or OpenTofu version to use for the apply job. Required when the blueprint engine type is `terraform` or `opentofu`. Must be one of the versions in the manifest\'s `allowedValues` list.
|
|
4148
|
+
* @type {string}
|
|
4149
|
+
* @memberof BlueprintSpecOverrides
|
|
4150
|
+
*/
|
|
4151
|
+
'engine_version'?: string;
|
|
4152
|
+
/**
|
|
4153
|
+
* How the apply job authenticates against the cloud provider. `cluster` reuses the cluster\'s cloud credentials (default). `env` expects the user to supply provider credentials as environment variables on the service.
|
|
4154
|
+
* @type {string}
|
|
4155
|
+
* @memberof BlueprintSpecOverrides
|
|
4156
|
+
*/
|
|
4157
|
+
'credentials'?: BlueprintSpecOverridesCredentialsEnum;
|
|
4158
|
+
/**
|
|
4159
|
+
* Where the Terraform state is stored. `qovery` stores state in a Kubernetes secret managed by Qovery (default). `user_provided` delegates to a user-controlled remote backend declared in the manifest\'s `backend.user_provided` block.
|
|
4160
|
+
* @type {string}
|
|
4161
|
+
* @memberof BlueprintSpecOverrides
|
|
4162
|
+
*/
|
|
4163
|
+
'backend'?: BlueprintSpecOverridesBackendEnum;
|
|
4164
|
+
/**
|
|
4165
|
+
* Maximum duration in seconds for a single apply job before it is marked as timed out. Overrides the manifest\'s `spec.engine.timeout`.
|
|
4166
|
+
* @type {number}
|
|
4167
|
+
* @memberof BlueprintSpecOverrides
|
|
4168
|
+
*/
|
|
4169
|
+
'timeout'?: number;
|
|
4170
|
+
/**
|
|
4171
|
+
* CPU request/limit for the apply job pod (Kubernetes-style, e.g. `500m`). Overrides `spec.engine.resources.cpu` in the manifest.
|
|
4172
|
+
* @type {string}
|
|
4173
|
+
* @memberof BlueprintSpecOverrides
|
|
4174
|
+
*/
|
|
4175
|
+
'cpu'?: string;
|
|
4176
|
+
/**
|
|
4177
|
+
* Memory request/limit for the apply job pod (e.g. `512Mi`, `1Gi`). Overrides `spec.engine.resources.ram` in the manifest.
|
|
4178
|
+
* @type {string}
|
|
4179
|
+
* @memberof BlueprintSpecOverrides
|
|
4180
|
+
*/
|
|
4181
|
+
'ram'?: string;
|
|
4182
|
+
/**
|
|
4183
|
+
* Ephemeral storage for the apply job pod — used for state files and provider plugins (e.g. `1Gi`). Overrides `spec.engine.resources.storage` in the manifest.
|
|
4184
|
+
* @type {string}
|
|
4185
|
+
* @memberof BlueprintSpecOverrides
|
|
4186
|
+
*/
|
|
4187
|
+
'storage'?: string;
|
|
4188
|
+
}
|
|
4189
|
+
|
|
4190
|
+
export const BlueprintSpecOverridesCredentialsEnum = {
|
|
4191
|
+
CLUSTER: 'cluster',
|
|
4192
|
+
ENV: 'env'
|
|
4193
|
+
} as const;
|
|
4194
|
+
|
|
4195
|
+
export type BlueprintSpecOverridesCredentialsEnum = typeof BlueprintSpecOverridesCredentialsEnum[keyof typeof BlueprintSpecOverridesCredentialsEnum];
|
|
4196
|
+
export const BlueprintSpecOverridesBackendEnum = {
|
|
4197
|
+
QOVERY: 'qovery',
|
|
4198
|
+
USER_PROVIDED: 'user_provided'
|
|
4199
|
+
} as const;
|
|
4200
|
+
|
|
4201
|
+
export type BlueprintSpecOverridesBackendEnum = typeof BlueprintSpecOverridesBackendEnum[keyof typeof BlueprintSpecOverridesBackendEnum];
|
|
4202
|
+
|
|
4116
4203
|
/**
|
|
4117
4204
|
* Catalog engine-block deltas between the current and latest blueprint tag.
|
|
4118
4205
|
* @export
|
|
@@ -4229,11 +4316,11 @@ export interface BlueprintUpdateRequest {
|
|
|
4229
4316
|
*/
|
|
4230
4317
|
'variables'?: { [key: string]: BlueprintUpdateVariableValue; };
|
|
4231
4318
|
/**
|
|
4232
|
-
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides
|
|
4233
|
-
* @type {
|
|
4319
|
+
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides (see `BlueprintSpecOverrides` for the list of valid fields). A non-null field value upserts the override; a null value removes it. Pass null or omit the field entirely to leave all existing overrides unchanged.
|
|
4320
|
+
* @type {BlueprintSpecOverrides}
|
|
4234
4321
|
* @memberof BlueprintUpdateRequest
|
|
4235
4322
|
*/
|
|
4236
|
-
'spec_overrides'?:
|
|
4323
|
+
'spec_overrides'?: BlueprintSpecOverrides | null;
|
|
4237
4324
|
}
|
|
4238
4325
|
/**
|
|
4239
4326
|
*
|
|
@@ -8302,6 +8389,12 @@ export interface ContainerRequest {
|
|
|
8302
8389
|
* @memberof ContainerRequest
|
|
8303
8390
|
*/
|
|
8304
8391
|
'gpu'?: number;
|
|
8392
|
+
/**
|
|
8393
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
8394
|
+
* @type {number}
|
|
8395
|
+
* @memberof ContainerRequest
|
|
8396
|
+
*/
|
|
8397
|
+
'ephemeral_storage_in_gib'?: number;
|
|
8305
8398
|
/**
|
|
8306
8399
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no container running.
|
|
8307
8400
|
* @type {number}
|
|
@@ -8477,6 +8570,12 @@ export interface ContainerResponse {
|
|
|
8477
8570
|
* @memberof ContainerResponse
|
|
8478
8571
|
*/
|
|
8479
8572
|
'gpu': number;
|
|
8573
|
+
/**
|
|
8574
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
8575
|
+
* @type {number}
|
|
8576
|
+
* @memberof ContainerResponse
|
|
8577
|
+
*/
|
|
8578
|
+
'ephemeral_storage_in_gib'?: number;
|
|
8480
8579
|
/**
|
|
8481
8580
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no container running.
|
|
8482
8581
|
* @type {number}
|
|
@@ -8994,6 +9093,12 @@ export interface CronJobResponse {
|
|
|
8994
9093
|
* @memberof CronJobResponse
|
|
8995
9094
|
*/
|
|
8996
9095
|
'gpu': number;
|
|
9096
|
+
/**
|
|
9097
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
9098
|
+
* @type {number}
|
|
9099
|
+
* @memberof CronJobResponse
|
|
9100
|
+
*/
|
|
9101
|
+
'ephemeral_storage_in_gib'?: number;
|
|
8997
9102
|
/**
|
|
8998
9103
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
8999
9104
|
* @type {number}
|
|
@@ -16233,6 +16338,12 @@ export interface JobRequest {
|
|
|
16233
16338
|
* @memberof JobRequest
|
|
16234
16339
|
*/
|
|
16235
16340
|
'gpu'?: number;
|
|
16341
|
+
/**
|
|
16342
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
16343
|
+
* @type {number}
|
|
16344
|
+
* @memberof JobRequest
|
|
16345
|
+
*/
|
|
16346
|
+
'ephemeral_storage_in_gib'?: number;
|
|
16236
16347
|
/**
|
|
16237
16348
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
16238
16349
|
* @type {number}
|
|
@@ -17407,6 +17518,12 @@ export interface LifecycleJobResponse {
|
|
|
17407
17518
|
* @memberof LifecycleJobResponse
|
|
17408
17519
|
*/
|
|
17409
17520
|
'gpu': number;
|
|
17521
|
+
/**
|
|
17522
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
17523
|
+
* @type {number}
|
|
17524
|
+
* @memberof LifecycleJobResponse
|
|
17525
|
+
*/
|
|
17526
|
+
'ephemeral_storage_in_gib'?: number;
|
|
17410
17527
|
/**
|
|
17411
17528
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
17412
17529
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -965,6 +965,12 @@ export interface Application {
|
|
|
965
965
|
* @memberof Application
|
|
966
966
|
*/
|
|
967
967
|
'gpu'?: number;
|
|
968
|
+
/**
|
|
969
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
970
|
+
* @type {number}
|
|
971
|
+
* @memberof Application
|
|
972
|
+
*/
|
|
973
|
+
'ephemeral_storage_in_gib'?: number;
|
|
968
974
|
/**
|
|
969
975
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running.
|
|
970
976
|
* @type {number}
|
|
@@ -1498,6 +1504,12 @@ export interface ApplicationEditRequest {
|
|
|
1498
1504
|
* @memberof ApplicationEditRequest
|
|
1499
1505
|
*/
|
|
1500
1506
|
'gpu'?: number;
|
|
1507
|
+
/**
|
|
1508
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
1509
|
+
* @type {number}
|
|
1510
|
+
* @memberof ApplicationEditRequest
|
|
1511
|
+
*/
|
|
1512
|
+
'ephemeral_storage_in_gib'?: number;
|
|
1501
1513
|
/**
|
|
1502
1514
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running.
|
|
1503
1515
|
* @type {number}
|
|
@@ -1791,6 +1803,12 @@ export interface ApplicationRequest {
|
|
|
1791
1803
|
* @memberof ApplicationRequest
|
|
1792
1804
|
*/
|
|
1793
1805
|
'gpu'?: number;
|
|
1806
|
+
/**
|
|
1807
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
1808
|
+
* @type {number}
|
|
1809
|
+
* @memberof ApplicationRequest
|
|
1810
|
+
*/
|
|
1811
|
+
'ephemeral_storage_in_gib'?: number;
|
|
1794
1812
|
/**
|
|
1795
1813
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running.
|
|
1796
1814
|
* @type {number}
|
|
@@ -3074,6 +3092,12 @@ export interface BaseJobResponse {
|
|
|
3074
3092
|
* @memberof BaseJobResponse
|
|
3075
3093
|
*/
|
|
3076
3094
|
'gpu': number;
|
|
3095
|
+
/**
|
|
3096
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
3097
|
+
* @type {number}
|
|
3098
|
+
* @memberof BaseJobResponse
|
|
3099
|
+
*/
|
|
3100
|
+
'ephemeral_storage_in_gib'?: number;
|
|
3077
3101
|
/**
|
|
3078
3102
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
3079
3103
|
* @type {number}
|
|
@@ -3382,13 +3406,11 @@ export interface BlueprintCreateRequest {
|
|
|
3382
3406
|
*/
|
|
3383
3407
|
'variables'?: Array<BlueprintVariableRequest>;
|
|
3384
3408
|
/**
|
|
3385
|
-
*
|
|
3386
|
-
* @type {
|
|
3409
|
+
*
|
|
3410
|
+
* @type {BlueprintSpecOverrides}
|
|
3387
3411
|
* @memberof BlueprintCreateRequest
|
|
3388
3412
|
*/
|
|
3389
|
-
'spec_overrides'?:
|
|
3390
|
-
[key: string]: any;
|
|
3391
|
-
} | null;
|
|
3413
|
+
'spec_overrides'?: BlueprintSpecOverrides;
|
|
3392
3414
|
}
|
|
3393
3415
|
/**
|
|
3394
3416
|
*
|
|
@@ -3984,6 +4006,65 @@ export interface BlueprintResponse {
|
|
|
3984
4006
|
*/
|
|
3985
4007
|
'environment_id': string;
|
|
3986
4008
|
}
|
|
4009
|
+
/**
|
|
4010
|
+
* Engine-level overrides applied on top of the blueprint manifest. Only fields whose corresponding manifest field is `overridable: true` are accepted; submitting a non-overridable field returns 422. **Terraform / OpenTofu blueprints** `engine_version` is **required** on create. The value must be one of the versions listed in `spec.engine.terraform.allowedValues` (or `opentofu.allowedValues`) in the manifest. **Helm blueprints** `engine_version`, `credentials`, and `backend` are ignored. Only `timeout` and the resource fields apply.
|
|
4011
|
+
* @export
|
|
4012
|
+
* @interface BlueprintSpecOverrides
|
|
4013
|
+
*/
|
|
4014
|
+
export interface BlueprintSpecOverrides {
|
|
4015
|
+
/**
|
|
4016
|
+
* Terraform or OpenTofu version to use for the apply job. Required when the blueprint engine type is `terraform` or `opentofu`. Must be one of the versions in the manifest\'s `allowedValues` list.
|
|
4017
|
+
* @type {string}
|
|
4018
|
+
* @memberof BlueprintSpecOverrides
|
|
4019
|
+
*/
|
|
4020
|
+
'engine_version'?: string;
|
|
4021
|
+
/**
|
|
4022
|
+
* How the apply job authenticates against the cloud provider. `cluster` reuses the cluster\'s cloud credentials (default). `env` expects the user to supply provider credentials as environment variables on the service.
|
|
4023
|
+
* @type {string}
|
|
4024
|
+
* @memberof BlueprintSpecOverrides
|
|
4025
|
+
*/
|
|
4026
|
+
'credentials'?: BlueprintSpecOverridesCredentialsEnum;
|
|
4027
|
+
/**
|
|
4028
|
+
* Where the Terraform state is stored. `qovery` stores state in a Kubernetes secret managed by Qovery (default). `user_provided` delegates to a user-controlled remote backend declared in the manifest\'s `backend.user_provided` block.
|
|
4029
|
+
* @type {string}
|
|
4030
|
+
* @memberof BlueprintSpecOverrides
|
|
4031
|
+
*/
|
|
4032
|
+
'backend'?: BlueprintSpecOverridesBackendEnum;
|
|
4033
|
+
/**
|
|
4034
|
+
* Maximum duration in seconds for a single apply job before it is marked as timed out. Overrides the manifest\'s `spec.engine.timeout`.
|
|
4035
|
+
* @type {number}
|
|
4036
|
+
* @memberof BlueprintSpecOverrides
|
|
4037
|
+
*/
|
|
4038
|
+
'timeout'?: number;
|
|
4039
|
+
/**
|
|
4040
|
+
* CPU request/limit for the apply job pod (Kubernetes-style, e.g. `500m`). Overrides `spec.engine.resources.cpu` in the manifest.
|
|
4041
|
+
* @type {string}
|
|
4042
|
+
* @memberof BlueprintSpecOverrides
|
|
4043
|
+
*/
|
|
4044
|
+
'cpu'?: string;
|
|
4045
|
+
/**
|
|
4046
|
+
* Memory request/limit for the apply job pod (e.g. `512Mi`, `1Gi`). Overrides `spec.engine.resources.ram` in the manifest.
|
|
4047
|
+
* @type {string}
|
|
4048
|
+
* @memberof BlueprintSpecOverrides
|
|
4049
|
+
*/
|
|
4050
|
+
'ram'?: string;
|
|
4051
|
+
/**
|
|
4052
|
+
* Ephemeral storage for the apply job pod — used for state files and provider plugins (e.g. `1Gi`). Overrides `spec.engine.resources.storage` in the manifest.
|
|
4053
|
+
* @type {string}
|
|
4054
|
+
* @memberof BlueprintSpecOverrides
|
|
4055
|
+
*/
|
|
4056
|
+
'storage'?: string;
|
|
4057
|
+
}
|
|
4058
|
+
export declare const BlueprintSpecOverridesCredentialsEnum: {
|
|
4059
|
+
readonly CLUSTER: "cluster";
|
|
4060
|
+
readonly ENV: "env";
|
|
4061
|
+
};
|
|
4062
|
+
export type BlueprintSpecOverridesCredentialsEnum = typeof BlueprintSpecOverridesCredentialsEnum[keyof typeof BlueprintSpecOverridesCredentialsEnum];
|
|
4063
|
+
export declare const BlueprintSpecOverridesBackendEnum: {
|
|
4064
|
+
readonly QOVERY: "qovery";
|
|
4065
|
+
readonly USER_PROVIDED: "user_provided";
|
|
4066
|
+
};
|
|
4067
|
+
export type BlueprintSpecOverridesBackendEnum = typeof BlueprintSpecOverridesBackendEnum[keyof typeof BlueprintSpecOverridesBackendEnum];
|
|
3987
4068
|
/**
|
|
3988
4069
|
* Catalog engine-block deltas between the current and latest blueprint tag.
|
|
3989
4070
|
* @export
|
|
@@ -4099,13 +4180,11 @@ export interface BlueprintUpdateRequest {
|
|
|
4099
4180
|
[key: string]: BlueprintUpdateVariableValue;
|
|
4100
4181
|
};
|
|
4101
4182
|
/**
|
|
4102
|
-
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides
|
|
4103
|
-
* @type {
|
|
4183
|
+
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides (see `BlueprintSpecOverrides` for the list of valid fields). A non-null field value upserts the override; a null value removes it. Pass null or omit the field entirely to leave all existing overrides unchanged.
|
|
4184
|
+
* @type {BlueprintSpecOverrides}
|
|
4104
4185
|
* @memberof BlueprintUpdateRequest
|
|
4105
4186
|
*/
|
|
4106
|
-
'spec_overrides'?:
|
|
4107
|
-
[key: string]: any | null;
|
|
4108
|
-
} | null;
|
|
4187
|
+
'spec_overrides'?: BlueprintSpecOverrides | null;
|
|
4109
4188
|
}
|
|
4110
4189
|
/**
|
|
4111
4190
|
*
|
|
@@ -8092,6 +8171,12 @@ export interface ContainerRequest {
|
|
|
8092
8171
|
* @memberof ContainerRequest
|
|
8093
8172
|
*/
|
|
8094
8173
|
'gpu'?: number;
|
|
8174
|
+
/**
|
|
8175
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
8176
|
+
* @type {number}
|
|
8177
|
+
* @memberof ContainerRequest
|
|
8178
|
+
*/
|
|
8179
|
+
'ephemeral_storage_in_gib'?: number;
|
|
8095
8180
|
/**
|
|
8096
8181
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no container running.
|
|
8097
8182
|
* @type {number}
|
|
@@ -8267,6 +8352,12 @@ export interface ContainerResponse {
|
|
|
8267
8352
|
* @memberof ContainerResponse
|
|
8268
8353
|
*/
|
|
8269
8354
|
'gpu': number;
|
|
8355
|
+
/**
|
|
8356
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
8357
|
+
* @type {number}
|
|
8358
|
+
* @memberof ContainerResponse
|
|
8359
|
+
*/
|
|
8360
|
+
'ephemeral_storage_in_gib'?: number;
|
|
8270
8361
|
/**
|
|
8271
8362
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no container running.
|
|
8272
8363
|
* @type {number}
|
|
@@ -8770,6 +8861,12 @@ export interface CronJobResponse {
|
|
|
8770
8861
|
* @memberof CronJobResponse
|
|
8771
8862
|
*/
|
|
8772
8863
|
'gpu': number;
|
|
8864
|
+
/**
|
|
8865
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
8866
|
+
* @type {number}
|
|
8867
|
+
* @memberof CronJobResponse
|
|
8868
|
+
*/
|
|
8869
|
+
'ephemeral_storage_in_gib'?: number;
|
|
8773
8870
|
/**
|
|
8774
8871
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
8775
8872
|
* @type {number}
|
|
@@ -15747,6 +15844,12 @@ export interface JobRequest {
|
|
|
15747
15844
|
* @memberof JobRequest
|
|
15748
15845
|
*/
|
|
15749
15846
|
'gpu'?: number;
|
|
15847
|
+
/**
|
|
15848
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
15849
|
+
* @type {number}
|
|
15850
|
+
* @memberof JobRequest
|
|
15851
|
+
*/
|
|
15852
|
+
'ephemeral_storage_in_gib'?: number;
|
|
15750
15853
|
/**
|
|
15751
15854
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
15752
15855
|
* @type {number}
|
|
@@ -16881,6 +16984,12 @@ export interface LifecycleJobResponse {
|
|
|
16881
16984
|
* @memberof LifecycleJobResponse
|
|
16882
16985
|
*/
|
|
16883
16986
|
'gpu': number;
|
|
16987
|
+
/**
|
|
16988
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
16989
|
+
* @type {number}
|
|
16990
|
+
* @memberof LifecycleJobResponse
|
|
16991
|
+
*/
|
|
16992
|
+
'ephemeral_storage_in_gib'?: number;
|
|
16884
16993
|
/**
|
|
16885
16994
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
16886
16995
|
* @type {number}
|
package/dist/api.js
CHANGED
|
@@ -22,18 +22,18 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.
|
|
36
|
-
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = void 0;
|
|
25
|
+
exports.ClusterDeleteMode = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = exports.ClusterAdvancedSettingsLokiDeploymentModeEnum = exports.CloudflareDnsProviderResponseProviderEnum = exports.CloudflareDnsProviderRequestProviderEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.BlueprintUpdatePreviewResponseServiceTypeEnum = exports.BlueprintSpecOverridesBackendEnum = exports.BlueprintSpecOverridesCredentialsEnum = exports.BlueprintManifestVariableFieldKindEnum = exports.BlueprintManifestFieldTypeTypeEnum = exports.BlueprintManifestEngineTerraformTypeEnum = exports.BlueprintManifestEngineOpenTofuTypeEnum = exports.BlueprintManifestEngineHelmTypeEnum = exports.BlueprintManifestContextVariableFieldKindEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticCredentialsAuthDtoModeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsSecretManagerEndpointDtoModeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AwsRoleArnAuthDtoModeEnum = exports.AwsParameterStoreEndpointDtoModeEnum = exports.AutoscalingMode = exports.AutomaticallyConfiguredAuthDtoModeEnum = exports.ArgocdAssociatedServiceType = exports.ArgoCdConnectionStatusEnum = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
|
|
26
|
+
exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = exports.GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = exports.GcpSecretManagerEndpointDtoModeEnum = exports.GcpJsonCredentialsAuthDtoModeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentInfraReason = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = exports.ContainerRegistryRequestConfigGcpCredentialsTypeEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = exports.ClusterDeploymentStatusEnum = void 0;
|
|
27
|
+
exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.Route53StaticCredentialsResponseTypeEnum = exports.Route53StaticCredentialsRequestTypeEnum = exports.Route53DnsProviderResponseProviderEnum = exports.Route53DnsProviderRequestProviderEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.QoveryDnsProviderResponseProviderEnum = exports.QoveryDnsProviderRequestProviderEnum = exports.PortProtocolEnum = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = void 0;
|
|
28
|
+
exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServicesOverviewResponseManagedByEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = void 0;
|
|
29
|
+
exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BlueprintMainCallsApi = exports.BlueprintMainCallsApiFactory = exports.BlueprintMainCallsApiFp = exports.BlueprintMainCallsApiAxiosParamCreator = exports.BlueprintCatalogApi = exports.BlueprintCatalogApiFactory = exports.BlueprintCatalogApiFp = exports.BlueprintCatalogApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = void 0;
|
|
30
|
+
exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = void 0;
|
|
31
|
+
exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = void 0;
|
|
32
|
+
exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = void 0;
|
|
33
|
+
exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = void 0;
|
|
34
|
+
exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = void 0;
|
|
35
|
+
exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = void 0;
|
|
36
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = void 0;
|
|
37
37
|
const axios_1 = require("axios");
|
|
38
38
|
// Some imports not used depending on template conditions
|
|
39
39
|
// @ts-ignore
|
|
@@ -272,6 +272,14 @@ exports.BlueprintManifestFieldTypeTypeEnum = {
|
|
|
272
272
|
exports.BlueprintManifestVariableFieldKindEnum = {
|
|
273
273
|
VARIABLE: 'variable'
|
|
274
274
|
};
|
|
275
|
+
exports.BlueprintSpecOverridesCredentialsEnum = {
|
|
276
|
+
CLUSTER: 'cluster',
|
|
277
|
+
ENV: 'env'
|
|
278
|
+
};
|
|
279
|
+
exports.BlueprintSpecOverridesBackendEnum = {
|
|
280
|
+
QOVERY: 'qovery',
|
|
281
|
+
USER_PROVIDED: 'user_provided'
|
|
282
|
+
};
|
|
275
283
|
exports.BlueprintUpdatePreviewResponseServiceTypeEnum = {
|
|
276
284
|
HELM: 'HELM',
|
|
277
285
|
TERRAFORM: 'TERRAFORM'
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -965,6 +965,12 @@ export interface Application {
|
|
|
965
965
|
* @memberof Application
|
|
966
966
|
*/
|
|
967
967
|
'gpu'?: number;
|
|
968
|
+
/**
|
|
969
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
970
|
+
* @type {number}
|
|
971
|
+
* @memberof Application
|
|
972
|
+
*/
|
|
973
|
+
'ephemeral_storage_in_gib'?: number;
|
|
968
974
|
/**
|
|
969
975
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running.
|
|
970
976
|
* @type {number}
|
|
@@ -1498,6 +1504,12 @@ export interface ApplicationEditRequest {
|
|
|
1498
1504
|
* @memberof ApplicationEditRequest
|
|
1499
1505
|
*/
|
|
1500
1506
|
'gpu'?: number;
|
|
1507
|
+
/**
|
|
1508
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
1509
|
+
* @type {number}
|
|
1510
|
+
* @memberof ApplicationEditRequest
|
|
1511
|
+
*/
|
|
1512
|
+
'ephemeral_storage_in_gib'?: number;
|
|
1501
1513
|
/**
|
|
1502
1514
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running.
|
|
1503
1515
|
* @type {number}
|
|
@@ -1791,6 +1803,12 @@ export interface ApplicationRequest {
|
|
|
1791
1803
|
* @memberof ApplicationRequest
|
|
1792
1804
|
*/
|
|
1793
1805
|
'gpu'?: number;
|
|
1806
|
+
/**
|
|
1807
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
1808
|
+
* @type {number}
|
|
1809
|
+
* @memberof ApplicationRequest
|
|
1810
|
+
*/
|
|
1811
|
+
'ephemeral_storage_in_gib'?: number;
|
|
1794
1812
|
/**
|
|
1795
1813
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running.
|
|
1796
1814
|
* @type {number}
|
|
@@ -3074,6 +3092,12 @@ export interface BaseJobResponse {
|
|
|
3074
3092
|
* @memberof BaseJobResponse
|
|
3075
3093
|
*/
|
|
3076
3094
|
'gpu': number;
|
|
3095
|
+
/**
|
|
3096
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
3097
|
+
* @type {number}
|
|
3098
|
+
* @memberof BaseJobResponse
|
|
3099
|
+
*/
|
|
3100
|
+
'ephemeral_storage_in_gib'?: number;
|
|
3077
3101
|
/**
|
|
3078
3102
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
3079
3103
|
* @type {number}
|
|
@@ -3382,13 +3406,11 @@ export interface BlueprintCreateRequest {
|
|
|
3382
3406
|
*/
|
|
3383
3407
|
'variables'?: Array<BlueprintVariableRequest>;
|
|
3384
3408
|
/**
|
|
3385
|
-
*
|
|
3386
|
-
* @type {
|
|
3409
|
+
*
|
|
3410
|
+
* @type {BlueprintSpecOverrides}
|
|
3387
3411
|
* @memberof BlueprintCreateRequest
|
|
3388
3412
|
*/
|
|
3389
|
-
'spec_overrides'?:
|
|
3390
|
-
[key: string]: any;
|
|
3391
|
-
} | null;
|
|
3413
|
+
'spec_overrides'?: BlueprintSpecOverrides;
|
|
3392
3414
|
}
|
|
3393
3415
|
/**
|
|
3394
3416
|
*
|
|
@@ -3984,6 +4006,65 @@ export interface BlueprintResponse {
|
|
|
3984
4006
|
*/
|
|
3985
4007
|
'environment_id': string;
|
|
3986
4008
|
}
|
|
4009
|
+
/**
|
|
4010
|
+
* Engine-level overrides applied on top of the blueprint manifest. Only fields whose corresponding manifest field is `overridable: true` are accepted; submitting a non-overridable field returns 422. **Terraform / OpenTofu blueprints** `engine_version` is **required** on create. The value must be one of the versions listed in `spec.engine.terraform.allowedValues` (or `opentofu.allowedValues`) in the manifest. **Helm blueprints** `engine_version`, `credentials`, and `backend` are ignored. Only `timeout` and the resource fields apply.
|
|
4011
|
+
* @export
|
|
4012
|
+
* @interface BlueprintSpecOverrides
|
|
4013
|
+
*/
|
|
4014
|
+
export interface BlueprintSpecOverrides {
|
|
4015
|
+
/**
|
|
4016
|
+
* Terraform or OpenTofu version to use for the apply job. Required when the blueprint engine type is `terraform` or `opentofu`. Must be one of the versions in the manifest\'s `allowedValues` list.
|
|
4017
|
+
* @type {string}
|
|
4018
|
+
* @memberof BlueprintSpecOverrides
|
|
4019
|
+
*/
|
|
4020
|
+
'engine_version'?: string;
|
|
4021
|
+
/**
|
|
4022
|
+
* How the apply job authenticates against the cloud provider. `cluster` reuses the cluster\'s cloud credentials (default). `env` expects the user to supply provider credentials as environment variables on the service.
|
|
4023
|
+
* @type {string}
|
|
4024
|
+
* @memberof BlueprintSpecOverrides
|
|
4025
|
+
*/
|
|
4026
|
+
'credentials'?: BlueprintSpecOverridesCredentialsEnum;
|
|
4027
|
+
/**
|
|
4028
|
+
* Where the Terraform state is stored. `qovery` stores state in a Kubernetes secret managed by Qovery (default). `user_provided` delegates to a user-controlled remote backend declared in the manifest\'s `backend.user_provided` block.
|
|
4029
|
+
* @type {string}
|
|
4030
|
+
* @memberof BlueprintSpecOverrides
|
|
4031
|
+
*/
|
|
4032
|
+
'backend'?: BlueprintSpecOverridesBackendEnum;
|
|
4033
|
+
/**
|
|
4034
|
+
* Maximum duration in seconds for a single apply job before it is marked as timed out. Overrides the manifest\'s `spec.engine.timeout`.
|
|
4035
|
+
* @type {number}
|
|
4036
|
+
* @memberof BlueprintSpecOverrides
|
|
4037
|
+
*/
|
|
4038
|
+
'timeout'?: number;
|
|
4039
|
+
/**
|
|
4040
|
+
* CPU request/limit for the apply job pod (Kubernetes-style, e.g. `500m`). Overrides `spec.engine.resources.cpu` in the manifest.
|
|
4041
|
+
* @type {string}
|
|
4042
|
+
* @memberof BlueprintSpecOverrides
|
|
4043
|
+
*/
|
|
4044
|
+
'cpu'?: string;
|
|
4045
|
+
/**
|
|
4046
|
+
* Memory request/limit for the apply job pod (e.g. `512Mi`, `1Gi`). Overrides `spec.engine.resources.ram` in the manifest.
|
|
4047
|
+
* @type {string}
|
|
4048
|
+
* @memberof BlueprintSpecOverrides
|
|
4049
|
+
*/
|
|
4050
|
+
'ram'?: string;
|
|
4051
|
+
/**
|
|
4052
|
+
* Ephemeral storage for the apply job pod — used for state files and provider plugins (e.g. `1Gi`). Overrides `spec.engine.resources.storage` in the manifest.
|
|
4053
|
+
* @type {string}
|
|
4054
|
+
* @memberof BlueprintSpecOverrides
|
|
4055
|
+
*/
|
|
4056
|
+
'storage'?: string;
|
|
4057
|
+
}
|
|
4058
|
+
export declare const BlueprintSpecOverridesCredentialsEnum: {
|
|
4059
|
+
readonly CLUSTER: "cluster";
|
|
4060
|
+
readonly ENV: "env";
|
|
4061
|
+
};
|
|
4062
|
+
export type BlueprintSpecOverridesCredentialsEnum = typeof BlueprintSpecOverridesCredentialsEnum[keyof typeof BlueprintSpecOverridesCredentialsEnum];
|
|
4063
|
+
export declare const BlueprintSpecOverridesBackendEnum: {
|
|
4064
|
+
readonly QOVERY: "qovery";
|
|
4065
|
+
readonly USER_PROVIDED: "user_provided";
|
|
4066
|
+
};
|
|
4067
|
+
export type BlueprintSpecOverridesBackendEnum = typeof BlueprintSpecOverridesBackendEnum[keyof typeof BlueprintSpecOverridesBackendEnum];
|
|
3987
4068
|
/**
|
|
3988
4069
|
* Catalog engine-block deltas between the current and latest blueprint tag.
|
|
3989
4070
|
* @export
|
|
@@ -4099,13 +4180,11 @@ export interface BlueprintUpdateRequest {
|
|
|
4099
4180
|
[key: string]: BlueprintUpdateVariableValue;
|
|
4100
4181
|
};
|
|
4101
4182
|
/**
|
|
4102
|
-
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides
|
|
4103
|
-
* @type {
|
|
4183
|
+
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides (see `BlueprintSpecOverrides` for the list of valid fields). A non-null field value upserts the override; a null value removes it. Pass null or omit the field entirely to leave all existing overrides unchanged.
|
|
4184
|
+
* @type {BlueprintSpecOverrides}
|
|
4104
4185
|
* @memberof BlueprintUpdateRequest
|
|
4105
4186
|
*/
|
|
4106
|
-
'spec_overrides'?:
|
|
4107
|
-
[key: string]: any | null;
|
|
4108
|
-
} | null;
|
|
4187
|
+
'spec_overrides'?: BlueprintSpecOverrides | null;
|
|
4109
4188
|
}
|
|
4110
4189
|
/**
|
|
4111
4190
|
*
|
|
@@ -8092,6 +8171,12 @@ export interface ContainerRequest {
|
|
|
8092
8171
|
* @memberof ContainerRequest
|
|
8093
8172
|
*/
|
|
8094
8173
|
'gpu'?: number;
|
|
8174
|
+
/**
|
|
8175
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
8176
|
+
* @type {number}
|
|
8177
|
+
* @memberof ContainerRequest
|
|
8178
|
+
*/
|
|
8179
|
+
'ephemeral_storage_in_gib'?: number;
|
|
8095
8180
|
/**
|
|
8096
8181
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no container running.
|
|
8097
8182
|
* @type {number}
|
|
@@ -8267,6 +8352,12 @@ export interface ContainerResponse {
|
|
|
8267
8352
|
* @memberof ContainerResponse
|
|
8268
8353
|
*/
|
|
8269
8354
|
'gpu': number;
|
|
8355
|
+
/**
|
|
8356
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
8357
|
+
* @type {number}
|
|
8358
|
+
* @memberof ContainerResponse
|
|
8359
|
+
*/
|
|
8360
|
+
'ephemeral_storage_in_gib'?: number;
|
|
8270
8361
|
/**
|
|
8271
8362
|
* Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no container running.
|
|
8272
8363
|
* @type {number}
|
|
@@ -8770,6 +8861,12 @@ export interface CronJobResponse {
|
|
|
8770
8861
|
* @memberof CronJobResponse
|
|
8771
8862
|
*/
|
|
8772
8863
|
'gpu': number;
|
|
8864
|
+
/**
|
|
8865
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
8866
|
+
* @type {number}
|
|
8867
|
+
* @memberof CronJobResponse
|
|
8868
|
+
*/
|
|
8869
|
+
'ephemeral_storage_in_gib'?: number;
|
|
8773
8870
|
/**
|
|
8774
8871
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
8775
8872
|
* @type {number}
|
|
@@ -15747,6 +15844,12 @@ export interface JobRequest {
|
|
|
15747
15844
|
* @memberof JobRequest
|
|
15748
15845
|
*/
|
|
15749
15846
|
'gpu'?: number;
|
|
15847
|
+
/**
|
|
15848
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
15849
|
+
* @type {number}
|
|
15850
|
+
* @memberof JobRequest
|
|
15851
|
+
*/
|
|
15852
|
+
'ephemeral_storage_in_gib'?: number;
|
|
15750
15853
|
/**
|
|
15751
15854
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
15752
15855
|
* @type {number}
|
|
@@ -16881,6 +16984,12 @@ export interface LifecycleJobResponse {
|
|
|
16881
16984
|
* @memberof LifecycleJobResponse
|
|
16882
16985
|
*/
|
|
16883
16986
|
'gpu': number;
|
|
16987
|
+
/**
|
|
16988
|
+
* Ephemeral storage of the service in GiB. When omitted, the platform default is used.
|
|
16989
|
+
* @type {number}
|
|
16990
|
+
* @memberof LifecycleJobResponse
|
|
16991
|
+
*/
|
|
16992
|
+
'ephemeral_storage_in_gib'?: number;
|
|
16884
16993
|
/**
|
|
16885
16994
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
16886
16995
|
* @type {number}
|
package/dist/esm/api.js
CHANGED
|
@@ -258,6 +258,14 @@ export const BlueprintManifestFieldTypeTypeEnum = {
|
|
|
258
258
|
export const BlueprintManifestVariableFieldKindEnum = {
|
|
259
259
|
VARIABLE: 'variable'
|
|
260
260
|
};
|
|
261
|
+
export const BlueprintSpecOverridesCredentialsEnum = {
|
|
262
|
+
CLUSTER: 'cluster',
|
|
263
|
+
ENV: 'env'
|
|
264
|
+
};
|
|
265
|
+
export const BlueprintSpecOverridesBackendEnum = {
|
|
266
|
+
QOVERY: 'qovery',
|
|
267
|
+
USER_PROVIDED: 'user_provided'
|
|
268
|
+
};
|
|
261
269
|
export const BlueprintUpdatePreviewResponseServiceTypeEnum = {
|
|
262
270
|
HELM: 'HELM',
|
|
263
271
|
TERRAFORM: 'TERRAFORM'
|