qovery-typescript-axios 1.1.914 → 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 +54 -0
- package/dist/api.d.ts +54 -0
- package/dist/esm/api.d.ts +54 -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}
|
|
@@ -8365,6 +8389,12 @@ export interface ContainerRequest {
|
|
|
8365
8389
|
* @memberof ContainerRequest
|
|
8366
8390
|
*/
|
|
8367
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;
|
|
8368
8398
|
/**
|
|
8369
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.
|
|
8370
8400
|
* @type {number}
|
|
@@ -8540,6 +8570,12 @@ export interface ContainerResponse {
|
|
|
8540
8570
|
* @memberof ContainerResponse
|
|
8541
8571
|
*/
|
|
8542
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;
|
|
8543
8579
|
/**
|
|
8544
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.
|
|
8545
8581
|
* @type {number}
|
|
@@ -9057,6 +9093,12 @@ export interface CronJobResponse {
|
|
|
9057
9093
|
* @memberof CronJobResponse
|
|
9058
9094
|
*/
|
|
9059
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;
|
|
9060
9102
|
/**
|
|
9061
9103
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
9062
9104
|
* @type {number}
|
|
@@ -16296,6 +16338,12 @@ export interface JobRequest {
|
|
|
16296
16338
|
* @memberof JobRequest
|
|
16297
16339
|
*/
|
|
16298
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;
|
|
16299
16347
|
/**
|
|
16300
16348
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
16301
16349
|
* @type {number}
|
|
@@ -17470,6 +17518,12 @@ export interface LifecycleJobResponse {
|
|
|
17470
17518
|
* @memberof LifecycleJobResponse
|
|
17471
17519
|
*/
|
|
17472
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;
|
|
17473
17527
|
/**
|
|
17474
17528
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
17475
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}
|
|
@@ -8147,6 +8171,12 @@ export interface ContainerRequest {
|
|
|
8147
8171
|
* @memberof ContainerRequest
|
|
8148
8172
|
*/
|
|
8149
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;
|
|
8150
8180
|
/**
|
|
8151
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.
|
|
8152
8182
|
* @type {number}
|
|
@@ -8322,6 +8352,12 @@ export interface ContainerResponse {
|
|
|
8322
8352
|
* @memberof ContainerResponse
|
|
8323
8353
|
*/
|
|
8324
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;
|
|
8325
8361
|
/**
|
|
8326
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.
|
|
8327
8363
|
* @type {number}
|
|
@@ -8825,6 +8861,12 @@ export interface CronJobResponse {
|
|
|
8825
8861
|
* @memberof CronJobResponse
|
|
8826
8862
|
*/
|
|
8827
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;
|
|
8828
8870
|
/**
|
|
8829
8871
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
8830
8872
|
* @type {number}
|
|
@@ -15802,6 +15844,12 @@ export interface JobRequest {
|
|
|
15802
15844
|
* @memberof JobRequest
|
|
15803
15845
|
*/
|
|
15804
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;
|
|
15805
15853
|
/**
|
|
15806
15854
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
15807
15855
|
* @type {number}
|
|
@@ -16936,6 +16984,12 @@ export interface LifecycleJobResponse {
|
|
|
16936
16984
|
* @memberof LifecycleJobResponse
|
|
16937
16985
|
*/
|
|
16938
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;
|
|
16939
16993
|
/**
|
|
16940
16994
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
16941
16995
|
* @type {number}
|
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}
|
|
@@ -8147,6 +8171,12 @@ export interface ContainerRequest {
|
|
|
8147
8171
|
* @memberof ContainerRequest
|
|
8148
8172
|
*/
|
|
8149
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;
|
|
8150
8180
|
/**
|
|
8151
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.
|
|
8152
8182
|
* @type {number}
|
|
@@ -8322,6 +8352,12 @@ export interface ContainerResponse {
|
|
|
8322
8352
|
* @memberof ContainerResponse
|
|
8323
8353
|
*/
|
|
8324
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;
|
|
8325
8361
|
/**
|
|
8326
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.
|
|
8327
8363
|
* @type {number}
|
|
@@ -8825,6 +8861,12 @@ export interface CronJobResponse {
|
|
|
8825
8861
|
* @memberof CronJobResponse
|
|
8826
8862
|
*/
|
|
8827
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;
|
|
8828
8870
|
/**
|
|
8829
8871
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
8830
8872
|
* @type {number}
|
|
@@ -15802,6 +15844,12 @@ export interface JobRequest {
|
|
|
15802
15844
|
* @memberof JobRequest
|
|
15803
15845
|
*/
|
|
15804
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;
|
|
15805
15853
|
/**
|
|
15806
15854
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
15807
15855
|
* @type {number}
|
|
@@ -16936,6 +16984,12 @@ export interface LifecycleJobResponse {
|
|
|
16936
16984
|
* @memberof LifecycleJobResponse
|
|
16937
16985
|
*/
|
|
16938
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;
|
|
16939
16993
|
/**
|
|
16940
16994
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
16941
16995
|
* @type {number}
|