@pulumi/pulumi 3.88.1 → 3.89.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.88.1",
3
+ "version": "3.89.0",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -1091,7 +1091,8 @@ proto.pulumirpc.ConfigureRequest.toObject = function(includeInstance, msg) {
1091
1091
  args: (f = msg.getArgs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
1092
1092
  acceptsecrets: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
1093
1093
  acceptresources: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
1094
- sendsOldInputs: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
1094
+ sendsOldInputs: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
1095
+ sendsOldInputsToDelete: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
1095
1096
  };
1096
1097
 
1097
1098
  if (includeInstance) {
@@ -1151,6 +1152,10 @@ proto.pulumirpc.ConfigureRequest.deserializeBinaryFromReader = function(msg, rea
1151
1152
  var value = /** @type {boolean} */ (reader.readBool());
1152
1153
  msg.setSendsOldInputs(value);
1153
1154
  break;
1155
+ case 6:
1156
+ var value = /** @type {boolean} */ (reader.readBool());
1157
+ msg.setSendsOldInputsToDelete(value);
1158
+ break;
1154
1159
  default:
1155
1160
  reader.skipField();
1156
1161
  break;
@@ -1213,6 +1218,13 @@ proto.pulumirpc.ConfigureRequest.serializeBinaryToWriter = function(message, wri
1213
1218
  f
1214
1219
  );
1215
1220
  }
1221
+ f = message.getSendsOldInputsToDelete();
1222
+ if (f) {
1223
+ writer.writeBool(
1224
+ 6,
1225
+ f
1226
+ );
1227
+ }
1216
1228
  };
1217
1229
 
1218
1230
 
@@ -1329,6 +1341,24 @@ proto.pulumirpc.ConfigureRequest.prototype.setSendsOldInputs = function(value) {
1329
1341
  };
1330
1342
 
1331
1343
 
1344
+ /**
1345
+ * optional bool sends_old_inputs_to_delete = 6;
1346
+ * @return {boolean}
1347
+ */
1348
+ proto.pulumirpc.ConfigureRequest.prototype.getSendsOldInputsToDelete = function() {
1349
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 6, false));
1350
+ };
1351
+
1352
+
1353
+ /**
1354
+ * @param {boolean} value
1355
+ * @return {!proto.pulumirpc.ConfigureRequest} returns this
1356
+ */
1357
+ proto.pulumirpc.ConfigureRequest.prototype.setSendsOldInputsToDelete = function(value) {
1358
+ return jspb.Message.setProto3BooleanField(this, 6, value);
1359
+ };
1360
+
1361
+
1332
1362
 
1333
1363
 
1334
1364
 
@@ -6589,7 +6619,8 @@ proto.pulumirpc.DeleteRequest.toObject = function(includeInstance, msg) {
6589
6619
  id: jspb.Message.getFieldWithDefault(msg, 1, ""),
6590
6620
  urn: jspb.Message.getFieldWithDefault(msg, 2, ""),
6591
6621
  properties: (f = msg.getProperties()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
6592
- timeout: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0)
6622
+ timeout: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
6623
+ oldInputs: (f = msg.getOldInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
6593
6624
  };
6594
6625
 
6595
6626
  if (includeInstance) {
@@ -6643,6 +6674,11 @@ proto.pulumirpc.DeleteRequest.deserializeBinaryFromReader = function(msg, reader
6643
6674
  var value = /** @type {number} */ (reader.readDouble());
6644
6675
  msg.setTimeout(value);
6645
6676
  break;
6677
+ case 5:
6678
+ var value = new google_protobuf_struct_pb.Struct;
6679
+ reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
6680
+ msg.setOldInputs(value);
6681
+ break;
6646
6682
  default:
6647
6683
  reader.skipField();
6648
6684
  break;
@@ -6701,6 +6737,14 @@ proto.pulumirpc.DeleteRequest.serializeBinaryToWriter = function(message, writer
6701
6737
  f
6702
6738
  );
6703
6739
  }
6740
+ f = message.getOldInputs();
6741
+ if (f != null) {
6742
+ writer.writeMessage(
6743
+ 5,
6744
+ f,
6745
+ google_protobuf_struct_pb.Struct.serializeBinaryToWriter
6746
+ );
6747
+ }
6704
6748
  };
6705
6749
 
6706
6750
 
@@ -6795,6 +6839,43 @@ proto.pulumirpc.DeleteRequest.prototype.setTimeout = function(value) {
6795
6839
  };
6796
6840
 
6797
6841
 
6842
+ /**
6843
+ * optional google.protobuf.Struct old_inputs = 5;
6844
+ * @return {?proto.google.protobuf.Struct}
6845
+ */
6846
+ proto.pulumirpc.DeleteRequest.prototype.getOldInputs = function() {
6847
+ return /** @type{?proto.google.protobuf.Struct} */ (
6848
+ jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 5));
6849
+ };
6850
+
6851
+
6852
+ /**
6853
+ * @param {?proto.google.protobuf.Struct|undefined} value
6854
+ * @return {!proto.pulumirpc.DeleteRequest} returns this
6855
+ */
6856
+ proto.pulumirpc.DeleteRequest.prototype.setOldInputs = function(value) {
6857
+ return jspb.Message.setWrapperField(this, 5, value);
6858
+ };
6859
+
6860
+
6861
+ /**
6862
+ * Clears the message field making it undefined.
6863
+ * @return {!proto.pulumirpc.DeleteRequest} returns this
6864
+ */
6865
+ proto.pulumirpc.DeleteRequest.prototype.clearOldInputs = function() {
6866
+ return this.setOldInputs(undefined);
6867
+ };
6868
+
6869
+
6870
+ /**
6871
+ * Returns whether this field is set.
6872
+ * @return {boolean}
6873
+ */
6874
+ proto.pulumirpc.DeleteRequest.prototype.hasOldInputs = function() {
6875
+ return jspb.Message.getField(this, 5) != null;
6876
+ };
6877
+
6878
+
6798
6879
 
6799
6880
  /**
6800
6881
  * List of repeated fields within this message type.
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.88.1";
16
+ exports.version = "3.89.0";
17
17
  //# sourceMappingURL=version.js.map