@pulumi/command 0.8.3-alpha.1694464088 → 0.8.3-alpha.1694559107

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.8.3-alpha.1694464088+db65c41a",
3
+ "version": "v0.8.3-alpha.1694559107+b0d3f9c3",
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.8.3-alpha.1694464088+db65c41a"
15
+ "install": "node scripts/install-pulumi-plugin.js resource command v0.8.3-alpha.1694559107+b0d3f9c3"
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.8.3-alpha.1694464088+db65c41a",
3
+ "version": "v0.8.3-alpha.1694559107+b0d3f9c3",
4
4
  "keywords": [
5
5
  "pulumi",
6
6
  "command",
package/types/input.d.ts CHANGED
@@ -9,7 +9,7 @@ export declare namespace remote {
9
9
  */
10
10
  agentSocketPath?: pulumi.Input<string>;
11
11
  /**
12
- * Max allowed errors on trying to dial the remote host. -1 set count to unlimited. Default value is 10
12
+ * Max allowed errors on trying to dial the remote host. -1 set count to unlimited. Default value is 10.
13
13
  */
14
14
  dialErrorLimit?: pulumi.Input<number>;
15
15
  /**
@@ -20,6 +20,10 @@ export declare namespace remote {
20
20
  * The password we should use for the connection.
21
21
  */
22
22
  password?: pulumi.Input<string>;
23
+ /**
24
+ * Max number of seconds for each dial attempt. 0 implies no maximum. Default value is 15 seconds.
25
+ */
26
+ perDialTimeout?: pulumi.Input<number>;
23
27
  /**
24
28
  * The port to connect to.
25
29
  */
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, _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" });
12
+ var _a, _b, _c, _d;
13
+ return Object.assign(Object.assign({}, val), { dialErrorLimit: (_a = (val.dialErrorLimit)) !== null && _a !== void 0 ? _a : 10, perDialTimeout: (_b = (val.perDialTimeout)) !== null && _b !== void 0 ? _b : 15, port: (_c = (val.port)) !== null && _c !== void 0 ? _c : 22, user: (_d = (val.user)) !== null && _d !== void 0 ? _d : "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,sEAAsE;AACtE,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"}
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAQjF,IAAiB,MAAM,CAsDtB;AAtDD,WAAiB,MAAM;IA0CnB;;OAEG;IACH,SAAgB,6BAA6B,CAAC,GAAmB;;QAC7D,uCACO,GAAG,KACN,cAAc,EAAE,MAAA,CAAC,GAAG,CAAC,cAAc,CAAC,mCAAI,EAAE,EAC1C,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;IARe,oCAA6B,gCAQ5C,CAAA;AACL,CAAC,EAtDgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAsDtB"}
package/types/output.d.ts CHANGED
@@ -8,7 +8,7 @@ export declare namespace remote {
8
8
  */
9
9
  agentSocketPath?: string;
10
10
  /**
11
- * Max allowed errors on trying to dial the remote host. -1 set count to unlimited. Default value is 10
11
+ * Max allowed errors on trying to dial the remote host. -1 set count to unlimited. Default value is 10.
12
12
  */
13
13
  dialErrorLimit?: number;
14
14
  /**
@@ -19,6 +19,10 @@ export declare namespace remote {
19
19
  * The password we should use for the connection.
20
20
  */
21
21
  password?: string;
22
+ /**
23
+ * Max number of seconds for each dial attempt. 0 implies no maximum. Default value is 15 seconds.
24
+ */
25
+ perDialTimeout?: number;
22
26
  /**
23
27
  * The port to connect to.
24
28
  */
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, _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" });
12
+ var _a, _b, _c, _d;
13
+ return Object.assign(Object.assign({}, val), { dialErrorLimit: (_a = (val.dialErrorLimit)) !== null && _a !== void 0 ? _a : 10, perDialTimeout: (_b = (val.perDialTimeout)) !== null && _b !== void 0 ? _b : 15, port: (_c = (val.port)) !== null && _c !== void 0 ? _c : 22, user: (_d = (val.user)) !== null && _d !== void 0 ? _d : "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,sEAAsE;AACtE,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"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAQjF,IAAiB,MAAM,CAuDtB;AAvDD,WAAiB,MAAM;IA0CnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;;QACrD,uCACO,GAAG,KACN,cAAc,EAAE,MAAA,CAAC,GAAG,CAAC,cAAc,CAAC,mCAAI,EAAE,EAC1C,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;IARe,gCAAyB,4BAQxC,CAAA;AAEL,CAAC,EAvDgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAuDtB"}