@pulumi/pulumi 3.217.0 → 3.217.1-alpha.xde8f97e
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 +1 -1
- package/proto/resource_pb.d.ts +0 -6
- package/proto/resource_pb.js +19 -70
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/resource_pb.d.ts
CHANGED
|
@@ -1056,11 +1056,6 @@ export class ErrorHookRequest extends jspb.Message {
|
|
|
1056
1056
|
getOldInputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
1057
1057
|
setOldInputs(value?: google_protobuf_struct_pb.Struct): ErrorHookRequest;
|
|
1058
1058
|
|
|
1059
|
-
hasNewOutputs(): boolean;
|
|
1060
|
-
clearNewOutputs(): void;
|
|
1061
|
-
getNewOutputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
1062
|
-
setNewOutputs(value?: google_protobuf_struct_pb.Struct): ErrorHookRequest;
|
|
1063
|
-
|
|
1064
1059
|
hasOldOutputs(): boolean;
|
|
1065
1060
|
clearOldOutputs(): void;
|
|
1066
1061
|
getOldOutputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
@@ -1090,7 +1085,6 @@ export namespace ErrorHookRequest {
|
|
|
1090
1085
|
type: string,
|
|
1091
1086
|
newInputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1092
1087
|
oldInputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1093
|
-
newOutputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1094
1088
|
oldOutputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1095
1089
|
failedOperation: string,
|
|
1096
1090
|
errorsList: Array<string>,
|
package/proto/resource_pb.js
CHANGED
|
@@ -8818,7 +8818,7 @@ proto.pulumirpc.ResourceHookResponse.prototype.setError = function(value) {
|
|
|
8818
8818
|
* @private {!Array<number>}
|
|
8819
8819
|
* @const
|
|
8820
8820
|
*/
|
|
8821
|
-
proto.pulumirpc.ErrorHookRequest.repeatedFields_ = [
|
|
8821
|
+
proto.pulumirpc.ErrorHookRequest.repeatedFields_ = [9];
|
|
8822
8822
|
|
|
8823
8823
|
|
|
8824
8824
|
|
|
@@ -8857,10 +8857,9 @@ name: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
|
8857
8857
|
type: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
8858
8858
|
newInputs: (f = msg.getNewInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
8859
8859
|
oldInputs: (f = msg.getOldInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
8860
|
-
newOutputs: (f = msg.getNewOutputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
8861
8860
|
oldOutputs: (f = msg.getOldOutputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
8862
|
-
failedOperation: jspb.Message.getFieldWithDefault(msg,
|
|
8863
|
-
errorsList: (f = jspb.Message.getRepeatedField(msg,
|
|
8861
|
+
failedOperation: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
8862
|
+
errorsList: (f = jspb.Message.getRepeatedField(msg, 9)) == null ? undefined : f
|
|
8864
8863
|
};
|
|
8865
8864
|
|
|
8866
8865
|
if (includeInstance) {
|
|
@@ -8924,20 +8923,15 @@ proto.pulumirpc.ErrorHookRequest.deserializeBinaryFromReader = function(msg, rea
|
|
|
8924
8923
|
msg.setOldInputs(value);
|
|
8925
8924
|
break;
|
|
8926
8925
|
case 7:
|
|
8927
|
-
var value = new google_protobuf_struct_pb.Struct;
|
|
8928
|
-
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
8929
|
-
msg.setNewOutputs(value);
|
|
8930
|
-
break;
|
|
8931
|
-
case 8:
|
|
8932
8926
|
var value = new google_protobuf_struct_pb.Struct;
|
|
8933
8927
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
8934
8928
|
msg.setOldOutputs(value);
|
|
8935
8929
|
break;
|
|
8936
|
-
case
|
|
8930
|
+
case 8:
|
|
8937
8931
|
var value = /** @type {string} */ (reader.readString());
|
|
8938
8932
|
msg.setFailedOperation(value);
|
|
8939
8933
|
break;
|
|
8940
|
-
case
|
|
8934
|
+
case 9:
|
|
8941
8935
|
var value = /** @type {string} */ (reader.readString());
|
|
8942
8936
|
msg.addErrors(value);
|
|
8943
8937
|
break;
|
|
@@ -9014,18 +9008,10 @@ proto.pulumirpc.ErrorHookRequest.serializeBinaryToWriter = function(message, wri
|
|
|
9014
9008
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
9015
9009
|
);
|
|
9016
9010
|
}
|
|
9017
|
-
f = message.getNewOutputs();
|
|
9018
|
-
if (f != null) {
|
|
9019
|
-
writer.writeMessage(
|
|
9020
|
-
7,
|
|
9021
|
-
f,
|
|
9022
|
-
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
9023
|
-
);
|
|
9024
|
-
}
|
|
9025
9011
|
f = message.getOldOutputs();
|
|
9026
9012
|
if (f != null) {
|
|
9027
9013
|
writer.writeMessage(
|
|
9028
|
-
|
|
9014
|
+
7,
|
|
9029
9015
|
f,
|
|
9030
9016
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
9031
9017
|
);
|
|
@@ -9033,14 +9019,14 @@ proto.pulumirpc.ErrorHookRequest.serializeBinaryToWriter = function(message, wri
|
|
|
9033
9019
|
f = message.getFailedOperation();
|
|
9034
9020
|
if (f.length > 0) {
|
|
9035
9021
|
writer.writeString(
|
|
9036
|
-
|
|
9022
|
+
8,
|
|
9037
9023
|
f
|
|
9038
9024
|
);
|
|
9039
9025
|
}
|
|
9040
9026
|
f = message.getErrorsList();
|
|
9041
9027
|
if (f.length > 0) {
|
|
9042
9028
|
writer.writeRepeatedString(
|
|
9043
|
-
|
|
9029
|
+
9,
|
|
9044
9030
|
f
|
|
9045
9031
|
);
|
|
9046
9032
|
}
|
|
@@ -9194,49 +9180,12 @@ proto.pulumirpc.ErrorHookRequest.prototype.hasOldInputs = function() {
|
|
|
9194
9180
|
|
|
9195
9181
|
|
|
9196
9182
|
/**
|
|
9197
|
-
* optional google.protobuf.Struct
|
|
9198
|
-
* @return {?proto.google.protobuf.Struct}
|
|
9199
|
-
*/
|
|
9200
|
-
proto.pulumirpc.ErrorHookRequest.prototype.getNewOutputs = function() {
|
|
9201
|
-
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
9202
|
-
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 7));
|
|
9203
|
-
};
|
|
9204
|
-
|
|
9205
|
-
|
|
9206
|
-
/**
|
|
9207
|
-
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
9208
|
-
* @return {!proto.pulumirpc.ErrorHookRequest} returns this
|
|
9209
|
-
*/
|
|
9210
|
-
proto.pulumirpc.ErrorHookRequest.prototype.setNewOutputs = function(value) {
|
|
9211
|
-
return jspb.Message.setWrapperField(this, 7, value);
|
|
9212
|
-
};
|
|
9213
|
-
|
|
9214
|
-
|
|
9215
|
-
/**
|
|
9216
|
-
* Clears the message field making it undefined.
|
|
9217
|
-
* @return {!proto.pulumirpc.ErrorHookRequest} returns this
|
|
9218
|
-
*/
|
|
9219
|
-
proto.pulumirpc.ErrorHookRequest.prototype.clearNewOutputs = function() {
|
|
9220
|
-
return this.setNewOutputs(undefined);
|
|
9221
|
-
};
|
|
9222
|
-
|
|
9223
|
-
|
|
9224
|
-
/**
|
|
9225
|
-
* Returns whether this field is set.
|
|
9226
|
-
* @return {boolean}
|
|
9227
|
-
*/
|
|
9228
|
-
proto.pulumirpc.ErrorHookRequest.prototype.hasNewOutputs = function() {
|
|
9229
|
-
return jspb.Message.getField(this, 7) != null;
|
|
9230
|
-
};
|
|
9231
|
-
|
|
9232
|
-
|
|
9233
|
-
/**
|
|
9234
|
-
* optional google.protobuf.Struct old_outputs = 8;
|
|
9183
|
+
* optional google.protobuf.Struct old_outputs = 7;
|
|
9235
9184
|
* @return {?proto.google.protobuf.Struct}
|
|
9236
9185
|
*/
|
|
9237
9186
|
proto.pulumirpc.ErrorHookRequest.prototype.getOldOutputs = function() {
|
|
9238
9187
|
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
9239
|
-
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct,
|
|
9188
|
+
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 7));
|
|
9240
9189
|
};
|
|
9241
9190
|
|
|
9242
9191
|
|
|
@@ -9245,7 +9194,7 @@ proto.pulumirpc.ErrorHookRequest.prototype.getOldOutputs = function() {
|
|
|
9245
9194
|
* @return {!proto.pulumirpc.ErrorHookRequest} returns this
|
|
9246
9195
|
*/
|
|
9247
9196
|
proto.pulumirpc.ErrorHookRequest.prototype.setOldOutputs = function(value) {
|
|
9248
|
-
return jspb.Message.setWrapperField(this,
|
|
9197
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
9249
9198
|
};
|
|
9250
9199
|
|
|
9251
9200
|
|
|
@@ -9263,16 +9212,16 @@ proto.pulumirpc.ErrorHookRequest.prototype.clearOldOutputs = function() {
|
|
|
9263
9212
|
* @return {boolean}
|
|
9264
9213
|
*/
|
|
9265
9214
|
proto.pulumirpc.ErrorHookRequest.prototype.hasOldOutputs = function() {
|
|
9266
|
-
return jspb.Message.getField(this,
|
|
9215
|
+
return jspb.Message.getField(this, 7) != null;
|
|
9267
9216
|
};
|
|
9268
9217
|
|
|
9269
9218
|
|
|
9270
9219
|
/**
|
|
9271
|
-
* optional string failed_operation =
|
|
9220
|
+
* optional string failed_operation = 8;
|
|
9272
9221
|
* @return {string}
|
|
9273
9222
|
*/
|
|
9274
9223
|
proto.pulumirpc.ErrorHookRequest.prototype.getFailedOperation = function() {
|
|
9275
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
9224
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
9276
9225
|
};
|
|
9277
9226
|
|
|
9278
9227
|
|
|
@@ -9281,16 +9230,16 @@ proto.pulumirpc.ErrorHookRequest.prototype.getFailedOperation = function() {
|
|
|
9281
9230
|
* @return {!proto.pulumirpc.ErrorHookRequest} returns this
|
|
9282
9231
|
*/
|
|
9283
9232
|
proto.pulumirpc.ErrorHookRequest.prototype.setFailedOperation = function(value) {
|
|
9284
|
-
return jspb.Message.setProto3StringField(this,
|
|
9233
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
9285
9234
|
};
|
|
9286
9235
|
|
|
9287
9236
|
|
|
9288
9237
|
/**
|
|
9289
|
-
* repeated string errors =
|
|
9238
|
+
* repeated string errors = 9;
|
|
9290
9239
|
* @return {!Array<string>}
|
|
9291
9240
|
*/
|
|
9292
9241
|
proto.pulumirpc.ErrorHookRequest.prototype.getErrorsList = function() {
|
|
9293
|
-
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this,
|
|
9242
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 9));
|
|
9294
9243
|
};
|
|
9295
9244
|
|
|
9296
9245
|
|
|
@@ -9299,7 +9248,7 @@ proto.pulumirpc.ErrorHookRequest.prototype.getErrorsList = function() {
|
|
|
9299
9248
|
* @return {!proto.pulumirpc.ErrorHookRequest} returns this
|
|
9300
9249
|
*/
|
|
9301
9250
|
proto.pulumirpc.ErrorHookRequest.prototype.setErrorsList = function(value) {
|
|
9302
|
-
return jspb.Message.setField(this,
|
|
9251
|
+
return jspb.Message.setField(this, 9, value || []);
|
|
9303
9252
|
};
|
|
9304
9253
|
|
|
9305
9254
|
|
|
@@ -9309,7 +9258,7 @@ proto.pulumirpc.ErrorHookRequest.prototype.setErrorsList = function(value) {
|
|
|
9309
9258
|
* @return {!proto.pulumirpc.ErrorHookRequest} returns this
|
|
9310
9259
|
*/
|
|
9311
9260
|
proto.pulumirpc.ErrorHookRequest.prototype.addErrors = function(value, opt_index) {
|
|
9312
|
-
return jspb.Message.addToRepeatedField(this,
|
|
9261
|
+
return jspb.Message.addToRepeatedField(this, 9, value, opt_index);
|
|
9313
9262
|
};
|
|
9314
9263
|
|
|
9315
9264
|
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.217.
|
|
1
|
+
export declare const version = "3.217.1";
|
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.217.
|
|
16
|
+
exports.version = "3.217.1-alpha.xde8f97e";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|