@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.
Files changed (71) hide show
  1. package/config/vars.d.ts +6 -8
  2. package/config/vars.js.map +1 -1
  3. package/container.d.ts +46 -57
  4. package/container.js +22 -21
  5. package/container.js.map +1 -1
  6. package/getLogs.d.ts +1 -1
  7. package/getLogs.js +14 -1
  8. package/getLogs.js.map +1 -1
  9. package/getNetwork.d.ts +2 -2
  10. package/getNetwork.js +4 -1
  11. package/getNetwork.js.map +1 -1
  12. package/getPlugin.d.ts +27 -9
  13. package/getPlugin.js +32 -9
  14. package/getPlugin.js.map +1 -1
  15. package/getRegistryImage.d.ts +9 -9
  16. package/getRegistryImage.js +13 -9
  17. package/getRegistryImage.js.map +1 -1
  18. package/getRemoteImage.d.ts +9 -1
  19. package/getRemoteImage.js +12 -1
  20. package/getRemoteImage.js.map +1 -1
  21. package/image.d.ts +8 -6
  22. package/image.js +7 -4
  23. package/image.js.map +1 -1
  24. package/index.d.ts +1 -2
  25. package/index.js +1 -3
  26. package/index.js.map +1 -1
  27. package/network.d.ts +19 -19
  28. package/network.js +13 -13
  29. package/package.json +4 -3
  30. package/plugin.d.ts +3 -20
  31. package/plugin.js +0 -17
  32. package/plugin.js.map +1 -1
  33. package/provider.d.ts +11 -14
  34. package/provider.js.map +1 -1
  35. package/registryImage.d.ts +3 -20
  36. package/registryImage.js +0 -17
  37. package/registryImage.js.map +1 -1
  38. package/remoteImage.d.ts +44 -16
  39. package/remoteImage.js +32 -4
  40. package/remoteImage.js.map +1 -1
  41. package/secret.d.ts +1 -1
  42. package/secret.js +1 -1
  43. package/service.d.ts +23 -30
  44. package/service.js +23 -30
  45. package/service.js.map +1 -1
  46. package/serviceConfig.d.ts +13 -13
  47. package/serviceConfig.js +13 -13
  48. package/types/enums/index.d.ts +0 -2
  49. package/types/enums/index.js +1 -4
  50. package/types/enums/index.js.map +1 -1
  51. package/types/input.d.ts +3 -767
  52. package/types/input.js +0 -116
  53. package/types/input.js.map +1 -1
  54. package/types/output.d.ts +4 -769
  55. package/types/output.js +0 -115
  56. package/types/output.js.map +1 -1
  57. package/volume.d.ts +16 -16
  58. package/volume.js +13 -13
  59. package/buildx/image.d.ts +0 -916
  60. package/buildx/image.js +0 -558
  61. package/buildx/image.js.map +0 -1
  62. package/buildx/index.d.ts +0 -7
  63. package/buildx/index.js +0 -42
  64. package/buildx/index.js.map +0 -1
  65. package/buildx/index_.d.ts +0 -140
  66. package/buildx/index_.js +0 -130
  67. package/buildx/index_.js.map +0 -1
  68. package/package.json.bak +0 -28
  69. package/types/enums/buildx/index.d.ts +0 -72
  70. package/types/enums/buildx/index.js +0 -74
  71. package/types/enums/buildx/index.js.map +0 -1
@@ -4,31 +4,31 @@ import * as pulumi from "@pulumi/pulumi";
4
4
  *
5
5
  * ### Example
6
6
  *
7
- * Assuming you created a `config` as follows
7
+ * Assuming you created a `config` as follows
8
8
  *
9
- * #!/bin/bash
9
+ * #!/bin/bash
10
10
  *
11
- * printf '{"a":"b"}' | docker config create foo -
11
+ * printf '{"a":"b"}' | docker config create foo -
12
12
  *
13
- * prints the id
13
+ * prints the id
14
14
  *
15
- * 08c26c477474478d971139f750984775a7f019dbe8a2e7f09d66a187c009e66d
15
+ * 08c26c477474478d971139f750984775a7f019dbe8a2e7f09d66a187c009e66d
16
16
  *
17
- * you provide the definition for the resource as follows
17
+ * you provide the definition for the resource as follows
18
18
  *
19
- * terraform
19
+ * terraform
20
20
  *
21
- * resource "docker_config" "foo" {
21
+ * resource "docker_config" "foo" {
22
22
  *
23
- * name = "foo"
23
+ * name = "foo"
24
24
  *
25
- * data = base64encode("{\"a\": \"b\"}")
25
+ * data = base64encode("{\"a\": \"b\"}")
26
26
  *
27
- * }
27
+ * }
28
28
  *
29
- * then the import command is as follows
29
+ * then the import command is as follows
30
30
  *
31
- * #!/bin/bash
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
- * Assuming you created a `config` as follows
13
+ * Assuming you created a `config` as follows
14
14
  *
15
- * #!/bin/bash
15
+ * #!/bin/bash
16
16
  *
17
- * printf '{"a":"b"}' | docker config create foo -
17
+ * printf '{"a":"b"}' | docker config create foo -
18
18
  *
19
- * prints the id
19
+ * prints the id
20
20
  *
21
- * 08c26c477474478d971139f750984775a7f019dbe8a2e7f09d66a187c009e66d
21
+ * 08c26c477474478d971139f750984775a7f019dbe8a2e7f09d66a187c009e66d
22
22
  *
23
- * you provide the definition for the resource as follows
23
+ * you provide the definition for the resource as follows
24
24
  *
25
- * terraform
25
+ * terraform
26
26
  *
27
- * resource "docker_config" "foo" {
27
+ * resource "docker_config" "foo" {
28
28
  *
29
- * name = "foo"
29
+ * name = "foo"
30
30
  *
31
- * data = base64encode("{\"a\": \"b\"}")
31
+ * data = base64encode("{\"a\": \"b\"}")
32
32
  *
33
- * }
33
+ * }
34
34
  *
35
- * then the import command is as follows
35
+ * then the import command is as follows
36
36
  *
37
- * #!/bin/bash
37
+ * #!/bin/bash
38
38
  *
39
39
  * ```sh
40
40
  * $ pulumi import docker:index/serviceConfig:ServiceConfig foo 08c26c477474478d971139f750984775a7f019dbe8a2e7f09d66a187c009e66d
@@ -1,5 +1,3 @@
1
- import * as buildx from "./buildx";
2
- export { buildx, };
3
1
  export declare const BuilderVersion: {
4
2
  /**
5
3
  * The first generation builder for Docker Daemon
@@ -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 = exports.buildx = void 0;
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
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/enums/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,sBAAsB;AACtB,mCAAmC;AAG/B,wBAAM;AAGG,QAAA,cAAc,GAAG;IAC1B;;OAEG;IACH,SAAS,EAAE,WAAW;IACtB;;OAEG;IACH,eAAe,EAAE,iBAAiB;CAC5B,CAAC"}
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"}