qovery-typescript-axios 1.1.916 → 1.1.918
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 +61 -3
- package/dist/api.d.ts +57 -3
- package/dist/esm/api.d.ts +57 -3
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1030,6 +1030,12 @@ export interface Application {
|
|
|
1030
1030
|
* @memberof Application
|
|
1031
1031
|
*/
|
|
1032
1032
|
'ephemeral_storage_in_gib'?: number;
|
|
1033
|
+
/**
|
|
1034
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
1035
|
+
* @type {CpuArchitectureEnum}
|
|
1036
|
+
* @memberof Application
|
|
1037
|
+
*/
|
|
1038
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
1033
1039
|
/**
|
|
1034
1040
|
* 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.
|
|
1035
1041
|
* @type {number}
|
|
@@ -1650,6 +1656,12 @@ export interface ApplicationEditRequest {
|
|
|
1650
1656
|
* @memberof ApplicationEditRequest
|
|
1651
1657
|
*/
|
|
1652
1658
|
'docker_target_build_stage'?: string | null;
|
|
1659
|
+
/**
|
|
1660
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
1661
|
+
* @type {CpuArchitectureEnum}
|
|
1662
|
+
* @memberof ApplicationEditRequest
|
|
1663
|
+
*/
|
|
1664
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
1653
1665
|
/**
|
|
1654
1666
|
*
|
|
1655
1667
|
* @type {AutoscalingPolicyRequest}
|
|
@@ -1949,6 +1961,12 @@ export interface ApplicationRequest {
|
|
|
1949
1961
|
* @memberof ApplicationRequest
|
|
1950
1962
|
*/
|
|
1951
1963
|
'docker_target_build_stage'?: string | null;
|
|
1964
|
+
/**
|
|
1965
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
1966
|
+
* @type {CpuArchitectureEnum}
|
|
1967
|
+
* @memberof ApplicationRequest
|
|
1968
|
+
*/
|
|
1969
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
1952
1970
|
/**
|
|
1953
1971
|
*
|
|
1954
1972
|
* @type {AutoscalingPolicyRequest}
|
|
@@ -3218,6 +3236,12 @@ export interface BaseJobResponse {
|
|
|
3218
3236
|
* @memberof BaseJobResponse
|
|
3219
3237
|
*/
|
|
3220
3238
|
'ephemeral_storage_in_gib'?: number;
|
|
3239
|
+
/**
|
|
3240
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
3241
|
+
* @type {CpuArchitectureEnum}
|
|
3242
|
+
* @memberof BaseJobResponse
|
|
3243
|
+
*/
|
|
3244
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
3221
3245
|
/**
|
|
3222
3246
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
3223
3247
|
* @type {number}
|
|
@@ -5547,11 +5571,11 @@ export interface ClusterAnalysisRequest {
|
|
|
5547
5571
|
*/
|
|
5548
5572
|
'prometheus_url'?: string | null;
|
|
5549
5573
|
/**
|
|
5550
|
-
* Optional
|
|
5551
|
-
* @type {
|
|
5574
|
+
* Optional allowlisted KRR arguments for COST_RECOMMENDATION analysis. The engine validates and rejects unsupported or unsafe KRR flags.
|
|
5575
|
+
* @type {Array<string>}
|
|
5552
5576
|
* @memberof ClusterAnalysisRequest
|
|
5553
5577
|
*/
|
|
5554
|
-
'
|
|
5578
|
+
'cmd_args'?: Array<string>;
|
|
5555
5579
|
/**
|
|
5556
5580
|
* Optional target Kubernetes version for DEPRECATED_API_CHECK analysis.
|
|
5557
5581
|
* @type {string}
|
|
@@ -8606,6 +8630,12 @@ export interface ContainerRequest {
|
|
|
8606
8630
|
* @memberof ContainerRequest
|
|
8607
8631
|
*/
|
|
8608
8632
|
'ephemeral_storage_in_gib'?: number;
|
|
8633
|
+
/**
|
|
8634
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
8635
|
+
* @type {CpuArchitectureEnum}
|
|
8636
|
+
* @memberof ContainerRequest
|
|
8637
|
+
*/
|
|
8638
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
8609
8639
|
/**
|
|
8610
8640
|
* 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.
|
|
8611
8641
|
* @type {number}
|
|
@@ -8661,6 +8691,8 @@ export interface ContainerRequest {
|
|
|
8661
8691
|
*/
|
|
8662
8692
|
'autoscaling'?: AutoscalingPolicyRequest;
|
|
8663
8693
|
}
|
|
8694
|
+
|
|
8695
|
+
|
|
8664
8696
|
/**
|
|
8665
8697
|
*
|
|
8666
8698
|
* @export
|
|
@@ -8787,6 +8819,12 @@ export interface ContainerResponse {
|
|
|
8787
8819
|
* @memberof ContainerResponse
|
|
8788
8820
|
*/
|
|
8789
8821
|
'ephemeral_storage_in_gib'?: number;
|
|
8822
|
+
/**
|
|
8823
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
8824
|
+
* @type {CpuArchitectureEnum}
|
|
8825
|
+
* @memberof ContainerResponse
|
|
8826
|
+
*/
|
|
8827
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
8790
8828
|
/**
|
|
8791
8829
|
* 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.
|
|
8792
8830
|
* @type {number}
|
|
@@ -9310,6 +9348,12 @@ export interface CronJobResponse {
|
|
|
9310
9348
|
* @memberof CronJobResponse
|
|
9311
9349
|
*/
|
|
9312
9350
|
'ephemeral_storage_in_gib'?: number;
|
|
9351
|
+
/**
|
|
9352
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
9353
|
+
* @type {CpuArchitectureEnum}
|
|
9354
|
+
* @memberof CronJobResponse
|
|
9355
|
+
*/
|
|
9356
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
9313
9357
|
/**
|
|
9314
9358
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
9315
9359
|
* @type {number}
|
|
@@ -16585,6 +16629,12 @@ export interface JobRequest {
|
|
|
16585
16629
|
* @memberof JobRequest
|
|
16586
16630
|
*/
|
|
16587
16631
|
'source'?: JobRequestAllOfSource;
|
|
16632
|
+
/**
|
|
16633
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
16634
|
+
* @type {CpuArchitectureEnum}
|
|
16635
|
+
* @memberof JobRequest
|
|
16636
|
+
*/
|
|
16637
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
16588
16638
|
/**
|
|
16589
16639
|
*
|
|
16590
16640
|
* @type {Healthcheck}
|
|
@@ -16622,6 +16672,8 @@ export interface JobRequest {
|
|
|
16622
16672
|
*/
|
|
16623
16673
|
'icon_uri'?: string;
|
|
16624
16674
|
}
|
|
16675
|
+
|
|
16676
|
+
|
|
16625
16677
|
/**
|
|
16626
16678
|
* If you want to define a Cron job, only the `cronjob` property must be filled A Lifecycle job should contain at least one property `on_XXX` among the 3 properties: `on_start`, `on_stop`, `on_delete`
|
|
16627
16679
|
* @export
|
|
@@ -17735,6 +17787,12 @@ export interface LifecycleJobResponse {
|
|
|
17735
17787
|
* @memberof LifecycleJobResponse
|
|
17736
17788
|
*/
|
|
17737
17789
|
'ephemeral_storage_in_gib'?: number;
|
|
17790
|
+
/**
|
|
17791
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
17792
|
+
* @type {CpuArchitectureEnum}
|
|
17793
|
+
* @memberof LifecycleJobResponse
|
|
17794
|
+
*/
|
|
17795
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
17738
17796
|
/**
|
|
17739
17797
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
17740
17798
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -971,6 +971,12 @@ export interface Application {
|
|
|
971
971
|
* @memberof Application
|
|
972
972
|
*/
|
|
973
973
|
'ephemeral_storage_in_gib'?: number;
|
|
974
|
+
/**
|
|
975
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
976
|
+
* @type {CpuArchitectureEnum}
|
|
977
|
+
* @memberof Application
|
|
978
|
+
*/
|
|
979
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
974
980
|
/**
|
|
975
981
|
* 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.
|
|
976
982
|
* @type {number}
|
|
@@ -1582,6 +1588,12 @@ export interface ApplicationEditRequest {
|
|
|
1582
1588
|
* @memberof ApplicationEditRequest
|
|
1583
1589
|
*/
|
|
1584
1590
|
'docker_target_build_stage'?: string | null;
|
|
1591
|
+
/**
|
|
1592
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
1593
|
+
* @type {CpuArchitectureEnum}
|
|
1594
|
+
* @memberof ApplicationEditRequest
|
|
1595
|
+
*/
|
|
1596
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
1585
1597
|
/**
|
|
1586
1598
|
*
|
|
1587
1599
|
* @type {AutoscalingPolicyRequest}
|
|
@@ -1875,6 +1887,12 @@ export interface ApplicationRequest {
|
|
|
1875
1887
|
* @memberof ApplicationRequest
|
|
1876
1888
|
*/
|
|
1877
1889
|
'docker_target_build_stage'?: string | null;
|
|
1890
|
+
/**
|
|
1891
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
1892
|
+
* @type {CpuArchitectureEnum}
|
|
1893
|
+
* @memberof ApplicationRequest
|
|
1894
|
+
*/
|
|
1895
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
1878
1896
|
/**
|
|
1879
1897
|
*
|
|
1880
1898
|
* @type {AutoscalingPolicyRequest}
|
|
@@ -3098,6 +3116,12 @@ export interface BaseJobResponse {
|
|
|
3098
3116
|
* @memberof BaseJobResponse
|
|
3099
3117
|
*/
|
|
3100
3118
|
'ephemeral_storage_in_gib'?: number;
|
|
3119
|
+
/**
|
|
3120
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
3121
|
+
* @type {CpuArchitectureEnum}
|
|
3122
|
+
* @memberof BaseJobResponse
|
|
3123
|
+
*/
|
|
3124
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
3101
3125
|
/**
|
|
3102
3126
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
3103
3127
|
* @type {number}
|
|
@@ -5370,11 +5394,11 @@ export interface ClusterAnalysisRequest {
|
|
|
5370
5394
|
*/
|
|
5371
5395
|
'prometheus_url'?: string | null;
|
|
5372
5396
|
/**
|
|
5373
|
-
* Optional
|
|
5374
|
-
* @type {
|
|
5397
|
+
* Optional allowlisted KRR arguments for COST_RECOMMENDATION analysis. The engine validates and rejects unsupported or unsafe KRR flags.
|
|
5398
|
+
* @type {Array<string>}
|
|
5375
5399
|
* @memberof ClusterAnalysisRequest
|
|
5376
5400
|
*/
|
|
5377
|
-
'
|
|
5401
|
+
'cmd_args'?: Array<string>;
|
|
5378
5402
|
/**
|
|
5379
5403
|
* Optional target Kubernetes version for DEPRECATED_API_CHECK analysis.
|
|
5380
5404
|
* @type {string}
|
|
@@ -8372,6 +8396,12 @@ export interface ContainerRequest {
|
|
|
8372
8396
|
* @memberof ContainerRequest
|
|
8373
8397
|
*/
|
|
8374
8398
|
'ephemeral_storage_in_gib'?: number;
|
|
8399
|
+
/**
|
|
8400
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
8401
|
+
* @type {CpuArchitectureEnum}
|
|
8402
|
+
* @memberof ContainerRequest
|
|
8403
|
+
*/
|
|
8404
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
8375
8405
|
/**
|
|
8376
8406
|
* 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.
|
|
8377
8407
|
* @type {number}
|
|
@@ -8553,6 +8583,12 @@ export interface ContainerResponse {
|
|
|
8553
8583
|
* @memberof ContainerResponse
|
|
8554
8584
|
*/
|
|
8555
8585
|
'ephemeral_storage_in_gib'?: number;
|
|
8586
|
+
/**
|
|
8587
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
8588
|
+
* @type {CpuArchitectureEnum}
|
|
8589
|
+
* @memberof ContainerResponse
|
|
8590
|
+
*/
|
|
8591
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
8556
8592
|
/**
|
|
8557
8593
|
* 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.
|
|
8558
8594
|
* @type {number}
|
|
@@ -9062,6 +9098,12 @@ export interface CronJobResponse {
|
|
|
9062
9098
|
* @memberof CronJobResponse
|
|
9063
9099
|
*/
|
|
9064
9100
|
'ephemeral_storage_in_gib'?: number;
|
|
9101
|
+
/**
|
|
9102
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
9103
|
+
* @type {CpuArchitectureEnum}
|
|
9104
|
+
* @memberof CronJobResponse
|
|
9105
|
+
*/
|
|
9106
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
9065
9107
|
/**
|
|
9066
9108
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
9067
9109
|
* @type {number}
|
|
@@ -16075,6 +16117,12 @@ export interface JobRequest {
|
|
|
16075
16117
|
* @memberof JobRequest
|
|
16076
16118
|
*/
|
|
16077
16119
|
'source'?: JobRequestAllOfSource;
|
|
16120
|
+
/**
|
|
16121
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
16122
|
+
* @type {CpuArchitectureEnum}
|
|
16123
|
+
* @memberof JobRequest
|
|
16124
|
+
*/
|
|
16125
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
16078
16126
|
/**
|
|
16079
16127
|
*
|
|
16080
16128
|
* @type {Healthcheck}
|
|
@@ -17185,6 +17233,12 @@ export interface LifecycleJobResponse {
|
|
|
17185
17233
|
* @memberof LifecycleJobResponse
|
|
17186
17234
|
*/
|
|
17187
17235
|
'ephemeral_storage_in_gib'?: number;
|
|
17236
|
+
/**
|
|
17237
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
17238
|
+
* @type {CpuArchitectureEnum}
|
|
17239
|
+
* @memberof LifecycleJobResponse
|
|
17240
|
+
*/
|
|
17241
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
17188
17242
|
/**
|
|
17189
17243
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
17190
17244
|
* @type {number}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -971,6 +971,12 @@ export interface Application {
|
|
|
971
971
|
* @memberof Application
|
|
972
972
|
*/
|
|
973
973
|
'ephemeral_storage_in_gib'?: number;
|
|
974
|
+
/**
|
|
975
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
976
|
+
* @type {CpuArchitectureEnum}
|
|
977
|
+
* @memberof Application
|
|
978
|
+
*/
|
|
979
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
974
980
|
/**
|
|
975
981
|
* 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.
|
|
976
982
|
* @type {number}
|
|
@@ -1582,6 +1588,12 @@ export interface ApplicationEditRequest {
|
|
|
1582
1588
|
* @memberof ApplicationEditRequest
|
|
1583
1589
|
*/
|
|
1584
1590
|
'docker_target_build_stage'?: string | null;
|
|
1591
|
+
/**
|
|
1592
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
1593
|
+
* @type {CpuArchitectureEnum}
|
|
1594
|
+
* @memberof ApplicationEditRequest
|
|
1595
|
+
*/
|
|
1596
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
1585
1597
|
/**
|
|
1586
1598
|
*
|
|
1587
1599
|
* @type {AutoscalingPolicyRequest}
|
|
@@ -1875,6 +1887,12 @@ export interface ApplicationRequest {
|
|
|
1875
1887
|
* @memberof ApplicationRequest
|
|
1876
1888
|
*/
|
|
1877
1889
|
'docker_target_build_stage'?: string | null;
|
|
1890
|
+
/**
|
|
1891
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
1892
|
+
* @type {CpuArchitectureEnum}
|
|
1893
|
+
* @memberof ApplicationRequest
|
|
1894
|
+
*/
|
|
1895
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
1878
1896
|
/**
|
|
1879
1897
|
*
|
|
1880
1898
|
* @type {AutoscalingPolicyRequest}
|
|
@@ -3098,6 +3116,12 @@ export interface BaseJobResponse {
|
|
|
3098
3116
|
* @memberof BaseJobResponse
|
|
3099
3117
|
*/
|
|
3100
3118
|
'ephemeral_storage_in_gib'?: number;
|
|
3119
|
+
/**
|
|
3120
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
3121
|
+
* @type {CpuArchitectureEnum}
|
|
3122
|
+
* @memberof BaseJobResponse
|
|
3123
|
+
*/
|
|
3124
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
3101
3125
|
/**
|
|
3102
3126
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
3103
3127
|
* @type {number}
|
|
@@ -5370,11 +5394,11 @@ export interface ClusterAnalysisRequest {
|
|
|
5370
5394
|
*/
|
|
5371
5395
|
'prometheus_url'?: string | null;
|
|
5372
5396
|
/**
|
|
5373
|
-
* Optional
|
|
5374
|
-
* @type {
|
|
5397
|
+
* Optional allowlisted KRR arguments for COST_RECOMMENDATION analysis. The engine validates and rejects unsupported or unsafe KRR flags.
|
|
5398
|
+
* @type {Array<string>}
|
|
5375
5399
|
* @memberof ClusterAnalysisRequest
|
|
5376
5400
|
*/
|
|
5377
|
-
'
|
|
5401
|
+
'cmd_args'?: Array<string>;
|
|
5378
5402
|
/**
|
|
5379
5403
|
* Optional target Kubernetes version for DEPRECATED_API_CHECK analysis.
|
|
5380
5404
|
* @type {string}
|
|
@@ -8372,6 +8396,12 @@ export interface ContainerRequest {
|
|
|
8372
8396
|
* @memberof ContainerRequest
|
|
8373
8397
|
*/
|
|
8374
8398
|
'ephemeral_storage_in_gib'?: number;
|
|
8399
|
+
/**
|
|
8400
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
8401
|
+
* @type {CpuArchitectureEnum}
|
|
8402
|
+
* @memberof ContainerRequest
|
|
8403
|
+
*/
|
|
8404
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
8375
8405
|
/**
|
|
8376
8406
|
* 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.
|
|
8377
8407
|
* @type {number}
|
|
@@ -8553,6 +8583,12 @@ export interface ContainerResponse {
|
|
|
8553
8583
|
* @memberof ContainerResponse
|
|
8554
8584
|
*/
|
|
8555
8585
|
'ephemeral_storage_in_gib'?: number;
|
|
8586
|
+
/**
|
|
8587
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
8588
|
+
* @type {CpuArchitectureEnum}
|
|
8589
|
+
* @memberof ContainerResponse
|
|
8590
|
+
*/
|
|
8591
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
8556
8592
|
/**
|
|
8557
8593
|
* 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.
|
|
8558
8594
|
* @type {number}
|
|
@@ -9062,6 +9098,12 @@ export interface CronJobResponse {
|
|
|
9062
9098
|
* @memberof CronJobResponse
|
|
9063
9099
|
*/
|
|
9064
9100
|
'ephemeral_storage_in_gib'?: number;
|
|
9101
|
+
/**
|
|
9102
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
9103
|
+
* @type {CpuArchitectureEnum}
|
|
9104
|
+
* @memberof CronJobResponse
|
|
9105
|
+
*/
|
|
9106
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
9065
9107
|
/**
|
|
9066
9108
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
9067
9109
|
* @type {number}
|
|
@@ -16075,6 +16117,12 @@ export interface JobRequest {
|
|
|
16075
16117
|
* @memberof JobRequest
|
|
16076
16118
|
*/
|
|
16077
16119
|
'source'?: JobRequestAllOfSource;
|
|
16120
|
+
/**
|
|
16121
|
+
* CPU architecture to run this service on. If null, the cluster default architecture is used.
|
|
16122
|
+
* @type {CpuArchitectureEnum}
|
|
16123
|
+
* @memberof JobRequest
|
|
16124
|
+
*/
|
|
16125
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
16078
16126
|
/**
|
|
16079
16127
|
*
|
|
16080
16128
|
* @type {Healthcheck}
|
|
@@ -17185,6 +17233,12 @@ export interface LifecycleJobResponse {
|
|
|
17185
17233
|
* @memberof LifecycleJobResponse
|
|
17186
17234
|
*/
|
|
17187
17235
|
'ephemeral_storage_in_gib'?: number;
|
|
17236
|
+
/**
|
|
17237
|
+
* CPU architecture this service runs on. If null, the cluster default architecture is used.
|
|
17238
|
+
* @type {CpuArchitectureEnum}
|
|
17239
|
+
* @memberof LifecycleJobResponse
|
|
17240
|
+
*/
|
|
17241
|
+
'cpu_architecture'?: CpuArchitectureEnum | null;
|
|
17188
17242
|
/**
|
|
17189
17243
|
* Maximum number of restart allowed before the job is considered as failed 0 means that no restart/crash of the job is allowed
|
|
17190
17244
|
* @type {number}
|