@pulumi/docker 4.6.0-beta.4 → 4.6.1
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/config/vars.d.ts +6 -8
- package/config/vars.js.map +1 -1
- package/container.d.ts +46 -57
- package/container.js +22 -21
- package/container.js.map +1 -1
- package/getLogs.d.ts +1 -1
- package/getLogs.js +14 -1
- package/getLogs.js.map +1 -1
- package/getNetwork.d.ts +2 -2
- package/getNetwork.js +4 -1
- package/getNetwork.js.map +1 -1
- package/getPlugin.d.ts +27 -9
- package/getPlugin.js +32 -9
- package/getPlugin.js.map +1 -1
- package/getRegistryImage.d.ts +9 -9
- package/getRegistryImage.js +13 -9
- package/getRegistryImage.js.map +1 -1
- package/getRemoteImage.d.ts +9 -1
- package/getRemoteImage.js +12 -1
- package/getRemoteImage.js.map +1 -1
- package/image.d.ts +8 -6
- package/image.js +7 -4
- package/image.js.map +1 -1
- package/index.d.ts +1 -2
- package/index.js +1 -3
- package/index.js.map +1 -1
- package/network.d.ts +19 -19
- package/network.js +13 -13
- package/package.json +4 -3
- package/plugin.d.ts +3 -20
- package/plugin.js +0 -17
- package/plugin.js.map +1 -1
- package/provider.d.ts +11 -14
- package/provider.js.map +1 -1
- package/registryImage.d.ts +3 -20
- package/registryImage.js +0 -17
- package/registryImage.js.map +1 -1
- package/remoteImage.d.ts +44 -16
- package/remoteImage.js +32 -4
- package/remoteImage.js.map +1 -1
- package/secret.d.ts +1 -1
- package/secret.js +1 -1
- package/service.d.ts +23 -30
- package/service.js +23 -30
- package/service.js.map +1 -1
- package/serviceConfig.d.ts +13 -13
- package/serviceConfig.js +13 -13
- package/types/enums/index.d.ts +0 -2
- package/types/enums/index.js +1 -4
- package/types/enums/index.js.map +1 -1
- package/types/input.d.ts +3 -767
- package/types/input.js +0 -116
- package/types/input.js.map +1 -1
- package/types/output.d.ts +4 -769
- package/types/output.js +0 -115
- package/types/output.js.map +1 -1
- package/volume.d.ts +16 -16
- package/volume.js +13 -13
- package/buildx/image.d.ts +0 -916
- package/buildx/image.js +0 -558
- package/buildx/image.js.map +0 -1
- package/buildx/index.d.ts +0 -7
- package/buildx/index.js +0 -42
- package/buildx/index.js.map +0 -1
- package/buildx/index_.d.ts +0 -140
- package/buildx/index_.js +0 -130
- package/buildx/index_.js.map +0 -1
- package/package.json.bak +0 -28
- package/types/enums/buildx/index.d.ts +0 -72
- package/types/enums/buildx/index.js +0 -74
- package/types/enums/buildx/index.js.map +0 -1
package/serviceConfig.d.ts
CHANGED
|
@@ -4,31 +4,31 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* ### Example
|
|
6
6
|
*
|
|
7
|
-
*
|
|
7
|
+
* Assuming you created a `config` as follows
|
|
8
8
|
*
|
|
9
|
-
*
|
|
9
|
+
* #!/bin/bash
|
|
10
10
|
*
|
|
11
|
-
*
|
|
11
|
+
* printf '{"a":"b"}' | docker config create foo -
|
|
12
12
|
*
|
|
13
|
-
*
|
|
13
|
+
* prints the id
|
|
14
14
|
*
|
|
15
|
-
*
|
|
15
|
+
* 08c26c477474478d971139f750984775a7f019dbe8a2e7f09d66a187c009e66d
|
|
16
16
|
*
|
|
17
|
-
*
|
|
17
|
+
* you provide the definition for the resource as follows
|
|
18
18
|
*
|
|
19
|
-
*
|
|
19
|
+
* terraform
|
|
20
20
|
*
|
|
21
|
-
*
|
|
21
|
+
* resource "docker_config" "foo" {
|
|
22
22
|
*
|
|
23
|
-
*
|
|
23
|
+
* name = "foo"
|
|
24
24
|
*
|
|
25
|
-
*
|
|
25
|
+
* data = base64encode("{\"a\": \"b\"}")
|
|
26
26
|
*
|
|
27
|
-
*
|
|
27
|
+
* }
|
|
28
28
|
*
|
|
29
|
-
*
|
|
29
|
+
* then the import command is as follows
|
|
30
30
|
*
|
|
31
|
-
*
|
|
31
|
+
* #!/bin/bash
|
|
32
32
|
*
|
|
33
33
|
* ```sh
|
|
34
34
|
* $ pulumi import docker:index/serviceConfig:ServiceConfig foo 08c26c477474478d971139f750984775a7f019dbe8a2e7f09d66a187c009e66d
|
package/serviceConfig.js
CHANGED
|
@@ -10,31 +10,31 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* ### Example
|
|
12
12
|
*
|
|
13
|
-
*
|
|
13
|
+
* Assuming you created a `config` as follows
|
|
14
14
|
*
|
|
15
|
-
*
|
|
15
|
+
* #!/bin/bash
|
|
16
16
|
*
|
|
17
|
-
*
|
|
17
|
+
* printf '{"a":"b"}' | docker config create foo -
|
|
18
18
|
*
|
|
19
|
-
*
|
|
19
|
+
* prints the id
|
|
20
20
|
*
|
|
21
|
-
*
|
|
21
|
+
* 08c26c477474478d971139f750984775a7f019dbe8a2e7f09d66a187c009e66d
|
|
22
22
|
*
|
|
23
|
-
*
|
|
23
|
+
* you provide the definition for the resource as follows
|
|
24
24
|
*
|
|
25
|
-
*
|
|
25
|
+
* terraform
|
|
26
26
|
*
|
|
27
|
-
*
|
|
27
|
+
* resource "docker_config" "foo" {
|
|
28
28
|
*
|
|
29
|
-
*
|
|
29
|
+
* name = "foo"
|
|
30
30
|
*
|
|
31
|
-
*
|
|
31
|
+
* data = base64encode("{\"a\": \"b\"}")
|
|
32
32
|
*
|
|
33
|
-
*
|
|
33
|
+
* }
|
|
34
34
|
*
|
|
35
|
-
*
|
|
35
|
+
* then the import command is as follows
|
|
36
36
|
*
|
|
37
|
-
*
|
|
37
|
+
* #!/bin/bash
|
|
38
38
|
*
|
|
39
39
|
* ```sh
|
|
40
40
|
* $ pulumi import docker:index/serviceConfig:ServiceConfig foo 08c26c477474478d971139f750984775a7f019dbe8a2e7f09d66a187c009e66d
|
package/types/enums/index.d.ts
CHANGED
package/types/enums/index.js
CHANGED
|
@@ -2,10 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.BuilderVersion =
|
|
6
|
-
// Export sub-modules:
|
|
7
|
-
const buildx = require("./buildx");
|
|
8
|
-
exports.buildx = buildx;
|
|
5
|
+
exports.BuilderVersion = void 0;
|
|
9
6
|
exports.BuilderVersion = {
|
|
10
7
|
/**
|
|
11
8
|
* The first generation builder for Docker Daemon
|
package/types/enums/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/enums/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/enums/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAGpE,QAAA,cAAc,GAAG;IAC1B;;OAEG;IACH,SAAS,EAAE,WAAW;IACtB;;OAEG;IACH,eAAe,EAAE,iBAAiB;CAC5B,CAAC"}
|