qovery-typescript-axios 1.1.982 → 1.1.984

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 CHANGED
@@ -1762,32 +1762,44 @@ export interface ApplicationAdvancedSettings {
1762
1762
  *
1763
1763
  * @type {number}
1764
1764
  * @memberof ApplicationAdvancedSettings
1765
+ * @deprecated
1765
1766
  */
1766
1767
  'build.timeout_max_sec'?: number;
1767
1768
  /**
1768
1769
  * define the max cpu resources (in milli)
1769
1770
  * @type {number}
1770
1771
  * @memberof ApplicationAdvancedSettings
1772
+ * @deprecated
1771
1773
  */
1772
1774
  'build.cpu_max_in_milli'?: number;
1773
1775
  /**
1774
1776
  * define the max ram resources (in gib)
1775
1777
  * @type {number}
1776
1778
  * @memberof ApplicationAdvancedSettings
1779
+ * @deprecated
1777
1780
  */
1778
1781
  'build.ram_max_in_gib'?: number;
1779
1782
  /**
1780
1783
  * disable buildkit registry cache during build
1781
1784
  * @type {boolean}
1782
1785
  * @memberof ApplicationAdvancedSettings
1786
+ * @deprecated
1783
1787
  */
1784
1788
  'build.disable_buildkit_cache'?: boolean;
1785
1789
  /**
1786
1790
  * skip git submodules update when cloning the repository
1787
1791
  * @type {boolean}
1788
1792
  * @memberof ApplicationAdvancedSettings
1793
+ * @deprecated
1789
1794
  */
1790
1795
  'build.skip_git_submodules'?: boolean;
1796
+ /**
1797
+ * Ephemeral storage for the build (in GiB)
1798
+ * @type {number}
1799
+ * @memberof ApplicationAdvancedSettings
1800
+ * @deprecated
1801
+ */
1802
+ 'build.ephemeral_storage_in_gib'?: number;
1791
1803
  /**
1792
1804
  *
1793
1805
  * @type {number}
@@ -2237,6 +2249,12 @@ export interface ApplicationEditRequest {
2237
2249
  * @memberof ApplicationEditRequest
2238
2250
  */
2239
2251
  'autoscaling'?: AutoscalingPolicyRequest;
2252
+ /**
2253
+ *
2254
+ * @type {BuildSettings}
2255
+ * @memberof ApplicationEditRequest
2256
+ */
2257
+ 'build_settings'?: BuildSettings;
2240
2258
  }
2241
2259
 
2242
2260
 
@@ -2542,6 +2560,12 @@ export interface ApplicationRequest {
2542
2560
  * @memberof ApplicationRequest
2543
2561
  */
2544
2562
  'autoscaling'?: AutoscalingPolicyRequest;
2563
+ /**
2564
+ *
2565
+ * @type {BuildSettings}
2566
+ * @memberof ApplicationRequest
2567
+ */
2568
+ 'build_settings'?: BuildSettings;
2545
2569
  }
2546
2570
 
2547
2571
 
@@ -5492,6 +5516,49 @@ export const BuildModeEnum = {
5492
5516
  export type BuildModeEnum = typeof BuildModeEnum[keyof typeof BuildModeEnum];
5493
5517
 
5494
5518
 
5519
+ /**
5520
+ * Build configuration settings for the service. When sent, it replaces all six values entirely — omitted properties fall back to their defaults, not to the service\'s current values.
5521
+ * @export
5522
+ * @interface BuildSettings
5523
+ */
5524
+ export interface BuildSettings {
5525
+ /**
5526
+ * Maximum build timeout in seconds
5527
+ * @type {number}
5528
+ * @memberof BuildSettings
5529
+ */
5530
+ 'timeout_max_sec'?: number;
5531
+ /**
5532
+ * Maximum CPU resources for the build (in millicores)
5533
+ * @type {number}
5534
+ * @memberof BuildSettings
5535
+ */
5536
+ 'cpu_max_in_milli'?: number;
5537
+ /**
5538
+ * Maximum RAM resources for the build (in GiB)
5539
+ * @type {number}
5540
+ * @memberof BuildSettings
5541
+ */
5542
+ 'ram_max_in_gib'?: number;
5543
+ /**
5544
+ * Ephemeral storage for the build (in GiB). When null, the platform default is used.
5545
+ * @type {number}
5546
+ * @memberof BuildSettings
5547
+ */
5548
+ 'ephemeral_storage_in_gib'?: number | null;
5549
+ /**
5550
+ * Disable buildkit registry cache during build
5551
+ * @type {boolean}
5552
+ * @memberof BuildSettings
5553
+ */
5554
+ 'disable_buildkit_cache'?: boolean;
5555
+ /**
5556
+ * Skip git submodules update when cloning the repository
5557
+ * @type {boolean}
5558
+ * @memberof BuildSettings
5559
+ */
5560
+ 'skip_git_submodules'?: boolean;
5561
+ }
5495
5562
  /**
5496
5563
  *
5497
5564
  * @export
@@ -17955,32 +18022,44 @@ export interface JobAdvancedSettings {
17955
18022
  * define the max timeout for the build
17956
18023
  * @type {number}
17957
18024
  * @memberof JobAdvancedSettings
18025
+ * @deprecated
17958
18026
  */
17959
18027
  'build.timeout_max_sec'?: number;
17960
18028
  /**
17961
18029
  * define the max cpu resources (in milli)
17962
18030
  * @type {number}
17963
18031
  * @memberof JobAdvancedSettings
18032
+ * @deprecated
17964
18033
  */
17965
18034
  'build.cpu_max_in_milli'?: number;
17966
18035
  /**
17967
18036
  * define the max ram resources (in gib)
17968
18037
  * @type {number}
17969
18038
  * @memberof JobAdvancedSettings
18039
+ * @deprecated
17970
18040
  */
17971
18041
  'build.ram_max_in_gib'?: number;
17972
18042
  /**
17973
18043
  * disable buildkit registry cache during build
17974
18044
  * @type {boolean}
17975
18045
  * @memberof JobAdvancedSettings
18046
+ * @deprecated
17976
18047
  */
17977
18048
  'build.disable_buildkit_cache'?: boolean;
17978
18049
  /**
17979
18050
  * skip git submodules update when cloning the repository
17980
18051
  * @type {boolean}
17981
18052
  * @memberof JobAdvancedSettings
18053
+ * @deprecated
17982
18054
  */
17983
18055
  'build.skip_git_submodules'?: boolean;
18056
+ /**
18057
+ * Ephemeral storage for the build (in GiB)
18058
+ * @type {number}
18059
+ * @memberof JobAdvancedSettings
18060
+ * @deprecated
18061
+ */
18062
+ 'build.ephemeral_storage_in_gib'?: number;
17984
18063
  /**
17985
18064
  * define how long in seconds an application is supposed to be stopped gracefully
17986
18065
  * @type {number}
@@ -18335,6 +18414,12 @@ export interface JobRequest {
18335
18414
  * @memberof JobRequest
18336
18415
  */
18337
18416
  'icon_uri'?: string;
18417
+ /**
18418
+ *
18419
+ * @type {BuildSettings}
18420
+ * @memberof JobRequest
18421
+ */
18422
+ 'build_settings'?: BuildSettings;
18338
18423
  }
18339
18424
 
18340
18425
 
@@ -26712,30 +26797,35 @@ export interface TerraformAdvancedSettings {
26712
26797
  * define the max timeout for the build
26713
26798
  * @type {number}
26714
26799
  * @memberof TerraformAdvancedSettings
26800
+ * @deprecated
26715
26801
  */
26716
26802
  'build.timeout_max_sec'?: number;
26717
26803
  /**
26718
26804
  * define the max cpu resources (in milli)
26719
26805
  * @type {number}
26720
26806
  * @memberof TerraformAdvancedSettings
26807
+ * @deprecated
26721
26808
  */
26722
26809
  'build.cpu_max_in_milli'?: number;
26723
26810
  /**
26724
26811
  * define the max ram resources (in gib)
26725
26812
  * @type {number}
26726
26813
  * @memberof TerraformAdvancedSettings
26814
+ * @deprecated
26727
26815
  */
26728
26816
  'build.ram_max_in_gib'?: number;
26729
26817
  /**
26730
- *
26818
+ * Ephemeral storage for the build (in GiB)
26731
26819
  * @type {number}
26732
26820
  * @memberof TerraformAdvancedSettings
26821
+ * @deprecated
26733
26822
  */
26734
26823
  'build.ephemeral_storage_in_gib'?: number;
26735
26824
  /**
26736
26825
  * skip git submodules update when cloning the repository
26737
26826
  * @type {boolean}
26738
26827
  * @memberof TerraformAdvancedSettings
26828
+ * @deprecated
26739
26829
  */
26740
26830
  'build.skip_git_submodules'?: boolean;
26741
26831
  /**
@@ -27205,6 +27295,12 @@ export interface TerraformRequest {
27205
27295
  * @memberof TerraformRequest
27206
27296
  */
27207
27297
  'blueprint_id'?: string | null;
27298
+ /**
27299
+ *
27300
+ * @type {BuildSettings}
27301
+ * @memberof TerraformRequest
27302
+ */
27303
+ 'build_settings'?: BuildSettings;
27208
27304
  }
27209
27305
 
27210
27306
 
package/dist/api.d.ts CHANGED
@@ -1687,32 +1687,44 @@ export interface ApplicationAdvancedSettings {
1687
1687
  *
1688
1688
  * @type {number}
1689
1689
  * @memberof ApplicationAdvancedSettings
1690
+ * @deprecated
1690
1691
  */
1691
1692
  'build.timeout_max_sec'?: number;
1692
1693
  /**
1693
1694
  * define the max cpu resources (in milli)
1694
1695
  * @type {number}
1695
1696
  * @memberof ApplicationAdvancedSettings
1697
+ * @deprecated
1696
1698
  */
1697
1699
  'build.cpu_max_in_milli'?: number;
1698
1700
  /**
1699
1701
  * define the max ram resources (in gib)
1700
1702
  * @type {number}
1701
1703
  * @memberof ApplicationAdvancedSettings
1704
+ * @deprecated
1702
1705
  */
1703
1706
  'build.ram_max_in_gib'?: number;
1704
1707
  /**
1705
1708
  * disable buildkit registry cache during build
1706
1709
  * @type {boolean}
1707
1710
  * @memberof ApplicationAdvancedSettings
1711
+ * @deprecated
1708
1712
  */
1709
1713
  'build.disable_buildkit_cache'?: boolean;
1710
1714
  /**
1711
1715
  * skip git submodules update when cloning the repository
1712
1716
  * @type {boolean}
1713
1717
  * @memberof ApplicationAdvancedSettings
1718
+ * @deprecated
1714
1719
  */
1715
1720
  'build.skip_git_submodules'?: boolean;
1721
+ /**
1722
+ * Ephemeral storage for the build (in GiB)
1723
+ * @type {number}
1724
+ * @memberof ApplicationAdvancedSettings
1725
+ * @deprecated
1726
+ */
1727
+ 'build.ephemeral_storage_in_gib'?: number;
1716
1728
  /**
1717
1729
  *
1718
1730
  * @type {number}
@@ -2153,6 +2165,12 @@ export interface ApplicationEditRequest {
2153
2165
  * @memberof ApplicationEditRequest
2154
2166
  */
2155
2167
  'autoscaling'?: AutoscalingPolicyRequest;
2168
+ /**
2169
+ *
2170
+ * @type {BuildSettings}
2171
+ * @memberof ApplicationEditRequest
2172
+ */
2173
+ 'build_settings'?: BuildSettings;
2156
2174
  }
2157
2175
  /**
2158
2176
  *
@@ -2452,6 +2470,12 @@ export interface ApplicationRequest {
2452
2470
  * @memberof ApplicationRequest
2453
2471
  */
2454
2472
  'autoscaling'?: AutoscalingPolicyRequest;
2473
+ /**
2474
+ *
2475
+ * @type {BuildSettings}
2476
+ * @memberof ApplicationRequest
2477
+ */
2478
+ 'build_settings'?: BuildSettings;
2455
2479
  }
2456
2480
  /**
2457
2481
  *
@@ -5334,6 +5358,49 @@ export declare const BuildModeEnum: {
5334
5358
  readonly DOCKER: "DOCKER";
5335
5359
  };
5336
5360
  export type BuildModeEnum = typeof BuildModeEnum[keyof typeof BuildModeEnum];
5361
+ /**
5362
+ * Build configuration settings for the service. When sent, it replaces all six values entirely — omitted properties fall back to their defaults, not to the service\'s current values.
5363
+ * @export
5364
+ * @interface BuildSettings
5365
+ */
5366
+ export interface BuildSettings {
5367
+ /**
5368
+ * Maximum build timeout in seconds
5369
+ * @type {number}
5370
+ * @memberof BuildSettings
5371
+ */
5372
+ 'timeout_max_sec'?: number;
5373
+ /**
5374
+ * Maximum CPU resources for the build (in millicores)
5375
+ * @type {number}
5376
+ * @memberof BuildSettings
5377
+ */
5378
+ 'cpu_max_in_milli'?: number;
5379
+ /**
5380
+ * Maximum RAM resources for the build (in GiB)
5381
+ * @type {number}
5382
+ * @memberof BuildSettings
5383
+ */
5384
+ 'ram_max_in_gib'?: number;
5385
+ /**
5386
+ * Ephemeral storage for the build (in GiB). When null, the platform default is used.
5387
+ * @type {number}
5388
+ * @memberof BuildSettings
5389
+ */
5390
+ 'ephemeral_storage_in_gib'?: number | null;
5391
+ /**
5392
+ * Disable buildkit registry cache during build
5393
+ * @type {boolean}
5394
+ * @memberof BuildSettings
5395
+ */
5396
+ 'disable_buildkit_cache'?: boolean;
5397
+ /**
5398
+ * Skip git submodules update when cloning the repository
5399
+ * @type {boolean}
5400
+ * @memberof BuildSettings
5401
+ */
5402
+ 'skip_git_submodules'?: boolean;
5403
+ }
5337
5404
  /**
5338
5405
  *
5339
5406
  * @export
@@ -17451,32 +17518,44 @@ export interface JobAdvancedSettings {
17451
17518
  * define the max timeout for the build
17452
17519
  * @type {number}
17453
17520
  * @memberof JobAdvancedSettings
17521
+ * @deprecated
17454
17522
  */
17455
17523
  'build.timeout_max_sec'?: number;
17456
17524
  /**
17457
17525
  * define the max cpu resources (in milli)
17458
17526
  * @type {number}
17459
17527
  * @memberof JobAdvancedSettings
17528
+ * @deprecated
17460
17529
  */
17461
17530
  'build.cpu_max_in_milli'?: number;
17462
17531
  /**
17463
17532
  * define the max ram resources (in gib)
17464
17533
  * @type {number}
17465
17534
  * @memberof JobAdvancedSettings
17535
+ * @deprecated
17466
17536
  */
17467
17537
  'build.ram_max_in_gib'?: number;
17468
17538
  /**
17469
17539
  * disable buildkit registry cache during build
17470
17540
  * @type {boolean}
17471
17541
  * @memberof JobAdvancedSettings
17542
+ * @deprecated
17472
17543
  */
17473
17544
  'build.disable_buildkit_cache'?: boolean;
17474
17545
  /**
17475
17546
  * skip git submodules update when cloning the repository
17476
17547
  * @type {boolean}
17477
17548
  * @memberof JobAdvancedSettings
17549
+ * @deprecated
17478
17550
  */
17479
17551
  'build.skip_git_submodules'?: boolean;
17552
+ /**
17553
+ * Ephemeral storage for the build (in GiB)
17554
+ * @type {number}
17555
+ * @memberof JobAdvancedSettings
17556
+ * @deprecated
17557
+ */
17558
+ 'build.ephemeral_storage_in_gib'?: number;
17480
17559
  /**
17481
17560
  * define how long in seconds an application is supposed to be stopped gracefully
17482
17561
  * @type {number}
@@ -17821,6 +17900,12 @@ export interface JobRequest {
17821
17900
  * @memberof JobRequest
17822
17901
  */
17823
17902
  'icon_uri'?: string;
17903
+ /**
17904
+ *
17905
+ * @type {BuildSettings}
17906
+ * @memberof JobRequest
17907
+ */
17908
+ 'build_settings'?: BuildSettings;
17824
17909
  }
17825
17910
  /**
17826
17911
  * 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`
@@ -25868,30 +25953,35 @@ export interface TerraformAdvancedSettings {
25868
25953
  * define the max timeout for the build
25869
25954
  * @type {number}
25870
25955
  * @memberof TerraformAdvancedSettings
25956
+ * @deprecated
25871
25957
  */
25872
25958
  'build.timeout_max_sec'?: number;
25873
25959
  /**
25874
25960
  * define the max cpu resources (in milli)
25875
25961
  * @type {number}
25876
25962
  * @memberof TerraformAdvancedSettings
25963
+ * @deprecated
25877
25964
  */
25878
25965
  'build.cpu_max_in_milli'?: number;
25879
25966
  /**
25880
25967
  * define the max ram resources (in gib)
25881
25968
  * @type {number}
25882
25969
  * @memberof TerraformAdvancedSettings
25970
+ * @deprecated
25883
25971
  */
25884
25972
  'build.ram_max_in_gib'?: number;
25885
25973
  /**
25886
- *
25974
+ * Ephemeral storage for the build (in GiB)
25887
25975
  * @type {number}
25888
25976
  * @memberof TerraformAdvancedSettings
25977
+ * @deprecated
25889
25978
  */
25890
25979
  'build.ephemeral_storage_in_gib'?: number;
25891
25980
  /**
25892
25981
  * skip git submodules update when cloning the repository
25893
25982
  * @type {boolean}
25894
25983
  * @memberof TerraformAdvancedSettings
25984
+ * @deprecated
25895
25985
  */
25896
25986
  'build.skip_git_submodules'?: boolean;
25897
25987
  /**
@@ -26352,6 +26442,12 @@ export interface TerraformRequest {
26352
26442
  * @memberof TerraformRequest
26353
26443
  */
26354
26444
  'blueprint_id'?: string | null;
26445
+ /**
26446
+ *
26447
+ * @type {BuildSettings}
26448
+ * @memberof TerraformRequest
26449
+ */
26450
+ 'build_settings'?: BuildSettings;
26355
26451
  }
26356
26452
  /**
26357
26453
  * @type TerraformRequestDockerfileFragment
package/dist/esm/api.d.ts CHANGED
@@ -1687,32 +1687,44 @@ export interface ApplicationAdvancedSettings {
1687
1687
  *
1688
1688
  * @type {number}
1689
1689
  * @memberof ApplicationAdvancedSettings
1690
+ * @deprecated
1690
1691
  */
1691
1692
  'build.timeout_max_sec'?: number;
1692
1693
  /**
1693
1694
  * define the max cpu resources (in milli)
1694
1695
  * @type {number}
1695
1696
  * @memberof ApplicationAdvancedSettings
1697
+ * @deprecated
1696
1698
  */
1697
1699
  'build.cpu_max_in_milli'?: number;
1698
1700
  /**
1699
1701
  * define the max ram resources (in gib)
1700
1702
  * @type {number}
1701
1703
  * @memberof ApplicationAdvancedSettings
1704
+ * @deprecated
1702
1705
  */
1703
1706
  'build.ram_max_in_gib'?: number;
1704
1707
  /**
1705
1708
  * disable buildkit registry cache during build
1706
1709
  * @type {boolean}
1707
1710
  * @memberof ApplicationAdvancedSettings
1711
+ * @deprecated
1708
1712
  */
1709
1713
  'build.disable_buildkit_cache'?: boolean;
1710
1714
  /**
1711
1715
  * skip git submodules update when cloning the repository
1712
1716
  * @type {boolean}
1713
1717
  * @memberof ApplicationAdvancedSettings
1718
+ * @deprecated
1714
1719
  */
1715
1720
  'build.skip_git_submodules'?: boolean;
1721
+ /**
1722
+ * Ephemeral storage for the build (in GiB)
1723
+ * @type {number}
1724
+ * @memberof ApplicationAdvancedSettings
1725
+ * @deprecated
1726
+ */
1727
+ 'build.ephemeral_storage_in_gib'?: number;
1716
1728
  /**
1717
1729
  *
1718
1730
  * @type {number}
@@ -2153,6 +2165,12 @@ export interface ApplicationEditRequest {
2153
2165
  * @memberof ApplicationEditRequest
2154
2166
  */
2155
2167
  'autoscaling'?: AutoscalingPolicyRequest;
2168
+ /**
2169
+ *
2170
+ * @type {BuildSettings}
2171
+ * @memberof ApplicationEditRequest
2172
+ */
2173
+ 'build_settings'?: BuildSettings;
2156
2174
  }
2157
2175
  /**
2158
2176
  *
@@ -2452,6 +2470,12 @@ export interface ApplicationRequest {
2452
2470
  * @memberof ApplicationRequest
2453
2471
  */
2454
2472
  'autoscaling'?: AutoscalingPolicyRequest;
2473
+ /**
2474
+ *
2475
+ * @type {BuildSettings}
2476
+ * @memberof ApplicationRequest
2477
+ */
2478
+ 'build_settings'?: BuildSettings;
2455
2479
  }
2456
2480
  /**
2457
2481
  *
@@ -5334,6 +5358,49 @@ export declare const BuildModeEnum: {
5334
5358
  readonly DOCKER: "DOCKER";
5335
5359
  };
5336
5360
  export type BuildModeEnum = typeof BuildModeEnum[keyof typeof BuildModeEnum];
5361
+ /**
5362
+ * Build configuration settings for the service. When sent, it replaces all six values entirely — omitted properties fall back to their defaults, not to the service\'s current values.
5363
+ * @export
5364
+ * @interface BuildSettings
5365
+ */
5366
+ export interface BuildSettings {
5367
+ /**
5368
+ * Maximum build timeout in seconds
5369
+ * @type {number}
5370
+ * @memberof BuildSettings
5371
+ */
5372
+ 'timeout_max_sec'?: number;
5373
+ /**
5374
+ * Maximum CPU resources for the build (in millicores)
5375
+ * @type {number}
5376
+ * @memberof BuildSettings
5377
+ */
5378
+ 'cpu_max_in_milli'?: number;
5379
+ /**
5380
+ * Maximum RAM resources for the build (in GiB)
5381
+ * @type {number}
5382
+ * @memberof BuildSettings
5383
+ */
5384
+ 'ram_max_in_gib'?: number;
5385
+ /**
5386
+ * Ephemeral storage for the build (in GiB). When null, the platform default is used.
5387
+ * @type {number}
5388
+ * @memberof BuildSettings
5389
+ */
5390
+ 'ephemeral_storage_in_gib'?: number | null;
5391
+ /**
5392
+ * Disable buildkit registry cache during build
5393
+ * @type {boolean}
5394
+ * @memberof BuildSettings
5395
+ */
5396
+ 'disable_buildkit_cache'?: boolean;
5397
+ /**
5398
+ * Skip git submodules update when cloning the repository
5399
+ * @type {boolean}
5400
+ * @memberof BuildSettings
5401
+ */
5402
+ 'skip_git_submodules'?: boolean;
5403
+ }
5337
5404
  /**
5338
5405
  *
5339
5406
  * @export
@@ -17451,32 +17518,44 @@ export interface JobAdvancedSettings {
17451
17518
  * define the max timeout for the build
17452
17519
  * @type {number}
17453
17520
  * @memberof JobAdvancedSettings
17521
+ * @deprecated
17454
17522
  */
17455
17523
  'build.timeout_max_sec'?: number;
17456
17524
  /**
17457
17525
  * define the max cpu resources (in milli)
17458
17526
  * @type {number}
17459
17527
  * @memberof JobAdvancedSettings
17528
+ * @deprecated
17460
17529
  */
17461
17530
  'build.cpu_max_in_milli'?: number;
17462
17531
  /**
17463
17532
  * define the max ram resources (in gib)
17464
17533
  * @type {number}
17465
17534
  * @memberof JobAdvancedSettings
17535
+ * @deprecated
17466
17536
  */
17467
17537
  'build.ram_max_in_gib'?: number;
17468
17538
  /**
17469
17539
  * disable buildkit registry cache during build
17470
17540
  * @type {boolean}
17471
17541
  * @memberof JobAdvancedSettings
17542
+ * @deprecated
17472
17543
  */
17473
17544
  'build.disable_buildkit_cache'?: boolean;
17474
17545
  /**
17475
17546
  * skip git submodules update when cloning the repository
17476
17547
  * @type {boolean}
17477
17548
  * @memberof JobAdvancedSettings
17549
+ * @deprecated
17478
17550
  */
17479
17551
  'build.skip_git_submodules'?: boolean;
17552
+ /**
17553
+ * Ephemeral storage for the build (in GiB)
17554
+ * @type {number}
17555
+ * @memberof JobAdvancedSettings
17556
+ * @deprecated
17557
+ */
17558
+ 'build.ephemeral_storage_in_gib'?: number;
17480
17559
  /**
17481
17560
  * define how long in seconds an application is supposed to be stopped gracefully
17482
17561
  * @type {number}
@@ -17821,6 +17900,12 @@ export interface JobRequest {
17821
17900
  * @memberof JobRequest
17822
17901
  */
17823
17902
  'icon_uri'?: string;
17903
+ /**
17904
+ *
17905
+ * @type {BuildSettings}
17906
+ * @memberof JobRequest
17907
+ */
17908
+ 'build_settings'?: BuildSettings;
17824
17909
  }
17825
17910
  /**
17826
17911
  * 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`
@@ -25868,30 +25953,35 @@ export interface TerraformAdvancedSettings {
25868
25953
  * define the max timeout for the build
25869
25954
  * @type {number}
25870
25955
  * @memberof TerraformAdvancedSettings
25956
+ * @deprecated
25871
25957
  */
25872
25958
  'build.timeout_max_sec'?: number;
25873
25959
  /**
25874
25960
  * define the max cpu resources (in milli)
25875
25961
  * @type {number}
25876
25962
  * @memberof TerraformAdvancedSettings
25963
+ * @deprecated
25877
25964
  */
25878
25965
  'build.cpu_max_in_milli'?: number;
25879
25966
  /**
25880
25967
  * define the max ram resources (in gib)
25881
25968
  * @type {number}
25882
25969
  * @memberof TerraformAdvancedSettings
25970
+ * @deprecated
25883
25971
  */
25884
25972
  'build.ram_max_in_gib'?: number;
25885
25973
  /**
25886
- *
25974
+ * Ephemeral storage for the build (in GiB)
25887
25975
  * @type {number}
25888
25976
  * @memberof TerraformAdvancedSettings
25977
+ * @deprecated
25889
25978
  */
25890
25979
  'build.ephemeral_storage_in_gib'?: number;
25891
25980
  /**
25892
25981
  * skip git submodules update when cloning the repository
25893
25982
  * @type {boolean}
25894
25983
  * @memberof TerraformAdvancedSettings
25984
+ * @deprecated
25895
25985
  */
25896
25986
  'build.skip_git_submodules'?: boolean;
25897
25987
  /**
@@ -26352,6 +26442,12 @@ export interface TerraformRequest {
26352
26442
  * @memberof TerraformRequest
26353
26443
  */
26354
26444
  'blueprint_id'?: string | null;
26445
+ /**
26446
+ *
26447
+ * @type {BuildSettings}
26448
+ * @memberof TerraformRequest
26449
+ */
26450
+ 'build_settings'?: BuildSettings;
26355
26451
  }
26356
26452
  /**
26357
26453
  * @type TerraformRequestDockerfileFragment
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.982",
3
+ "version": "v1.1.984",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {