@pulumi/docker 3.6.0 → 3.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 +1 -1
- package/config/vars.js.map +1 -1
- package/container.d.ts +3 -2
- package/container.js +23 -23
- package/container.js.map +1 -1
- package/getNetwork.d.ts +1 -1
- package/getNetwork.js.map +1 -1
- package/index.d.ts +48 -16
- package/index.js +49 -41
- package/index.js.map +1 -1
- package/network.d.ts +3 -2
- package/network.js +23 -23
- package/network.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/plugin.d.ts +2 -1
- package/plugin.js +22 -22
- package/plugin.js.map +1 -1
- package/provider.d.ts +1 -1
- package/provider.js +10 -10
- package/provider.js.map +1 -1
- package/registryImage.d.ts +2 -1
- package/registryImage.js +22 -22
- package/registryImage.js.map +1 -1
- package/remoteImage.d.ts +2 -1
- package/remoteImage.js +22 -22
- package/remoteImage.js.map +1 -1
- package/secret.d.ts +3 -2
- package/secret.js +24 -22
- package/secret.js.map +1 -1
- package/service.d.ts +3 -2
- package/service.js +23 -23
- package/service.js.map +1 -1
- package/serviceConfig.d.ts +1 -1
- package/serviceConfig.js +20 -20
- package/serviceConfig.js.map +1 -1
- package/tag.js +22 -22
- package/tag.js.map +1 -1
- package/types/index.js.map +1 -1
- package/types/input.d.ts +1 -1
- package/types/output.d.ts +1 -1
- package/utilities.js +13 -1
- package/utilities.js.map +1 -1
- package/volume.d.ts +3 -2
- package/volume.js +23 -23
- package/volume.js.map +1 -1
package/volume.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
3
4
|
/**
|
|
4
5
|
* <!-- Bug: Type and Name are switched -->
|
|
5
6
|
* Creates and destroys a volume in Docker. This can be used alongside docker.Container to prepare volumes that can be shared across containers.
|
|
@@ -15,7 +16,7 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
15
16
|
*
|
|
16
17
|
* ## Import
|
|
17
18
|
*
|
|
18
|
-
* ### Example Assuming you created a `volume` as follows #!/bin/bash docker volume create
|
|
19
|
+
* ### Example Assuming you created a `volume` as follows #!/bin/bash docker volume create prints the long ID 524b0457aa2a87dd2b75c74c3e4e53f406974249e63ab3ed9bf21e5644f9dc7d you provide the definition for the resource as follows terraform resource "docker_volume" "foo" {
|
|
19
20
|
*
|
|
20
21
|
* name = "524b0457aa2a87dd2b75c74c3e4e53f406974249e63ab3ed9bf21e5644f9dc7d" } then the import command is as follows #!/bin/bash
|
|
21
22
|
*
|
package/volume.js
CHANGED
|
@@ -20,7 +20,7 @@ const utilities = require("./utilities");
|
|
|
20
20
|
*
|
|
21
21
|
* ## Import
|
|
22
22
|
*
|
|
23
|
-
* ### Example Assuming you created a `volume` as follows #!/bin/bash docker volume create
|
|
23
|
+
* ### Example Assuming you created a `volume` as follows #!/bin/bash docker volume create prints the long ID 524b0457aa2a87dd2b75c74c3e4e53f406974249e63ab3ed9bf21e5644f9dc7d you provide the definition for the resource as follows terraform resource "docker_volume" "foo" {
|
|
24
24
|
*
|
|
25
25
|
* name = "524b0457aa2a87dd2b75c74c3e4e53f406974249e63ab3ed9bf21e5644f9dc7d" } then the import command is as follows #!/bin/bash
|
|
26
26
|
*
|
|
@@ -29,28 +29,6 @@ const utilities = require("./utilities");
|
|
|
29
29
|
* ```
|
|
30
30
|
*/
|
|
31
31
|
class Volume extends pulumi.CustomResource {
|
|
32
|
-
constructor(name, argsOrState, opts) {
|
|
33
|
-
let resourceInputs = {};
|
|
34
|
-
opts = opts || {};
|
|
35
|
-
if (opts.id) {
|
|
36
|
-
const state = argsOrState;
|
|
37
|
-
resourceInputs["driver"] = state ? state.driver : undefined;
|
|
38
|
-
resourceInputs["driverOpts"] = state ? state.driverOpts : undefined;
|
|
39
|
-
resourceInputs["labels"] = state ? state.labels : undefined;
|
|
40
|
-
resourceInputs["mountpoint"] = state ? state.mountpoint : undefined;
|
|
41
|
-
resourceInputs["name"] = state ? state.name : undefined;
|
|
42
|
-
}
|
|
43
|
-
else {
|
|
44
|
-
const args = argsOrState;
|
|
45
|
-
resourceInputs["driver"] = args ? args.driver : undefined;
|
|
46
|
-
resourceInputs["driverOpts"] = args ? args.driverOpts : undefined;
|
|
47
|
-
resourceInputs["labels"] = args ? args.labels : undefined;
|
|
48
|
-
resourceInputs["name"] = args ? args.name : undefined;
|
|
49
|
-
resourceInputs["mountpoint"] = undefined /*out*/;
|
|
50
|
-
}
|
|
51
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
52
|
-
super(Volume.__pulumiType, name, resourceInputs, opts);
|
|
53
|
-
}
|
|
54
32
|
/**
|
|
55
33
|
* Get an existing Volume resource's state with the given name, ID, and optional extra
|
|
56
34
|
* properties used to qualify the lookup.
|
|
@@ -73,6 +51,28 @@ class Volume extends pulumi.CustomResource {
|
|
|
73
51
|
}
|
|
74
52
|
return obj['__pulumiType'] === Volume.__pulumiType;
|
|
75
53
|
}
|
|
54
|
+
constructor(name, argsOrState, opts) {
|
|
55
|
+
let resourceInputs = {};
|
|
56
|
+
opts = opts || {};
|
|
57
|
+
if (opts.id) {
|
|
58
|
+
const state = argsOrState;
|
|
59
|
+
resourceInputs["driver"] = state ? state.driver : undefined;
|
|
60
|
+
resourceInputs["driverOpts"] = state ? state.driverOpts : undefined;
|
|
61
|
+
resourceInputs["labels"] = state ? state.labels : undefined;
|
|
62
|
+
resourceInputs["mountpoint"] = state ? state.mountpoint : undefined;
|
|
63
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
const args = argsOrState;
|
|
67
|
+
resourceInputs["driver"] = args ? args.driver : undefined;
|
|
68
|
+
resourceInputs["driverOpts"] = args ? args.driverOpts : undefined;
|
|
69
|
+
resourceInputs["labels"] = args ? args.labels : undefined;
|
|
70
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
71
|
+
resourceInputs["mountpoint"] = undefined /*out*/;
|
|
72
|
+
}
|
|
73
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
74
|
+
super(Volume.__pulumiType, name, resourceInputs, opts);
|
|
75
|
+
}
|
|
76
76
|
}
|
|
77
77
|
exports.Volume = Volume;
|
|
78
78
|
/** @internal */
|
package/volume.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"volume.js","sourceRoot":"","sources":["../volume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"volume.js","sourceRoot":"","sources":["../volume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACpD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;;AA7EL,wBA8EC;AAhEG,gBAAgB;AACO,mBAAY,GAAG,4BAA4B,CAAC"}
|