@pulumi/pulumi 3.179.0-alpha.xe426e3f → 3.180.0-alpha.x1520431
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 +23 -11
- package/proto/resource_pb.js +120 -18
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/resource_pb.d.ts
CHANGED
|
@@ -887,15 +887,25 @@ export class ResourceHookRequest extends jspb.Message {
|
|
|
887
887
|
getId(): string;
|
|
888
888
|
setId(value: string): ResourceHookRequest;
|
|
889
889
|
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
890
|
+
hasNewInputs(): boolean;
|
|
891
|
+
clearNewInputs(): void;
|
|
892
|
+
getNewInputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
893
|
+
setNewInputs(value?: google_protobuf_struct_pb.Struct): ResourceHookRequest;
|
|
894
|
+
|
|
895
|
+
hasOldInputs(): boolean;
|
|
896
|
+
clearOldInputs(): void;
|
|
897
|
+
getOldInputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
898
|
+
setOldInputs(value?: google_protobuf_struct_pb.Struct): ResourceHookRequest;
|
|
899
|
+
|
|
900
|
+
hasNewOutputs(): boolean;
|
|
901
|
+
clearNewOutputs(): void;
|
|
902
|
+
getNewOutputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
903
|
+
setNewOutputs(value?: google_protobuf_struct_pb.Struct): ResourceHookRequest;
|
|
904
|
+
|
|
905
|
+
hasOldOutputs(): boolean;
|
|
906
|
+
clearOldOutputs(): void;
|
|
907
|
+
getOldOutputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
908
|
+
setOldOutputs(value?: google_protobuf_struct_pb.Struct): ResourceHookRequest;
|
|
899
909
|
|
|
900
910
|
serializeBinary(): Uint8Array;
|
|
901
911
|
toObject(includeInstance?: boolean): ResourceHookRequest.AsObject;
|
|
@@ -911,8 +921,10 @@ export namespace ResourceHookRequest {
|
|
|
911
921
|
export type AsObject = {
|
|
912
922
|
urn: string,
|
|
913
923
|
id: string,
|
|
914
|
-
|
|
915
|
-
|
|
924
|
+
newInputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
925
|
+
oldInputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
926
|
+
newOutputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
927
|
+
oldOutputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
916
928
|
}
|
|
917
929
|
}
|
|
918
930
|
|
package/proto/resource_pb.js
CHANGED
|
@@ -7463,8 +7463,10 @@ proto.pulumirpc.ResourceHookRequest.toObject = function(includeInstance, msg) {
|
|
|
7463
7463
|
var f, obj = {
|
|
7464
7464
|
urn: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
7465
7465
|
id: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
7466
|
-
|
|
7467
|
-
|
|
7466
|
+
newInputs: (f = msg.getNewInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
7467
|
+
oldInputs: (f = msg.getOldInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
7468
|
+
newOutputs: (f = msg.getNewOutputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
7469
|
+
oldOutputs: (f = msg.getOldOutputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
|
|
7468
7470
|
};
|
|
7469
7471
|
|
|
7470
7472
|
if (includeInstance) {
|
|
@@ -7512,12 +7514,22 @@ proto.pulumirpc.ResourceHookRequest.deserializeBinaryFromReader = function(msg,
|
|
|
7512
7514
|
case 3:
|
|
7513
7515
|
var value = new google_protobuf_struct_pb.Struct;
|
|
7514
7516
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
7515
|
-
msg.
|
|
7517
|
+
msg.setNewInputs(value);
|
|
7516
7518
|
break;
|
|
7517
7519
|
case 4:
|
|
7518
7520
|
var value = new google_protobuf_struct_pb.Struct;
|
|
7519
7521
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
7520
|
-
msg.
|
|
7522
|
+
msg.setOldInputs(value);
|
|
7523
|
+
break;
|
|
7524
|
+
case 5:
|
|
7525
|
+
var value = new google_protobuf_struct_pb.Struct;
|
|
7526
|
+
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
7527
|
+
msg.setNewOutputs(value);
|
|
7528
|
+
break;
|
|
7529
|
+
case 6:
|
|
7530
|
+
var value = new google_protobuf_struct_pb.Struct;
|
|
7531
|
+
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
7532
|
+
msg.setOldOutputs(value);
|
|
7521
7533
|
break;
|
|
7522
7534
|
default:
|
|
7523
7535
|
reader.skipField();
|
|
@@ -7562,7 +7574,7 @@ proto.pulumirpc.ResourceHookRequest.serializeBinaryToWriter = function(message,
|
|
|
7562
7574
|
f
|
|
7563
7575
|
);
|
|
7564
7576
|
}
|
|
7565
|
-
f = message.
|
|
7577
|
+
f = message.getNewInputs();
|
|
7566
7578
|
if (f != null) {
|
|
7567
7579
|
writer.writeMessage(
|
|
7568
7580
|
3,
|
|
@@ -7570,7 +7582,7 @@ proto.pulumirpc.ResourceHookRequest.serializeBinaryToWriter = function(message,
|
|
|
7570
7582
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7571
7583
|
);
|
|
7572
7584
|
}
|
|
7573
|
-
f = message.
|
|
7585
|
+
f = message.getOldInputs();
|
|
7574
7586
|
if (f != null) {
|
|
7575
7587
|
writer.writeMessage(
|
|
7576
7588
|
4,
|
|
@@ -7578,6 +7590,22 @@ proto.pulumirpc.ResourceHookRequest.serializeBinaryToWriter = function(message,
|
|
|
7578
7590
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7579
7591
|
);
|
|
7580
7592
|
}
|
|
7593
|
+
f = message.getNewOutputs();
|
|
7594
|
+
if (f != null) {
|
|
7595
|
+
writer.writeMessage(
|
|
7596
|
+
5,
|
|
7597
|
+
f,
|
|
7598
|
+
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7599
|
+
);
|
|
7600
|
+
}
|
|
7601
|
+
f = message.getOldOutputs();
|
|
7602
|
+
if (f != null) {
|
|
7603
|
+
writer.writeMessage(
|
|
7604
|
+
6,
|
|
7605
|
+
f,
|
|
7606
|
+
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7607
|
+
);
|
|
7608
|
+
}
|
|
7581
7609
|
};
|
|
7582
7610
|
|
|
7583
7611
|
|
|
@@ -7618,10 +7646,10 @@ proto.pulumirpc.ResourceHookRequest.prototype.setId = function(value) {
|
|
|
7618
7646
|
|
|
7619
7647
|
|
|
7620
7648
|
/**
|
|
7621
|
-
* optional google.protobuf.Struct
|
|
7649
|
+
* optional google.protobuf.Struct new_inputs = 3;
|
|
7622
7650
|
* @return {?proto.google.protobuf.Struct}
|
|
7623
7651
|
*/
|
|
7624
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7652
|
+
proto.pulumirpc.ResourceHookRequest.prototype.getNewInputs = function() {
|
|
7625
7653
|
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
7626
7654
|
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 3));
|
|
7627
7655
|
};
|
|
@@ -7631,7 +7659,7 @@ proto.pulumirpc.ResourceHookRequest.prototype.getInputs = function() {
|
|
|
7631
7659
|
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
7632
7660
|
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7633
7661
|
*/
|
|
7634
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7662
|
+
proto.pulumirpc.ResourceHookRequest.prototype.setNewInputs = function(value) {
|
|
7635
7663
|
return jspb.Message.setWrapperField(this, 3, value);
|
|
7636
7664
|
};
|
|
7637
7665
|
|
|
@@ -7640,8 +7668,8 @@ proto.pulumirpc.ResourceHookRequest.prototype.setInputs = function(value) {
|
|
|
7640
7668
|
* Clears the message field making it undefined.
|
|
7641
7669
|
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7642
7670
|
*/
|
|
7643
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7644
|
-
return this.
|
|
7671
|
+
proto.pulumirpc.ResourceHookRequest.prototype.clearNewInputs = function() {
|
|
7672
|
+
return this.setNewInputs(undefined);
|
|
7645
7673
|
};
|
|
7646
7674
|
|
|
7647
7675
|
|
|
@@ -7649,16 +7677,16 @@ proto.pulumirpc.ResourceHookRequest.prototype.clearInputs = function() {
|
|
|
7649
7677
|
* Returns whether this field is set.
|
|
7650
7678
|
* @return {boolean}
|
|
7651
7679
|
*/
|
|
7652
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7680
|
+
proto.pulumirpc.ResourceHookRequest.prototype.hasNewInputs = function() {
|
|
7653
7681
|
return jspb.Message.getField(this, 3) != null;
|
|
7654
7682
|
};
|
|
7655
7683
|
|
|
7656
7684
|
|
|
7657
7685
|
/**
|
|
7658
|
-
* optional google.protobuf.Struct
|
|
7686
|
+
* optional google.protobuf.Struct old_inputs = 4;
|
|
7659
7687
|
* @return {?proto.google.protobuf.Struct}
|
|
7660
7688
|
*/
|
|
7661
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7689
|
+
proto.pulumirpc.ResourceHookRequest.prototype.getOldInputs = function() {
|
|
7662
7690
|
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
7663
7691
|
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 4));
|
|
7664
7692
|
};
|
|
@@ -7668,7 +7696,7 @@ proto.pulumirpc.ResourceHookRequest.prototype.getOutputs = function() {
|
|
|
7668
7696
|
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
7669
7697
|
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7670
7698
|
*/
|
|
7671
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7699
|
+
proto.pulumirpc.ResourceHookRequest.prototype.setOldInputs = function(value) {
|
|
7672
7700
|
return jspb.Message.setWrapperField(this, 4, value);
|
|
7673
7701
|
};
|
|
7674
7702
|
|
|
@@ -7677,8 +7705,8 @@ proto.pulumirpc.ResourceHookRequest.prototype.setOutputs = function(value) {
|
|
|
7677
7705
|
* Clears the message field making it undefined.
|
|
7678
7706
|
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7679
7707
|
*/
|
|
7680
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7681
|
-
return this.
|
|
7708
|
+
proto.pulumirpc.ResourceHookRequest.prototype.clearOldInputs = function() {
|
|
7709
|
+
return this.setOldInputs(undefined);
|
|
7682
7710
|
};
|
|
7683
7711
|
|
|
7684
7712
|
|
|
@@ -7686,11 +7714,85 @@ proto.pulumirpc.ResourceHookRequest.prototype.clearOutputs = function() {
|
|
|
7686
7714
|
* Returns whether this field is set.
|
|
7687
7715
|
* @return {boolean}
|
|
7688
7716
|
*/
|
|
7689
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7717
|
+
proto.pulumirpc.ResourceHookRequest.prototype.hasOldInputs = function() {
|
|
7690
7718
|
return jspb.Message.getField(this, 4) != null;
|
|
7691
7719
|
};
|
|
7692
7720
|
|
|
7693
7721
|
|
|
7722
|
+
/**
|
|
7723
|
+
* optional google.protobuf.Struct new_outputs = 5;
|
|
7724
|
+
* @return {?proto.google.protobuf.Struct}
|
|
7725
|
+
*/
|
|
7726
|
+
proto.pulumirpc.ResourceHookRequest.prototype.getNewOutputs = function() {
|
|
7727
|
+
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
7728
|
+
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 5));
|
|
7729
|
+
};
|
|
7730
|
+
|
|
7731
|
+
|
|
7732
|
+
/**
|
|
7733
|
+
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
7734
|
+
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7735
|
+
*/
|
|
7736
|
+
proto.pulumirpc.ResourceHookRequest.prototype.setNewOutputs = function(value) {
|
|
7737
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
7738
|
+
};
|
|
7739
|
+
|
|
7740
|
+
|
|
7741
|
+
/**
|
|
7742
|
+
* Clears the message field making it undefined.
|
|
7743
|
+
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7744
|
+
*/
|
|
7745
|
+
proto.pulumirpc.ResourceHookRequest.prototype.clearNewOutputs = function() {
|
|
7746
|
+
return this.setNewOutputs(undefined);
|
|
7747
|
+
};
|
|
7748
|
+
|
|
7749
|
+
|
|
7750
|
+
/**
|
|
7751
|
+
* Returns whether this field is set.
|
|
7752
|
+
* @return {boolean}
|
|
7753
|
+
*/
|
|
7754
|
+
proto.pulumirpc.ResourceHookRequest.prototype.hasNewOutputs = function() {
|
|
7755
|
+
return jspb.Message.getField(this, 5) != null;
|
|
7756
|
+
};
|
|
7757
|
+
|
|
7758
|
+
|
|
7759
|
+
/**
|
|
7760
|
+
* optional google.protobuf.Struct old_outputs = 6;
|
|
7761
|
+
* @return {?proto.google.protobuf.Struct}
|
|
7762
|
+
*/
|
|
7763
|
+
proto.pulumirpc.ResourceHookRequest.prototype.getOldOutputs = function() {
|
|
7764
|
+
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
7765
|
+
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 6));
|
|
7766
|
+
};
|
|
7767
|
+
|
|
7768
|
+
|
|
7769
|
+
/**
|
|
7770
|
+
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
7771
|
+
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7772
|
+
*/
|
|
7773
|
+
proto.pulumirpc.ResourceHookRequest.prototype.setOldOutputs = function(value) {
|
|
7774
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
7775
|
+
};
|
|
7776
|
+
|
|
7777
|
+
|
|
7778
|
+
/**
|
|
7779
|
+
* Clears the message field making it undefined.
|
|
7780
|
+
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7781
|
+
*/
|
|
7782
|
+
proto.pulumirpc.ResourceHookRequest.prototype.clearOldOutputs = function() {
|
|
7783
|
+
return this.setOldOutputs(undefined);
|
|
7784
|
+
};
|
|
7785
|
+
|
|
7786
|
+
|
|
7787
|
+
/**
|
|
7788
|
+
* Returns whether this field is set.
|
|
7789
|
+
* @return {boolean}
|
|
7790
|
+
*/
|
|
7791
|
+
proto.pulumirpc.ResourceHookRequest.prototype.hasOldOutputs = function() {
|
|
7792
|
+
return jspb.Message.getField(this, 6) != null;
|
|
7793
|
+
};
|
|
7794
|
+
|
|
7795
|
+
|
|
7694
7796
|
|
|
7695
7797
|
|
|
7696
7798
|
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.
|
|
1
|
+
export declare const version = "3.180.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.
|
|
16
|
+
exports.version = "3.180.0-alpha.x1520431";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|