@pulumi/docker 4.6.0-beta.2 → 4.6.0-beta.3
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/buildx/image.d.ts +102 -25
- package/buildx/image.js +36 -14
- package/buildx/image.js.map +1 -1
- package/buildx/index.d.ts +3 -0
- package/buildx/index.js +5 -1
- package/buildx/index.js.map +1 -1
- package/buildx/index_.d.ts +140 -0
- package/buildx/index_.js +130 -0
- package/buildx/index_.js.map +1 -0
- package/package.json +1 -1
- package/types/input.d.ts +100 -87
- package/types/input.js +17 -17
- package/types/input.js.map +1 -1
- package/types/output.d.ts +100 -87
- package/types/output.js +17 -17
- package/types/output.js.map +1 -1
package/buildx/index_.js
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Index = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* An index (or manifest list) referencing one or more existing images.
|
|
10
|
+
*
|
|
11
|
+
* Useful for crafting a multi-platform image from several
|
|
12
|
+
* platform-specific images.
|
|
13
|
+
*
|
|
14
|
+
* This creates an OCI image index or a Docker manifest list depending on
|
|
15
|
+
* the media types of the source images.
|
|
16
|
+
*
|
|
17
|
+
* ## Example Usage
|
|
18
|
+
* ### Multi-platform registry caching
|
|
19
|
+
*
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
22
|
+
* import * as docker from "@pulumi/docker";
|
|
23
|
+
*
|
|
24
|
+
* const amd64 = new docker.buildx.Image("amd64", {
|
|
25
|
+
* cacheFrom: [{
|
|
26
|
+
* registry: {
|
|
27
|
+
* ref: "docker.io/pulumi/pulumi:cache-amd64",
|
|
28
|
+
* },
|
|
29
|
+
* }],
|
|
30
|
+
* cacheTo: [{
|
|
31
|
+
* registry: {
|
|
32
|
+
* mode: docker.buildx.image.CacheMode.Max,
|
|
33
|
+
* ref: "docker.io/pulumi/pulumi:cache-amd64",
|
|
34
|
+
* },
|
|
35
|
+
* }],
|
|
36
|
+
* context: {
|
|
37
|
+
* location: "app",
|
|
38
|
+
* },
|
|
39
|
+
* platforms: [docker.buildx.image.Platform.Linux_amd64],
|
|
40
|
+
* tags: ["docker.io/pulumi/pulumi:3.107.0-amd64"],
|
|
41
|
+
* });
|
|
42
|
+
* const arm64 = new docker.buildx.Image("arm64", {
|
|
43
|
+
* cacheFrom: [{
|
|
44
|
+
* registry: {
|
|
45
|
+
* ref: "docker.io/pulumi/pulumi:cache-arm64",
|
|
46
|
+
* },
|
|
47
|
+
* }],
|
|
48
|
+
* cacheTo: [{
|
|
49
|
+
* registry: {
|
|
50
|
+
* mode: docker.buildx.image.CacheMode.Max,
|
|
51
|
+
* ref: "docker.io/pulumi/pulumi:cache-arm64",
|
|
52
|
+
* },
|
|
53
|
+
* }],
|
|
54
|
+
* context: {
|
|
55
|
+
* location: "app",
|
|
56
|
+
* },
|
|
57
|
+
* platforms: [docker.buildx.image.Platform.Linux_arm64],
|
|
58
|
+
* tags: ["docker.io/pulumi/pulumi:3.107.0-arm64"],
|
|
59
|
+
* });
|
|
60
|
+
* const index = new docker.buildx.Index("index", {
|
|
61
|
+
* sources: [
|
|
62
|
+
* amd64.ref,
|
|
63
|
+
* arm64.ref,
|
|
64
|
+
* ],
|
|
65
|
+
* tag: "docker.io/pulumi/pulumi:3.107.0",
|
|
66
|
+
* });
|
|
67
|
+
* export const ref = index.ref;
|
|
68
|
+
* ```
|
|
69
|
+
*/
|
|
70
|
+
class Index extends pulumi.CustomResource {
|
|
71
|
+
/**
|
|
72
|
+
* Get an existing Index resource's state with the given name, ID, and optional extra
|
|
73
|
+
* properties used to qualify the lookup.
|
|
74
|
+
*
|
|
75
|
+
* @param name The _unique_ name of the resulting resource.
|
|
76
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
77
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
78
|
+
*/
|
|
79
|
+
static get(name, id, opts) {
|
|
80
|
+
return new Index(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Returns true if the given object is an instance of Index. This is designed to work even
|
|
84
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
85
|
+
*/
|
|
86
|
+
static isInstance(obj) {
|
|
87
|
+
if (obj === undefined || obj === null) {
|
|
88
|
+
return false;
|
|
89
|
+
}
|
|
90
|
+
return obj['__pulumiType'] === Index.__pulumiType;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Create a Index resource with the given unique name, arguments, and options.
|
|
94
|
+
*
|
|
95
|
+
* @param name The _unique_ name of the resource.
|
|
96
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
97
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
98
|
+
*/
|
|
99
|
+
constructor(name, args, opts) {
|
|
100
|
+
var _a;
|
|
101
|
+
let resourceInputs = {};
|
|
102
|
+
opts = opts || {};
|
|
103
|
+
if (!opts.id) {
|
|
104
|
+
if ((!args || args.sources === undefined) && !opts.urn) {
|
|
105
|
+
throw new Error("Missing required property 'sources'");
|
|
106
|
+
}
|
|
107
|
+
if ((!args || args.tag === undefined) && !opts.urn) {
|
|
108
|
+
throw new Error("Missing required property 'tag'");
|
|
109
|
+
}
|
|
110
|
+
resourceInputs["push"] = (_a = (args ? args.push : undefined)) !== null && _a !== void 0 ? _a : true;
|
|
111
|
+
resourceInputs["registry"] = args ? args.registry : undefined;
|
|
112
|
+
resourceInputs["sources"] = args ? args.sources : undefined;
|
|
113
|
+
resourceInputs["tag"] = args ? args.tag : undefined;
|
|
114
|
+
resourceInputs["ref"] = undefined /*out*/;
|
|
115
|
+
}
|
|
116
|
+
else {
|
|
117
|
+
resourceInputs["push"] = undefined /*out*/;
|
|
118
|
+
resourceInputs["ref"] = undefined /*out*/;
|
|
119
|
+
resourceInputs["registry"] = undefined /*out*/;
|
|
120
|
+
resourceInputs["sources"] = undefined /*out*/;
|
|
121
|
+
resourceInputs["tag"] = undefined /*out*/;
|
|
122
|
+
}
|
|
123
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
124
|
+
super(Index.__pulumiType, name, resourceInputs, opts);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
exports.Index = Index;
|
|
128
|
+
/** @internal */
|
|
129
|
+
Index.__pulumiType = 'docker:buildx/image:Index';
|
|
130
|
+
//# sourceMappingURL=index_.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index_.js","sourceRoot":"","sources":["../../buildx/index_.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6DG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,KAAK,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;IA6BD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAe,EAAE,IAAmC;;QAC1E,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,GAAG,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAChD,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,MAAA,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,mCAAI,IAAI,CAAC;YAChE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;aAAM;YACH,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;;AArFL,sBAsFC;AAzEG,gBAAgB;AACO,kBAAY,GAAG,2BAA2B,CAAC"}
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -1261,21 +1261,7 @@ export declare namespace buildx {
|
|
|
1261
1261
|
*/
|
|
1262
1262
|
name?: pulumi.Input<string>;
|
|
1263
1263
|
}
|
|
1264
|
-
interface
|
|
1265
|
-
/**
|
|
1266
|
-
* Base URL of the storage account.
|
|
1267
|
-
*/
|
|
1268
|
-
accountUrl?: pulumi.Input<string>;
|
|
1269
|
-
/**
|
|
1270
|
-
* The name of the cache image.
|
|
1271
|
-
*/
|
|
1272
|
-
name: pulumi.Input<string>;
|
|
1273
|
-
/**
|
|
1274
|
-
* Blob storage account key.
|
|
1275
|
-
*/
|
|
1276
|
-
secretAccessKey?: pulumi.Input<string>;
|
|
1277
|
-
}
|
|
1278
|
-
interface CacheFromEntry {
|
|
1264
|
+
interface CacheFrom {
|
|
1279
1265
|
/**
|
|
1280
1266
|
* Upload build caches to Azure's blob storage service.
|
|
1281
1267
|
*/
|
|
@@ -1311,9 +1297,23 @@ export declare namespace buildx {
|
|
|
1311
1297
|
s3?: pulumi.Input<inputs.buildx.CacheFromS3>;
|
|
1312
1298
|
}
|
|
1313
1299
|
/**
|
|
1314
|
-
*
|
|
1300
|
+
* cacheFromProvideDefaults sets the appropriate defaults for CacheFrom
|
|
1315
1301
|
*/
|
|
1316
|
-
function
|
|
1302
|
+
function cacheFromProvideDefaults(val: CacheFrom): CacheFrom;
|
|
1303
|
+
interface CacheFromAzureBlob {
|
|
1304
|
+
/**
|
|
1305
|
+
* Base URL of the storage account.
|
|
1306
|
+
*/
|
|
1307
|
+
accountUrl?: pulumi.Input<string>;
|
|
1308
|
+
/**
|
|
1309
|
+
* The name of the cache image.
|
|
1310
|
+
*/
|
|
1311
|
+
name: pulumi.Input<string>;
|
|
1312
|
+
/**
|
|
1313
|
+
* Blob storage account key.
|
|
1314
|
+
*/
|
|
1315
|
+
secretAccessKey?: pulumi.Input<string>;
|
|
1316
|
+
}
|
|
1317
1317
|
interface CacheFromGitHubActions {
|
|
1318
1318
|
/**
|
|
1319
1319
|
* The scope to use for cache keys. Defaults to `buildkit`.
|
|
@@ -1406,33 +1406,7 @@ export declare namespace buildx {
|
|
|
1406
1406
|
* cacheFromS3ProvideDefaults sets the appropriate defaults for CacheFromS3
|
|
1407
1407
|
*/
|
|
1408
1408
|
function cacheFromS3ProvideDefaults(val: CacheFromS3): CacheFromS3;
|
|
1409
|
-
interface
|
|
1410
|
-
/**
|
|
1411
|
-
* Base URL of the storage account.
|
|
1412
|
-
*/
|
|
1413
|
-
accountUrl?: pulumi.Input<string>;
|
|
1414
|
-
/**
|
|
1415
|
-
* Ignore errors caused by failed cache exports.
|
|
1416
|
-
*/
|
|
1417
|
-
ignoreError?: pulumi.Input<boolean>;
|
|
1418
|
-
/**
|
|
1419
|
-
* The cache mode to use. Defaults to `min`.
|
|
1420
|
-
*/
|
|
1421
|
-
mode?: pulumi.Input<enums.buildx.CacheMode>;
|
|
1422
|
-
/**
|
|
1423
|
-
* The name of the cache image.
|
|
1424
|
-
*/
|
|
1425
|
-
name: pulumi.Input<string>;
|
|
1426
|
-
/**
|
|
1427
|
-
* Blob storage account key.
|
|
1428
|
-
*/
|
|
1429
|
-
secretAccessKey?: pulumi.Input<string>;
|
|
1430
|
-
}
|
|
1431
|
-
/**
|
|
1432
|
-
* cacheToAzureBlobProvideDefaults sets the appropriate defaults for CacheToAzureBlob
|
|
1433
|
-
*/
|
|
1434
|
-
function cacheToAzureBlobProvideDefaults(val: CacheToAzureBlob): CacheToAzureBlob;
|
|
1435
|
-
interface CacheToEntry {
|
|
1409
|
+
interface CacheTo {
|
|
1436
1410
|
/**
|
|
1437
1411
|
* Push cache to Azure's blob storage service.
|
|
1438
1412
|
*/
|
|
@@ -1474,9 +1448,35 @@ export declare namespace buildx {
|
|
|
1474
1448
|
s3?: pulumi.Input<inputs.buildx.CacheToS3>;
|
|
1475
1449
|
}
|
|
1476
1450
|
/**
|
|
1477
|
-
*
|
|
1451
|
+
* cacheToProvideDefaults sets the appropriate defaults for CacheTo
|
|
1452
|
+
*/
|
|
1453
|
+
function cacheToProvideDefaults(val: CacheTo): CacheTo;
|
|
1454
|
+
interface CacheToAzureBlob {
|
|
1455
|
+
/**
|
|
1456
|
+
* Base URL of the storage account.
|
|
1457
|
+
*/
|
|
1458
|
+
accountUrl?: pulumi.Input<string>;
|
|
1459
|
+
/**
|
|
1460
|
+
* Ignore errors caused by failed cache exports.
|
|
1461
|
+
*/
|
|
1462
|
+
ignoreError?: pulumi.Input<boolean>;
|
|
1463
|
+
/**
|
|
1464
|
+
* The cache mode to use. Defaults to `min`.
|
|
1465
|
+
*/
|
|
1466
|
+
mode?: pulumi.Input<enums.buildx.CacheMode>;
|
|
1467
|
+
/**
|
|
1468
|
+
* The name of the cache image.
|
|
1469
|
+
*/
|
|
1470
|
+
name: pulumi.Input<string>;
|
|
1471
|
+
/**
|
|
1472
|
+
* Blob storage account key.
|
|
1473
|
+
*/
|
|
1474
|
+
secretAccessKey?: pulumi.Input<string>;
|
|
1475
|
+
}
|
|
1476
|
+
/**
|
|
1477
|
+
* cacheToAzureBlobProvideDefaults sets the appropriate defaults for CacheToAzureBlob
|
|
1478
1478
|
*/
|
|
1479
|
-
function
|
|
1479
|
+
function cacheToAzureBlobProvideDefaults(val: CacheToAzureBlob): CacheToAzureBlob;
|
|
1480
1480
|
interface CacheToGitHubActions {
|
|
1481
1481
|
/**
|
|
1482
1482
|
* Ignore errors caused by failed cache exports.
|
|
@@ -1515,6 +1515,9 @@ export declare namespace buildx {
|
|
|
1515
1515
|
* cacheToGitHubActionsProvideDefaults sets the appropriate defaults for CacheToGitHubActions
|
|
1516
1516
|
*/
|
|
1517
1517
|
function cacheToGitHubActionsProvideDefaults(val: CacheToGitHubActions): CacheToGitHubActions;
|
|
1518
|
+
/**
|
|
1519
|
+
* Include an inline cache with the exported image.
|
|
1520
|
+
*/
|
|
1518
1521
|
interface CacheToInline {
|
|
1519
1522
|
}
|
|
1520
1523
|
interface CacheToLocal {
|
|
@@ -1566,9 +1569,12 @@ export declare namespace buildx {
|
|
|
1566
1569
|
ignoreError?: pulumi.Input<boolean>;
|
|
1567
1570
|
/**
|
|
1568
1571
|
* Export cache manifest as an OCI-compatible image manifest instead of a
|
|
1569
|
-
* manifest list
|
|
1572
|
+
* manifest list. Requires `ociMediaTypes` to also be `true`.
|
|
1570
1573
|
*
|
|
1571
|
-
*
|
|
1574
|
+
* Some registries like AWS ECR will not work with caching if this is
|
|
1575
|
+
* `false`.
|
|
1576
|
+
*
|
|
1577
|
+
* Defaults to `false` to match Docker's default behavior.
|
|
1572
1578
|
*/
|
|
1573
1579
|
imageManifest?: pulumi.Input<boolean>;
|
|
1574
1580
|
/**
|
|
@@ -1676,6 +1682,52 @@ export declare namespace buildx {
|
|
|
1676
1682
|
*/
|
|
1677
1683
|
location?: pulumi.Input<string>;
|
|
1678
1684
|
}
|
|
1685
|
+
interface Export {
|
|
1686
|
+
/**
|
|
1687
|
+
* A no-op export. Helpful for silencing the 'no exports' warning if you
|
|
1688
|
+
* just want to populate caches.
|
|
1689
|
+
*/
|
|
1690
|
+
cacheonly?: pulumi.Input<inputs.buildx.ExportCacheOnly>;
|
|
1691
|
+
/**
|
|
1692
|
+
* When `true` this entry will be excluded. Defaults to `false`.
|
|
1693
|
+
*/
|
|
1694
|
+
disabled?: pulumi.Input<boolean>;
|
|
1695
|
+
/**
|
|
1696
|
+
* Export as a Docker image layout.
|
|
1697
|
+
*/
|
|
1698
|
+
docker?: pulumi.Input<inputs.buildx.ExportDocker>;
|
|
1699
|
+
/**
|
|
1700
|
+
* Outputs the build result into a container image format.
|
|
1701
|
+
*/
|
|
1702
|
+
image?: pulumi.Input<inputs.buildx.ExportImage>;
|
|
1703
|
+
/**
|
|
1704
|
+
* Export to a local directory as files and directories.
|
|
1705
|
+
*/
|
|
1706
|
+
local?: pulumi.Input<inputs.buildx.ExportLocal>;
|
|
1707
|
+
/**
|
|
1708
|
+
* Identical to the Docker exporter but uses OCI media types by default.
|
|
1709
|
+
*/
|
|
1710
|
+
oci?: pulumi.Input<inputs.buildx.ExportOCI>;
|
|
1711
|
+
/**
|
|
1712
|
+
* A raw string as you would provide it to the Docker CLI (e.g.,
|
|
1713
|
+
* `type=docker`)
|
|
1714
|
+
*/
|
|
1715
|
+
raw?: pulumi.Input<string>;
|
|
1716
|
+
/**
|
|
1717
|
+
* Identical to the Image exporter, but pushes by default.
|
|
1718
|
+
*/
|
|
1719
|
+
registry?: pulumi.Input<inputs.buildx.ExportRegistry>;
|
|
1720
|
+
/**
|
|
1721
|
+
* Export to a local directory as a tarball.
|
|
1722
|
+
*/
|
|
1723
|
+
tar?: pulumi.Input<inputs.buildx.ExportTar>;
|
|
1724
|
+
}
|
|
1725
|
+
/**
|
|
1726
|
+
* exportProvideDefaults sets the appropriate defaults for Export
|
|
1727
|
+
*/
|
|
1728
|
+
function exportProvideDefaults(val: Export): Export;
|
|
1729
|
+
interface ExportCacheOnly {
|
|
1730
|
+
}
|
|
1679
1731
|
interface ExportDocker {
|
|
1680
1732
|
/**
|
|
1681
1733
|
* Attach an arbitrary key/value annotation to the image.
|
|
@@ -1716,45 +1768,6 @@ export declare namespace buildx {
|
|
|
1716
1768
|
* exportDockerProvideDefaults sets the appropriate defaults for ExportDocker
|
|
1717
1769
|
*/
|
|
1718
1770
|
function exportDockerProvideDefaults(val: ExportDocker): ExportDocker;
|
|
1719
|
-
interface ExportEntry {
|
|
1720
|
-
/**
|
|
1721
|
-
* When `true` this entry will be excluded. Defaults to `false`.
|
|
1722
|
-
*/
|
|
1723
|
-
disabled?: pulumi.Input<boolean>;
|
|
1724
|
-
/**
|
|
1725
|
-
* Export as a Docker image layout.
|
|
1726
|
-
*/
|
|
1727
|
-
docker?: pulumi.Input<inputs.buildx.ExportDocker>;
|
|
1728
|
-
/**
|
|
1729
|
-
* Outputs the build result into a container image format.
|
|
1730
|
-
*/
|
|
1731
|
-
image?: pulumi.Input<inputs.buildx.ExportImage>;
|
|
1732
|
-
/**
|
|
1733
|
-
* Export to a local directory as files and directories.
|
|
1734
|
-
*/
|
|
1735
|
-
local?: pulumi.Input<inputs.buildx.ExportLocal>;
|
|
1736
|
-
/**
|
|
1737
|
-
* Identical to the Docker exporter but uses OCI media types by default.
|
|
1738
|
-
*/
|
|
1739
|
-
oci?: pulumi.Input<inputs.buildx.ExportOCI>;
|
|
1740
|
-
/**
|
|
1741
|
-
* A raw string as you would provide it to the Docker CLI (e.g.,
|
|
1742
|
-
* `type=docker`)
|
|
1743
|
-
*/
|
|
1744
|
-
raw?: pulumi.Input<string>;
|
|
1745
|
-
/**
|
|
1746
|
-
* Identical to the Image exporter, but pushes by default.
|
|
1747
|
-
*/
|
|
1748
|
-
registry?: pulumi.Input<inputs.buildx.ExportRegistry>;
|
|
1749
|
-
/**
|
|
1750
|
-
* Export to a local directory as a tarball.
|
|
1751
|
-
*/
|
|
1752
|
-
tar?: pulumi.Input<inputs.buildx.ExportTar>;
|
|
1753
|
-
}
|
|
1754
|
-
/**
|
|
1755
|
-
* exportEntryProvideDefaults sets the appropriate defaults for ExportEntry
|
|
1756
|
-
*/
|
|
1757
|
-
function exportEntryProvideDefaults(val: ExportEntry): ExportEntry;
|
|
1758
1771
|
interface ExportImage {
|
|
1759
1772
|
/**
|
|
1760
1773
|
* Attach an arbitrary key/value annotation to the image.
|
package/types/input.js
CHANGED
|
@@ -9,12 +9,12 @@ const utilities = require("../utilities");
|
|
|
9
9
|
var buildx;
|
|
10
10
|
(function (buildx) {
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* cacheFromProvideDefaults sets the appropriate defaults for CacheFrom
|
|
13
13
|
*/
|
|
14
|
-
function
|
|
14
|
+
function cacheFromProvideDefaults(val) {
|
|
15
15
|
return Object.assign(Object.assign({}, val), { gha: (val.gha ? pulumi.output(val.gha).apply(inputs.buildx.cacheFromGitHubActionsProvideDefaults) : undefined), s3: (val.s3 ? pulumi.output(val.s3).apply(inputs.buildx.cacheFromS3ProvideDefaults) : undefined) });
|
|
16
16
|
}
|
|
17
|
-
buildx.
|
|
17
|
+
buildx.cacheFromProvideDefaults = cacheFromProvideDefaults;
|
|
18
18
|
/**
|
|
19
19
|
* cacheFromGitHubActionsProvideDefaults sets the appropriate defaults for CacheFromGitHubActions
|
|
20
20
|
*/
|
|
@@ -31,6 +31,13 @@ var buildx;
|
|
|
31
31
|
return Object.assign(Object.assign({}, val), { accessKeyId: (_a = (val.accessKeyId)) !== null && _a !== void 0 ? _a : (utilities.getEnv("AWS_ACCESS_KEY_ID") || ""), region: (_b = (val.region)) !== null && _b !== void 0 ? _b : (utilities.getEnv("AWS_REGION") || ""), secretAccessKey: (_c = (val.secretAccessKey)) !== null && _c !== void 0 ? _c : (utilities.getEnv("AWS_SECRET_ACCESS_KEY") || ""), sessionToken: (_d = (val.sessionToken)) !== null && _d !== void 0 ? _d : (utilities.getEnv("AWS_SESSION_TOKEN") || "") });
|
|
32
32
|
}
|
|
33
33
|
buildx.cacheFromS3ProvideDefaults = cacheFromS3ProvideDefaults;
|
|
34
|
+
/**
|
|
35
|
+
* cacheToProvideDefaults sets the appropriate defaults for CacheTo
|
|
36
|
+
*/
|
|
37
|
+
function cacheToProvideDefaults(val) {
|
|
38
|
+
return Object.assign(Object.assign({}, val), { azblob: (val.azblob ? pulumi.output(val.azblob).apply(inputs.buildx.cacheToAzureBlobProvideDefaults) : undefined), gha: (val.gha ? pulumi.output(val.gha).apply(inputs.buildx.cacheToGitHubActionsProvideDefaults) : undefined), local: (val.local ? pulumi.output(val.local).apply(inputs.buildx.cacheToLocalProvideDefaults) : undefined), registry: (val.registry ? pulumi.output(val.registry).apply(inputs.buildx.cacheToRegistryProvideDefaults) : undefined), s3: (val.s3 ? pulumi.output(val.s3).apply(inputs.buildx.cacheToS3ProvideDefaults) : undefined) });
|
|
39
|
+
}
|
|
40
|
+
buildx.cacheToProvideDefaults = cacheToProvideDefaults;
|
|
34
41
|
/**
|
|
35
42
|
* cacheToAzureBlobProvideDefaults sets the appropriate defaults for CacheToAzureBlob
|
|
36
43
|
*/
|
|
@@ -39,13 +46,6 @@ var buildx;
|
|
|
39
46
|
return Object.assign(Object.assign({}, val), { ignoreError: (_a = (val.ignoreError)) !== null && _a !== void 0 ? _a : false, mode: (_b = (val.mode)) !== null && _b !== void 0 ? _b : "min" });
|
|
40
47
|
}
|
|
41
48
|
buildx.cacheToAzureBlobProvideDefaults = cacheToAzureBlobProvideDefaults;
|
|
42
|
-
/**
|
|
43
|
-
* cacheToEntryProvideDefaults sets the appropriate defaults for CacheToEntry
|
|
44
|
-
*/
|
|
45
|
-
function cacheToEntryProvideDefaults(val) {
|
|
46
|
-
return Object.assign(Object.assign({}, val), { azblob: (val.azblob ? pulumi.output(val.azblob).apply(inputs.buildx.cacheToAzureBlobProvideDefaults) : undefined), gha: (val.gha ? pulumi.output(val.gha).apply(inputs.buildx.cacheToGitHubActionsProvideDefaults) : undefined), local: (val.local ? pulumi.output(val.local).apply(inputs.buildx.cacheToLocalProvideDefaults) : undefined), registry: (val.registry ? pulumi.output(val.registry).apply(inputs.buildx.cacheToRegistryProvideDefaults) : undefined), s3: (val.s3 ? pulumi.output(val.s3).apply(inputs.buildx.cacheToS3ProvideDefaults) : undefined) });
|
|
47
|
-
}
|
|
48
|
-
buildx.cacheToEntryProvideDefaults = cacheToEntryProvideDefaults;
|
|
49
49
|
/**
|
|
50
50
|
* cacheToGitHubActionsProvideDefaults sets the appropriate defaults for CacheToGitHubActions
|
|
51
51
|
*/
|
|
@@ -78,6 +78,13 @@ var buildx;
|
|
|
78
78
|
return Object.assign(Object.assign({}, val), { accessKeyId: (_a = (val.accessKeyId)) !== null && _a !== void 0 ? _a : (utilities.getEnv("AWS_ACCESS_KEY_ID") || ""), ignoreError: (_b = (val.ignoreError)) !== null && _b !== void 0 ? _b : false, mode: (_c = (val.mode)) !== null && _c !== void 0 ? _c : "min", region: (_d = (val.region)) !== null && _d !== void 0 ? _d : (utilities.getEnv("AWS_REGION") || ""), secretAccessKey: (_e = (val.secretAccessKey)) !== null && _e !== void 0 ? _e : (utilities.getEnv("AWS_SECRET_ACCESS_KEY") || ""), sessionToken: (_f = (val.sessionToken)) !== null && _f !== void 0 ? _f : (utilities.getEnv("AWS_SESSION_TOKEN") || "") });
|
|
79
79
|
}
|
|
80
80
|
buildx.cacheToS3ProvideDefaults = cacheToS3ProvideDefaults;
|
|
81
|
+
/**
|
|
82
|
+
* exportProvideDefaults sets the appropriate defaults for Export
|
|
83
|
+
*/
|
|
84
|
+
function exportProvideDefaults(val) {
|
|
85
|
+
return Object.assign(Object.assign({}, val), { docker: (val.docker ? pulumi.output(val.docker).apply(inputs.buildx.exportDockerProvideDefaults) : undefined), image: (val.image ? pulumi.output(val.image).apply(inputs.buildx.exportImageProvideDefaults) : undefined), oci: (val.oci ? pulumi.output(val.oci).apply(inputs.buildx.exportOCIProvideDefaults) : undefined), registry: (val.registry ? pulumi.output(val.registry).apply(inputs.buildx.exportRegistryProvideDefaults) : undefined) });
|
|
86
|
+
}
|
|
87
|
+
buildx.exportProvideDefaults = exportProvideDefaults;
|
|
81
88
|
/**
|
|
82
89
|
* exportDockerProvideDefaults sets the appropriate defaults for ExportDocker
|
|
83
90
|
*/
|
|
@@ -86,13 +93,6 @@ var buildx;
|
|
|
86
93
|
return Object.assign(Object.assign({}, val), { compression: (_a = (val.compression)) !== null && _a !== void 0 ? _a : "gzip", compressionLevel: (_b = (val.compressionLevel)) !== null && _b !== void 0 ? _b : 0, forceCompression: (_c = (val.forceCompression)) !== null && _c !== void 0 ? _c : false, ociMediaTypes: (_d = (val.ociMediaTypes)) !== null && _d !== void 0 ? _d : false, tar: (_e = (val.tar)) !== null && _e !== void 0 ? _e : true });
|
|
87
94
|
}
|
|
88
95
|
buildx.exportDockerProvideDefaults = exportDockerProvideDefaults;
|
|
89
|
-
/**
|
|
90
|
-
* exportEntryProvideDefaults sets the appropriate defaults for ExportEntry
|
|
91
|
-
*/
|
|
92
|
-
function exportEntryProvideDefaults(val) {
|
|
93
|
-
return Object.assign(Object.assign({}, val), { docker: (val.docker ? pulumi.output(val.docker).apply(inputs.buildx.exportDockerProvideDefaults) : undefined), image: (val.image ? pulumi.output(val.image).apply(inputs.buildx.exportImageProvideDefaults) : undefined), oci: (val.oci ? pulumi.output(val.oci).apply(inputs.buildx.exportOCIProvideDefaults) : undefined), registry: (val.registry ? pulumi.output(val.registry).apply(inputs.buildx.exportRegistryProvideDefaults) : undefined) });
|
|
94
|
-
}
|
|
95
|
-
buildx.exportEntryProvideDefaults = exportEntryProvideDefaults;
|
|
96
96
|
/**
|
|
97
97
|
* exportImageProvideDefaults sets the appropriate defaults for ExportImage
|
|
98
98
|
*/
|
package/types/input.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAIzC,0CAA0C;AAivC1C,IAAiB,MAAM,
|
|
1
|
+
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":"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"}
|