@pulumi/pulumi 3.105.0 → 3.106.0-alpha.cf9562c
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/provider_pb.d.ts +6 -20
- package/proto/provider_pb.js +47 -161
- package/proto/resource_grpc_pb.d.ts +10 -10
- package/proto/resource_grpc_pb.js +14 -14
- package/proto/resource_pb.d.ts +75 -0
- package/proto/resource_pb.js +588 -0
- package/runtime/invoke.js +2 -3
- package/runtime/invoke.js.map +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/provider_pb.d.ts
CHANGED
|
@@ -231,15 +231,6 @@ export class CallRequest extends jspb.Message {
|
|
|
231
231
|
|
|
232
232
|
getArgdependenciesMap(): jspb.Map<string, CallRequest.ArgumentDependencies>;
|
|
233
233
|
clearArgdependenciesMap(): void;
|
|
234
|
-
getProvider(): string;
|
|
235
|
-
setProvider(value: string): CallRequest;
|
|
236
|
-
getVersion(): string;
|
|
237
|
-
setVersion(value: string): CallRequest;
|
|
238
|
-
getPlugindownloadurl(): string;
|
|
239
|
-
setPlugindownloadurl(value: string): CallRequest;
|
|
240
|
-
|
|
241
|
-
getPluginchecksumsMap(): jspb.Map<string, Uint8Array | string>;
|
|
242
|
-
clearPluginchecksumsMap(): void;
|
|
243
234
|
getProject(): string;
|
|
244
235
|
setProject(value: string): CallRequest;
|
|
245
236
|
getStack(): string;
|
|
@@ -259,11 +250,8 @@ export class CallRequest extends jspb.Message {
|
|
|
259
250
|
setMonitorendpoint(value: string): CallRequest;
|
|
260
251
|
getOrganization(): string;
|
|
261
252
|
setOrganization(value: string): CallRequest;
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
clearSourceposition(): void;
|
|
265
|
-
getSourceposition(): pulumi_source_pb.SourcePosition | undefined;
|
|
266
|
-
setSourceposition(value?: pulumi_source_pb.SourcePosition): CallRequest;
|
|
253
|
+
getAcceptsOutputValues(): boolean;
|
|
254
|
+
setAcceptsOutputValues(value: boolean): CallRequest;
|
|
267
255
|
|
|
268
256
|
serializeBinary(): Uint8Array;
|
|
269
257
|
toObject(includeInstance?: boolean): CallRequest.AsObject;
|
|
@@ -281,11 +269,6 @@ export namespace CallRequest {
|
|
|
281
269
|
args?: google_protobuf_struct_pb.Struct.AsObject,
|
|
282
270
|
|
|
283
271
|
argdependenciesMap: Array<[string, CallRequest.ArgumentDependencies.AsObject]>,
|
|
284
|
-
provider: string,
|
|
285
|
-
version: string,
|
|
286
|
-
plugindownloadurl: string,
|
|
287
|
-
|
|
288
|
-
pluginchecksumsMap: Array<[string, Uint8Array | string]>,
|
|
289
272
|
project: string,
|
|
290
273
|
stack: string,
|
|
291
274
|
|
|
@@ -295,7 +278,7 @@ export namespace CallRequest {
|
|
|
295
278
|
parallel: number,
|
|
296
279
|
monitorendpoint: string,
|
|
297
280
|
organization: string,
|
|
298
|
-
|
|
281
|
+
acceptsOutputValues: boolean,
|
|
299
282
|
}
|
|
300
283
|
|
|
301
284
|
|
|
@@ -908,6 +891,8 @@ export class ConstructRequest extends jspb.Message {
|
|
|
908
891
|
addReplaceonchanges(value: string, index?: number): string;
|
|
909
892
|
getRetainondelete(): boolean;
|
|
910
893
|
setRetainondelete(value: boolean): ConstructRequest;
|
|
894
|
+
getAcceptsOutputValues(): boolean;
|
|
895
|
+
setAcceptsOutputValues(value: boolean): ConstructRequest;
|
|
911
896
|
|
|
912
897
|
serializeBinary(): Uint8Array;
|
|
913
898
|
toObject(includeInstance?: boolean): ConstructRequest.AsObject;
|
|
@@ -948,6 +933,7 @@ export namespace ConstructRequest {
|
|
|
948
933
|
ignorechangesList: Array<string>,
|
|
949
934
|
replaceonchangesList: Array<string>,
|
|
950
935
|
retainondelete: boolean,
|
|
936
|
+
acceptsOutputValues: boolean,
|
|
951
937
|
}
|
|
952
938
|
|
|
953
939
|
|
package/proto/provider_pb.js
CHANGED
|
@@ -2333,10 +2333,6 @@ proto.pulumirpc.CallRequest.toObject = function(includeInstance, msg) {
|
|
|
2333
2333
|
tok: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
2334
2334
|
args: (f = msg.getArgs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
2335
2335
|
argdependenciesMap: (f = msg.getArgdependenciesMap()) ? f.toObject(includeInstance, proto.pulumirpc.CallRequest.ArgumentDependencies.toObject) : [],
|
|
2336
|
-
provider: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
2337
|
-
version: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
2338
|
-
plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
2339
|
-
pluginchecksumsMap: (f = msg.getPluginchecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
2340
2336
|
project: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
2341
2337
|
stack: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
2342
2338
|
configMap: (f = msg.getConfigMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
@@ -2345,7 +2341,7 @@ proto.pulumirpc.CallRequest.toObject = function(includeInstance, msg) {
|
|
|
2345
2341
|
parallel: jspb.Message.getFieldWithDefault(msg, 11, 0),
|
|
2346
2342
|
monitorendpoint: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
2347
2343
|
organization: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
2348
|
-
|
|
2344
|
+
acceptsOutputValues: jspb.Message.getBooleanFieldWithDefault(msg, 17, false)
|
|
2349
2345
|
};
|
|
2350
2346
|
|
|
2351
2347
|
if (includeInstance) {
|
|
@@ -2397,24 +2393,6 @@ proto.pulumirpc.CallRequest.deserializeBinaryFromReader = function(msg, reader)
|
|
|
2397
2393
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.pulumirpc.CallRequest.ArgumentDependencies.deserializeBinaryFromReader, "", new proto.pulumirpc.CallRequest.ArgumentDependencies());
|
|
2398
2394
|
});
|
|
2399
2395
|
break;
|
|
2400
|
-
case 4:
|
|
2401
|
-
var value = /** @type {string} */ (reader.readString());
|
|
2402
|
-
msg.setProvider(value);
|
|
2403
|
-
break;
|
|
2404
|
-
case 5:
|
|
2405
|
-
var value = /** @type {string} */ (reader.readString());
|
|
2406
|
-
msg.setVersion(value);
|
|
2407
|
-
break;
|
|
2408
|
-
case 13:
|
|
2409
|
-
var value = /** @type {string} */ (reader.readString());
|
|
2410
|
-
msg.setPlugindownloadurl(value);
|
|
2411
|
-
break;
|
|
2412
|
-
case 16:
|
|
2413
|
-
var value = msg.getPluginchecksumsMap();
|
|
2414
|
-
reader.readMessage(value, function(message, reader) {
|
|
2415
|
-
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readBytes, null, "", "");
|
|
2416
|
-
});
|
|
2417
|
-
break;
|
|
2418
2396
|
case 6:
|
|
2419
2397
|
var value = /** @type {string} */ (reader.readString());
|
|
2420
2398
|
msg.setProject(value);
|
|
@@ -2449,10 +2427,9 @@ proto.pulumirpc.CallRequest.deserializeBinaryFromReader = function(msg, reader)
|
|
|
2449
2427
|
var value = /** @type {string} */ (reader.readString());
|
|
2450
2428
|
msg.setOrganization(value);
|
|
2451
2429
|
break;
|
|
2452
|
-
case
|
|
2453
|
-
var value =
|
|
2454
|
-
|
|
2455
|
-
msg.setSourceposition(value);
|
|
2430
|
+
case 17:
|
|
2431
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
2432
|
+
msg.setAcceptsOutputValues(value);
|
|
2456
2433
|
break;
|
|
2457
2434
|
default:
|
|
2458
2435
|
reader.skipField();
|
|
@@ -2502,31 +2479,6 @@ proto.pulumirpc.CallRequest.serializeBinaryToWriter = function(message, writer)
|
|
|
2502
2479
|
if (f && f.getLength() > 0) {
|
|
2503
2480
|
f.serializeBinary(3, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeMessage, proto.pulumirpc.CallRequest.ArgumentDependencies.serializeBinaryToWriter);
|
|
2504
2481
|
}
|
|
2505
|
-
f = message.getProvider();
|
|
2506
|
-
if (f.length > 0) {
|
|
2507
|
-
writer.writeString(
|
|
2508
|
-
4,
|
|
2509
|
-
f
|
|
2510
|
-
);
|
|
2511
|
-
}
|
|
2512
|
-
f = message.getVersion();
|
|
2513
|
-
if (f.length > 0) {
|
|
2514
|
-
writer.writeString(
|
|
2515
|
-
5,
|
|
2516
|
-
f
|
|
2517
|
-
);
|
|
2518
|
-
}
|
|
2519
|
-
f = message.getPlugindownloadurl();
|
|
2520
|
-
if (f.length > 0) {
|
|
2521
|
-
writer.writeString(
|
|
2522
|
-
13,
|
|
2523
|
-
f
|
|
2524
|
-
);
|
|
2525
|
-
}
|
|
2526
|
-
f = message.getPluginchecksumsMap(true);
|
|
2527
|
-
if (f && f.getLength() > 0) {
|
|
2528
|
-
f.serializeBinary(16, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeBytes);
|
|
2529
|
-
}
|
|
2530
2482
|
f = message.getProject();
|
|
2531
2483
|
if (f.length > 0) {
|
|
2532
2484
|
writer.writeString(
|
|
@@ -2580,12 +2532,11 @@ proto.pulumirpc.CallRequest.serializeBinaryToWriter = function(message, writer)
|
|
|
2580
2532
|
f
|
|
2581
2533
|
);
|
|
2582
2534
|
}
|
|
2583
|
-
f = message.
|
|
2584
|
-
if (f
|
|
2585
|
-
writer.
|
|
2586
|
-
|
|
2587
|
-
f
|
|
2588
|
-
pulumi_source_pb.SourcePosition.serializeBinaryToWriter
|
|
2535
|
+
f = message.getAcceptsOutputValues();
|
|
2536
|
+
if (f) {
|
|
2537
|
+
writer.writeBool(
|
|
2538
|
+
17,
|
|
2539
|
+
f
|
|
2589
2540
|
);
|
|
2590
2541
|
}
|
|
2591
2542
|
};
|
|
@@ -2824,82 +2775,6 @@ proto.pulumirpc.CallRequest.prototype.clearArgdependenciesMap = function() {
|
|
|
2824
2775
|
return this;};
|
|
2825
2776
|
|
|
2826
2777
|
|
|
2827
|
-
/**
|
|
2828
|
-
* optional string provider = 4;
|
|
2829
|
-
* @return {string}
|
|
2830
|
-
*/
|
|
2831
|
-
proto.pulumirpc.CallRequest.prototype.getProvider = function() {
|
|
2832
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
2833
|
-
};
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
/**
|
|
2837
|
-
* @param {string} value
|
|
2838
|
-
* @return {!proto.pulumirpc.CallRequest} returns this
|
|
2839
|
-
*/
|
|
2840
|
-
proto.pulumirpc.CallRequest.prototype.setProvider = function(value) {
|
|
2841
|
-
return jspb.Message.setProto3StringField(this, 4, value);
|
|
2842
|
-
};
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
/**
|
|
2846
|
-
* optional string version = 5;
|
|
2847
|
-
* @return {string}
|
|
2848
|
-
*/
|
|
2849
|
-
proto.pulumirpc.CallRequest.prototype.getVersion = function() {
|
|
2850
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
2851
|
-
};
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
/**
|
|
2855
|
-
* @param {string} value
|
|
2856
|
-
* @return {!proto.pulumirpc.CallRequest} returns this
|
|
2857
|
-
*/
|
|
2858
|
-
proto.pulumirpc.CallRequest.prototype.setVersion = function(value) {
|
|
2859
|
-
return jspb.Message.setProto3StringField(this, 5, value);
|
|
2860
|
-
};
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
/**
|
|
2864
|
-
* optional string pluginDownloadURL = 13;
|
|
2865
|
-
* @return {string}
|
|
2866
|
-
*/
|
|
2867
|
-
proto.pulumirpc.CallRequest.prototype.getPlugindownloadurl = function() {
|
|
2868
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
2869
|
-
};
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
/**
|
|
2873
|
-
* @param {string} value
|
|
2874
|
-
* @return {!proto.pulumirpc.CallRequest} returns this
|
|
2875
|
-
*/
|
|
2876
|
-
proto.pulumirpc.CallRequest.prototype.setPlugindownloadurl = function(value) {
|
|
2877
|
-
return jspb.Message.setProto3StringField(this, 13, value);
|
|
2878
|
-
};
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
/**
|
|
2882
|
-
* map<string, bytes> pluginChecksums = 16;
|
|
2883
|
-
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
2884
|
-
* empty, instead returning `undefined`
|
|
2885
|
-
* @return {!jspb.Map<string,!(string|Uint8Array)>}
|
|
2886
|
-
*/
|
|
2887
|
-
proto.pulumirpc.CallRequest.prototype.getPluginchecksumsMap = function(opt_noLazyCreate) {
|
|
2888
|
-
return /** @type {!jspb.Map<string,!(string|Uint8Array)>} */ (
|
|
2889
|
-
jspb.Message.getMapField(this, 16, opt_noLazyCreate,
|
|
2890
|
-
null));
|
|
2891
|
-
};
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
/**
|
|
2895
|
-
* Clears values from the map. The map will be non-null.
|
|
2896
|
-
* @return {!proto.pulumirpc.CallRequest} returns this
|
|
2897
|
-
*/
|
|
2898
|
-
proto.pulumirpc.CallRequest.prototype.clearPluginchecksumsMap = function() {
|
|
2899
|
-
this.getPluginchecksumsMap().clear();
|
|
2900
|
-
return this;};
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
2778
|
/**
|
|
2904
2779
|
* optional string project = 6;
|
|
2905
2780
|
* @return {string}
|
|
@@ -3068,39 +2943,20 @@ proto.pulumirpc.CallRequest.prototype.setOrganization = function(value) {
|
|
|
3068
2943
|
|
|
3069
2944
|
|
|
3070
2945
|
/**
|
|
3071
|
-
* optional
|
|
3072
|
-
* @return {
|
|
2946
|
+
* optional bool accepts_output_values = 17;
|
|
2947
|
+
* @return {boolean}
|
|
3073
2948
|
*/
|
|
3074
|
-
proto.pulumirpc.CallRequest.prototype.
|
|
3075
|
-
return /** @type{
|
|
3076
|
-
jspb.Message.getWrapperField(this, pulumi_source_pb.SourcePosition, 15));
|
|
3077
|
-
};
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
/**
|
|
3081
|
-
* @param {?proto.pulumirpc.SourcePosition|undefined} value
|
|
3082
|
-
* @return {!proto.pulumirpc.CallRequest} returns this
|
|
3083
|
-
*/
|
|
3084
|
-
proto.pulumirpc.CallRequest.prototype.setSourceposition = function(value) {
|
|
3085
|
-
return jspb.Message.setWrapperField(this, 15, value);
|
|
2949
|
+
proto.pulumirpc.CallRequest.prototype.getAcceptsOutputValues = function() {
|
|
2950
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 17, false));
|
|
3086
2951
|
};
|
|
3087
2952
|
|
|
3088
2953
|
|
|
3089
2954
|
/**
|
|
3090
|
-
*
|
|
2955
|
+
* @param {boolean} value
|
|
3091
2956
|
* @return {!proto.pulumirpc.CallRequest} returns this
|
|
3092
2957
|
*/
|
|
3093
|
-
proto.pulumirpc.CallRequest.prototype.
|
|
3094
|
-
return
|
|
3095
|
-
};
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
/**
|
|
3099
|
-
* Returns whether this field is set.
|
|
3100
|
-
* @return {boolean}
|
|
3101
|
-
*/
|
|
3102
|
-
proto.pulumirpc.CallRequest.prototype.hasSourceposition = function() {
|
|
3103
|
-
return jspb.Message.getField(this, 15) != null;
|
|
2958
|
+
proto.pulumirpc.CallRequest.prototype.setAcceptsOutputValues = function(value) {
|
|
2959
|
+
return jspb.Message.setProto3BooleanField(this, 17, value);
|
|
3104
2960
|
};
|
|
3105
2961
|
|
|
3106
2962
|
|
|
@@ -6938,7 +6794,8 @@ proto.pulumirpc.ConstructRequest.toObject = function(includeInstance, msg) {
|
|
|
6938
6794
|
deletebeforereplace: jspb.Message.getBooleanFieldWithDefault(msg, 21, false),
|
|
6939
6795
|
ignorechangesList: (f = jspb.Message.getRepeatedField(msg, 22)) == null ? undefined : f,
|
|
6940
6796
|
replaceonchangesList: (f = jspb.Message.getRepeatedField(msg, 23)) == null ? undefined : f,
|
|
6941
|
-
retainondelete: jspb.Message.getBooleanFieldWithDefault(msg, 24, false)
|
|
6797
|
+
retainondelete: jspb.Message.getBooleanFieldWithDefault(msg, 24, false),
|
|
6798
|
+
acceptsOutputValues: jspb.Message.getBooleanFieldWithDefault(msg, 25, false)
|
|
6942
6799
|
};
|
|
6943
6800
|
|
|
6944
6801
|
if (includeInstance) {
|
|
@@ -7079,6 +6936,10 @@ proto.pulumirpc.ConstructRequest.deserializeBinaryFromReader = function(msg, rea
|
|
|
7079
6936
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
7080
6937
|
msg.setRetainondelete(value);
|
|
7081
6938
|
break;
|
|
6939
|
+
case 25:
|
|
6940
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
6941
|
+
msg.setAcceptsOutputValues(value);
|
|
6942
|
+
break;
|
|
7082
6943
|
default:
|
|
7083
6944
|
reader.skipField();
|
|
7084
6945
|
break;
|
|
@@ -7269,6 +7130,13 @@ proto.pulumirpc.ConstructRequest.serializeBinaryToWriter = function(message, wri
|
|
|
7269
7130
|
f
|
|
7270
7131
|
);
|
|
7271
7132
|
}
|
|
7133
|
+
f = message.getAcceptsOutputValues();
|
|
7134
|
+
if (f) {
|
|
7135
|
+
writer.writeBool(
|
|
7136
|
+
25,
|
|
7137
|
+
f
|
|
7138
|
+
);
|
|
7139
|
+
}
|
|
7272
7140
|
};
|
|
7273
7141
|
|
|
7274
7142
|
|
|
@@ -8214,6 +8082,24 @@ proto.pulumirpc.ConstructRequest.prototype.setRetainondelete = function(value) {
|
|
|
8214
8082
|
};
|
|
8215
8083
|
|
|
8216
8084
|
|
|
8085
|
+
/**
|
|
8086
|
+
* optional bool accepts_output_values = 25;
|
|
8087
|
+
* @return {boolean}
|
|
8088
|
+
*/
|
|
8089
|
+
proto.pulumirpc.ConstructRequest.prototype.getAcceptsOutputValues = function() {
|
|
8090
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 25, false));
|
|
8091
|
+
};
|
|
8092
|
+
|
|
8093
|
+
|
|
8094
|
+
/**
|
|
8095
|
+
* @param {boolean} value
|
|
8096
|
+
* @return {!proto.pulumirpc.ConstructRequest} returns this
|
|
8097
|
+
*/
|
|
8098
|
+
proto.pulumirpc.ConstructRequest.prototype.setAcceptsOutputValues = function(value) {
|
|
8099
|
+
return jspb.Message.setProto3BooleanField(this, 25, value);
|
|
8100
|
+
};
|
|
8101
|
+
|
|
8102
|
+
|
|
8217
8103
|
|
|
8218
8104
|
|
|
8219
8105
|
|
|
@@ -49,12 +49,12 @@ interface IResourceMonitorService_IStreamInvoke extends grpc.MethodDefinition<pu
|
|
|
49
49
|
responseSerialize: grpc.serialize<pulumi_provider_pb.InvokeResponse>;
|
|
50
50
|
responseDeserialize: grpc.deserialize<pulumi_provider_pb.InvokeResponse>;
|
|
51
51
|
}
|
|
52
|
-
interface IResourceMonitorService_ICall extends grpc.MethodDefinition<
|
|
52
|
+
interface IResourceMonitorService_ICall extends grpc.MethodDefinition<pulumi_resource_pb.ResourceCallRequest, pulumi_provider_pb.CallResponse> {
|
|
53
53
|
path: "/pulumirpc.ResourceMonitor/Call";
|
|
54
54
|
requestStream: false;
|
|
55
55
|
responseStream: false;
|
|
56
|
-
requestSerialize: grpc.serialize<
|
|
57
|
-
requestDeserialize: grpc.deserialize<
|
|
56
|
+
requestSerialize: grpc.serialize<pulumi_resource_pb.ResourceCallRequest>;
|
|
57
|
+
requestDeserialize: grpc.deserialize<pulumi_resource_pb.ResourceCallRequest>;
|
|
58
58
|
responseSerialize: grpc.serialize<pulumi_provider_pb.CallResponse>;
|
|
59
59
|
responseDeserialize: grpc.deserialize<pulumi_provider_pb.CallResponse>;
|
|
60
60
|
}
|
|
@@ -92,7 +92,7 @@ export interface IResourceMonitorServer extends grpc.UntypedServiceImplementatio
|
|
|
92
92
|
supportsFeature: grpc.handleUnaryCall<pulumi_resource_pb.SupportsFeatureRequest, pulumi_resource_pb.SupportsFeatureResponse>;
|
|
93
93
|
invoke: grpc.handleUnaryCall<pulumi_resource_pb.ResourceInvokeRequest, pulumi_provider_pb.InvokeResponse>;
|
|
94
94
|
streamInvoke: grpc.handleServerStreamingCall<pulumi_resource_pb.ResourceInvokeRequest, pulumi_provider_pb.InvokeResponse>;
|
|
95
|
-
call: grpc.handleUnaryCall<
|
|
95
|
+
call: grpc.handleUnaryCall<pulumi_resource_pb.ResourceCallRequest, pulumi_provider_pb.CallResponse>;
|
|
96
96
|
readResource: grpc.handleUnaryCall<pulumi_resource_pb.ReadResourceRequest, pulumi_resource_pb.ReadResourceResponse>;
|
|
97
97
|
registerResource: grpc.handleUnaryCall<pulumi_resource_pb.RegisterResourceRequest, pulumi_resource_pb.RegisterResourceResponse>;
|
|
98
98
|
registerResourceOutputs: grpc.handleUnaryCall<pulumi_resource_pb.RegisterResourceOutputsRequest, google_protobuf_empty_pb.Empty>;
|
|
@@ -107,9 +107,9 @@ export interface IResourceMonitorClient {
|
|
|
107
107
|
invoke(request: pulumi_resource_pb.ResourceInvokeRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: pulumi_provider_pb.InvokeResponse) => void): grpc.ClientUnaryCall;
|
|
108
108
|
streamInvoke(request: pulumi_resource_pb.ResourceInvokeRequest, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<pulumi_provider_pb.InvokeResponse>;
|
|
109
109
|
streamInvoke(request: pulumi_resource_pb.ResourceInvokeRequest, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<pulumi_provider_pb.InvokeResponse>;
|
|
110
|
-
call(request:
|
|
111
|
-
call(request:
|
|
112
|
-
call(request:
|
|
110
|
+
call(request: pulumi_resource_pb.ResourceCallRequest, callback: (error: grpc.ServiceError | null, response: pulumi_provider_pb.CallResponse) => void): grpc.ClientUnaryCall;
|
|
111
|
+
call(request: pulumi_resource_pb.ResourceCallRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: pulumi_provider_pb.CallResponse) => void): grpc.ClientUnaryCall;
|
|
112
|
+
call(request: pulumi_resource_pb.ResourceCallRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: pulumi_provider_pb.CallResponse) => void): grpc.ClientUnaryCall;
|
|
113
113
|
readResource(request: pulumi_resource_pb.ReadResourceRequest, callback: (error: grpc.ServiceError | null, response: pulumi_resource_pb.ReadResourceResponse) => void): grpc.ClientUnaryCall;
|
|
114
114
|
readResource(request: pulumi_resource_pb.ReadResourceRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: pulumi_resource_pb.ReadResourceResponse) => void): grpc.ClientUnaryCall;
|
|
115
115
|
readResource(request: pulumi_resource_pb.ReadResourceRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: pulumi_resource_pb.ReadResourceResponse) => void): grpc.ClientUnaryCall;
|
|
@@ -131,9 +131,9 @@ export class ResourceMonitorClient extends grpc.Client implements IResourceMonit
|
|
|
131
131
|
public invoke(request: pulumi_resource_pb.ResourceInvokeRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: pulumi_provider_pb.InvokeResponse) => void): grpc.ClientUnaryCall;
|
|
132
132
|
public streamInvoke(request: pulumi_resource_pb.ResourceInvokeRequest, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<pulumi_provider_pb.InvokeResponse>;
|
|
133
133
|
public streamInvoke(request: pulumi_resource_pb.ResourceInvokeRequest, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<pulumi_provider_pb.InvokeResponse>;
|
|
134
|
-
public call(request:
|
|
135
|
-
public call(request:
|
|
136
|
-
public call(request:
|
|
134
|
+
public call(request: pulumi_resource_pb.ResourceCallRequest, callback: (error: grpc.ServiceError | null, response: pulumi_provider_pb.CallResponse) => void): grpc.ClientUnaryCall;
|
|
135
|
+
public call(request: pulumi_resource_pb.ResourceCallRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: pulumi_provider_pb.CallResponse) => void): grpc.ClientUnaryCall;
|
|
136
|
+
public call(request: pulumi_resource_pb.ResourceCallRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: pulumi_provider_pb.CallResponse) => void): grpc.ClientUnaryCall;
|
|
137
137
|
public readResource(request: pulumi_resource_pb.ReadResourceRequest, callback: (error: grpc.ServiceError | null, response: pulumi_resource_pb.ReadResourceResponse) => void): grpc.ClientUnaryCall;
|
|
138
138
|
public readResource(request: pulumi_resource_pb.ReadResourceRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: pulumi_resource_pb.ReadResourceResponse) => void): grpc.ClientUnaryCall;
|
|
139
139
|
public readResource(request: pulumi_resource_pb.ReadResourceRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: pulumi_resource_pb.ReadResourceResponse) => void): grpc.ClientUnaryCall;
|
|
@@ -35,17 +35,6 @@ function deserialize_google_protobuf_Empty(buffer_arg) {
|
|
|
35
35
|
return google_protobuf_empty_pb.Empty.deserializeBinary(new Uint8Array(buffer_arg));
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
function serialize_pulumirpc_CallRequest(arg) {
|
|
39
|
-
if (!(arg instanceof pulumi_provider_pb.CallRequest)) {
|
|
40
|
-
throw new Error('Expected argument of type pulumirpc.CallRequest');
|
|
41
|
-
}
|
|
42
|
-
return Buffer.from(arg.serializeBinary());
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
function deserialize_pulumirpc_CallRequest(buffer_arg) {
|
|
46
|
-
return pulumi_provider_pb.CallRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
47
|
-
}
|
|
48
|
-
|
|
49
38
|
function serialize_pulumirpc_CallResponse(arg) {
|
|
50
39
|
if (!(arg instanceof pulumi_provider_pb.CallResponse)) {
|
|
51
40
|
throw new Error('Expected argument of type pulumirpc.CallResponse');
|
|
@@ -123,6 +112,17 @@ function deserialize_pulumirpc_RegisterResourceResponse(buffer_arg) {
|
|
|
123
112
|
return pulumi_resource_pb.RegisterResourceResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
124
113
|
}
|
|
125
114
|
|
|
115
|
+
function serialize_pulumirpc_ResourceCallRequest(arg) {
|
|
116
|
+
if (!(arg instanceof pulumi_resource_pb.ResourceCallRequest)) {
|
|
117
|
+
throw new Error('Expected argument of type pulumirpc.ResourceCallRequest');
|
|
118
|
+
}
|
|
119
|
+
return Buffer.from(arg.serializeBinary());
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
function deserialize_pulumirpc_ResourceCallRequest(buffer_arg) {
|
|
123
|
+
return pulumi_resource_pb.ResourceCallRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
124
|
+
}
|
|
125
|
+
|
|
126
126
|
function serialize_pulumirpc_ResourceInvokeRequest(arg) {
|
|
127
127
|
if (!(arg instanceof pulumi_resource_pb.ResourceInvokeRequest)) {
|
|
128
128
|
throw new Error('Expected argument of type pulumirpc.ResourceInvokeRequest');
|
|
@@ -196,10 +196,10 @@ var ResourceMonitorService = exports.ResourceMonitorService = {
|
|
|
196
196
|
path: '/pulumirpc.ResourceMonitor/Call',
|
|
197
197
|
requestStream: false,
|
|
198
198
|
responseStream: false,
|
|
199
|
-
requestType:
|
|
199
|
+
requestType: pulumi_resource_pb.ResourceCallRequest,
|
|
200
200
|
responseType: pulumi_provider_pb.CallResponse,
|
|
201
|
-
requestSerialize:
|
|
202
|
-
requestDeserialize:
|
|
201
|
+
requestSerialize: serialize_pulumirpc_ResourceCallRequest,
|
|
202
|
+
requestDeserialize: deserialize_pulumirpc_ResourceCallRequest,
|
|
203
203
|
responseSerialize: serialize_pulumirpc_CallResponse,
|
|
204
204
|
responseDeserialize: deserialize_pulumirpc_CallResponse,
|
|
205
205
|
},
|
package/proto/resource_pb.d.ts
CHANGED
|
@@ -472,3 +472,78 @@ export namespace ResourceInvokeRequest {
|
|
|
472
472
|
sourceposition?: pulumi_source_pb.SourcePosition.AsObject,
|
|
473
473
|
}
|
|
474
474
|
}
|
|
475
|
+
|
|
476
|
+
export class ResourceCallRequest extends jspb.Message {
|
|
477
|
+
getTok(): string;
|
|
478
|
+
setTok(value: string): ResourceCallRequest;
|
|
479
|
+
|
|
480
|
+
hasArgs(): boolean;
|
|
481
|
+
clearArgs(): void;
|
|
482
|
+
getArgs(): google_protobuf_struct_pb.Struct | undefined;
|
|
483
|
+
setArgs(value?: google_protobuf_struct_pb.Struct): ResourceCallRequest;
|
|
484
|
+
|
|
485
|
+
getArgdependenciesMap(): jspb.Map<string, ResourceCallRequest.ArgumentDependencies>;
|
|
486
|
+
clearArgdependenciesMap(): void;
|
|
487
|
+
getProvider(): string;
|
|
488
|
+
setProvider(value: string): ResourceCallRequest;
|
|
489
|
+
getVersion(): string;
|
|
490
|
+
setVersion(value: string): ResourceCallRequest;
|
|
491
|
+
getPlugindownloadurl(): string;
|
|
492
|
+
setPlugindownloadurl(value: string): ResourceCallRequest;
|
|
493
|
+
|
|
494
|
+
getPluginchecksumsMap(): jspb.Map<string, Uint8Array | string>;
|
|
495
|
+
clearPluginchecksumsMap(): void;
|
|
496
|
+
|
|
497
|
+
hasSourceposition(): boolean;
|
|
498
|
+
clearSourceposition(): void;
|
|
499
|
+
getSourceposition(): pulumi_source_pb.SourcePosition | undefined;
|
|
500
|
+
setSourceposition(value?: pulumi_source_pb.SourcePosition): ResourceCallRequest;
|
|
501
|
+
|
|
502
|
+
serializeBinary(): Uint8Array;
|
|
503
|
+
toObject(includeInstance?: boolean): ResourceCallRequest.AsObject;
|
|
504
|
+
static toObject(includeInstance: boolean, msg: ResourceCallRequest): ResourceCallRequest.AsObject;
|
|
505
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
506
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
507
|
+
static serializeBinaryToWriter(message: ResourceCallRequest, writer: jspb.BinaryWriter): void;
|
|
508
|
+
static deserializeBinary(bytes: Uint8Array): ResourceCallRequest;
|
|
509
|
+
static deserializeBinaryFromReader(message: ResourceCallRequest, reader: jspb.BinaryReader): ResourceCallRequest;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
export namespace ResourceCallRequest {
|
|
513
|
+
export type AsObject = {
|
|
514
|
+
tok: string,
|
|
515
|
+
args?: google_protobuf_struct_pb.Struct.AsObject,
|
|
516
|
+
|
|
517
|
+
argdependenciesMap: Array<[string, ResourceCallRequest.ArgumentDependencies.AsObject]>,
|
|
518
|
+
provider: string,
|
|
519
|
+
version: string,
|
|
520
|
+
plugindownloadurl: string,
|
|
521
|
+
|
|
522
|
+
pluginchecksumsMap: Array<[string, Uint8Array | string]>,
|
|
523
|
+
sourceposition?: pulumi_source_pb.SourcePosition.AsObject,
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
export class ArgumentDependencies extends jspb.Message {
|
|
528
|
+
clearUrnsList(): void;
|
|
529
|
+
getUrnsList(): Array<string>;
|
|
530
|
+
setUrnsList(value: Array<string>): ArgumentDependencies;
|
|
531
|
+
addUrns(value: string, index?: number): string;
|
|
532
|
+
|
|
533
|
+
serializeBinary(): Uint8Array;
|
|
534
|
+
toObject(includeInstance?: boolean): ArgumentDependencies.AsObject;
|
|
535
|
+
static toObject(includeInstance: boolean, msg: ArgumentDependencies): ArgumentDependencies.AsObject;
|
|
536
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
537
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
538
|
+
static serializeBinaryToWriter(message: ArgumentDependencies, writer: jspb.BinaryWriter): void;
|
|
539
|
+
static deserializeBinary(bytes: Uint8Array): ArgumentDependencies;
|
|
540
|
+
static deserializeBinaryFromReader(message: ArgumentDependencies, reader: jspb.BinaryReader): ArgumentDependencies;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
export namespace ArgumentDependencies {
|
|
544
|
+
export type AsObject = {
|
|
545
|
+
urnsList: Array<string>,
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
}
|
package/proto/resource_pb.js
CHANGED
|
@@ -33,6 +33,8 @@ goog.exportSymbol('proto.pulumirpc.RegisterResourceRequest.CustomTimeouts', null
|
|
|
33
33
|
goog.exportSymbol('proto.pulumirpc.RegisterResourceRequest.PropertyDependencies', null, global);
|
|
34
34
|
goog.exportSymbol('proto.pulumirpc.RegisterResourceResponse', null, global);
|
|
35
35
|
goog.exportSymbol('proto.pulumirpc.RegisterResourceResponse.PropertyDependencies', null, global);
|
|
36
|
+
goog.exportSymbol('proto.pulumirpc.ResourceCallRequest', null, global);
|
|
37
|
+
goog.exportSymbol('proto.pulumirpc.ResourceCallRequest.ArgumentDependencies', null, global);
|
|
36
38
|
goog.exportSymbol('proto.pulumirpc.ResourceInvokeRequest', null, global);
|
|
37
39
|
goog.exportSymbol('proto.pulumirpc.SupportsFeatureRequest', null, global);
|
|
38
40
|
goog.exportSymbol('proto.pulumirpc.SupportsFeatureResponse', null, global);
|
|
@@ -267,6 +269,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
267
269
|
*/
|
|
268
270
|
proto.pulumirpc.ResourceInvokeRequest.displayName = 'proto.pulumirpc.ResourceInvokeRequest';
|
|
269
271
|
}
|
|
272
|
+
/**
|
|
273
|
+
* Generated by JsPbCodeGenerator.
|
|
274
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
275
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
276
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
277
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
278
|
+
* valid.
|
|
279
|
+
* @extends {jspb.Message}
|
|
280
|
+
* @constructor
|
|
281
|
+
*/
|
|
282
|
+
proto.pulumirpc.ResourceCallRequest = function(opt_data) {
|
|
283
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
284
|
+
};
|
|
285
|
+
goog.inherits(proto.pulumirpc.ResourceCallRequest, jspb.Message);
|
|
286
|
+
if (goog.DEBUG && !COMPILED) {
|
|
287
|
+
/**
|
|
288
|
+
* @public
|
|
289
|
+
* @override
|
|
290
|
+
*/
|
|
291
|
+
proto.pulumirpc.ResourceCallRequest.displayName = 'proto.pulumirpc.ResourceCallRequest';
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* Generated by JsPbCodeGenerator.
|
|
295
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
296
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
297
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
298
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
299
|
+
* valid.
|
|
300
|
+
* @extends {jspb.Message}
|
|
301
|
+
* @constructor
|
|
302
|
+
*/
|
|
303
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies = function(opt_data) {
|
|
304
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.repeatedFields_, null);
|
|
305
|
+
};
|
|
306
|
+
goog.inherits(proto.pulumirpc.ResourceCallRequest.ArgumentDependencies, jspb.Message);
|
|
307
|
+
if (goog.DEBUG && !COMPILED) {
|
|
308
|
+
/**
|
|
309
|
+
* @public
|
|
310
|
+
* @override
|
|
311
|
+
*/
|
|
312
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.displayName = 'proto.pulumirpc.ResourceCallRequest.ArgumentDependencies';
|
|
313
|
+
}
|
|
270
314
|
|
|
271
315
|
|
|
272
316
|
|
|
@@ -3913,4 +3957,548 @@ proto.pulumirpc.ResourceInvokeRequest.prototype.hasSourceposition = function() {
|
|
|
3913
3957
|
};
|
|
3914
3958
|
|
|
3915
3959
|
|
|
3960
|
+
|
|
3961
|
+
|
|
3962
|
+
|
|
3963
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
3964
|
+
/**
|
|
3965
|
+
* Creates an object representation of this proto.
|
|
3966
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
3967
|
+
* Optional fields that are not set will be set to undefined.
|
|
3968
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
3969
|
+
* For the list of reserved names please see:
|
|
3970
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
3971
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
3972
|
+
* JSPB instance for transitional soy proto support:
|
|
3973
|
+
* http://goto/soy-param-migration
|
|
3974
|
+
* @return {!Object}
|
|
3975
|
+
*/
|
|
3976
|
+
proto.pulumirpc.ResourceCallRequest.prototype.toObject = function(opt_includeInstance) {
|
|
3977
|
+
return proto.pulumirpc.ResourceCallRequest.toObject(opt_includeInstance, this);
|
|
3978
|
+
};
|
|
3979
|
+
|
|
3980
|
+
|
|
3981
|
+
/**
|
|
3982
|
+
* Static version of the {@see toObject} method.
|
|
3983
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
3984
|
+
* the JSPB instance for transitional soy proto support:
|
|
3985
|
+
* http://goto/soy-param-migration
|
|
3986
|
+
* @param {!proto.pulumirpc.ResourceCallRequest} msg The msg instance to transform.
|
|
3987
|
+
* @return {!Object}
|
|
3988
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
3989
|
+
*/
|
|
3990
|
+
proto.pulumirpc.ResourceCallRequest.toObject = function(includeInstance, msg) {
|
|
3991
|
+
var f, obj = {
|
|
3992
|
+
tok: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
3993
|
+
args: (f = msg.getArgs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
3994
|
+
argdependenciesMap: (f = msg.getArgdependenciesMap()) ? f.toObject(includeInstance, proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.toObject) : [],
|
|
3995
|
+
provider: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
3996
|
+
version: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
3997
|
+
plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
3998
|
+
pluginchecksumsMap: (f = msg.getPluginchecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
3999
|
+
sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f)
|
|
4000
|
+
};
|
|
4001
|
+
|
|
4002
|
+
if (includeInstance) {
|
|
4003
|
+
obj.$jspbMessageInstance = msg;
|
|
4004
|
+
}
|
|
4005
|
+
return obj;
|
|
4006
|
+
};
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
|
|
4010
|
+
/**
|
|
4011
|
+
* Deserializes binary data (in protobuf wire format).
|
|
4012
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
4013
|
+
* @return {!proto.pulumirpc.ResourceCallRequest}
|
|
4014
|
+
*/
|
|
4015
|
+
proto.pulumirpc.ResourceCallRequest.deserializeBinary = function(bytes) {
|
|
4016
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
4017
|
+
var msg = new proto.pulumirpc.ResourceCallRequest;
|
|
4018
|
+
return proto.pulumirpc.ResourceCallRequest.deserializeBinaryFromReader(msg, reader);
|
|
4019
|
+
};
|
|
4020
|
+
|
|
4021
|
+
|
|
4022
|
+
/**
|
|
4023
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
4024
|
+
* given reader into the given message object.
|
|
4025
|
+
* @param {!proto.pulumirpc.ResourceCallRequest} msg The message object to deserialize into.
|
|
4026
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
4027
|
+
* @return {!proto.pulumirpc.ResourceCallRequest}
|
|
4028
|
+
*/
|
|
4029
|
+
proto.pulumirpc.ResourceCallRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
4030
|
+
while (reader.nextField()) {
|
|
4031
|
+
if (reader.isEndGroup()) {
|
|
4032
|
+
break;
|
|
4033
|
+
}
|
|
4034
|
+
var field = reader.getFieldNumber();
|
|
4035
|
+
switch (field) {
|
|
4036
|
+
case 1:
|
|
4037
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4038
|
+
msg.setTok(value);
|
|
4039
|
+
break;
|
|
4040
|
+
case 2:
|
|
4041
|
+
var value = new google_protobuf_struct_pb.Struct;
|
|
4042
|
+
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
4043
|
+
msg.setArgs(value);
|
|
4044
|
+
break;
|
|
4045
|
+
case 3:
|
|
4046
|
+
var value = msg.getArgdependenciesMap();
|
|
4047
|
+
reader.readMessage(value, function(message, reader) {
|
|
4048
|
+
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.deserializeBinaryFromReader, "", new proto.pulumirpc.ResourceCallRequest.ArgumentDependencies());
|
|
4049
|
+
});
|
|
4050
|
+
break;
|
|
4051
|
+
case 4:
|
|
4052
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4053
|
+
msg.setProvider(value);
|
|
4054
|
+
break;
|
|
4055
|
+
case 5:
|
|
4056
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4057
|
+
msg.setVersion(value);
|
|
4058
|
+
break;
|
|
4059
|
+
case 13:
|
|
4060
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4061
|
+
msg.setPlugindownloadurl(value);
|
|
4062
|
+
break;
|
|
4063
|
+
case 16:
|
|
4064
|
+
var value = msg.getPluginchecksumsMap();
|
|
4065
|
+
reader.readMessage(value, function(message, reader) {
|
|
4066
|
+
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readBytes, null, "", "");
|
|
4067
|
+
});
|
|
4068
|
+
break;
|
|
4069
|
+
case 15:
|
|
4070
|
+
var value = new pulumi_source_pb.SourcePosition;
|
|
4071
|
+
reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
|
|
4072
|
+
msg.setSourceposition(value);
|
|
4073
|
+
break;
|
|
4074
|
+
default:
|
|
4075
|
+
reader.skipField();
|
|
4076
|
+
break;
|
|
4077
|
+
}
|
|
4078
|
+
}
|
|
4079
|
+
return msg;
|
|
4080
|
+
};
|
|
4081
|
+
|
|
4082
|
+
|
|
4083
|
+
/**
|
|
4084
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
4085
|
+
* @return {!Uint8Array}
|
|
4086
|
+
*/
|
|
4087
|
+
proto.pulumirpc.ResourceCallRequest.prototype.serializeBinary = function() {
|
|
4088
|
+
var writer = new jspb.BinaryWriter();
|
|
4089
|
+
proto.pulumirpc.ResourceCallRequest.serializeBinaryToWriter(this, writer);
|
|
4090
|
+
return writer.getResultBuffer();
|
|
4091
|
+
};
|
|
4092
|
+
|
|
4093
|
+
|
|
4094
|
+
/**
|
|
4095
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
4096
|
+
* format), writing to the given BinaryWriter.
|
|
4097
|
+
* @param {!proto.pulumirpc.ResourceCallRequest} message
|
|
4098
|
+
* @param {!jspb.BinaryWriter} writer
|
|
4099
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
4100
|
+
*/
|
|
4101
|
+
proto.pulumirpc.ResourceCallRequest.serializeBinaryToWriter = function(message, writer) {
|
|
4102
|
+
var f = undefined;
|
|
4103
|
+
f = message.getTok();
|
|
4104
|
+
if (f.length > 0) {
|
|
4105
|
+
writer.writeString(
|
|
4106
|
+
1,
|
|
4107
|
+
f
|
|
4108
|
+
);
|
|
4109
|
+
}
|
|
4110
|
+
f = message.getArgs();
|
|
4111
|
+
if (f != null) {
|
|
4112
|
+
writer.writeMessage(
|
|
4113
|
+
2,
|
|
4114
|
+
f,
|
|
4115
|
+
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
4116
|
+
);
|
|
4117
|
+
}
|
|
4118
|
+
f = message.getArgdependenciesMap(true);
|
|
4119
|
+
if (f && f.getLength() > 0) {
|
|
4120
|
+
f.serializeBinary(3, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeMessage, proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.serializeBinaryToWriter);
|
|
4121
|
+
}
|
|
4122
|
+
f = message.getProvider();
|
|
4123
|
+
if (f.length > 0) {
|
|
4124
|
+
writer.writeString(
|
|
4125
|
+
4,
|
|
4126
|
+
f
|
|
4127
|
+
);
|
|
4128
|
+
}
|
|
4129
|
+
f = message.getVersion();
|
|
4130
|
+
if (f.length > 0) {
|
|
4131
|
+
writer.writeString(
|
|
4132
|
+
5,
|
|
4133
|
+
f
|
|
4134
|
+
);
|
|
4135
|
+
}
|
|
4136
|
+
f = message.getPlugindownloadurl();
|
|
4137
|
+
if (f.length > 0) {
|
|
4138
|
+
writer.writeString(
|
|
4139
|
+
13,
|
|
4140
|
+
f
|
|
4141
|
+
);
|
|
4142
|
+
}
|
|
4143
|
+
f = message.getPluginchecksumsMap(true);
|
|
4144
|
+
if (f && f.getLength() > 0) {
|
|
4145
|
+
f.serializeBinary(16, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeBytes);
|
|
4146
|
+
}
|
|
4147
|
+
f = message.getSourceposition();
|
|
4148
|
+
if (f != null) {
|
|
4149
|
+
writer.writeMessage(
|
|
4150
|
+
15,
|
|
4151
|
+
f,
|
|
4152
|
+
pulumi_source_pb.SourcePosition.serializeBinaryToWriter
|
|
4153
|
+
);
|
|
4154
|
+
}
|
|
4155
|
+
};
|
|
4156
|
+
|
|
4157
|
+
|
|
4158
|
+
|
|
4159
|
+
/**
|
|
4160
|
+
* List of repeated fields within this message type.
|
|
4161
|
+
* @private {!Array<number>}
|
|
4162
|
+
* @const
|
|
4163
|
+
*/
|
|
4164
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.repeatedFields_ = [1];
|
|
4165
|
+
|
|
4166
|
+
|
|
4167
|
+
|
|
4168
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
4169
|
+
/**
|
|
4170
|
+
* Creates an object representation of this proto.
|
|
4171
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
4172
|
+
* Optional fields that are not set will be set to undefined.
|
|
4173
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
4174
|
+
* For the list of reserved names please see:
|
|
4175
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
4176
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
4177
|
+
* JSPB instance for transitional soy proto support:
|
|
4178
|
+
* http://goto/soy-param-migration
|
|
4179
|
+
* @return {!Object}
|
|
4180
|
+
*/
|
|
4181
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.prototype.toObject = function(opt_includeInstance) {
|
|
4182
|
+
return proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.toObject(opt_includeInstance, this);
|
|
4183
|
+
};
|
|
4184
|
+
|
|
4185
|
+
|
|
4186
|
+
/**
|
|
4187
|
+
* Static version of the {@see toObject} method.
|
|
4188
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
4189
|
+
* the JSPB instance for transitional soy proto support:
|
|
4190
|
+
* http://goto/soy-param-migration
|
|
4191
|
+
* @param {!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies} msg The msg instance to transform.
|
|
4192
|
+
* @return {!Object}
|
|
4193
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
4194
|
+
*/
|
|
4195
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.toObject = function(includeInstance, msg) {
|
|
4196
|
+
var f, obj = {
|
|
4197
|
+
urnsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f
|
|
4198
|
+
};
|
|
4199
|
+
|
|
4200
|
+
if (includeInstance) {
|
|
4201
|
+
obj.$jspbMessageInstance = msg;
|
|
4202
|
+
}
|
|
4203
|
+
return obj;
|
|
4204
|
+
};
|
|
4205
|
+
}
|
|
4206
|
+
|
|
4207
|
+
|
|
4208
|
+
/**
|
|
4209
|
+
* Deserializes binary data (in protobuf wire format).
|
|
4210
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
4211
|
+
* @return {!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies}
|
|
4212
|
+
*/
|
|
4213
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.deserializeBinary = function(bytes) {
|
|
4214
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
4215
|
+
var msg = new proto.pulumirpc.ResourceCallRequest.ArgumentDependencies;
|
|
4216
|
+
return proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.deserializeBinaryFromReader(msg, reader);
|
|
4217
|
+
};
|
|
4218
|
+
|
|
4219
|
+
|
|
4220
|
+
/**
|
|
4221
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
4222
|
+
* given reader into the given message object.
|
|
4223
|
+
* @param {!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies} msg The message object to deserialize into.
|
|
4224
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
4225
|
+
* @return {!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies}
|
|
4226
|
+
*/
|
|
4227
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.deserializeBinaryFromReader = function(msg, reader) {
|
|
4228
|
+
while (reader.nextField()) {
|
|
4229
|
+
if (reader.isEndGroup()) {
|
|
4230
|
+
break;
|
|
4231
|
+
}
|
|
4232
|
+
var field = reader.getFieldNumber();
|
|
4233
|
+
switch (field) {
|
|
4234
|
+
case 1:
|
|
4235
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4236
|
+
msg.addUrns(value);
|
|
4237
|
+
break;
|
|
4238
|
+
default:
|
|
4239
|
+
reader.skipField();
|
|
4240
|
+
break;
|
|
4241
|
+
}
|
|
4242
|
+
}
|
|
4243
|
+
return msg;
|
|
4244
|
+
};
|
|
4245
|
+
|
|
4246
|
+
|
|
4247
|
+
/**
|
|
4248
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
4249
|
+
* @return {!Uint8Array}
|
|
4250
|
+
*/
|
|
4251
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.prototype.serializeBinary = function() {
|
|
4252
|
+
var writer = new jspb.BinaryWriter();
|
|
4253
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.serializeBinaryToWriter(this, writer);
|
|
4254
|
+
return writer.getResultBuffer();
|
|
4255
|
+
};
|
|
4256
|
+
|
|
4257
|
+
|
|
4258
|
+
/**
|
|
4259
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
4260
|
+
* format), writing to the given BinaryWriter.
|
|
4261
|
+
* @param {!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies} message
|
|
4262
|
+
* @param {!jspb.BinaryWriter} writer
|
|
4263
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
4264
|
+
*/
|
|
4265
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.serializeBinaryToWriter = function(message, writer) {
|
|
4266
|
+
var f = undefined;
|
|
4267
|
+
f = message.getUrnsList();
|
|
4268
|
+
if (f.length > 0) {
|
|
4269
|
+
writer.writeRepeatedString(
|
|
4270
|
+
1,
|
|
4271
|
+
f
|
|
4272
|
+
);
|
|
4273
|
+
}
|
|
4274
|
+
};
|
|
4275
|
+
|
|
4276
|
+
|
|
4277
|
+
/**
|
|
4278
|
+
* repeated string urns = 1;
|
|
4279
|
+
* @return {!Array<string>}
|
|
4280
|
+
*/
|
|
4281
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.prototype.getUrnsList = function() {
|
|
4282
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 1));
|
|
4283
|
+
};
|
|
4284
|
+
|
|
4285
|
+
|
|
4286
|
+
/**
|
|
4287
|
+
* @param {!Array<string>} value
|
|
4288
|
+
* @return {!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies} returns this
|
|
4289
|
+
*/
|
|
4290
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.prototype.setUrnsList = function(value) {
|
|
4291
|
+
return jspb.Message.setField(this, 1, value || []);
|
|
4292
|
+
};
|
|
4293
|
+
|
|
4294
|
+
|
|
4295
|
+
/**
|
|
4296
|
+
* @param {string} value
|
|
4297
|
+
* @param {number=} opt_index
|
|
4298
|
+
* @return {!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies} returns this
|
|
4299
|
+
*/
|
|
4300
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.prototype.addUrns = function(value, opt_index) {
|
|
4301
|
+
return jspb.Message.addToRepeatedField(this, 1, value, opt_index);
|
|
4302
|
+
};
|
|
4303
|
+
|
|
4304
|
+
|
|
4305
|
+
/**
|
|
4306
|
+
* Clears the list making it empty but non-null.
|
|
4307
|
+
* @return {!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies} returns this
|
|
4308
|
+
*/
|
|
4309
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies.prototype.clearUrnsList = function() {
|
|
4310
|
+
return this.setUrnsList([]);
|
|
4311
|
+
};
|
|
4312
|
+
|
|
4313
|
+
|
|
4314
|
+
/**
|
|
4315
|
+
* optional string tok = 1;
|
|
4316
|
+
* @return {string}
|
|
4317
|
+
*/
|
|
4318
|
+
proto.pulumirpc.ResourceCallRequest.prototype.getTok = function() {
|
|
4319
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
4320
|
+
};
|
|
4321
|
+
|
|
4322
|
+
|
|
4323
|
+
/**
|
|
4324
|
+
* @param {string} value
|
|
4325
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4326
|
+
*/
|
|
4327
|
+
proto.pulumirpc.ResourceCallRequest.prototype.setTok = function(value) {
|
|
4328
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
4329
|
+
};
|
|
4330
|
+
|
|
4331
|
+
|
|
4332
|
+
/**
|
|
4333
|
+
* optional google.protobuf.Struct args = 2;
|
|
4334
|
+
* @return {?proto.google.protobuf.Struct}
|
|
4335
|
+
*/
|
|
4336
|
+
proto.pulumirpc.ResourceCallRequest.prototype.getArgs = function() {
|
|
4337
|
+
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
4338
|
+
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 2));
|
|
4339
|
+
};
|
|
4340
|
+
|
|
4341
|
+
|
|
4342
|
+
/**
|
|
4343
|
+
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
4344
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4345
|
+
*/
|
|
4346
|
+
proto.pulumirpc.ResourceCallRequest.prototype.setArgs = function(value) {
|
|
4347
|
+
return jspb.Message.setWrapperField(this, 2, value);
|
|
4348
|
+
};
|
|
4349
|
+
|
|
4350
|
+
|
|
4351
|
+
/**
|
|
4352
|
+
* Clears the message field making it undefined.
|
|
4353
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4354
|
+
*/
|
|
4355
|
+
proto.pulumirpc.ResourceCallRequest.prototype.clearArgs = function() {
|
|
4356
|
+
return this.setArgs(undefined);
|
|
4357
|
+
};
|
|
4358
|
+
|
|
4359
|
+
|
|
4360
|
+
/**
|
|
4361
|
+
* Returns whether this field is set.
|
|
4362
|
+
* @return {boolean}
|
|
4363
|
+
*/
|
|
4364
|
+
proto.pulumirpc.ResourceCallRequest.prototype.hasArgs = function() {
|
|
4365
|
+
return jspb.Message.getField(this, 2) != null;
|
|
4366
|
+
};
|
|
4367
|
+
|
|
4368
|
+
|
|
4369
|
+
/**
|
|
4370
|
+
* map<string, ArgumentDependencies> argDependencies = 3;
|
|
4371
|
+
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
4372
|
+
* empty, instead returning `undefined`
|
|
4373
|
+
* @return {!jspb.Map<string,!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies>}
|
|
4374
|
+
*/
|
|
4375
|
+
proto.pulumirpc.ResourceCallRequest.prototype.getArgdependenciesMap = function(opt_noLazyCreate) {
|
|
4376
|
+
return /** @type {!jspb.Map<string,!proto.pulumirpc.ResourceCallRequest.ArgumentDependencies>} */ (
|
|
4377
|
+
jspb.Message.getMapField(this, 3, opt_noLazyCreate,
|
|
4378
|
+
proto.pulumirpc.ResourceCallRequest.ArgumentDependencies));
|
|
4379
|
+
};
|
|
4380
|
+
|
|
4381
|
+
|
|
4382
|
+
/**
|
|
4383
|
+
* Clears values from the map. The map will be non-null.
|
|
4384
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4385
|
+
*/
|
|
4386
|
+
proto.pulumirpc.ResourceCallRequest.prototype.clearArgdependenciesMap = function() {
|
|
4387
|
+
this.getArgdependenciesMap().clear();
|
|
4388
|
+
return this;};
|
|
4389
|
+
|
|
4390
|
+
|
|
4391
|
+
/**
|
|
4392
|
+
* optional string provider = 4;
|
|
4393
|
+
* @return {string}
|
|
4394
|
+
*/
|
|
4395
|
+
proto.pulumirpc.ResourceCallRequest.prototype.getProvider = function() {
|
|
4396
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
4397
|
+
};
|
|
4398
|
+
|
|
4399
|
+
|
|
4400
|
+
/**
|
|
4401
|
+
* @param {string} value
|
|
4402
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4403
|
+
*/
|
|
4404
|
+
proto.pulumirpc.ResourceCallRequest.prototype.setProvider = function(value) {
|
|
4405
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
4406
|
+
};
|
|
4407
|
+
|
|
4408
|
+
|
|
4409
|
+
/**
|
|
4410
|
+
* optional string version = 5;
|
|
4411
|
+
* @return {string}
|
|
4412
|
+
*/
|
|
4413
|
+
proto.pulumirpc.ResourceCallRequest.prototype.getVersion = function() {
|
|
4414
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
4415
|
+
};
|
|
4416
|
+
|
|
4417
|
+
|
|
4418
|
+
/**
|
|
4419
|
+
* @param {string} value
|
|
4420
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4421
|
+
*/
|
|
4422
|
+
proto.pulumirpc.ResourceCallRequest.prototype.setVersion = function(value) {
|
|
4423
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
4424
|
+
};
|
|
4425
|
+
|
|
4426
|
+
|
|
4427
|
+
/**
|
|
4428
|
+
* optional string pluginDownloadURL = 13;
|
|
4429
|
+
* @return {string}
|
|
4430
|
+
*/
|
|
4431
|
+
proto.pulumirpc.ResourceCallRequest.prototype.getPlugindownloadurl = function() {
|
|
4432
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
4433
|
+
};
|
|
4434
|
+
|
|
4435
|
+
|
|
4436
|
+
/**
|
|
4437
|
+
* @param {string} value
|
|
4438
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4439
|
+
*/
|
|
4440
|
+
proto.pulumirpc.ResourceCallRequest.prototype.setPlugindownloadurl = function(value) {
|
|
4441
|
+
return jspb.Message.setProto3StringField(this, 13, value);
|
|
4442
|
+
};
|
|
4443
|
+
|
|
4444
|
+
|
|
4445
|
+
/**
|
|
4446
|
+
* map<string, bytes> pluginChecksums = 16;
|
|
4447
|
+
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
4448
|
+
* empty, instead returning `undefined`
|
|
4449
|
+
* @return {!jspb.Map<string,!(string|Uint8Array)>}
|
|
4450
|
+
*/
|
|
4451
|
+
proto.pulumirpc.ResourceCallRequest.prototype.getPluginchecksumsMap = function(opt_noLazyCreate) {
|
|
4452
|
+
return /** @type {!jspb.Map<string,!(string|Uint8Array)>} */ (
|
|
4453
|
+
jspb.Message.getMapField(this, 16, opt_noLazyCreate,
|
|
4454
|
+
null));
|
|
4455
|
+
};
|
|
4456
|
+
|
|
4457
|
+
|
|
4458
|
+
/**
|
|
4459
|
+
* Clears values from the map. The map will be non-null.
|
|
4460
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4461
|
+
*/
|
|
4462
|
+
proto.pulumirpc.ResourceCallRequest.prototype.clearPluginchecksumsMap = function() {
|
|
4463
|
+
this.getPluginchecksumsMap().clear();
|
|
4464
|
+
return this;};
|
|
4465
|
+
|
|
4466
|
+
|
|
4467
|
+
/**
|
|
4468
|
+
* optional SourcePosition sourcePosition = 15;
|
|
4469
|
+
* @return {?proto.pulumirpc.SourcePosition}
|
|
4470
|
+
*/
|
|
4471
|
+
proto.pulumirpc.ResourceCallRequest.prototype.getSourceposition = function() {
|
|
4472
|
+
return /** @type{?proto.pulumirpc.SourcePosition} */ (
|
|
4473
|
+
jspb.Message.getWrapperField(this, pulumi_source_pb.SourcePosition, 15));
|
|
4474
|
+
};
|
|
4475
|
+
|
|
4476
|
+
|
|
4477
|
+
/**
|
|
4478
|
+
* @param {?proto.pulumirpc.SourcePosition|undefined} value
|
|
4479
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4480
|
+
*/
|
|
4481
|
+
proto.pulumirpc.ResourceCallRequest.prototype.setSourceposition = function(value) {
|
|
4482
|
+
return jspb.Message.setWrapperField(this, 15, value);
|
|
4483
|
+
};
|
|
4484
|
+
|
|
4485
|
+
|
|
4486
|
+
/**
|
|
4487
|
+
* Clears the message field making it undefined.
|
|
4488
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4489
|
+
*/
|
|
4490
|
+
proto.pulumirpc.ResourceCallRequest.prototype.clearSourceposition = function() {
|
|
4491
|
+
return this.setSourceposition(undefined);
|
|
4492
|
+
};
|
|
4493
|
+
|
|
4494
|
+
|
|
4495
|
+
/**
|
|
4496
|
+
* Returns whether this field is set.
|
|
4497
|
+
* @return {boolean}
|
|
4498
|
+
*/
|
|
4499
|
+
proto.pulumirpc.ResourceCallRequest.prototype.hasSourceposition = function() {
|
|
4500
|
+
return jspb.Message.getField(this, 15) != null;
|
|
4501
|
+
};
|
|
4502
|
+
|
|
4503
|
+
|
|
3916
4504
|
goog.object.extend(exports, proto.pulumirpc);
|
package/runtime/invoke.js
CHANGED
|
@@ -39,7 +39,6 @@ const resource_1 = require("../resource");
|
|
|
39
39
|
const utils = __importStar(require("../utils"));
|
|
40
40
|
const asyncIterableUtil_1 = require("./asyncIterableUtil");
|
|
41
41
|
const gstruct = __importStar(require("google-protobuf/google/protobuf/struct_pb"));
|
|
42
|
-
const providerproto = __importStar(require("../proto/provider_pb"));
|
|
43
42
|
const resourceproto = __importStar(require("../proto/resource_pb"));
|
|
44
43
|
/**
|
|
45
44
|
* `invoke` dynamically invokes the function, `tok`, which is offered by a provider plugin. `invoke`
|
|
@@ -349,7 +348,7 @@ function createCallRequest(tok, serialized, serializedDeps, provider, version, p
|
|
|
349
348
|
throw new Error("Incorrect provider type.");
|
|
350
349
|
}
|
|
351
350
|
const obj = gstruct.Struct.fromJavaScript(serialized);
|
|
352
|
-
const req = new
|
|
351
|
+
const req = new resourceproto.ResourceCallRequest();
|
|
353
352
|
req.setTok(tok);
|
|
354
353
|
req.setArgs(obj);
|
|
355
354
|
req.setProvider(provider || "");
|
|
@@ -362,7 +361,7 @@ function createCallRequest(tok, serialized, serializedDeps, provider, version, p
|
|
|
362
361
|
const urn = yield dep.urn.promise();
|
|
363
362
|
urns.add(urn);
|
|
364
363
|
}
|
|
365
|
-
const deps = new
|
|
364
|
+
const deps = new resourceproto.ResourceCallRequest.ArgumentDependencies();
|
|
366
365
|
deps.setUrnsList(Array.from(urns));
|
|
367
366
|
argDependencies.set(key, deps);
|
|
368
367
|
}
|
package/runtime/invoke.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"invoke.js","sourceRoot":"","sources":["../../runtime/invoke.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"invoke.js","sourceRoot":"","sources":["../../runtime/invoke.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.
|
|
16
|
+
exports.version = "3.106.0-alpha.cf9562c";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|