@pulumi/command 0.12.0-alpha.1718886727 → 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/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":"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"}
|
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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"}
|