@pulumi/command 0.11.0 → 0.11.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/index.d.ts +1 -2
- package/index.js +1 -3
- package/index.js.map +1 -1
- package/local/command.d.ts +2 -2
- package/local/index.d.ts +1 -0
- package/local/index.js +16 -0
- package/local/index.js.map +1 -1
- package/local/run.d.ts +3 -3
- package/package.json +4 -3
- package/package.json.dev +3 -2
- package/remote/command.d.ts +2 -2
- package/remote/index.d.ts +1 -0
- package/remote/index.js +16 -0
- package/remote/index.js.map +1 -1
- package/types/enums/index.d.ts +3 -2
- package/types/enums/index.js +5 -3
- package/types/enums/index.js.map +1 -1
- package/types/enums/local/index.js.map +1 -0
- package/types/enums/remote/index.d.ts +19 -0
- package/types/enums/remote/index.js +24 -0
- package/types/enums/{common → remote}/index.js.map +1 -1
- package/common/index.d.ts +0 -1
- package/common/index.js +0 -21
- package/common/index.js.map +0 -1
- package/package.json.bak +0 -27
- /package/types/enums/{common → local}/index.d.ts +0 -0
- /package/types/enums/{common → local}/index.js +0 -0
package/index.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
export { ProviderArgs } from "./provider";
|
|
2
2
|
export type Provider = import("./provider").Provider;
|
|
3
3
|
export declare const Provider: typeof import("./provider").Provider;
|
|
4
|
-
import * as common from "./common";
|
|
5
4
|
import * as local from "./local";
|
|
6
5
|
import * as remote from "./remote";
|
|
7
6
|
import * as types from "./types";
|
|
8
|
-
export {
|
|
7
|
+
export { local, remote, types, };
|
package/index.js
CHANGED
|
@@ -2,14 +2,12 @@
|
|
|
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.types = exports.remote = exports.local = exports.
|
|
5
|
+
exports.types = exports.remote = exports.local = exports.Provider = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
exports.Provider = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
|
|
10
10
|
// Export sub-modules:
|
|
11
|
-
const common = require("./common");
|
|
12
|
-
exports.common = common;
|
|
13
11
|
const local = require("./local");
|
|
14
12
|
exports.local = local;
|
|
15
13
|
const remote = require("./remote");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAK5B,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAGvE,sBAAsB;AACtB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAK5B,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAGvE,sBAAsB;AACtB,iCAAiC;AAK7B,sBAAK;AAJT,mCAAmC;AAK/B,wBAAM;AAJV,iCAAiC;AAK7B,sBAAK;AAET,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC,SAAS,EAAE;IAC9C,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,iBAAiB,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAA2B,EAAE;QACpF,IAAI,IAAI,KAAK,0BAA0B,EAAE;YACrC,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACpD;QACD,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;IACvD,CAAC;CACJ,CAAC,CAAC"}
|
package/local/command.d.ts
CHANGED
|
@@ -152,7 +152,7 @@ export declare class Command extends pulumi.CustomResource {
|
|
|
152
152
|
* stdout and stderr as outputs. If there might be secrets in the output, you can disable logging here and mark the
|
|
153
153
|
* outputs as secret via 'additionalSecretOutputs'. Defaults to logging both stdout and stderr.
|
|
154
154
|
*/
|
|
155
|
-
readonly logging: pulumi.Output<enums.
|
|
155
|
+
readonly logging: pulumi.Output<enums.local.Logging | undefined>;
|
|
156
156
|
/**
|
|
157
157
|
* The standard error of the command's process
|
|
158
158
|
*/
|
|
@@ -308,7 +308,7 @@ export interface CommandArgs {
|
|
|
308
308
|
* stdout and stderr as outputs. If there might be secrets in the output, you can disable logging here and mark the
|
|
309
309
|
* outputs as secret via 'additionalSecretOutputs'. Defaults to logging both stdout and stderr.
|
|
310
310
|
*/
|
|
311
|
-
logging?: pulumi.Input<enums.
|
|
311
|
+
logging?: pulumi.Input<enums.local.Logging>;
|
|
312
312
|
/**
|
|
313
313
|
* Pass a string to the command's process as standard in
|
|
314
314
|
*/
|
package/local/index.d.ts
CHANGED
|
@@ -4,3 +4,4 @@ export declare const Command: typeof import("./command").Command;
|
|
|
4
4
|
export { RunArgs, RunResult, RunOutputArgs } from "./run";
|
|
5
5
|
export declare const run: typeof import("./run").run;
|
|
6
6
|
export declare const runOutput: typeof import("./run").runOutput;
|
|
7
|
+
export * from "../types/enums/local";
|
package/local/index.js
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
+
};
|
|
4
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
19
|
exports.runOutput = exports.run = exports.Command = void 0;
|
|
6
20
|
const pulumi = require("@pulumi/pulumi");
|
|
@@ -10,6 +24,8 @@ utilities.lazyLoad(exports, ["Command"], () => require("./command"));
|
|
|
10
24
|
exports.run = null;
|
|
11
25
|
exports.runOutput = null;
|
|
12
26
|
utilities.lazyLoad(exports, ["run", "runOutput"], () => require("./run"));
|
|
27
|
+
// Export enums:
|
|
28
|
+
__exportStar(require("../types/enums/local"), exports);
|
|
13
29
|
const _module = {
|
|
14
30
|
version: utilities.getVersion(),
|
|
15
31
|
construct: (name, type, urn) => {
|
package/local/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../local/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../local/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;AAGxD,QAAA,GAAG,GAA+B,IAAW,CAAC;AAC9C,QAAA,SAAS,GAAqC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,KAAK,EAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;AAGzE,gBAAgB;AAChB,uDAAqC;AAErC,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,uBAAuB;gBACxB,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,CAAA"}
|
package/local/run.d.ts
CHANGED
|
@@ -119,7 +119,7 @@ export interface RunArgs {
|
|
|
119
119
|
* stdout and stderr as outputs. If there might be secrets in the output, you can disable logging here and mark the
|
|
120
120
|
* outputs as secret via 'additionalSecretOutputs'. Defaults to logging both stdout and stderr.
|
|
121
121
|
*/
|
|
122
|
-
logging?: enums.
|
|
122
|
+
logging?: enums.local.Logging;
|
|
123
123
|
/**
|
|
124
124
|
* Pass a string to the command's process as standard in
|
|
125
125
|
*/
|
|
@@ -250,7 +250,7 @@ export interface RunResult {
|
|
|
250
250
|
* stdout and stderr as outputs. If there might be secrets in the output, you can disable logging here and mark the
|
|
251
251
|
* outputs as secret via 'additionalSecretOutputs'. Defaults to logging both stdout and stderr.
|
|
252
252
|
*/
|
|
253
|
-
readonly logging?: enums.
|
|
253
|
+
readonly logging?: enums.local.Logging;
|
|
254
254
|
/**
|
|
255
255
|
* The standard error of the command's process
|
|
256
256
|
*/
|
|
@@ -383,7 +383,7 @@ export interface RunOutputArgs {
|
|
|
383
383
|
* stdout and stderr as outputs. If there might be secrets in the output, you can disable logging here and mark the
|
|
384
384
|
* outputs as secret via 'additionalSecretOutputs'. Defaults to logging both stdout and stderr.
|
|
385
385
|
*/
|
|
386
|
-
logging?: pulumi.Input<enums.
|
|
386
|
+
logging?: pulumi.Input<enums.local.Logging>;
|
|
387
387
|
/**
|
|
388
388
|
* Pass a string to the command's process as standard in
|
|
389
389
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/command",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "0.11.1",
|
|
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
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource command 0.11.1"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
|
-
"name": "command"
|
|
26
|
+
"name": "command",
|
|
27
|
+
"version": "0.11.1"
|
|
27
28
|
}
|
|
28
29
|
}
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/command",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"command",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
|
-
"name": "command"
|
|
25
|
+
"name": "command",
|
|
26
|
+
"version": "0.11.1"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/remote/command.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export declare class Command extends pulumi.CustomResource {
|
|
|
49
49
|
* stdout and stderr as outputs. If there might be secrets in the output, you can disable logging here and mark the
|
|
50
50
|
* outputs as secret via 'additionalSecretOutputs'. Defaults to logging both stdout and stderr.
|
|
51
51
|
*/
|
|
52
|
-
readonly logging: pulumi.Output<enums.
|
|
52
|
+
readonly logging: pulumi.Output<enums.remote.Logging | undefined>;
|
|
53
53
|
/**
|
|
54
54
|
* The standard error of the command's process
|
|
55
55
|
*/
|
|
@@ -114,7 +114,7 @@ export interface CommandArgs {
|
|
|
114
114
|
* stdout and stderr as outputs. If there might be secrets in the output, you can disable logging here and mark the
|
|
115
115
|
* outputs as secret via 'additionalSecretOutputs'. Defaults to logging both stdout and stderr.
|
|
116
116
|
*/
|
|
117
|
-
logging?: pulumi.Input<enums.
|
|
117
|
+
logging?: pulumi.Input<enums.remote.Logging>;
|
|
118
118
|
/**
|
|
119
119
|
* Pass a string to the command's process as standard in
|
|
120
120
|
*/
|
package/remote/index.d.ts
CHANGED
|
@@ -4,3 +4,4 @@ export declare const Command: typeof import("./command").Command;
|
|
|
4
4
|
export { CopyFileArgs } from "./copyFile";
|
|
5
5
|
export type CopyFile = import("./copyFile").CopyFile;
|
|
6
6
|
export declare const CopyFile: typeof import("./copyFile").CopyFile;
|
|
7
|
+
export * from "../types/enums/remote";
|
package/remote/index.js
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
+
};
|
|
4
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
19
|
exports.CopyFile = exports.Command = void 0;
|
|
6
20
|
const pulumi = require("@pulumi/pulumi");
|
|
@@ -9,6 +23,8 @@ exports.Command = null;
|
|
|
9
23
|
utilities.lazyLoad(exports, ["Command"], () => require("./command"));
|
|
10
24
|
exports.CopyFile = null;
|
|
11
25
|
utilities.lazyLoad(exports, ["CopyFile"], () => require("./copyFile"));
|
|
26
|
+
// Export enums:
|
|
27
|
+
__exportStar(require("../types/enums/remote"), exports);
|
|
12
28
|
const _module = {
|
|
13
29
|
version: utilities.getVersion(),
|
|
14
30
|
construct: (name, type, urn) => {
|
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
|
|
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,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAGvE,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,yBAAyB;gBAC1B,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD;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/types/enums/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
|
|
1
|
+
import * as local from "./local";
|
|
2
|
+
import * as remote from "./remote";
|
|
3
|
+
export { local, remote, };
|
package/types/enums/index.js
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
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.remote = exports.local = void 0;
|
|
6
6
|
// Export sub-modules:
|
|
7
|
-
const
|
|
8
|
-
exports.
|
|
7
|
+
const local = require("./local");
|
|
8
|
+
exports.local = local;
|
|
9
|
+
const remote = require("./remote");
|
|
10
|
+
exports.remote = remote;
|
|
9
11
|
//# sourceMappingURL=index.js.map
|
package/types/enums/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/enums/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,sBAAsB;AACtB,mCAAmC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/enums/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,sBAAsB;AACtB,iCAAiC;AAI7B,sBAAK;AAHT,mCAAmC;AAI/B,wBAAM"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/local/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAGpE,QAAA,OAAO,GAAG;IACnB;;OAEG;IACH,MAAM,EAAE,QAAQ;IAChB;;OAEG;IACH,MAAM,EAAE,QAAQ;IAChB;;OAEG;IACH,eAAe,EAAE,iBAAiB;IAClC;;OAEG;IACH,IAAI,EAAE,MAAM;CACN,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare const Logging: {
|
|
2
|
+
/**
|
|
3
|
+
* Capture stdout in logs but not stderr
|
|
4
|
+
*/
|
|
5
|
+
readonly Stdout: "stdout";
|
|
6
|
+
/**
|
|
7
|
+
* Capture stderr in logs but not stdout
|
|
8
|
+
*/
|
|
9
|
+
readonly Stderr: "stderr";
|
|
10
|
+
/**
|
|
11
|
+
* Capture stdout and stderr in logs
|
|
12
|
+
*/
|
|
13
|
+
readonly StdoutAndStderr: "stdoutAndStderr";
|
|
14
|
+
/**
|
|
15
|
+
* Capture no logs
|
|
16
|
+
*/
|
|
17
|
+
readonly None: "none";
|
|
18
|
+
};
|
|
19
|
+
export type Logging = (typeof Logging)[keyof typeof Logging];
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Logging = void 0;
|
|
6
|
+
exports.Logging = {
|
|
7
|
+
/**
|
|
8
|
+
* Capture stdout in logs but not stderr
|
|
9
|
+
*/
|
|
10
|
+
Stdout: "stdout",
|
|
11
|
+
/**
|
|
12
|
+
* Capture stderr in logs but not stdout
|
|
13
|
+
*/
|
|
14
|
+
Stderr: "stderr",
|
|
15
|
+
/**
|
|
16
|
+
* Capture stdout and stderr in logs
|
|
17
|
+
*/
|
|
18
|
+
StdoutAndStderr: "stdoutAndStderr",
|
|
19
|
+
/**
|
|
20
|
+
* Capture no logs
|
|
21
|
+
*/
|
|
22
|
+
None: "none",
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/remote/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAGpE,QAAA,OAAO,GAAG;IACnB;;OAEG;IACH,MAAM,EAAE,QAAQ;IAChB;;OAEG;IACH,MAAM,EAAE,QAAQ;IAChB;;OAEG;IACH,eAAe,EAAE,iBAAiB;IAClC;;OAEG;IACH,IAAI,EAAE,MAAM;CACN,CAAC"}
|
package/common/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../types/enums/common";
|
package/common/index.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
-
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
-
if (k2 === undefined) k2 = k;
|
|
6
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
-
}
|
|
10
|
-
Object.defineProperty(o, k2, desc);
|
|
11
|
-
}) : (function(o, m, k, k2) {
|
|
12
|
-
if (k2 === undefined) k2 = k;
|
|
13
|
-
o[k2] = m[k];
|
|
14
|
-
}));
|
|
15
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
-
};
|
|
18
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
// Export enums:
|
|
20
|
-
__exportStar(require("../types/enums/common"), exports);
|
|
21
|
-
//# sourceMappingURL=index.js.map
|
package/common/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../common/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;AAGjF,gBAAgB;AAChB,wDAAsC"}
|
package/package.json.bak
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@pulumi/command",
|
|
3
|
-
"version": "${VERSION}",
|
|
4
|
-
"keywords": [
|
|
5
|
-
"pulumi",
|
|
6
|
-
"command",
|
|
7
|
-
"category/utility",
|
|
8
|
-
"kind/native"
|
|
9
|
-
],
|
|
10
|
-
"homepage": "https://pulumi.com",
|
|
11
|
-
"repository": "https://github.com/pulumi/pulumi-command",
|
|
12
|
-
"license": "Apache-2.0",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsc"
|
|
15
|
-
},
|
|
16
|
-
"dependencies": {
|
|
17
|
-
"@pulumi/pulumi": "^3.0.0"
|
|
18
|
-
},
|
|
19
|
-
"devDependencies": {
|
|
20
|
-
"@types/node": "^14",
|
|
21
|
-
"typescript": "^4.3.5"
|
|
22
|
-
},
|
|
23
|
-
"pulumi": {
|
|
24
|
-
"resource": true,
|
|
25
|
-
"name": "command"
|
|
26
|
-
}
|
|
27
|
-
}
|
|
File without changes
|
|
File without changes
|