@pulumi/docker 4.12.0-alpha.1775778784 → 4.12.0-alpha.1775837875

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/docker",
3
- "version": "4.12.0-alpha.1775778784",
3
+ "version": "4.12.0-alpha.1775837875",
4
4
  "description": "A Pulumi package for interacting with Docker in Pulumi programs",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -24,6 +24,6 @@
24
24
  "pulumi": {
25
25
  "resource": true,
26
26
  "name": "docker",
27
- "version": "4.12.0-alpha.1775778784"
27
+ "version": "4.12.0-alpha.1775837875"
28
28
  }
29
29
  }
package/secret.d.ts CHANGED
@@ -16,7 +16,7 @@ import * as outputs from "./types/output";
16
16
  *
17
17
  * const foo = new docker.Secret("foo", {
18
18
  * name: "foo",
19
- * data: std.index.base64encode({
19
+ * data: std.base64encode({
20
20
  * input: "{\"foo\": \"s3cr3t\"}",
21
21
  * }).result,
22
22
  * });
package/secret.js CHANGED
@@ -20,7 +20,7 @@ const utilities = require("./utilities");
20
20
  *
21
21
  * const foo = new docker.Secret("foo", {
22
22
  * name: "foo",
23
- * data: std.index.base64encode({
23
+ * data: std.base64encode({
24
24
  * input: "{\"foo\": \"s3cr3t\"}",
25
25
  * }).result,
26
26
  * });