@pulumi/command 0.12.0-alpha.1718875861 → 0.12.0-alpha.1718907057
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/local/command.d.ts +40 -6
- package/local/command.js +32 -4
- package/local/command.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/remote/command.d.ts +42 -4
- package/remote/command.js +34 -2
- package/remote/command.js.map +1 -1
- package/remote/copyToRemote.d.ts +67 -0
- package/remote/{copyFile.js → copyToRemote.js} +17 -17
- package/remote/copyToRemote.js.map +1 -0
- package/remote/index.d.ts +3 -3
- package/remote/index.js +5 -5
- package/remote/index.js.map +1 -1
- package/remote/copyFile.d.ts +0 -67
- package/remote/copyFile.js.map +0 -1
package/local/command.d.ts
CHANGED
|
@@ -2,10 +2,38 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as enums from "../types/enums";
|
|
3
3
|
/**
|
|
4
4
|
* A local command to be executed.
|
|
5
|
-
*
|
|
6
|
-
* `dependsOn` or `parent` resource options. A command is considered to have
|
|
7
|
-
*
|
|
8
|
-
*
|
|
5
|
+
*
|
|
6
|
+
* This command can be inserted into the life cycles of other resources using the `dependsOn` or `parent` resource options. A command is considered to have failed when it finished with a non-zero exit code. This will fail the CRUD step of the `Command` resource.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
* ### Triggers
|
|
10
|
+
*
|
|
11
|
+
* This example defines several trigger values of various kinds. Changes to any of them will cause `cmd` to be re-run.
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as command from "@pulumi/command";
|
|
16
|
+
* import * as random from "@pulumi/random";
|
|
17
|
+
*
|
|
18
|
+
* const str = "foo";
|
|
19
|
+
* const fileAsset = new pulumi.asset.FileAsset("Pulumi.yaml");
|
|
20
|
+
* const rand = new random.RandomString("rand", {length: 5});
|
|
21
|
+
* const localFile = new command.local.Command("localFile", {
|
|
22
|
+
* create: "touch foo.txt",
|
|
23
|
+
* archivePaths: ["*.txt"],
|
|
24
|
+
* });
|
|
25
|
+
*
|
|
26
|
+
* const cmd = new command.local.Command("cmd", {
|
|
27
|
+
* create: "echo create > op.txt",
|
|
28
|
+
* delete: "echo delete >> op.txt",
|
|
29
|
+
* triggers: [
|
|
30
|
+
* str,
|
|
31
|
+
* rand.result,
|
|
32
|
+
* fileAsset,
|
|
33
|
+
* localFile.archive,
|
|
34
|
+
* ],
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
9
37
|
*/
|
|
10
38
|
export declare class Command extends pulumi.CustomResource {
|
|
11
39
|
/**
|
|
@@ -166,7 +194,10 @@ export declare class Command extends pulumi.CustomResource {
|
|
|
166
194
|
*/
|
|
167
195
|
readonly stdout: pulumi.Output<string>;
|
|
168
196
|
/**
|
|
169
|
-
* Trigger
|
|
197
|
+
* Trigger a resource replacement on changes to any of these values. The
|
|
198
|
+
* trigger values can be of any type. If a value is different in the current update compared to the
|
|
199
|
+
* previous update, the resource will be replaced, i.e., the "create" command will be re-run.
|
|
200
|
+
* Please see the resource documentation for examples.
|
|
170
201
|
*/
|
|
171
202
|
readonly triggers: pulumi.Output<any[] | undefined>;
|
|
172
203
|
/**
|
|
@@ -314,7 +345,10 @@ export interface CommandArgs {
|
|
|
314
345
|
*/
|
|
315
346
|
stdin?: pulumi.Input<string>;
|
|
316
347
|
/**
|
|
317
|
-
* Trigger
|
|
348
|
+
* Trigger a resource replacement on changes to any of these values. The
|
|
349
|
+
* trigger values can be of any type. If a value is different in the current update compared to the
|
|
350
|
+
* previous update, the resource will be replaced, i.e., the "create" command will be re-run.
|
|
351
|
+
* Please see the resource documentation for examples.
|
|
318
352
|
*/
|
|
319
353
|
triggers?: pulumi.Input<any[]>;
|
|
320
354
|
/**
|
package/local/command.js
CHANGED
|
@@ -7,10 +7,38 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* A local command to be executed.
|
|
10
|
-
*
|
|
11
|
-
* `dependsOn` or `parent` resource options. A command is considered to have
|
|
12
|
-
*
|
|
13
|
-
*
|
|
10
|
+
*
|
|
11
|
+
* This command can be inserted into the life cycles of other resources using the `dependsOn` or `parent` resource options. A command is considered to have failed when it finished with a non-zero exit code. This will fail the CRUD step of the `Command` resource.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
* ### Triggers
|
|
15
|
+
*
|
|
16
|
+
* This example defines several trigger values of various kinds. Changes to any of them will cause `cmd` to be re-run.
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as command from "@pulumi/command";
|
|
21
|
+
* import * as random from "@pulumi/random";
|
|
22
|
+
*
|
|
23
|
+
* const str = "foo";
|
|
24
|
+
* const fileAsset = new pulumi.asset.FileAsset("Pulumi.yaml");
|
|
25
|
+
* const rand = new random.RandomString("rand", {length: 5});
|
|
26
|
+
* const localFile = new command.local.Command("localFile", {
|
|
27
|
+
* create: "touch foo.txt",
|
|
28
|
+
* archivePaths: ["*.txt"],
|
|
29
|
+
* });
|
|
30
|
+
*
|
|
31
|
+
* const cmd = new command.local.Command("cmd", {
|
|
32
|
+
* create: "echo create > op.txt",
|
|
33
|
+
* delete: "echo delete >> op.txt",
|
|
34
|
+
* triggers: [
|
|
35
|
+
* str,
|
|
36
|
+
* rand.result,
|
|
37
|
+
* fileAsset,
|
|
38
|
+
* localFile.archive,
|
|
39
|
+
* ],
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
14
42
|
*/
|
|
15
43
|
class Command extends pulumi.CustomResource {
|
|
16
44
|
/**
|
package/local/command.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command.js","sourceRoot":"","sources":["../../local/command.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"command.js","sourceRoot":"","sources":["../../local/command.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,OAAO,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IA4JD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAkB,EAAE,IAAmC;;QAC7E,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,cAAc,CAAC,wBAAwB,CAAC,GAAG,MAAA,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC,mCAAI,IAAI,CAAC;YACpG,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,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,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;aAAM;YACH,cAAc,CAAC,wBAAwB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7D,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACnD,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,gBAAgB,GAAG,EAAE,gBAAgB,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC;QAC/D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;QACnD,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AAtOL,0BAuOC;AA1NG,gBAAgB;AACO,oBAAY,GAAG,uBAAuB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/command",
|
|
3
|
-
"version": "0.12.0-alpha.
|
|
3
|
+
"version": "0.12.0-alpha.1718907057",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"command",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource command 0.12.0-alpha.
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource command 0.12.0-alpha.1718907057"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "command",
|
|
27
|
-
"version": "0.12.0-alpha.
|
|
27
|
+
"version": "0.12.0-alpha.1718907057"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/command",
|
|
3
|
-
"version": "0.12.0-alpha.
|
|
3
|
+
"version": "0.12.0-alpha.1718907057",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"command",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "command",
|
|
26
|
-
"version": "0.12.0-alpha.
|
|
26
|
+
"version": "0.12.0-alpha.1718907057"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/remote/command.d.ts
CHANGED
|
@@ -3,8 +3,40 @@ import * as inputs from "../types/input";
|
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
import * as enums from "../types/enums";
|
|
5
5
|
/**
|
|
6
|
-
* A command to run on a remote host.
|
|
7
|
-
*
|
|
6
|
+
* A command to run on a remote host. The connection is established via ssh.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
* ### Triggers
|
|
10
|
+
*
|
|
11
|
+
* This example defines several trigger values of various kinds. Changes to any of them will cause `cmd` to be re-run.
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as command from "@pulumi/command";
|
|
16
|
+
* import * as random from "@pulumi/random";
|
|
17
|
+
*
|
|
18
|
+
* const str = "foo";
|
|
19
|
+
* const fileAsset = new pulumi.asset.FileAsset("Pulumi.yaml");
|
|
20
|
+
* const rand = new random.RandomString("rand", {length: 5});
|
|
21
|
+
* const localFile = new command.local.Command("localFile", {
|
|
22
|
+
* create: "touch foo.txt",
|
|
23
|
+
* archivePaths: ["*.txt"],
|
|
24
|
+
* });
|
|
25
|
+
* const cmd = new command.remote.Command("cmd", {
|
|
26
|
+
* connection: {
|
|
27
|
+
* host: "insert host here",
|
|
28
|
+
* },
|
|
29
|
+
* create: "echo create > op.txt",
|
|
30
|
+
* delete: "echo delete >> op.txt",
|
|
31
|
+
* triggers: [
|
|
32
|
+
* str,
|
|
33
|
+
* rand.result,
|
|
34
|
+
* fileAsset,
|
|
35
|
+
* localFile.archive,
|
|
36
|
+
* ],
|
|
37
|
+
* });
|
|
38
|
+
*
|
|
39
|
+
* ```
|
|
8
40
|
*/
|
|
9
41
|
export declare class Command extends pulumi.CustomResource {
|
|
10
42
|
/**
|
|
@@ -69,7 +101,10 @@ export declare class Command extends pulumi.CustomResource {
|
|
|
69
101
|
*/
|
|
70
102
|
readonly stdout: pulumi.Output<string>;
|
|
71
103
|
/**
|
|
72
|
-
* Trigger
|
|
104
|
+
* Trigger a resource replacement on changes to any of these values. The
|
|
105
|
+
* trigger values can be of any type. If a value is different in the current update compared to the
|
|
106
|
+
* previous update, the resource will be replaced, i.e., the "create" command will be re-run.
|
|
107
|
+
* Please see the resource documentation for examples.
|
|
73
108
|
*/
|
|
74
109
|
readonly triggers: pulumi.Output<any[] | undefined>;
|
|
75
110
|
/**
|
|
@@ -132,7 +167,10 @@ export interface CommandArgs {
|
|
|
132
167
|
*/
|
|
133
168
|
stdin?: pulumi.Input<string>;
|
|
134
169
|
/**
|
|
135
|
-
* Trigger
|
|
170
|
+
* Trigger a resource replacement on changes to any of these values. The
|
|
171
|
+
* trigger values can be of any type. If a value is different in the current update compared to the
|
|
172
|
+
* previous update, the resource will be replaced, i.e., the "create" command will be re-run.
|
|
173
|
+
* Please see the resource documentation for examples.
|
|
136
174
|
*/
|
|
137
175
|
triggers?: pulumi.Input<any[]>;
|
|
138
176
|
/**
|
package/remote/command.js
CHANGED
|
@@ -7,8 +7,40 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const inputs = require("../types/input");
|
|
8
8
|
const utilities = require("../utilities");
|
|
9
9
|
/**
|
|
10
|
-
* A command to run on a remote host.
|
|
11
|
-
*
|
|
10
|
+
* A command to run on a remote host. The connection is established via ssh.
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
* ### Triggers
|
|
14
|
+
*
|
|
15
|
+
* This example defines several trigger values of various kinds. Changes to any of them will cause `cmd` to be re-run.
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as command from "@pulumi/command";
|
|
20
|
+
* import * as random from "@pulumi/random";
|
|
21
|
+
*
|
|
22
|
+
* const str = "foo";
|
|
23
|
+
* const fileAsset = new pulumi.asset.FileAsset("Pulumi.yaml");
|
|
24
|
+
* const rand = new random.RandomString("rand", {length: 5});
|
|
25
|
+
* const localFile = new command.local.Command("localFile", {
|
|
26
|
+
* create: "touch foo.txt",
|
|
27
|
+
* archivePaths: ["*.txt"],
|
|
28
|
+
* });
|
|
29
|
+
* const cmd = new command.remote.Command("cmd", {
|
|
30
|
+
* connection: {
|
|
31
|
+
* host: "insert host here",
|
|
32
|
+
* },
|
|
33
|
+
* create: "echo create > op.txt",
|
|
34
|
+
* delete: "echo delete >> op.txt",
|
|
35
|
+
* triggers: [
|
|
36
|
+
* str,
|
|
37
|
+
* rand.result,
|
|
38
|
+
* fileAsset,
|
|
39
|
+
* localFile.archive,
|
|
40
|
+
* ],
|
|
41
|
+
* });
|
|
42
|
+
*
|
|
43
|
+
* ```
|
|
12
44
|
*/
|
|
13
45
|
class Command extends pulumi.CustomResource {
|
|
14
46
|
/**
|
package/remote/command.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command.js","sourceRoot":"","sources":["../../remote/command.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"command.js","sourceRoot":"","sources":["../../remote/command.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Copy an Asset or Archive to a remote host.
|
|
6
|
+
*/
|
|
7
|
+
export declare class CopyToRemote extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing CopyToRemote resource's state with the given name, ID, and optional extra
|
|
10
|
+
* properties used to qualify the lookup.
|
|
11
|
+
*
|
|
12
|
+
* @param name The _unique_ name of the resulting resource.
|
|
13
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
14
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
15
|
+
*/
|
|
16
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): CopyToRemote;
|
|
17
|
+
/**
|
|
18
|
+
* Returns true if the given object is an instance of CopyToRemote. This is designed to work even
|
|
19
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
20
|
+
*/
|
|
21
|
+
static isInstance(obj: any): obj is CopyToRemote;
|
|
22
|
+
/**
|
|
23
|
+
* The parameters with which to connect to the remote host.
|
|
24
|
+
*/
|
|
25
|
+
readonly connection: pulumi.Output<outputs.remote.Connection>;
|
|
26
|
+
/**
|
|
27
|
+
* The destination path on the remote host. The last element of the path will be created if it doesn't exist but it's an error when additional elements don't exist. When the remote path is an existing directory, the source file or directory will be copied into that directory. When the source is a file and the remote path is an existing file, that file will be overwritten. When the source is a directory and the remote path an existing file, the copy will fail.
|
|
28
|
+
*/
|
|
29
|
+
readonly remotePath: pulumi.Output<string>;
|
|
30
|
+
/**
|
|
31
|
+
* An [asset or an archive](https://www.pulumi.com/docs/concepts/assets-archives/) to upload as the source of the copy. It must be path-based, i.e., be a `FileAsset` or a `FileArchive`. The item will be copied as-is; archives like .tgz will not be unpacked. Directories are copied recursively, overwriting existing files.
|
|
32
|
+
*/
|
|
33
|
+
readonly source: pulumi.Output<pulumi.asset.Asset | pulumi.asset.Archive>;
|
|
34
|
+
/**
|
|
35
|
+
* Trigger replacements on changes to this input.
|
|
36
|
+
*/
|
|
37
|
+
readonly triggers: pulumi.Output<any[] | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* Create a CopyToRemote resource with the given unique name, arguments, and options.
|
|
40
|
+
*
|
|
41
|
+
* @param name The _unique_ name of the resource.
|
|
42
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
43
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
44
|
+
*/
|
|
45
|
+
constructor(name: string, args: CopyToRemoteArgs, opts?: pulumi.CustomResourceOptions);
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* The set of arguments for constructing a CopyToRemote resource.
|
|
49
|
+
*/
|
|
50
|
+
export interface CopyToRemoteArgs {
|
|
51
|
+
/**
|
|
52
|
+
* The parameters with which to connect to the remote host.
|
|
53
|
+
*/
|
|
54
|
+
connection: pulumi.Input<inputs.remote.ConnectionArgs>;
|
|
55
|
+
/**
|
|
56
|
+
* The destination path on the remote host. The last element of the path will be created if it doesn't exist but it's an error when additional elements don't exist. When the remote path is an existing directory, the source file or directory will be copied into that directory. When the source is a file and the remote path is an existing file, that file will be overwritten. When the source is a directory and the remote path an existing file, the copy will fail.
|
|
57
|
+
*/
|
|
58
|
+
remotePath: pulumi.Input<string>;
|
|
59
|
+
/**
|
|
60
|
+
* An [asset or an archive](https://www.pulumi.com/docs/concepts/assets-archives/) to upload as the source of the copy. It must be path-based, i.e., be a `FileAsset` or a `FileArchive`. The item will be copied as-is; archives like .tgz will not be unpacked. Directories are copied recursively, overwriting existing files.
|
|
61
|
+
*/
|
|
62
|
+
source: pulumi.Input<pulumi.asset.Asset | pulumi.asset.Archive>;
|
|
63
|
+
/**
|
|
64
|
+
* Trigger replacements on changes to this input.
|
|
65
|
+
*/
|
|
66
|
+
triggers?: pulumi.Input<any[]>;
|
|
67
|
+
}
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.
|
|
5
|
+
exports.CopyToRemote = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const inputs = require("../types/input");
|
|
8
8
|
const utilities = require("../utilities");
|
|
9
9
|
/**
|
|
10
|
-
* Copy
|
|
10
|
+
* Copy an Asset or Archive to a remote host.
|
|
11
11
|
*/
|
|
12
|
-
class
|
|
12
|
+
class CopyToRemote extends pulumi.CustomResource {
|
|
13
13
|
/**
|
|
14
|
-
* Get an existing
|
|
14
|
+
* Get an existing CopyToRemote resource's state with the given name, ID, and optional extra
|
|
15
15
|
* properties used to qualify the lookup.
|
|
16
16
|
*
|
|
17
17
|
* @param name The _unique_ name of the resulting resource.
|
|
@@ -19,20 +19,20 @@ class CopyFile extends pulumi.CustomResource {
|
|
|
19
19
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
20
20
|
*/
|
|
21
21
|
static get(name, id, opts) {
|
|
22
|
-
return new
|
|
22
|
+
return new CopyToRemote(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
* Returns true if the given object is an instance of
|
|
25
|
+
* Returns true if the given object is an instance of CopyToRemote. This is designed to work even
|
|
26
26
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
27
27
|
*/
|
|
28
28
|
static isInstance(obj) {
|
|
29
29
|
if (obj === undefined || obj === null) {
|
|
30
30
|
return false;
|
|
31
31
|
}
|
|
32
|
-
return obj['__pulumiType'] ===
|
|
32
|
+
return obj['__pulumiType'] === CopyToRemote.__pulumiType;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
|
-
* Create a
|
|
35
|
+
* Create a CopyToRemote resource with the given unique name, arguments, and options.
|
|
36
36
|
*
|
|
37
37
|
* @param name The _unique_ name of the resource.
|
|
38
38
|
* @param args The arguments to use to populate this resource's properties.
|
|
@@ -45,21 +45,21 @@ class CopyFile extends pulumi.CustomResource {
|
|
|
45
45
|
if ((!args || args.connection === undefined) && !opts.urn) {
|
|
46
46
|
throw new Error("Missing required property 'connection'");
|
|
47
47
|
}
|
|
48
|
-
if ((!args || args.localPath === undefined) && !opts.urn) {
|
|
49
|
-
throw new Error("Missing required property 'localPath'");
|
|
50
|
-
}
|
|
51
48
|
if ((!args || args.remotePath === undefined) && !opts.urn) {
|
|
52
49
|
throw new Error("Missing required property 'remotePath'");
|
|
53
50
|
}
|
|
51
|
+
if ((!args || args.source === undefined) && !opts.urn) {
|
|
52
|
+
throw new Error("Missing required property 'source'");
|
|
53
|
+
}
|
|
54
54
|
resourceInputs["connection"] = (args === null || args === void 0 ? void 0 : args.connection) ? pulumi.secret((args.connection ? pulumi.output(args.connection).apply(inputs.remote.connectionArgsProvideDefaults) : undefined)) : undefined;
|
|
55
|
-
resourceInputs["localPath"] = args ? args.localPath : undefined;
|
|
56
55
|
resourceInputs["remotePath"] = args ? args.remotePath : undefined;
|
|
56
|
+
resourceInputs["source"] = args ? args.source : undefined;
|
|
57
57
|
resourceInputs["triggers"] = args ? args.triggers : undefined;
|
|
58
58
|
}
|
|
59
59
|
else {
|
|
60
60
|
resourceInputs["connection"] = undefined /*out*/;
|
|
61
|
-
resourceInputs["localPath"] = undefined /*out*/;
|
|
62
61
|
resourceInputs["remotePath"] = undefined /*out*/;
|
|
62
|
+
resourceInputs["source"] = undefined /*out*/;
|
|
63
63
|
resourceInputs["triggers"] = undefined /*out*/;
|
|
64
64
|
}
|
|
65
65
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
@@ -67,10 +67,10 @@ class CopyFile extends pulumi.CustomResource {
|
|
|
67
67
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
68
68
|
const replaceOnChanges = { replaceOnChanges: ["triggers[*]"] };
|
|
69
69
|
opts = pulumi.mergeOptions(opts, replaceOnChanges);
|
|
70
|
-
super(
|
|
70
|
+
super(CopyToRemote.__pulumiType, name, resourceInputs, opts);
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
|
-
exports.
|
|
73
|
+
exports.CopyToRemote = CopyToRemote;
|
|
74
74
|
/** @internal */
|
|
75
|
-
|
|
76
|
-
//# sourceMappingURL=
|
|
75
|
+
CopyToRemote.__pulumiType = 'command:remote:CopyToRemote';
|
|
76
|
+
//# sourceMappingURL=copyToRemote.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"copyToRemote.js","sourceRoot":"","sources":["../../remote/copyToRemote.ts"],"names":[],"mappings":"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"}
|
package/remote/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { CommandArgs } from "./command";
|
|
2
2
|
export type Command = import("./command").Command;
|
|
3
3
|
export declare const Command: typeof import("./command").Command;
|
|
4
|
-
export {
|
|
5
|
-
export type
|
|
6
|
-
export declare const
|
|
4
|
+
export { CopyToRemoteArgs } from "./copyToRemote";
|
|
5
|
+
export type CopyToRemote = import("./copyToRemote").CopyToRemote;
|
|
6
|
+
export declare const CopyToRemote: typeof import("./copyToRemote").CopyToRemote;
|
|
7
7
|
export * from "../types/enums/remote";
|
package/remote/index.js
CHANGED
|
@@ -16,13 +16,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
19
|
+
exports.CopyToRemote = exports.Command = void 0;
|
|
20
20
|
const pulumi = require("@pulumi/pulumi");
|
|
21
21
|
const utilities = require("../utilities");
|
|
22
22
|
exports.Command = null;
|
|
23
23
|
utilities.lazyLoad(exports, ["Command"], () => require("./command"));
|
|
24
|
-
exports.
|
|
25
|
-
utilities.lazyLoad(exports, ["
|
|
24
|
+
exports.CopyToRemote = null;
|
|
25
|
+
utilities.lazyLoad(exports, ["CopyToRemote"], () => require("./copyToRemote"));
|
|
26
26
|
// Export enums:
|
|
27
27
|
__exportStar(require("../types/enums/remote"), exports);
|
|
28
28
|
const _module = {
|
|
@@ -31,8 +31,8 @@ const _module = {
|
|
|
31
31
|
switch (type) {
|
|
32
32
|
case "command:remote:Command":
|
|
33
33
|
return new exports.Command(name, undefined, { urn });
|
|
34
|
-
case "command:remote:
|
|
35
|
-
return new exports.
|
|
34
|
+
case "command:remote:CopyToRemote":
|
|
35
|
+
return new exports.CopyToRemote(name, undefined, { urn });
|
|
36
36
|
default:
|
|
37
37
|
throw new Error(`unknown resource type ${type}`);
|
|
38
38
|
}
|
package/remote/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../remote/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAIxD,QAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../remote/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAIxD,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAG/E,gBAAgB;AAChB,wDAAsC;AAEtC,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,wBAAwB;gBACzB,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,6BAA6B;gBAC9B,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAA"}
|
package/remote/copyFile.d.ts
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import * as inputs from "../types/input";
|
|
3
|
-
import * as outputs from "../types/output";
|
|
4
|
-
/**
|
|
5
|
-
* Copy a local file to a remote host.
|
|
6
|
-
*/
|
|
7
|
-
export declare class CopyFile extends pulumi.CustomResource {
|
|
8
|
-
/**
|
|
9
|
-
* Get an existing CopyFile resource's state with the given name, ID, and optional extra
|
|
10
|
-
* properties used to qualify the lookup.
|
|
11
|
-
*
|
|
12
|
-
* @param name The _unique_ name of the resulting resource.
|
|
13
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
14
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
15
|
-
*/
|
|
16
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): CopyFile;
|
|
17
|
-
/**
|
|
18
|
-
* Returns true if the given object is an instance of CopyFile. This is designed to work even
|
|
19
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
20
|
-
*/
|
|
21
|
-
static isInstance(obj: any): obj is CopyFile;
|
|
22
|
-
/**
|
|
23
|
-
* The parameters with which to connect to the remote host.
|
|
24
|
-
*/
|
|
25
|
-
readonly connection: pulumi.Output<outputs.remote.Connection>;
|
|
26
|
-
/**
|
|
27
|
-
* The path of the file to be copied.
|
|
28
|
-
*/
|
|
29
|
-
readonly localPath: pulumi.Output<string>;
|
|
30
|
-
/**
|
|
31
|
-
* The destination path in the remote host.
|
|
32
|
-
*/
|
|
33
|
-
readonly remotePath: pulumi.Output<string>;
|
|
34
|
-
/**
|
|
35
|
-
* Trigger replacements on changes to this input.
|
|
36
|
-
*/
|
|
37
|
-
readonly triggers: pulumi.Output<any[] | undefined>;
|
|
38
|
-
/**
|
|
39
|
-
* Create a CopyFile resource with the given unique name, arguments, and options.
|
|
40
|
-
*
|
|
41
|
-
* @param name The _unique_ name of the resource.
|
|
42
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
43
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
44
|
-
*/
|
|
45
|
-
constructor(name: string, args: CopyFileArgs, opts?: pulumi.CustomResourceOptions);
|
|
46
|
-
}
|
|
47
|
-
/**
|
|
48
|
-
* The set of arguments for constructing a CopyFile resource.
|
|
49
|
-
*/
|
|
50
|
-
export interface CopyFileArgs {
|
|
51
|
-
/**
|
|
52
|
-
* The parameters with which to connect to the remote host.
|
|
53
|
-
*/
|
|
54
|
-
connection: pulumi.Input<inputs.remote.ConnectionArgs>;
|
|
55
|
-
/**
|
|
56
|
-
* The path of the file to be copied.
|
|
57
|
-
*/
|
|
58
|
-
localPath: pulumi.Input<string>;
|
|
59
|
-
/**
|
|
60
|
-
* The destination path in the remote host.
|
|
61
|
-
*/
|
|
62
|
-
remotePath: pulumi.Input<string>;
|
|
63
|
-
/**
|
|
64
|
-
* Trigger replacements on changes to this input.
|
|
65
|
-
*/
|
|
66
|
-
triggers?: pulumi.Input<any[]>;
|
|
67
|
-
}
|
package/remote/copyFile.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"copyFile.js","sourceRoot":"","sources":["../../remote/copyFile.ts"],"names":[],"mappings":"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"}
|