@pulumi/command 0.7.1-alpha.1676394151 → 0.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/command",
3
- "version": "v0.7.1-alpha.1676394151+694b1220",
3
+ "version": "v0.7.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 v0.7.1-alpha.1676394151+694b1220"
15
+ "install": "node scripts/install-pulumi-plugin.js resource command v0.7.1"
16
16
  },
17
17
  "dependencies": {
18
18
  "@pulumi/pulumi": "^3.0.0"
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/command",
3
- "version": "v0.7.1-alpha.1676394151+694b1220",
3
+ "version": "v0.7.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 v0.7.1-alpha.1676394151+694b1220"
15
+ "install": "node scripts/install-pulumi-plugin.js resource command v0.7.1"
16
16
  },
17
17
  "dependencies": {
18
18
  "@pulumi/pulumi": "^3.0.0"
package/types/input.d.ts CHANGED
@@ -8,6 +8,10 @@ export declare namespace remote {
8
8
  * SSH Agent socket path. Default to environment variable SSH_AUTH_SOCK if present.
9
9
  */
10
10
  agentSocketPath?: pulumi.Input<string>;
11
+ /**
12
+ * Max allowed errors on trying to dial the remote host. -1 set count to unlimited. Default value is 10
13
+ */
14
+ dialErrorLimit?: pulumi.Input<number>;
11
15
  /**
12
16
  * The address of the resource to connect to.
13
17
  */
package/types/input.js CHANGED
@@ -9,8 +9,8 @@ var remote;
9
9
  * connectionArgsProvideDefaults sets the appropriate defaults for ConnectionArgs
10
10
  */
11
11
  function connectionArgsProvideDefaults(val) {
12
- var _a, _b;
13
- return Object.assign(Object.assign({}, val), { port: (_a = (val.port)) !== null && _a !== void 0 ? _a : 22, user: (_b = (val.user)) !== null && _b !== void 0 ? _b : "root" });
12
+ var _a, _b, _c;
13
+ return Object.assign(Object.assign({}, val), { dialErrorLimit: (_a = (val.dialErrorLimit)) !== null && _a !== void 0 ? _a : 10, port: (_b = (val.port)) !== null && _b !== void 0 ? _b : 22, user: (_c = (val.user)) !== null && _c !== void 0 ? _c : "root" });
14
14
  }
15
15
  remote.connectionArgsProvideDefaults = connectionArgsProvideDefaults;
16
16
  })(remote = exports.remote || (exports.remote = {}));
@@ -1 +1 @@
1
- {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sDAAsD;AACtD,iFAAiF;;;AAQjF,IAAiB,MAAM,CA4CtB;AA5CD,WAAiB,MAAM;IAkCnB;;OAEG;IACH,SAAgB,6BAA6B,CAAC,GAAmB;;QAC7D,uCACO,GAAG,KACN,IAAI,EAAE,MAAA,CAAC,GAAG,CAAC,IAAI,CAAC,mCAAI,EAAE,EACtB,IAAI,EAAE,MAAA,CAAC,GAAG,CAAC,IAAI,CAAC,mCAAI,MAAM,IAC5B;IACN,CAAC;IANe,oCAA6B,gCAM5C,CAAA;AACL,CAAC,EA5CgB,MAAM,GAAN,cAAM,KAAN,cAAM,QA4CtB"}
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sDAAsD;AACtD,iFAAiF;;;AAQjF,IAAiB,MAAM,CAiDtB;AAjDD,WAAiB,MAAM;IAsCnB;;OAEG;IACH,SAAgB,6BAA6B,CAAC,GAAmB;;QAC7D,uCACO,GAAG,KACN,cAAc,EAAE,MAAA,CAAC,GAAG,CAAC,cAAc,CAAC,mCAAI,EAAE,EAC1C,IAAI,EAAE,MAAA,CAAC,GAAG,CAAC,IAAI,CAAC,mCAAI,EAAE,EACtB,IAAI,EAAE,MAAA,CAAC,GAAG,CAAC,IAAI,CAAC,mCAAI,MAAM,IAC5B;IACN,CAAC;IAPe,oCAA6B,gCAO5C,CAAA;AACL,CAAC,EAjDgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAiDtB"}
package/types/output.d.ts CHANGED
@@ -7,6 +7,10 @@ export declare namespace remote {
7
7
  * SSH Agent socket path. Default to environment variable SSH_AUTH_SOCK if present.
8
8
  */
9
9
  agentSocketPath?: string;
10
+ /**
11
+ * Max allowed errors on trying to dial the remote host. -1 set count to unlimited. Default value is 10
12
+ */
13
+ dialErrorLimit?: number;
10
14
  /**
11
15
  * The address of the resource to connect to.
12
16
  */
package/types/output.js CHANGED
@@ -9,8 +9,8 @@ var remote;
9
9
  * connectionProvideDefaults sets the appropriate defaults for Connection
10
10
  */
11
11
  function connectionProvideDefaults(val) {
12
- var _a, _b;
13
- return Object.assign(Object.assign({}, val), { port: (_a = (val.port)) !== null && _a !== void 0 ? _a : 22, user: (_b = (val.user)) !== null && _b !== void 0 ? _b : "root" });
12
+ var _a, _b, _c;
13
+ return Object.assign(Object.assign({}, val), { dialErrorLimit: (_a = (val.dialErrorLimit)) !== null && _a !== void 0 ? _a : 10, port: (_b = (val.port)) !== null && _b !== void 0 ? _b : 22, user: (_c = (val.user)) !== null && _c !== void 0 ? _c : "root" });
14
14
  }
15
15
  remote.connectionProvideDefaults = connectionProvideDefaults;
16
16
  })(remote = exports.remote || (exports.remote = {}));
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sDAAsD;AACtD,iFAAiF;;;AAQjF,IAAiB,MAAM,CA6CtB;AA7CD,WAAiB,MAAM;IAkCnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;;QACrD,uCACO,GAAG,KACN,IAAI,EAAE,MAAA,CAAC,GAAG,CAAC,IAAI,CAAC,mCAAI,EAAE,EACtB,IAAI,EAAE,MAAA,CAAC,GAAG,CAAC,IAAI,CAAC,mCAAI,MAAM,IAC5B;IACN,CAAC;IANe,gCAAyB,4BAMxC,CAAA;AAEL,CAAC,EA7CgB,MAAM,GAAN,cAAM,KAAN,cAAM,QA6CtB"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sDAAsD;AACtD,iFAAiF;;;AAQjF,IAAiB,MAAM,CAkDtB;AAlDD,WAAiB,MAAM;IAsCnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;;QACrD,uCACO,GAAG,KACN,cAAc,EAAE,MAAA,CAAC,GAAG,CAAC,cAAc,CAAC,mCAAI,EAAE,EAC1C,IAAI,EAAE,MAAA,CAAC,GAAG,CAAC,IAAI,CAAC,mCAAI,EAAE,EACtB,IAAI,EAAE,MAAA,CAAC,GAAG,CAAC,IAAI,CAAC,mCAAI,MAAM,IAC5B;IACN,CAAC;IAPe,gCAAyB,4BAOxC,CAAA;AAEL,CAAC,EAlDgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAkDtB"}