@pulumi/pulumi 3.80.0 → 3.82.0

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.80.0",
3
+ "version": "3.82.0",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -39,7 +39,7 @@ goog.exportSymbol('proto.pulumirpc.ResourceImport', null, global);
39
39
  * @constructor
40
40
  */
41
41
  proto.pulumirpc.ConvertStateRequest = function(opt_data) {
42
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
42
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.ConvertStateRequest.repeatedFields_, null);
43
43
  };
44
44
  goog.inherits(proto.pulumirpc.ConvertStateRequest, jspb.Message);
45
45
  if (goog.DEBUG && !COMPILED) {
@@ -134,6 +134,13 @@ if (goog.DEBUG && !COMPILED) {
134
134
  proto.pulumirpc.ConvertProgramResponse.displayName = 'proto.pulumirpc.ConvertProgramResponse';
135
135
  }
136
136
 
137
+ /**
138
+ * List of repeated fields within this message type.
139
+ * @private {!Array<number>}
140
+ * @const
141
+ */
142
+ proto.pulumirpc.ConvertStateRequest.repeatedFields_ = [2];
143
+
137
144
 
138
145
 
139
146
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -165,7 +172,8 @@ proto.pulumirpc.ConvertStateRequest.prototype.toObject = function(opt_includeIns
165
172
  */
166
173
  proto.pulumirpc.ConvertStateRequest.toObject = function(includeInstance, msg) {
167
174
  var f, obj = {
168
- mapperTarget: jspb.Message.getFieldWithDefault(msg, 1, "")
175
+ mapperTarget: jspb.Message.getFieldWithDefault(msg, 1, ""),
176
+ argsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f
169
177
  };
170
178
 
171
179
  if (includeInstance) {
@@ -206,6 +214,10 @@ proto.pulumirpc.ConvertStateRequest.deserializeBinaryFromReader = function(msg,
206
214
  var value = /** @type {string} */ (reader.readString());
207
215
  msg.setMapperTarget(value);
208
216
  break;
217
+ case 2:
218
+ var value = /** @type {string} */ (reader.readString());
219
+ msg.addArgs(value);
220
+ break;
209
221
  default:
210
222
  reader.skipField();
211
223
  break;
@@ -242,6 +254,13 @@ proto.pulumirpc.ConvertStateRequest.serializeBinaryToWriter = function(message,
242
254
  f
243
255
  );
244
256
  }
257
+ f = message.getArgsList();
258
+ if (f.length > 0) {
259
+ writer.writeRepeatedString(
260
+ 2,
261
+ f
262
+ );
263
+ }
245
264
  };
246
265
 
247
266
 
@@ -263,6 +282,43 @@ proto.pulumirpc.ConvertStateRequest.prototype.setMapperTarget = function(value)
263
282
  };
264
283
 
265
284
 
285
+ /**
286
+ * repeated string args = 2;
287
+ * @return {!Array<string>}
288
+ */
289
+ proto.pulumirpc.ConvertStateRequest.prototype.getArgsList = function() {
290
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 2));
291
+ };
292
+
293
+
294
+ /**
295
+ * @param {!Array<string>} value
296
+ * @return {!proto.pulumirpc.ConvertStateRequest} returns this
297
+ */
298
+ proto.pulumirpc.ConvertStateRequest.prototype.setArgsList = function(value) {
299
+ return jspb.Message.setField(this, 2, value || []);
300
+ };
301
+
302
+
303
+ /**
304
+ * @param {string} value
305
+ * @param {number=} opt_index
306
+ * @return {!proto.pulumirpc.ConvertStateRequest} returns this
307
+ */
308
+ proto.pulumirpc.ConvertStateRequest.prototype.addArgs = function(value, opt_index) {
309
+ return jspb.Message.addToRepeatedField(this, 2, value, opt_index);
310
+ };
311
+
312
+
313
+ /**
314
+ * Clears the list making it empty but non-null.
315
+ * @return {!proto.pulumirpc.ConvertStateRequest} returns this
316
+ */
317
+ proto.pulumirpc.ConvertStateRequest.prototype.clearArgsList = function() {
318
+ return this.setArgsList([]);
319
+ };
320
+
321
+
266
322
 
267
323
 
268
324
 
@@ -2262,6 +2262,7 @@ proto.pulumirpc.CallRequest.toObject = function(includeInstance, msg) {
2262
2262
  provider: jspb.Message.getFieldWithDefault(msg, 4, ""),
2263
2263
  version: jspb.Message.getFieldWithDefault(msg, 5, ""),
2264
2264
  plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 13, ""),
2265
+ pluginchecksumsMap: (f = msg.getPluginchecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
2265
2266
  project: jspb.Message.getFieldWithDefault(msg, 6, ""),
2266
2267
  stack: jspb.Message.getFieldWithDefault(msg, 7, ""),
2267
2268
  configMap: (f = msg.getConfigMap()) ? f.toObject(includeInstance, undefined) : [],
@@ -2334,6 +2335,12 @@ proto.pulumirpc.CallRequest.deserializeBinaryFromReader = function(msg, reader)
2334
2335
  var value = /** @type {string} */ (reader.readString());
2335
2336
  msg.setPlugindownloadurl(value);
2336
2337
  break;
2338
+ case 16:
2339
+ var value = msg.getPluginchecksumsMap();
2340
+ reader.readMessage(value, function(message, reader) {
2341
+ jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readBytes, null, "", "");
2342
+ });
2343
+ break;
2337
2344
  case 6:
2338
2345
  var value = /** @type {string} */ (reader.readString());
2339
2346
  msg.setProject(value);
@@ -2442,6 +2449,10 @@ proto.pulumirpc.CallRequest.serializeBinaryToWriter = function(message, writer)
2442
2449
  f
2443
2450
  );
2444
2451
  }
2452
+ f = message.getPluginchecksumsMap(true);
2453
+ if (f && f.getLength() > 0) {
2454
+ f.serializeBinary(16, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeBytes);
2455
+ }
2445
2456
  f = message.getProject();
2446
2457
  if (f.length > 0) {
2447
2458
  writer.writeString(
@@ -2793,6 +2804,28 @@ proto.pulumirpc.CallRequest.prototype.setPlugindownloadurl = function(value) {
2793
2804
  };
2794
2805
 
2795
2806
 
2807
+ /**
2808
+ * map<string, bytes> pluginChecksums = 16;
2809
+ * @param {boolean=} opt_noLazyCreate Do not create the map if
2810
+ * empty, instead returning `undefined`
2811
+ * @return {!jspb.Map<string,!(string|Uint8Array)>}
2812
+ */
2813
+ proto.pulumirpc.CallRequest.prototype.getPluginchecksumsMap = function(opt_noLazyCreate) {
2814
+ return /** @type {!jspb.Map<string,!(string|Uint8Array)>} */ (
2815
+ jspb.Message.getMapField(this, 16, opt_noLazyCreate,
2816
+ null));
2817
+ };
2818
+
2819
+
2820
+ /**
2821
+ * Clears values from the map. The map will be non-null.
2822
+ * @return {!proto.pulumirpc.CallRequest} returns this
2823
+ */
2824
+ proto.pulumirpc.CallRequest.prototype.clearPluginchecksumsMap = function() {
2825
+ this.getPluginchecksumsMap().clear();
2826
+ return this;};
2827
+
2828
+
2796
2829
  /**
2797
2830
  * optional string project = 6;
2798
2831
  * @return {string}
@@ -578,6 +578,7 @@ proto.pulumirpc.ReadResourceRequest.toObject = function(includeInstance, msg) {
578
578
  additionalsecretoutputsList: (f = jspb.Message.getRepeatedField(msg, 10)) == null ? undefined : f,
579
579
  acceptresources: jspb.Message.getBooleanFieldWithDefault(msg, 12, false),
580
580
  plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 13, ""),
581
+ pluginchecksumsMap: (f = msg.getPluginchecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
581
582
  sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f)
582
583
  };
583
584
 
@@ -664,6 +665,12 @@ proto.pulumirpc.ReadResourceRequest.deserializeBinaryFromReader = function(msg,
664
665
  var value = /** @type {string} */ (reader.readString());
665
666
  msg.setPlugindownloadurl(value);
666
667
  break;
668
+ case 15:
669
+ var value = msg.getPluginchecksumsMap();
670
+ reader.readMessage(value, function(message, reader) {
671
+ jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readBytes, null, "", "");
672
+ });
673
+ break;
667
674
  case 14:
668
675
  var value = new pulumi_source_pb.SourcePosition;
669
676
  reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
@@ -783,6 +790,10 @@ proto.pulumirpc.ReadResourceRequest.serializeBinaryToWriter = function(message,
783
790
  f
784
791
  );
785
792
  }
793
+ f = message.getPluginchecksumsMap(true);
794
+ if (f && f.getLength() > 0) {
795
+ f.serializeBinary(15, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeBytes);
796
+ }
786
797
  f = message.getSourceposition();
787
798
  if (f != null) {
788
799
  writer.writeMessage(
@@ -1067,6 +1078,28 @@ proto.pulumirpc.ReadResourceRequest.prototype.setPlugindownloadurl = function(va
1067
1078
  };
1068
1079
 
1069
1080
 
1081
+ /**
1082
+ * map<string, bytes> pluginChecksums = 15;
1083
+ * @param {boolean=} opt_noLazyCreate Do not create the map if
1084
+ * empty, instead returning `undefined`
1085
+ * @return {!jspb.Map<string,!(string|Uint8Array)>}
1086
+ */
1087
+ proto.pulumirpc.ReadResourceRequest.prototype.getPluginchecksumsMap = function(opt_noLazyCreate) {
1088
+ return /** @type {!jspb.Map<string,!(string|Uint8Array)>} */ (
1089
+ jspb.Message.getMapField(this, 15, opt_noLazyCreate,
1090
+ null));
1091
+ };
1092
+
1093
+
1094
+ /**
1095
+ * Clears values from the map. The map will be non-null.
1096
+ * @return {!proto.pulumirpc.ReadResourceRequest} returns this
1097
+ */
1098
+ proto.pulumirpc.ReadResourceRequest.prototype.clearPluginchecksumsMap = function() {
1099
+ this.getPluginchecksumsMap().clear();
1100
+ return this;};
1101
+
1102
+
1070
1103
  /**
1071
1104
  * optional SourcePosition sourcePosition = 14;
1072
1105
  * @return {?proto.pulumirpc.SourcePosition}
@@ -1348,6 +1381,7 @@ proto.pulumirpc.RegisterResourceRequest.toObject = function(includeInstance, msg
1348
1381
  providersMap: (f = msg.getProvidersMap()) ? f.toObject(includeInstance, undefined) : [],
1349
1382
  replaceonchangesList: (f = jspb.Message.getRepeatedField(msg, 23)) == null ? undefined : f,
1350
1383
  plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 24, ""),
1384
+ pluginchecksumsMap: (f = msg.getPluginchecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
1351
1385
  retainondelete: jspb.Message.getBooleanFieldWithDefault(msg, 25, false),
1352
1386
  aliasesList: jspb.Message.toObjectList(msg.getAliasesList(),
1353
1387
  pulumi_alias_pb.Alias.toObject, includeInstance),
@@ -1492,6 +1526,12 @@ proto.pulumirpc.RegisterResourceRequest.deserializeBinaryFromReader = function(m
1492
1526
  var value = /** @type {string} */ (reader.readString());
1493
1527
  msg.setPlugindownloadurl(value);
1494
1528
  break;
1529
+ case 30:
1530
+ var value = msg.getPluginchecksumsMap();
1531
+ reader.readMessage(value, function(message, reader) {
1532
+ jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readBytes, null, "", "");
1533
+ });
1534
+ break;
1495
1535
  case 25:
1496
1536
  var value = /** @type {boolean} */ (reader.readBool());
1497
1537
  msg.setRetainondelete(value);
@@ -1707,6 +1747,10 @@ proto.pulumirpc.RegisterResourceRequest.serializeBinaryToWriter = function(messa
1707
1747
  f
1708
1748
  );
1709
1749
  }
1750
+ f = message.getPluginchecksumsMap(true);
1751
+ if (f && f.getLength() > 0) {
1752
+ f.serializeBinary(30, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeBytes);
1753
+ }
1710
1754
  f = message.getRetainondelete();
1711
1755
  if (f) {
1712
1756
  writer.writeBool(
@@ -2666,6 +2710,28 @@ proto.pulumirpc.RegisterResourceRequest.prototype.setPlugindownloadurl = functio
2666
2710
  };
2667
2711
 
2668
2712
 
2713
+ /**
2714
+ * map<string, bytes> pluginChecksums = 30;
2715
+ * @param {boolean=} opt_noLazyCreate Do not create the map if
2716
+ * empty, instead returning `undefined`
2717
+ * @return {!jspb.Map<string,!(string|Uint8Array)>}
2718
+ */
2719
+ proto.pulumirpc.RegisterResourceRequest.prototype.getPluginchecksumsMap = function(opt_noLazyCreate) {
2720
+ return /** @type {!jspb.Map<string,!(string|Uint8Array)>} */ (
2721
+ jspb.Message.getMapField(this, 30, opt_noLazyCreate,
2722
+ null));
2723
+ };
2724
+
2725
+
2726
+ /**
2727
+ * Clears values from the map. The map will be non-null.
2728
+ * @return {!proto.pulumirpc.RegisterResourceRequest} returns this
2729
+ */
2730
+ proto.pulumirpc.RegisterResourceRequest.prototype.clearPluginchecksumsMap = function() {
2731
+ this.getPluginchecksumsMap().clear();
2732
+ return this;};
2733
+
2734
+
2669
2735
  /**
2670
2736
  * optional bool retainOnDelete = 25;
2671
2737
  * @return {boolean}
@@ -3500,6 +3566,7 @@ proto.pulumirpc.ResourceInvokeRequest.toObject = function(includeInstance, msg)
3500
3566
  version: jspb.Message.getFieldWithDefault(msg, 4, ""),
3501
3567
  acceptresources: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
3502
3568
  plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 6, ""),
3569
+ pluginchecksumsMap: (f = msg.getPluginchecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
3503
3570
  sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f)
3504
3571
  };
3505
3572
 
@@ -3562,6 +3629,12 @@ proto.pulumirpc.ResourceInvokeRequest.deserializeBinaryFromReader = function(msg
3562
3629
  var value = /** @type {string} */ (reader.readString());
3563
3630
  msg.setPlugindownloadurl(value);
3564
3631
  break;
3632
+ case 8:
3633
+ var value = msg.getPluginchecksumsMap();
3634
+ reader.readMessage(value, function(message, reader) {
3635
+ jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readBytes, null, "", "");
3636
+ });
3637
+ break;
3565
3638
  case 7:
3566
3639
  var value = new pulumi_source_pb.SourcePosition;
3567
3640
  reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
@@ -3639,6 +3712,10 @@ proto.pulumirpc.ResourceInvokeRequest.serializeBinaryToWriter = function(message
3639
3712
  f
3640
3713
  );
3641
3714
  }
3715
+ f = message.getPluginchecksumsMap(true);
3716
+ if (f && f.getLength() > 0) {
3717
+ f.serializeBinary(8, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeBytes);
3718
+ }
3642
3719
  f = message.getSourceposition();
3643
3720
  if (f != null) {
3644
3721
  writer.writeMessage(
@@ -3777,6 +3854,28 @@ proto.pulumirpc.ResourceInvokeRequest.prototype.setPlugindownloadurl = function(
3777
3854
  };
3778
3855
 
3779
3856
 
3857
+ /**
3858
+ * map<string, bytes> pluginChecksums = 8;
3859
+ * @param {boolean=} opt_noLazyCreate Do not create the map if
3860
+ * empty, instead returning `undefined`
3861
+ * @return {!jspb.Map<string,!(string|Uint8Array)>}
3862
+ */
3863
+ proto.pulumirpc.ResourceInvokeRequest.prototype.getPluginchecksumsMap = function(opt_noLazyCreate) {
3864
+ return /** @type {!jspb.Map<string,!(string|Uint8Array)>} */ (
3865
+ jspb.Message.getMapField(this, 8, opt_noLazyCreate,
3866
+ null));
3867
+ };
3868
+
3869
+
3870
+ /**
3871
+ * Clears values from the map. The map will be non-null.
3872
+ * @return {!proto.pulumirpc.ResourceInvokeRequest} returns this
3873
+ */
3874
+ proto.pulumirpc.ResourceInvokeRequest.prototype.clearPluginchecksumsMap = function() {
3875
+ this.getPluginchecksumsMap().clear();
3876
+ return this;};
3877
+
3878
+
3780
3879
  /**
3781
3880
  * optional SourcePosition sourcePosition = 7;
3782
3881
  * @return {?proto.pulumirpc.SourcePosition}
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.80.0";
16
+ exports.version = "3.82.0";
17
17
  //# sourceMappingURL=version.js.map