@pulumi/pulumi 3.131.1-alpha.xcc918df → 3.131.1-alpha.xf74b9cf
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/output.d.ts
CHANGED
|
@@ -130,7 +130,7 @@ export interface OutputInstance<T> {
|
|
|
130
130
|
* remains an {@link Output} so that dependent resources can be properly
|
|
131
131
|
* tracked.
|
|
132
132
|
*
|
|
133
|
-
* `func`
|
|
133
|
+
* `func` should not be used to create resources unless necessary as `func` may not be run during some program executions.
|
|
134
134
|
*
|
|
135
135
|
* `func` can return other {@link Output}s. This can be handy if you have an
|
|
136
136
|
* `Output<SomeVal>` and you want to get a transitive dependency of it,
|
package/package.json
CHANGED
package/proto/provider_pb.d.ts
CHANGED
|
@@ -498,6 +498,10 @@ export class CheckRequest extends jspb.Message {
|
|
|
498
498
|
getRandomseed_asU8(): Uint8Array;
|
|
499
499
|
getRandomseed_asB64(): string;
|
|
500
500
|
setRandomseed(value: Uint8Array | string): CheckRequest;
|
|
501
|
+
getName(): string;
|
|
502
|
+
setName(value: string): CheckRequest;
|
|
503
|
+
getType(): string;
|
|
504
|
+
setType(value: string): CheckRequest;
|
|
501
505
|
|
|
502
506
|
serializeBinary(): Uint8Array;
|
|
503
507
|
toObject(includeInstance?: boolean): CheckRequest.AsObject;
|
|
@@ -515,6 +519,8 @@ export namespace CheckRequest {
|
|
|
515
519
|
olds?: google_protobuf_struct_pb.Struct.AsObject,
|
|
516
520
|
news?: google_protobuf_struct_pb.Struct.AsObject,
|
|
517
521
|
randomseed: Uint8Array | string,
|
|
522
|
+
name: string,
|
|
523
|
+
type: string,
|
|
518
524
|
}
|
|
519
525
|
}
|
|
520
526
|
|
|
@@ -593,6 +599,10 @@ export class DiffRequest extends jspb.Message {
|
|
|
593
599
|
clearOldInputs(): void;
|
|
594
600
|
getOldInputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
595
601
|
setOldInputs(value?: google_protobuf_struct_pb.Struct): DiffRequest;
|
|
602
|
+
getName(): string;
|
|
603
|
+
setName(value: string): DiffRequest;
|
|
604
|
+
getType(): string;
|
|
605
|
+
setType(value: string): DiffRequest;
|
|
596
606
|
|
|
597
607
|
serializeBinary(): Uint8Array;
|
|
598
608
|
toObject(includeInstance?: boolean): DiffRequest.AsObject;
|
|
@@ -612,6 +622,8 @@ export namespace DiffRequest {
|
|
|
612
622
|
news?: google_protobuf_struct_pb.Struct.AsObject,
|
|
613
623
|
ignorechangesList: Array<string>,
|
|
614
624
|
oldInputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
625
|
+
name: string,
|
|
626
|
+
type: string,
|
|
615
627
|
}
|
|
616
628
|
}
|
|
617
629
|
|
|
@@ -713,6 +725,10 @@ export class CreateRequest extends jspb.Message {
|
|
|
713
725
|
setTimeout(value: number): CreateRequest;
|
|
714
726
|
getPreview(): boolean;
|
|
715
727
|
setPreview(value: boolean): CreateRequest;
|
|
728
|
+
getName(): string;
|
|
729
|
+
setName(value: string): CreateRequest;
|
|
730
|
+
getType(): string;
|
|
731
|
+
setType(value: string): CreateRequest;
|
|
716
732
|
|
|
717
733
|
serializeBinary(): Uint8Array;
|
|
718
734
|
toObject(includeInstance?: boolean): CreateRequest.AsObject;
|
|
@@ -730,6 +746,8 @@ export namespace CreateRequest {
|
|
|
730
746
|
properties?: google_protobuf_struct_pb.Struct.AsObject,
|
|
731
747
|
timeout: number,
|
|
732
748
|
preview: boolean,
|
|
749
|
+
name: string,
|
|
750
|
+
type: string,
|
|
733
751
|
}
|
|
734
752
|
}
|
|
735
753
|
|
|
@@ -774,6 +792,10 @@ export class ReadRequest extends jspb.Message {
|
|
|
774
792
|
clearInputs(): void;
|
|
775
793
|
getInputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
776
794
|
setInputs(value?: google_protobuf_struct_pb.Struct): ReadRequest;
|
|
795
|
+
getName(): string;
|
|
796
|
+
setName(value: string): ReadRequest;
|
|
797
|
+
getType(): string;
|
|
798
|
+
setType(value: string): ReadRequest;
|
|
777
799
|
|
|
778
800
|
serializeBinary(): Uint8Array;
|
|
779
801
|
toObject(includeInstance?: boolean): ReadRequest.AsObject;
|
|
@@ -791,6 +813,8 @@ export namespace ReadRequest {
|
|
|
791
813
|
urn: string,
|
|
792
814
|
properties?: google_protobuf_struct_pb.Struct.AsObject,
|
|
793
815
|
inputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
816
|
+
name: string,
|
|
817
|
+
type: string,
|
|
794
818
|
}
|
|
795
819
|
}
|
|
796
820
|
|
|
@@ -854,6 +878,10 @@ export class UpdateRequest extends jspb.Message {
|
|
|
854
878
|
clearOldInputs(): void;
|
|
855
879
|
getOldInputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
856
880
|
setOldInputs(value?: google_protobuf_struct_pb.Struct): UpdateRequest;
|
|
881
|
+
getName(): string;
|
|
882
|
+
setName(value: string): UpdateRequest;
|
|
883
|
+
getType(): string;
|
|
884
|
+
setType(value: string): UpdateRequest;
|
|
857
885
|
|
|
858
886
|
serializeBinary(): Uint8Array;
|
|
859
887
|
toObject(includeInstance?: boolean): UpdateRequest.AsObject;
|
|
@@ -875,6 +903,8 @@ export namespace UpdateRequest {
|
|
|
875
903
|
ignorechangesList: Array<string>,
|
|
876
904
|
preview: boolean,
|
|
877
905
|
oldInputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
906
|
+
name: string,
|
|
907
|
+
type: string,
|
|
878
908
|
}
|
|
879
909
|
}
|
|
880
910
|
|
|
@@ -918,6 +948,10 @@ export class DeleteRequest extends jspb.Message {
|
|
|
918
948
|
clearOldInputs(): void;
|
|
919
949
|
getOldInputs(): google_protobuf_struct_pb.Struct | undefined;
|
|
920
950
|
setOldInputs(value?: google_protobuf_struct_pb.Struct): DeleteRequest;
|
|
951
|
+
getName(): string;
|
|
952
|
+
setName(value: string): DeleteRequest;
|
|
953
|
+
getType(): string;
|
|
954
|
+
setType(value: string): DeleteRequest;
|
|
921
955
|
|
|
922
956
|
serializeBinary(): Uint8Array;
|
|
923
957
|
toObject(includeInstance?: boolean): DeleteRequest.AsObject;
|
|
@@ -936,6 +970,8 @@ export namespace DeleteRequest {
|
|
|
936
970
|
properties?: google_protobuf_struct_pb.Struct.AsObject,
|
|
937
971
|
timeout: number,
|
|
938
972
|
oldInputs?: google_protobuf_struct_pb.Struct.AsObject,
|
|
973
|
+
name: string,
|
|
974
|
+
type: string,
|
|
939
975
|
}
|
|
940
976
|
}
|
|
941
977
|
|
package/proto/provider_pb.js
CHANGED
|
@@ -4300,7 +4300,9 @@ proto.pulumirpc.CheckRequest.toObject = function(includeInstance, msg) {
|
|
|
4300
4300
|
urn: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
4301
4301
|
olds: (f = msg.getOlds()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
4302
4302
|
news: (f = msg.getNews()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
4303
|
-
randomseed: msg.getRandomseed_asB64()
|
|
4303
|
+
randomseed: msg.getRandomseed_asB64(),
|
|
4304
|
+
name: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
4305
|
+
type: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
4304
4306
|
};
|
|
4305
4307
|
|
|
4306
4308
|
if (includeInstance) {
|
|
@@ -4355,6 +4357,14 @@ proto.pulumirpc.CheckRequest.deserializeBinaryFromReader = function(msg, reader)
|
|
|
4355
4357
|
var value = /** @type {!Uint8Array} */ (reader.readBytes());
|
|
4356
4358
|
msg.setRandomseed(value);
|
|
4357
4359
|
break;
|
|
4360
|
+
case 6:
|
|
4361
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4362
|
+
msg.setName(value);
|
|
4363
|
+
break;
|
|
4364
|
+
case 7:
|
|
4365
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4366
|
+
msg.setType(value);
|
|
4367
|
+
break;
|
|
4358
4368
|
default:
|
|
4359
4369
|
reader.skipField();
|
|
4360
4370
|
break;
|
|
@@ -4414,6 +4424,20 @@ proto.pulumirpc.CheckRequest.serializeBinaryToWriter = function(message, writer)
|
|
|
4414
4424
|
f
|
|
4415
4425
|
);
|
|
4416
4426
|
}
|
|
4427
|
+
f = message.getName();
|
|
4428
|
+
if (f.length > 0) {
|
|
4429
|
+
writer.writeString(
|
|
4430
|
+
6,
|
|
4431
|
+
f
|
|
4432
|
+
);
|
|
4433
|
+
}
|
|
4434
|
+
f = message.getType();
|
|
4435
|
+
if (f.length > 0) {
|
|
4436
|
+
writer.writeString(
|
|
4437
|
+
7,
|
|
4438
|
+
f
|
|
4439
|
+
);
|
|
4440
|
+
}
|
|
4417
4441
|
};
|
|
4418
4442
|
|
|
4419
4443
|
|
|
@@ -4551,6 +4575,42 @@ proto.pulumirpc.CheckRequest.prototype.setRandomseed = function(value) {
|
|
|
4551
4575
|
};
|
|
4552
4576
|
|
|
4553
4577
|
|
|
4578
|
+
/**
|
|
4579
|
+
* optional string name = 6;
|
|
4580
|
+
* @return {string}
|
|
4581
|
+
*/
|
|
4582
|
+
proto.pulumirpc.CheckRequest.prototype.getName = function() {
|
|
4583
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
4584
|
+
};
|
|
4585
|
+
|
|
4586
|
+
|
|
4587
|
+
/**
|
|
4588
|
+
* @param {string} value
|
|
4589
|
+
* @return {!proto.pulumirpc.CheckRequest} returns this
|
|
4590
|
+
*/
|
|
4591
|
+
proto.pulumirpc.CheckRequest.prototype.setName = function(value) {
|
|
4592
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
4593
|
+
};
|
|
4594
|
+
|
|
4595
|
+
|
|
4596
|
+
/**
|
|
4597
|
+
* optional string type = 7;
|
|
4598
|
+
* @return {string}
|
|
4599
|
+
*/
|
|
4600
|
+
proto.pulumirpc.CheckRequest.prototype.getType = function() {
|
|
4601
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
4602
|
+
};
|
|
4603
|
+
|
|
4604
|
+
|
|
4605
|
+
/**
|
|
4606
|
+
* @param {string} value
|
|
4607
|
+
* @return {!proto.pulumirpc.CheckRequest} returns this
|
|
4608
|
+
*/
|
|
4609
|
+
proto.pulumirpc.CheckRequest.prototype.setType = function(value) {
|
|
4610
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
4611
|
+
};
|
|
4612
|
+
|
|
4613
|
+
|
|
4554
4614
|
|
|
4555
4615
|
/**
|
|
4556
4616
|
* List of repeated fields within this message type.
|
|
@@ -4966,7 +5026,9 @@ proto.pulumirpc.DiffRequest.toObject = function(includeInstance, msg) {
|
|
|
4966
5026
|
olds: (f = msg.getOlds()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
4967
5027
|
news: (f = msg.getNews()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
4968
5028
|
ignorechangesList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
4969
|
-
oldInputs: (f = msg.getOldInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
|
|
5029
|
+
oldInputs: (f = msg.getOldInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
5030
|
+
name: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
5031
|
+
type: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
4970
5032
|
};
|
|
4971
5033
|
|
|
4972
5034
|
if (includeInstance) {
|
|
@@ -5030,6 +5092,14 @@ proto.pulumirpc.DiffRequest.deserializeBinaryFromReader = function(msg, reader)
|
|
|
5030
5092
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
5031
5093
|
msg.setOldInputs(value);
|
|
5032
5094
|
break;
|
|
5095
|
+
case 7:
|
|
5096
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5097
|
+
msg.setName(value);
|
|
5098
|
+
break;
|
|
5099
|
+
case 8:
|
|
5100
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5101
|
+
msg.setType(value);
|
|
5102
|
+
break;
|
|
5033
5103
|
default:
|
|
5034
5104
|
reader.skipField();
|
|
5035
5105
|
break;
|
|
@@ -5104,6 +5174,20 @@ proto.pulumirpc.DiffRequest.serializeBinaryToWriter = function(message, writer)
|
|
|
5104
5174
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
5105
5175
|
);
|
|
5106
5176
|
}
|
|
5177
|
+
f = message.getName();
|
|
5178
|
+
if (f.length > 0) {
|
|
5179
|
+
writer.writeString(
|
|
5180
|
+
7,
|
|
5181
|
+
f
|
|
5182
|
+
);
|
|
5183
|
+
}
|
|
5184
|
+
f = message.getType();
|
|
5185
|
+
if (f.length > 0) {
|
|
5186
|
+
writer.writeString(
|
|
5187
|
+
8,
|
|
5188
|
+
f
|
|
5189
|
+
);
|
|
5190
|
+
}
|
|
5107
5191
|
};
|
|
5108
5192
|
|
|
5109
5193
|
|
|
@@ -5291,6 +5375,42 @@ proto.pulumirpc.DiffRequest.prototype.hasOldInputs = function() {
|
|
|
5291
5375
|
};
|
|
5292
5376
|
|
|
5293
5377
|
|
|
5378
|
+
/**
|
|
5379
|
+
* optional string name = 7;
|
|
5380
|
+
* @return {string}
|
|
5381
|
+
*/
|
|
5382
|
+
proto.pulumirpc.DiffRequest.prototype.getName = function() {
|
|
5383
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
5384
|
+
};
|
|
5385
|
+
|
|
5386
|
+
|
|
5387
|
+
/**
|
|
5388
|
+
* @param {string} value
|
|
5389
|
+
* @return {!proto.pulumirpc.DiffRequest} returns this
|
|
5390
|
+
*/
|
|
5391
|
+
proto.pulumirpc.DiffRequest.prototype.setName = function(value) {
|
|
5392
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
5393
|
+
};
|
|
5394
|
+
|
|
5395
|
+
|
|
5396
|
+
/**
|
|
5397
|
+
* optional string type = 8;
|
|
5398
|
+
* @return {string}
|
|
5399
|
+
*/
|
|
5400
|
+
proto.pulumirpc.DiffRequest.prototype.getType = function() {
|
|
5401
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
5402
|
+
};
|
|
5403
|
+
|
|
5404
|
+
|
|
5405
|
+
/**
|
|
5406
|
+
* @param {string} value
|
|
5407
|
+
* @return {!proto.pulumirpc.DiffRequest} returns this
|
|
5408
|
+
*/
|
|
5409
|
+
proto.pulumirpc.DiffRequest.prototype.setType = function(value) {
|
|
5410
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
5411
|
+
};
|
|
5412
|
+
|
|
5413
|
+
|
|
5294
5414
|
|
|
5295
5415
|
|
|
5296
5416
|
|
|
@@ -5884,7 +6004,9 @@ proto.pulumirpc.CreateRequest.toObject = function(includeInstance, msg) {
|
|
|
5884
6004
|
urn: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
5885
6005
|
properties: (f = msg.getProperties()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
5886
6006
|
timeout: jspb.Message.getFloatingPointFieldWithDefault(msg, 3, 0.0),
|
|
5887
|
-
preview: jspb.Message.getBooleanFieldWithDefault(msg, 4, false)
|
|
6007
|
+
preview: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
6008
|
+
name: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
6009
|
+
type: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
5888
6010
|
};
|
|
5889
6011
|
|
|
5890
6012
|
if (includeInstance) {
|
|
@@ -5938,6 +6060,14 @@ proto.pulumirpc.CreateRequest.deserializeBinaryFromReader = function(msg, reader
|
|
|
5938
6060
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
5939
6061
|
msg.setPreview(value);
|
|
5940
6062
|
break;
|
|
6063
|
+
case 5:
|
|
6064
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6065
|
+
msg.setName(value);
|
|
6066
|
+
break;
|
|
6067
|
+
case 6:
|
|
6068
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6069
|
+
msg.setType(value);
|
|
6070
|
+
break;
|
|
5941
6071
|
default:
|
|
5942
6072
|
reader.skipField();
|
|
5943
6073
|
break;
|
|
@@ -5996,6 +6126,20 @@ proto.pulumirpc.CreateRequest.serializeBinaryToWriter = function(message, writer
|
|
|
5996
6126
|
f
|
|
5997
6127
|
);
|
|
5998
6128
|
}
|
|
6129
|
+
f = message.getName();
|
|
6130
|
+
if (f.length > 0) {
|
|
6131
|
+
writer.writeString(
|
|
6132
|
+
5,
|
|
6133
|
+
f
|
|
6134
|
+
);
|
|
6135
|
+
}
|
|
6136
|
+
f = message.getType();
|
|
6137
|
+
if (f.length > 0) {
|
|
6138
|
+
writer.writeString(
|
|
6139
|
+
6,
|
|
6140
|
+
f
|
|
6141
|
+
);
|
|
6142
|
+
}
|
|
5999
6143
|
};
|
|
6000
6144
|
|
|
6001
6145
|
|
|
@@ -6090,6 +6234,42 @@ proto.pulumirpc.CreateRequest.prototype.setPreview = function(value) {
|
|
|
6090
6234
|
};
|
|
6091
6235
|
|
|
6092
6236
|
|
|
6237
|
+
/**
|
|
6238
|
+
* optional string name = 5;
|
|
6239
|
+
* @return {string}
|
|
6240
|
+
*/
|
|
6241
|
+
proto.pulumirpc.CreateRequest.prototype.getName = function() {
|
|
6242
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
6243
|
+
};
|
|
6244
|
+
|
|
6245
|
+
|
|
6246
|
+
/**
|
|
6247
|
+
* @param {string} value
|
|
6248
|
+
* @return {!proto.pulumirpc.CreateRequest} returns this
|
|
6249
|
+
*/
|
|
6250
|
+
proto.pulumirpc.CreateRequest.prototype.setName = function(value) {
|
|
6251
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
6252
|
+
};
|
|
6253
|
+
|
|
6254
|
+
|
|
6255
|
+
/**
|
|
6256
|
+
* optional string type = 6;
|
|
6257
|
+
* @return {string}
|
|
6258
|
+
*/
|
|
6259
|
+
proto.pulumirpc.CreateRequest.prototype.getType = function() {
|
|
6260
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
6261
|
+
};
|
|
6262
|
+
|
|
6263
|
+
|
|
6264
|
+
/**
|
|
6265
|
+
* @param {string} value
|
|
6266
|
+
* @return {!proto.pulumirpc.CreateRequest} returns this
|
|
6267
|
+
*/
|
|
6268
|
+
proto.pulumirpc.CreateRequest.prototype.setType = function(value) {
|
|
6269
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
6270
|
+
};
|
|
6271
|
+
|
|
6272
|
+
|
|
6093
6273
|
|
|
6094
6274
|
|
|
6095
6275
|
|
|
@@ -6306,7 +6486,9 @@ proto.pulumirpc.ReadRequest.toObject = function(includeInstance, msg) {
|
|
|
6306
6486
|
id: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
6307
6487
|
urn: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
6308
6488
|
properties: (f = msg.getProperties()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
6309
|
-
inputs: (f = msg.getInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
|
|
6489
|
+
inputs: (f = msg.getInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
6490
|
+
name: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
6491
|
+
type: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
6310
6492
|
};
|
|
6311
6493
|
|
|
6312
6494
|
if (includeInstance) {
|
|
@@ -6361,6 +6543,14 @@ proto.pulumirpc.ReadRequest.deserializeBinaryFromReader = function(msg, reader)
|
|
|
6361
6543
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
6362
6544
|
msg.setInputs(value);
|
|
6363
6545
|
break;
|
|
6546
|
+
case 5:
|
|
6547
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6548
|
+
msg.setName(value);
|
|
6549
|
+
break;
|
|
6550
|
+
case 6:
|
|
6551
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6552
|
+
msg.setType(value);
|
|
6553
|
+
break;
|
|
6364
6554
|
default:
|
|
6365
6555
|
reader.skipField();
|
|
6366
6556
|
break;
|
|
@@ -6420,6 +6610,20 @@ proto.pulumirpc.ReadRequest.serializeBinaryToWriter = function(message, writer)
|
|
|
6420
6610
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
6421
6611
|
);
|
|
6422
6612
|
}
|
|
6613
|
+
f = message.getName();
|
|
6614
|
+
if (f.length > 0) {
|
|
6615
|
+
writer.writeString(
|
|
6616
|
+
5,
|
|
6617
|
+
f
|
|
6618
|
+
);
|
|
6619
|
+
}
|
|
6620
|
+
f = message.getType();
|
|
6621
|
+
if (f.length > 0) {
|
|
6622
|
+
writer.writeString(
|
|
6623
|
+
6,
|
|
6624
|
+
f
|
|
6625
|
+
);
|
|
6626
|
+
}
|
|
6423
6627
|
};
|
|
6424
6628
|
|
|
6425
6629
|
|
|
@@ -6533,6 +6737,42 @@ proto.pulumirpc.ReadRequest.prototype.hasInputs = function() {
|
|
|
6533
6737
|
};
|
|
6534
6738
|
|
|
6535
6739
|
|
|
6740
|
+
/**
|
|
6741
|
+
* optional string name = 5;
|
|
6742
|
+
* @return {string}
|
|
6743
|
+
*/
|
|
6744
|
+
proto.pulumirpc.ReadRequest.prototype.getName = function() {
|
|
6745
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
6746
|
+
};
|
|
6747
|
+
|
|
6748
|
+
|
|
6749
|
+
/**
|
|
6750
|
+
* @param {string} value
|
|
6751
|
+
* @return {!proto.pulumirpc.ReadRequest} returns this
|
|
6752
|
+
*/
|
|
6753
|
+
proto.pulumirpc.ReadRequest.prototype.setName = function(value) {
|
|
6754
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
6755
|
+
};
|
|
6756
|
+
|
|
6757
|
+
|
|
6758
|
+
/**
|
|
6759
|
+
* optional string type = 6;
|
|
6760
|
+
* @return {string}
|
|
6761
|
+
*/
|
|
6762
|
+
proto.pulumirpc.ReadRequest.prototype.getType = function() {
|
|
6763
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
6764
|
+
};
|
|
6765
|
+
|
|
6766
|
+
|
|
6767
|
+
/**
|
|
6768
|
+
* @param {string} value
|
|
6769
|
+
* @return {!proto.pulumirpc.ReadRequest} returns this
|
|
6770
|
+
*/
|
|
6771
|
+
proto.pulumirpc.ReadRequest.prototype.setType = function(value) {
|
|
6772
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
6773
|
+
};
|
|
6774
|
+
|
|
6775
|
+
|
|
6536
6776
|
|
|
6537
6777
|
|
|
6538
6778
|
|
|
@@ -6811,7 +7051,9 @@ proto.pulumirpc.UpdateRequest.toObject = function(includeInstance, msg) {
|
|
|
6811
7051
|
timeout: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
|
|
6812
7052
|
ignorechangesList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
6813
7053
|
preview: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
|
|
6814
|
-
oldInputs: (f = msg.getOldInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
|
|
7054
|
+
oldInputs: (f = msg.getOldInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
7055
|
+
name: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
7056
|
+
type: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
6815
7057
|
};
|
|
6816
7058
|
|
|
6817
7059
|
if (includeInstance) {
|
|
@@ -6883,6 +7125,14 @@ proto.pulumirpc.UpdateRequest.deserializeBinaryFromReader = function(msg, reader
|
|
|
6883
7125
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
6884
7126
|
msg.setOldInputs(value);
|
|
6885
7127
|
break;
|
|
7128
|
+
case 9:
|
|
7129
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7130
|
+
msg.setName(value);
|
|
7131
|
+
break;
|
|
7132
|
+
case 10:
|
|
7133
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7134
|
+
msg.setType(value);
|
|
7135
|
+
break;
|
|
6886
7136
|
default:
|
|
6887
7137
|
reader.skipField();
|
|
6888
7138
|
break;
|
|
@@ -6971,6 +7221,20 @@ proto.pulumirpc.UpdateRequest.serializeBinaryToWriter = function(message, writer
|
|
|
6971
7221
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
6972
7222
|
);
|
|
6973
7223
|
}
|
|
7224
|
+
f = message.getName();
|
|
7225
|
+
if (f.length > 0) {
|
|
7226
|
+
writer.writeString(
|
|
7227
|
+
9,
|
|
7228
|
+
f
|
|
7229
|
+
);
|
|
7230
|
+
}
|
|
7231
|
+
f = message.getType();
|
|
7232
|
+
if (f.length > 0) {
|
|
7233
|
+
writer.writeString(
|
|
7234
|
+
10,
|
|
7235
|
+
f
|
|
7236
|
+
);
|
|
7237
|
+
}
|
|
6974
7238
|
};
|
|
6975
7239
|
|
|
6976
7240
|
|
|
@@ -7194,6 +7458,42 @@ proto.pulumirpc.UpdateRequest.prototype.hasOldInputs = function() {
|
|
|
7194
7458
|
};
|
|
7195
7459
|
|
|
7196
7460
|
|
|
7461
|
+
/**
|
|
7462
|
+
* optional string name = 9;
|
|
7463
|
+
* @return {string}
|
|
7464
|
+
*/
|
|
7465
|
+
proto.pulumirpc.UpdateRequest.prototype.getName = function() {
|
|
7466
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
7467
|
+
};
|
|
7468
|
+
|
|
7469
|
+
|
|
7470
|
+
/**
|
|
7471
|
+
* @param {string} value
|
|
7472
|
+
* @return {!proto.pulumirpc.UpdateRequest} returns this
|
|
7473
|
+
*/
|
|
7474
|
+
proto.pulumirpc.UpdateRequest.prototype.setName = function(value) {
|
|
7475
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
7476
|
+
};
|
|
7477
|
+
|
|
7478
|
+
|
|
7479
|
+
/**
|
|
7480
|
+
* optional string type = 10;
|
|
7481
|
+
* @return {string}
|
|
7482
|
+
*/
|
|
7483
|
+
proto.pulumirpc.UpdateRequest.prototype.getType = function() {
|
|
7484
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
7485
|
+
};
|
|
7486
|
+
|
|
7487
|
+
|
|
7488
|
+
/**
|
|
7489
|
+
* @param {string} value
|
|
7490
|
+
* @return {!proto.pulumirpc.UpdateRequest} returns this
|
|
7491
|
+
*/
|
|
7492
|
+
proto.pulumirpc.UpdateRequest.prototype.setType = function(value) {
|
|
7493
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
7494
|
+
};
|
|
7495
|
+
|
|
7496
|
+
|
|
7197
7497
|
|
|
7198
7498
|
|
|
7199
7499
|
|
|
@@ -7381,7 +7681,9 @@ proto.pulumirpc.DeleteRequest.toObject = function(includeInstance, msg) {
|
|
|
7381
7681
|
urn: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
7382
7682
|
properties: (f = msg.getProperties()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
7383
7683
|
timeout: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
|
|
7384
|
-
oldInputs: (f = msg.getOldInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
|
|
7684
|
+
oldInputs: (f = msg.getOldInputs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
7685
|
+
name: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
7686
|
+
type: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
7385
7687
|
};
|
|
7386
7688
|
|
|
7387
7689
|
if (includeInstance) {
|
|
@@ -7440,6 +7742,14 @@ proto.pulumirpc.DeleteRequest.deserializeBinaryFromReader = function(msg, reader
|
|
|
7440
7742
|
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
7441
7743
|
msg.setOldInputs(value);
|
|
7442
7744
|
break;
|
|
7745
|
+
case 6:
|
|
7746
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7747
|
+
msg.setName(value);
|
|
7748
|
+
break;
|
|
7749
|
+
case 7:
|
|
7750
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7751
|
+
msg.setType(value);
|
|
7752
|
+
break;
|
|
7443
7753
|
default:
|
|
7444
7754
|
reader.skipField();
|
|
7445
7755
|
break;
|
|
@@ -7506,6 +7816,20 @@ proto.pulumirpc.DeleteRequest.serializeBinaryToWriter = function(message, writer
|
|
|
7506
7816
|
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
7507
7817
|
);
|
|
7508
7818
|
}
|
|
7819
|
+
f = message.getName();
|
|
7820
|
+
if (f.length > 0) {
|
|
7821
|
+
writer.writeString(
|
|
7822
|
+
6,
|
|
7823
|
+
f
|
|
7824
|
+
);
|
|
7825
|
+
}
|
|
7826
|
+
f = message.getType();
|
|
7827
|
+
if (f.length > 0) {
|
|
7828
|
+
writer.writeString(
|
|
7829
|
+
7,
|
|
7830
|
+
f
|
|
7831
|
+
);
|
|
7832
|
+
}
|
|
7509
7833
|
};
|
|
7510
7834
|
|
|
7511
7835
|
|
|
@@ -7637,6 +7961,42 @@ proto.pulumirpc.DeleteRequest.prototype.hasOldInputs = function() {
|
|
|
7637
7961
|
};
|
|
7638
7962
|
|
|
7639
7963
|
|
|
7964
|
+
/**
|
|
7965
|
+
* optional string name = 6;
|
|
7966
|
+
* @return {string}
|
|
7967
|
+
*/
|
|
7968
|
+
proto.pulumirpc.DeleteRequest.prototype.getName = function() {
|
|
7969
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
7970
|
+
};
|
|
7971
|
+
|
|
7972
|
+
|
|
7973
|
+
/**
|
|
7974
|
+
* @param {string} value
|
|
7975
|
+
* @return {!proto.pulumirpc.DeleteRequest} returns this
|
|
7976
|
+
*/
|
|
7977
|
+
proto.pulumirpc.DeleteRequest.prototype.setName = function(value) {
|
|
7978
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
7979
|
+
};
|
|
7980
|
+
|
|
7981
|
+
|
|
7982
|
+
/**
|
|
7983
|
+
* optional string type = 7;
|
|
7984
|
+
* @return {string}
|
|
7985
|
+
*/
|
|
7986
|
+
proto.pulumirpc.DeleteRequest.prototype.getType = function() {
|
|
7987
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
7988
|
+
};
|
|
7989
|
+
|
|
7990
|
+
|
|
7991
|
+
/**
|
|
7992
|
+
* @param {string} value
|
|
7993
|
+
* @return {!proto.pulumirpc.DeleteRequest} returns this
|
|
7994
|
+
*/
|
|
7995
|
+
proto.pulumirpc.DeleteRequest.prototype.setType = function(value) {
|
|
7996
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
7997
|
+
};
|
|
7998
|
+
|
|
7999
|
+
|
|
7640
8000
|
|
|
7641
8001
|
/**
|
|
7642
8002
|
* List of repeated fields within this message type.
|
|
@@ -103,14 +103,11 @@ function run(typescriptVersion, nodeTypesVersion) {
|
|
|
103
103
|
function main() {
|
|
104
104
|
return __awaiter(this, void 0, void 0, function* () {
|
|
105
105
|
for (const [ts, typesNode] of [
|
|
106
|
-
["~3.8.3", "
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
["
|
|
111
|
-
["^4.9.5", "20.16.2"],
|
|
112
|
-
["<5.2.0", "20.16.2"],
|
|
113
|
-
["^5.2.0", "20.16.2"],
|
|
106
|
+
["~3.8.3", "ts3.8"],
|
|
107
|
+
["<4.8.0", "ts4.7"],
|
|
108
|
+
["^4.9.5", "ts4.9"],
|
|
109
|
+
["<5.2.0", "ts5.1"],
|
|
110
|
+
["^5.2.0", "latest"],
|
|
114
111
|
]) {
|
|
115
112
|
yield run(ts, typesNode);
|
|
116
113
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"closure-integration-tests.js","sourceRoot":"","sources":["../../../tests/runtime/closure-integration-tests.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"closure-integration-tests.js","sourceRoot":"","sources":["../../../tests/runtime/closure-integration-tests.ts"],"names":[],"mappings":"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"}
|
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.131.1-alpha.
|
|
16
|
+
exports.version = "3.131.1-alpha.xf74b9cf";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|