qovery-typescript-axios 1.1.981 → 1.1.983
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 +109 -1
- package/dist/api.d.ts +109 -1
- package/dist/esm/api.d.ts +109 -1
- package/package.json +1 -1
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
|
|
|
@@ -23074,6 +23159,12 @@ export interface PlatformComponentConfigurationPreviewRequest {
|
|
|
23074
23159
|
* @memberof PlatformComponentConfigurationPreviewRequest
|
|
23075
23160
|
*/
|
|
23076
23161
|
'profileConfig'?: { [key: string]: any; };
|
|
23162
|
+
/**
|
|
23163
|
+
* For an existing cluster, validate profileConfig as a complete draft instead of merging it with saved values. Omitted keys are reset to their catalog defaults. Template previews already use a complete draft and ignore this flag.
|
|
23164
|
+
* @type {boolean}
|
|
23165
|
+
* @memberof PlatformComponentConfigurationPreviewRequest
|
|
23166
|
+
*/
|
|
23167
|
+
'replaceProfileConfig'?: boolean;
|
|
23077
23168
|
/**
|
|
23078
23169
|
*
|
|
23079
23170
|
* @type {{ [key: string]: string; }}
|
|
@@ -23519,6 +23610,12 @@ export interface PlatformTemplateSummaryResponse {
|
|
|
23519
23610
|
* @memberof PlatformTemplateSummaryResponse
|
|
23520
23611
|
*/
|
|
23521
23612
|
'description'?: string | null;
|
|
23613
|
+
/**
|
|
23614
|
+
* Mandatory bootstrap component and its configurable fields, when declared by the template.
|
|
23615
|
+
* @type {PlatformTemplateComponentResponse}
|
|
23616
|
+
* @memberof PlatformTemplateSummaryResponse
|
|
23617
|
+
*/
|
|
23618
|
+
'bootstrapComponent'?: PlatformTemplateComponentResponse | null;
|
|
23522
23619
|
/**
|
|
23523
23620
|
*
|
|
23524
23621
|
* @type {Array<PlatformTemplateLayerResponse>}
|
|
@@ -26700,30 +26797,35 @@ export interface TerraformAdvancedSettings {
|
|
|
26700
26797
|
* define the max timeout for the build
|
|
26701
26798
|
* @type {number}
|
|
26702
26799
|
* @memberof TerraformAdvancedSettings
|
|
26800
|
+
* @deprecated
|
|
26703
26801
|
*/
|
|
26704
26802
|
'build.timeout_max_sec'?: number;
|
|
26705
26803
|
/**
|
|
26706
26804
|
* define the max cpu resources (in milli)
|
|
26707
26805
|
* @type {number}
|
|
26708
26806
|
* @memberof TerraformAdvancedSettings
|
|
26807
|
+
* @deprecated
|
|
26709
26808
|
*/
|
|
26710
26809
|
'build.cpu_max_in_milli'?: number;
|
|
26711
26810
|
/**
|
|
26712
26811
|
* define the max ram resources (in gib)
|
|
26713
26812
|
* @type {number}
|
|
26714
26813
|
* @memberof TerraformAdvancedSettings
|
|
26814
|
+
* @deprecated
|
|
26715
26815
|
*/
|
|
26716
26816
|
'build.ram_max_in_gib'?: number;
|
|
26717
26817
|
/**
|
|
26718
|
-
*
|
|
26818
|
+
* Ephemeral storage for the build (in GiB)
|
|
26719
26819
|
* @type {number}
|
|
26720
26820
|
* @memberof TerraformAdvancedSettings
|
|
26821
|
+
* @deprecated
|
|
26721
26822
|
*/
|
|
26722
26823
|
'build.ephemeral_storage_in_gib'?: number;
|
|
26723
26824
|
/**
|
|
26724
26825
|
* skip git submodules update when cloning the repository
|
|
26725
26826
|
* @type {boolean}
|
|
26726
26827
|
* @memberof TerraformAdvancedSettings
|
|
26828
|
+
* @deprecated
|
|
26727
26829
|
*/
|
|
26728
26830
|
'build.skip_git_submodules'?: boolean;
|
|
26729
26831
|
/**
|
|
@@ -27193,6 +27295,12 @@ export interface TerraformRequest {
|
|
|
27193
27295
|
* @memberof TerraformRequest
|
|
27194
27296
|
*/
|
|
27195
27297
|
'blueprint_id'?: string | null;
|
|
27298
|
+
/**
|
|
27299
|
+
*
|
|
27300
|
+
* @type {BuildSettings}
|
|
27301
|
+
* @memberof TerraformRequest
|
|
27302
|
+
*/
|
|
27303
|
+
'build_settings'?: BuildSettings;
|
|
27196
27304
|
}
|
|
27197
27305
|
|
|
27198
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`
|
|
@@ -22393,6 +22478,12 @@ export interface PlatformComponentConfigurationPreviewRequest {
|
|
|
22393
22478
|
'profileConfig'?: {
|
|
22394
22479
|
[key: string]: any;
|
|
22395
22480
|
};
|
|
22481
|
+
/**
|
|
22482
|
+
* For an existing cluster, validate profileConfig as a complete draft instead of merging it with saved values. Omitted keys are reset to their catalog defaults. Template previews already use a complete draft and ignore this flag.
|
|
22483
|
+
* @type {boolean}
|
|
22484
|
+
* @memberof PlatformComponentConfigurationPreviewRequest
|
|
22485
|
+
*/
|
|
22486
|
+
'replaceProfileConfig'?: boolean;
|
|
22396
22487
|
/**
|
|
22397
22488
|
*
|
|
22398
22489
|
* @type {{ [key: string]: string; }}
|
|
@@ -22823,6 +22914,12 @@ export interface PlatformTemplateSummaryResponse {
|
|
|
22823
22914
|
* @memberof PlatformTemplateSummaryResponse
|
|
22824
22915
|
*/
|
|
22825
22916
|
'description'?: string | null;
|
|
22917
|
+
/**
|
|
22918
|
+
* Mandatory bootstrap component and its configurable fields, when declared by the template.
|
|
22919
|
+
* @type {PlatformTemplateComponentResponse}
|
|
22920
|
+
* @memberof PlatformTemplateSummaryResponse
|
|
22921
|
+
*/
|
|
22922
|
+
'bootstrapComponent'?: PlatformTemplateComponentResponse | null;
|
|
22826
22923
|
/**
|
|
22827
22924
|
*
|
|
22828
22925
|
* @type {Array<PlatformTemplateLayerResponse>}
|
|
@@ -25856,30 +25953,35 @@ export interface TerraformAdvancedSettings {
|
|
|
25856
25953
|
* define the max timeout for the build
|
|
25857
25954
|
* @type {number}
|
|
25858
25955
|
* @memberof TerraformAdvancedSettings
|
|
25956
|
+
* @deprecated
|
|
25859
25957
|
*/
|
|
25860
25958
|
'build.timeout_max_sec'?: number;
|
|
25861
25959
|
/**
|
|
25862
25960
|
* define the max cpu resources (in milli)
|
|
25863
25961
|
* @type {number}
|
|
25864
25962
|
* @memberof TerraformAdvancedSettings
|
|
25963
|
+
* @deprecated
|
|
25865
25964
|
*/
|
|
25866
25965
|
'build.cpu_max_in_milli'?: number;
|
|
25867
25966
|
/**
|
|
25868
25967
|
* define the max ram resources (in gib)
|
|
25869
25968
|
* @type {number}
|
|
25870
25969
|
* @memberof TerraformAdvancedSettings
|
|
25970
|
+
* @deprecated
|
|
25871
25971
|
*/
|
|
25872
25972
|
'build.ram_max_in_gib'?: number;
|
|
25873
25973
|
/**
|
|
25874
|
-
*
|
|
25974
|
+
* Ephemeral storage for the build (in GiB)
|
|
25875
25975
|
* @type {number}
|
|
25876
25976
|
* @memberof TerraformAdvancedSettings
|
|
25977
|
+
* @deprecated
|
|
25877
25978
|
*/
|
|
25878
25979
|
'build.ephemeral_storage_in_gib'?: number;
|
|
25879
25980
|
/**
|
|
25880
25981
|
* skip git submodules update when cloning the repository
|
|
25881
25982
|
* @type {boolean}
|
|
25882
25983
|
* @memberof TerraformAdvancedSettings
|
|
25984
|
+
* @deprecated
|
|
25883
25985
|
*/
|
|
25884
25986
|
'build.skip_git_submodules'?: boolean;
|
|
25885
25987
|
/**
|
|
@@ -26340,6 +26442,12 @@ export interface TerraformRequest {
|
|
|
26340
26442
|
* @memberof TerraformRequest
|
|
26341
26443
|
*/
|
|
26342
26444
|
'blueprint_id'?: string | null;
|
|
26445
|
+
/**
|
|
26446
|
+
*
|
|
26447
|
+
* @type {BuildSettings}
|
|
26448
|
+
* @memberof TerraformRequest
|
|
26449
|
+
*/
|
|
26450
|
+
'build_settings'?: BuildSettings;
|
|
26343
26451
|
}
|
|
26344
26452
|
/**
|
|
26345
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`
|
|
@@ -22393,6 +22478,12 @@ export interface PlatformComponentConfigurationPreviewRequest {
|
|
|
22393
22478
|
'profileConfig'?: {
|
|
22394
22479
|
[key: string]: any;
|
|
22395
22480
|
};
|
|
22481
|
+
/**
|
|
22482
|
+
* For an existing cluster, validate profileConfig as a complete draft instead of merging it with saved values. Omitted keys are reset to their catalog defaults. Template previews already use a complete draft and ignore this flag.
|
|
22483
|
+
* @type {boolean}
|
|
22484
|
+
* @memberof PlatformComponentConfigurationPreviewRequest
|
|
22485
|
+
*/
|
|
22486
|
+
'replaceProfileConfig'?: boolean;
|
|
22396
22487
|
/**
|
|
22397
22488
|
*
|
|
22398
22489
|
* @type {{ [key: string]: string; }}
|
|
@@ -22823,6 +22914,12 @@ export interface PlatformTemplateSummaryResponse {
|
|
|
22823
22914
|
* @memberof PlatformTemplateSummaryResponse
|
|
22824
22915
|
*/
|
|
22825
22916
|
'description'?: string | null;
|
|
22917
|
+
/**
|
|
22918
|
+
* Mandatory bootstrap component and its configurable fields, when declared by the template.
|
|
22919
|
+
* @type {PlatformTemplateComponentResponse}
|
|
22920
|
+
* @memberof PlatformTemplateSummaryResponse
|
|
22921
|
+
*/
|
|
22922
|
+
'bootstrapComponent'?: PlatformTemplateComponentResponse | null;
|
|
22826
22923
|
/**
|
|
22827
22924
|
*
|
|
22828
22925
|
* @type {Array<PlatformTemplateLayerResponse>}
|
|
@@ -25856,30 +25953,35 @@ export interface TerraformAdvancedSettings {
|
|
|
25856
25953
|
* define the max timeout for the build
|
|
25857
25954
|
* @type {number}
|
|
25858
25955
|
* @memberof TerraformAdvancedSettings
|
|
25956
|
+
* @deprecated
|
|
25859
25957
|
*/
|
|
25860
25958
|
'build.timeout_max_sec'?: number;
|
|
25861
25959
|
/**
|
|
25862
25960
|
* define the max cpu resources (in milli)
|
|
25863
25961
|
* @type {number}
|
|
25864
25962
|
* @memberof TerraformAdvancedSettings
|
|
25963
|
+
* @deprecated
|
|
25865
25964
|
*/
|
|
25866
25965
|
'build.cpu_max_in_milli'?: number;
|
|
25867
25966
|
/**
|
|
25868
25967
|
* define the max ram resources (in gib)
|
|
25869
25968
|
* @type {number}
|
|
25870
25969
|
* @memberof TerraformAdvancedSettings
|
|
25970
|
+
* @deprecated
|
|
25871
25971
|
*/
|
|
25872
25972
|
'build.ram_max_in_gib'?: number;
|
|
25873
25973
|
/**
|
|
25874
|
-
*
|
|
25974
|
+
* Ephemeral storage for the build (in GiB)
|
|
25875
25975
|
* @type {number}
|
|
25876
25976
|
* @memberof TerraformAdvancedSettings
|
|
25977
|
+
* @deprecated
|
|
25877
25978
|
*/
|
|
25878
25979
|
'build.ephemeral_storage_in_gib'?: number;
|
|
25879
25980
|
/**
|
|
25880
25981
|
* skip git submodules update when cloning the repository
|
|
25881
25982
|
* @type {boolean}
|
|
25882
25983
|
* @memberof TerraformAdvancedSettings
|
|
25984
|
+
* @deprecated
|
|
25883
25985
|
*/
|
|
25884
25986
|
'build.skip_git_submodules'?: boolean;
|
|
25885
25987
|
/**
|
|
@@ -26340,6 +26442,12 @@ export interface TerraformRequest {
|
|
|
26340
26442
|
* @memberof TerraformRequest
|
|
26341
26443
|
*/
|
|
26342
26444
|
'blueprint_id'?: string | null;
|
|
26445
|
+
/**
|
|
26446
|
+
*
|
|
26447
|
+
* @type {BuildSettings}
|
|
26448
|
+
* @memberof TerraformRequest
|
|
26449
|
+
*/
|
|
26450
|
+
'build_settings'?: BuildSettings;
|
|
26343
26451
|
}
|
|
26344
26452
|
/**
|
|
26345
26453
|
* @type TerraformRequestDockerfileFragment
|