@pulumi/pulumi 3.179.0-alpha.x38b190c → 3.179.0-alpha.x8db87a9
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 +11 -23
- package/proto/resource_pb.js +18 -120
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/resource_pb.d.ts
CHANGED
|
@@ -887,25 +887,15 @@ 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
|
-
|
|
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;
|
|
890
|
+
hasInputs(): boolean;
|
|
891
|
+
clearInputs(): void;
|
|
892
|
+
getInputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
893
|
+
setInputs(value?: google_protobuf_struct_pb.Struct): ResourceHookRequest;
|
|
894
|
+
|
|
895
|
+
hasOutputs(): boolean;
|
|
896
|
+
clearOutputs(): void;
|
|
897
|
+
getOutputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
898
|
+
setOutputs(value?: google_protobuf_struct_pb.Struct): ResourceHookRequest;
|
|
909
899
|
|
|
910
900
|
serializeBinary(): Uint8Array;
|
|
911
901
|
toObject(includeInstance?: boolean): ResourceHookRequest.AsObject;
|
|
@@ -921,10 +911,8 @@ export namespace ResourceHookRequest {
|
|
|
921
911
|
export type AsObject = {
|
|
922
912
|
urn: string,
|
|
923
913
|
id: string,
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
newOutputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
927
|
-
oldOutputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
914
|
+
inputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
915
|
+
outputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
928
916
|
}
|
|
929
917
|
}
|
|
930
918
|
|
package/proto/resource_pb.js
CHANGED
|
@@ -7463,10 +7463,8 @@ 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
|
-
|
|
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)
|
|
7466
|
+
inputs: (f = msg.getInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
7467
|
+
outputs: (f = msg.getOutputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
|
|
7470
7468
|
};
|
|
7471
7469
|
|
|
7472
7470
|
if (includeInstance) {
|
|
@@ -7514,22 +7512,12 @@ proto.pulumirpc.ResourceHookRequest.deserializeBinaryFromReader = function(msg,
|
|
|
7514
7512
|
case 3:
|
|
7515
7513
|
var value = new google_protobuf_struct_pb.Struct;
|
|
7516
7514
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
7517
|
-
msg.
|
|
7515
|
+
msg.setInputs(value);
|
|
7518
7516
|
break;
|
|
7519
7517
|
case 4:
|
|
7520
7518
|
var value = new google_protobuf_struct_pb.Struct;
|
|
7521
7519
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
7522
|
-
msg.
|
|
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);
|
|
7520
|
+
msg.setOutputs(value);
|
|
7533
7521
|
break;
|
|
7534
7522
|
default:
|
|
7535
7523
|
reader.skipField();
|
|
@@ -7574,7 +7562,7 @@ proto.pulumirpc.ResourceHookRequest.serializeBinaryToWriter = function(message,
|
|
|
7574
7562
|
f
|
|
7575
7563
|
);
|
|
7576
7564
|
}
|
|
7577
|
-
f = message.
|
|
7565
|
+
f = message.getInputs();
|
|
7578
7566
|
if (f != null) {
|
|
7579
7567
|
writer.writeMessage(
|
|
7580
7568
|
3,
|
|
@@ -7582,7 +7570,7 @@ proto.pulumirpc.ResourceHookRequest.serializeBinaryToWriter = function(message,
|
|
|
7582
7570
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7583
7571
|
);
|
|
7584
7572
|
}
|
|
7585
|
-
f = message.
|
|
7573
|
+
f = message.getOutputs();
|
|
7586
7574
|
if (f != null) {
|
|
7587
7575
|
writer.writeMessage(
|
|
7588
7576
|
4,
|
|
@@ -7590,22 +7578,6 @@ proto.pulumirpc.ResourceHookRequest.serializeBinaryToWriter = function(message,
|
|
|
7590
7578
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7591
7579
|
);
|
|
7592
7580
|
}
|
|
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
|
-
}
|
|
7609
7581
|
};
|
|
7610
7582
|
|
|
7611
7583
|
|
|
@@ -7646,10 +7618,10 @@ proto.pulumirpc.ResourceHookRequest.prototype.setId = function(value) {
|
|
|
7646
7618
|
|
|
7647
7619
|
|
|
7648
7620
|
/**
|
|
7649
|
-
* optional google.protobuf.Struct
|
|
7621
|
+
* optional google.protobuf.Struct inputs = 3;
|
|
7650
7622
|
* @return {?proto.google.protobuf.Struct}
|
|
7651
7623
|
*/
|
|
7652
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7624
|
+
proto.pulumirpc.ResourceHookRequest.prototype.getInputs = function() {
|
|
7653
7625
|
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
7654
7626
|
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 3));
|
|
7655
7627
|
};
|
|
@@ -7659,7 +7631,7 @@ proto.pulumirpc.ResourceHookRequest.prototype.getNewInputs = function() {
|
|
|
7659
7631
|
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
7660
7632
|
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7661
7633
|
*/
|
|
7662
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7634
|
+
proto.pulumirpc.ResourceHookRequest.prototype.setInputs = function(value) {
|
|
7663
7635
|
return jspb.Message.setWrapperField(this, 3, value);
|
|
7664
7636
|
};
|
|
7665
7637
|
|
|
@@ -7668,8 +7640,8 @@ proto.pulumirpc.ResourceHookRequest.prototype.setNewInputs = function(value) {
|
|
|
7668
7640
|
* Clears the message field making it undefined.
|
|
7669
7641
|
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7670
7642
|
*/
|
|
7671
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7672
|
-
return this.
|
|
7643
|
+
proto.pulumirpc.ResourceHookRequest.prototype.clearInputs = function() {
|
|
7644
|
+
return this.setInputs(undefined);
|
|
7673
7645
|
};
|
|
7674
7646
|
|
|
7675
7647
|
|
|
@@ -7677,16 +7649,16 @@ proto.pulumirpc.ResourceHookRequest.prototype.clearNewInputs = function() {
|
|
|
7677
7649
|
* Returns whether this field is set.
|
|
7678
7650
|
* @return {boolean}
|
|
7679
7651
|
*/
|
|
7680
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7652
|
+
proto.pulumirpc.ResourceHookRequest.prototype.hasInputs = function() {
|
|
7681
7653
|
return jspb.Message.getField(this, 3) != null;
|
|
7682
7654
|
};
|
|
7683
7655
|
|
|
7684
7656
|
|
|
7685
7657
|
/**
|
|
7686
|
-
* optional google.protobuf.Struct
|
|
7658
|
+
* optional google.protobuf.Struct outputs = 4;
|
|
7687
7659
|
* @return {?proto.google.protobuf.Struct}
|
|
7688
7660
|
*/
|
|
7689
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7661
|
+
proto.pulumirpc.ResourceHookRequest.prototype.getOutputs = function() {
|
|
7690
7662
|
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
7691
7663
|
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 4));
|
|
7692
7664
|
};
|
|
@@ -7696,7 +7668,7 @@ proto.pulumirpc.ResourceHookRequest.prototype.getOldInputs = function() {
|
|
|
7696
7668
|
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
7697
7669
|
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7698
7670
|
*/
|
|
7699
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7671
|
+
proto.pulumirpc.ResourceHookRequest.prototype.setOutputs = function(value) {
|
|
7700
7672
|
return jspb.Message.setWrapperField(this, 4, value);
|
|
7701
7673
|
};
|
|
7702
7674
|
|
|
@@ -7705,8 +7677,8 @@ proto.pulumirpc.ResourceHookRequest.prototype.setOldInputs = function(value) {
|
|
|
7705
7677
|
* Clears the message field making it undefined.
|
|
7706
7678
|
* @return {!proto.pulumirpc.ResourceHookRequest} returns this
|
|
7707
7679
|
*/
|
|
7708
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7709
|
-
return this.
|
|
7680
|
+
proto.pulumirpc.ResourceHookRequest.prototype.clearOutputs = function() {
|
|
7681
|
+
return this.setOutputs(undefined);
|
|
7710
7682
|
};
|
|
7711
7683
|
|
|
7712
7684
|
|
|
@@ -7714,85 +7686,11 @@ proto.pulumirpc.ResourceHookRequest.prototype.clearOldInputs = function() {
|
|
|
7714
7686
|
* Returns whether this field is set.
|
|
7715
7687
|
* @return {boolean}
|
|
7716
7688
|
*/
|
|
7717
|
-
proto.pulumirpc.ResourceHookRequest.prototype.
|
|
7689
|
+
proto.pulumirpc.ResourceHookRequest.prototype.hasOutputs = function() {
|
|
7718
7690
|
return jspb.Message.getField(this, 4) != null;
|
|
7719
7691
|
};
|
|
7720
7692
|
|
|
7721
7693
|
|
|
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
|
-
|
|
7796
7694
|
|
|
7797
7695
|
|
|
7798
7696
|
|
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.179.0-alpha.
|
|
16
|
+
exports.version = "3.179.0-alpha.x8db87a9";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|