@pulumi/pulumi 3.220.0 → 3.221.0-alpha.x0f0fbfe

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/pulumi",
3
- "version": "3.220.0",
3
+ "version": "3.221.0-alpha.x0f0fbfe",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -620,6 +620,8 @@ export class RunPluginRequest extends jspb.Message {
620
620
  setName(value: string): RunPluginRequest;
621
621
  getAttachDebugger(): boolean;
622
622
  setAttachDebugger(value: boolean): RunPluginRequest;
623
+ getLoaderTarget(): string;
624
+ setLoaderTarget(value: string): RunPluginRequest;
623
625
 
624
626
  serializeBinary(): Uint8Array;
625
627
  toObject(includeInstance?: boolean): RunPluginRequest.AsObject;
@@ -641,6 +643,7 @@ export namespace RunPluginRequest {
641
643
  kind: string,
642
644
  name: string,
643
645
  attachDebugger: boolean,
646
+ loaderTarget: string,
644
647
  }
645
648
  }
646
649
 
@@ -5162,7 +5162,8 @@ envList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
5162
5162
  info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
5163
5163
  kind: jspb.Message.getFieldWithDefault(msg, 6, ""),
5164
5164
  name: jspb.Message.getFieldWithDefault(msg, 7, ""),
5165
- attachDebugger: jspb.Message.getBooleanFieldWithDefault(msg, 8, false)
5165
+ attachDebugger: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
5166
+ loaderTarget: jspb.Message.getFieldWithDefault(msg, 9, "")
5166
5167
  };
5167
5168
 
5168
5169
  if (includeInstance) {
@@ -5232,6 +5233,10 @@ proto.pulumirpc.RunPluginRequest.deserializeBinaryFromReader = function(msg, rea
5232
5233
  var value = /** @type {boolean} */ (reader.readBool());
5233
5234
  msg.setAttachDebugger(value);
5234
5235
  break;
5236
+ case 9:
5237
+ var value = /** @type {string} */ (reader.readString());
5238
+ msg.setLoaderTarget(value);
5239
+ break;
5235
5240
  default:
5236
5241
  reader.skipField();
5237
5242
  break;
@@ -5318,6 +5323,13 @@ proto.pulumirpc.RunPluginRequest.serializeBinaryToWriter = function(message, wri
5318
5323
  f
5319
5324
  );
5320
5325
  }
5326
+ f = message.getLoaderTarget();
5327
+ if (f.length > 0) {
5328
+ writer.writeString(
5329
+ 9,
5330
+ f
5331
+ );
5332
+ }
5321
5333
  };
5322
5334
 
5323
5335
 
@@ -5522,6 +5534,24 @@ proto.pulumirpc.RunPluginRequest.prototype.setAttachDebugger = function(value) {
5522
5534
  };
5523
5535
 
5524
5536
 
5537
+ /**
5538
+ * optional string loader_target = 9;
5539
+ * @return {string}
5540
+ */
5541
+ proto.pulumirpc.RunPluginRequest.prototype.getLoaderTarget = function() {
5542
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
5543
+ };
5544
+
5545
+
5546
+ /**
5547
+ * @param {string} value
5548
+ * @return {!proto.pulumirpc.RunPluginRequest} returns this
5549
+ */
5550
+ proto.pulumirpc.RunPluginRequest.prototype.setLoaderTarget = function(value) {
5551
+ return jspb.Message.setProto3StringField(this, 9, value);
5552
+ };
5553
+
5554
+
5525
5555
 
5526
5556
  /**
5527
5557
  * Oneof group definitions for this message. Each group defines the field
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "3.220.0";
1
+ export declare const version = "3.221.0";
package/version.js CHANGED
@@ -13,5 +13,5 @@
13
13
  // See the License for the specific language governing permissions and
14
14
  // limitations under the License.
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.version = "3.220.0";
16
+ exports.version = "3.221.0-alpha.x0f0fbfe";
17
17
  //# sourceMappingURL=version.js.map
@@ -1,5 +0,0 @@
1
- #!/bin/sh
2
- PULUMI_RUN_SCRIPT_PATH=$(node -e "try { console.log(require.resolve('@pulumi/pulumi/cmd/run-policy-pack')) } catch (e) { console.error(e.message) }")
3
- if [ ! -z "$PULUMI_RUN_SCRIPT_PATH" ]; then
4
- node "$PULUMI_RUN_SCRIPT_PATH" $@
5
- fi
@@ -1,6 +0,0 @@
1
- @echo off
2
- setlocal
3
- for /f "delims=" %%i in ('node -e "console.log(require.resolve('@pulumi/pulumi/cmd/run-policy-pack'))"') do set PULUMI_RUN_SCRIPT_PATH=%%i
4
- if DEFINED PULUMI_RUN_SCRIPT_PATH (
5
- @node "%PULUMI_RUN_SCRIPT_PATH%" %*
6
- )