@pulumi/pulumi 3.190.0-alpha.xf18d36d → 3.191.0-alpha.xfa1c75e
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 +2 -2
- package/proto/alias_pb.js +15 -9
- package/proto/analyzer_grpc_pb.js +1 -1
- package/proto/analyzer_pb.js +91 -80
- package/proto/callback_grpc_pb.js +1 -1
- package/proto/callback_pb.js +12 -6
- package/proto/codegen/hcl_pb.js +18 -12
- package/proto/codegen/loader_grpc_pb.js +1 -1
- package/proto/codegen/loader_pb.js +15 -9
- package/proto/codegen/mapper_grpc_pb.js +1 -1
- package/proto/codegen/mapper_pb.js +14 -8
- package/proto/converter_grpc_pb.js +1 -1
- package/proto/converter_pb.js +26 -20
- package/proto/engine_grpc_pb.js +1 -1
- package/proto/engine_pb.js +16 -10
- package/proto/errors_pb.js +12 -6
- package/proto/language_grpc_pb.js +1 -1
- package/proto/language_pb.js +120 -106
- package/proto/plugin_pb.js +27 -19
- package/proto/provider_grpc_pb.js +1 -1
- package/proto/provider_pb.js +222 -207
- package/proto/resource_grpc_pb.js +1 -1
- package/proto/resource_pb.js +177 -159
- package/proto/resource_status_grpc_pb.js +1 -1
- package/proto/resource_status_pb.js +28 -21
- package/proto/source_pb.js +10 -4
- package/proto/status_pb.js +10 -4
- package/proto/testing/language_grpc_pb.js +1 -1
- package/proto/testing/language_pb.js +31 -24
- package/provider/experimental/schema.js +0 -4
- package/provider/experimental/schema.js.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/proto/language_pb.js
CHANGED
|
@@ -13,7 +13,13 @@
|
|
|
13
13
|
|
|
14
14
|
var jspb = require('google-protobuf');
|
|
15
15
|
var goog = jspb;
|
|
16
|
-
var
|
|
16
|
+
var global =
|
|
17
|
+
(typeof globalThis !== 'undefined' && globalThis) ||
|
|
18
|
+
(typeof window !== 'undefined' && window) ||
|
|
19
|
+
(typeof global !== 'undefined' && global) ||
|
|
20
|
+
(typeof self !== 'undefined' && self) ||
|
|
21
|
+
(function () { return this; }).call(null) ||
|
|
22
|
+
Function('return this')();
|
|
17
23
|
|
|
18
24
|
var pulumi_codegen_hcl_pb = require('./codegen/hcl_pb.js');
|
|
19
25
|
goog.object.extend(proto, pulumi_codegen_hcl_pb);
|
|
@@ -761,10 +767,10 @@ proto.pulumirpc.ProgramInfo.prototype.toObject = function(opt_includeInstance) {
|
|
|
761
767
|
*/
|
|
762
768
|
proto.pulumirpc.ProgramInfo.toObject = function(includeInstance, msg) {
|
|
763
769
|
var f, obj = {
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
770
|
+
rootDirectory: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
771
|
+
programDirectory: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
772
|
+
entryPoint: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
773
|
+
options: (f = msg.getOptions()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
|
|
768
774
|
};
|
|
769
775
|
|
|
770
776
|
if (includeInstance) {
|
|
@@ -1002,7 +1008,7 @@ proto.pulumirpc.AboutRequest.prototype.toObject = function(opt_includeInstance)
|
|
|
1002
1008
|
*/
|
|
1003
1009
|
proto.pulumirpc.AboutRequest.toObject = function(includeInstance, msg) {
|
|
1004
1010
|
var f, obj = {
|
|
1005
|
-
|
|
1011
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f)
|
|
1006
1012
|
};
|
|
1007
1013
|
|
|
1008
1014
|
if (includeInstance) {
|
|
@@ -1153,9 +1159,9 @@ proto.pulumirpc.AboutResponse.prototype.toObject = function(opt_includeInstance)
|
|
|
1153
1159
|
*/
|
|
1154
1160
|
proto.pulumirpc.AboutResponse.toObject = function(includeInstance, msg) {
|
|
1155
1161
|
var f, obj = {
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1162
|
+
executable: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
1163
|
+
version: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
1164
|
+
metadataMap: (f = msg.getMetadataMap()) ? f.toObject(includeInstance, undefined) : []
|
|
1159
1165
|
};
|
|
1160
1166
|
|
|
1161
1167
|
if (includeInstance) {
|
|
@@ -1311,7 +1317,8 @@ proto.pulumirpc.AboutResponse.prototype.getMetadataMap = function(opt_noLazyCrea
|
|
|
1311
1317
|
*/
|
|
1312
1318
|
proto.pulumirpc.AboutResponse.prototype.clearMetadataMap = function() {
|
|
1313
1319
|
this.getMetadataMap().clear();
|
|
1314
|
-
return this;
|
|
1320
|
+
return this;
|
|
1321
|
+
};
|
|
1315
1322
|
|
|
1316
1323
|
|
|
1317
1324
|
|
|
@@ -1346,11 +1353,11 @@ proto.pulumirpc.GetProgramDependenciesRequest.prototype.toObject = function(opt_
|
|
|
1346
1353
|
*/
|
|
1347
1354
|
proto.pulumirpc.GetProgramDependenciesRequest.toObject = function(includeInstance, msg) {
|
|
1348
1355
|
var f, obj = {
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1356
|
+
project: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
1357
|
+
pwd: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
1358
|
+
program: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
1359
|
+
transitivedependencies: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
1360
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f)
|
|
1354
1361
|
};
|
|
1355
1362
|
|
|
1356
1363
|
if (includeInstance) {
|
|
@@ -1617,8 +1624,8 @@ proto.pulumirpc.DependencyInfo.prototype.toObject = function(opt_includeInstance
|
|
|
1617
1624
|
*/
|
|
1618
1625
|
proto.pulumirpc.DependencyInfo.toObject = function(includeInstance, msg) {
|
|
1619
1626
|
var f, obj = {
|
|
1620
|
-
|
|
1621
|
-
|
|
1627
|
+
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
1628
|
+
version: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
1622
1629
|
};
|
|
1623
1630
|
|
|
1624
1631
|
if (includeInstance) {
|
|
@@ -1784,7 +1791,7 @@ proto.pulumirpc.GetProgramDependenciesResponse.prototype.toObject = function(opt
|
|
|
1784
1791
|
*/
|
|
1785
1792
|
proto.pulumirpc.GetProgramDependenciesResponse.toObject = function(includeInstance, msg) {
|
|
1786
1793
|
var f, obj = {
|
|
1787
|
-
|
|
1794
|
+
dependenciesList: jspb.Message.toObjectList(msg.getDependenciesList(),
|
|
1788
1795
|
proto.pulumirpc.DependencyInfo.toObject, includeInstance)
|
|
1789
1796
|
};
|
|
1790
1797
|
|
|
@@ -1937,10 +1944,10 @@ proto.pulumirpc.GetRequiredPluginsRequest.prototype.toObject = function(opt_incl
|
|
|
1937
1944
|
*/
|
|
1938
1945
|
proto.pulumirpc.GetRequiredPluginsRequest.toObject = function(includeInstance, msg) {
|
|
1939
1946
|
var f, obj = {
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1947
|
+
project: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
1948
|
+
pwd: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
1949
|
+
program: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
1950
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f)
|
|
1944
1951
|
};
|
|
1945
1952
|
|
|
1946
1953
|
if (includeInstance) {
|
|
@@ -2185,7 +2192,7 @@ proto.pulumirpc.GetRequiredPluginsResponse.prototype.toObject = function(opt_inc
|
|
|
2185
2192
|
*/
|
|
2186
2193
|
proto.pulumirpc.GetRequiredPluginsResponse.toObject = function(includeInstance, msg) {
|
|
2187
2194
|
var f, obj = {
|
|
2188
|
-
|
|
2195
|
+
pluginsList: jspb.Message.toObjectList(msg.getPluginsList(),
|
|
2189
2196
|
pulumi_plugin_pb.PluginDependency.toObject, includeInstance)
|
|
2190
2197
|
};
|
|
2191
2198
|
|
|
@@ -2338,7 +2345,7 @@ proto.pulumirpc.GetRequiredPackagesRequest.prototype.toObject = function(opt_inc
|
|
|
2338
2345
|
*/
|
|
2339
2346
|
proto.pulumirpc.GetRequiredPackagesRequest.toObject = function(includeInstance, msg) {
|
|
2340
2347
|
var f, obj = {
|
|
2341
|
-
|
|
2348
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f)
|
|
2342
2349
|
};
|
|
2343
2350
|
|
|
2344
2351
|
if (includeInstance) {
|
|
@@ -2496,7 +2503,7 @@ proto.pulumirpc.GetRequiredPackagesResponse.prototype.toObject = function(opt_in
|
|
|
2496
2503
|
*/
|
|
2497
2504
|
proto.pulumirpc.GetRequiredPackagesResponse.toObject = function(includeInstance, msg) {
|
|
2498
2505
|
var f, obj = {
|
|
2499
|
-
|
|
2506
|
+
packagesList: jspb.Message.toObjectList(msg.getPackagesList(),
|
|
2500
2507
|
pulumi_plugin_pb.PackageDependency.toObject, includeInstance)
|
|
2501
2508
|
};
|
|
2502
2509
|
|
|
@@ -2656,22 +2663,22 @@ proto.pulumirpc.RunRequest.prototype.toObject = function(opt_includeInstance) {
|
|
|
2656
2663
|
*/
|
|
2657
2664
|
proto.pulumirpc.RunRequest.toObject = function(includeInstance, msg) {
|
|
2658
2665
|
var f, obj = {
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2666
|
+
project: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
2667
|
+
stack: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
2668
|
+
pwd: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
2669
|
+
program: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
2670
|
+
argsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
2671
|
+
configMap: (f = msg.getConfigMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
2672
|
+
dryrun: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
|
|
2673
|
+
parallel: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
|
2674
|
+
monitorAddress: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
2675
|
+
querymode: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
|
|
2676
|
+
configsecretkeysList: (f = jspb.Message.getRepeatedField(msg, 11)) == null ? undefined : f,
|
|
2677
|
+
organization: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
2678
|
+
configpropertymap: (f = msg.getConfigpropertymap()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
2679
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
2680
|
+
loaderTarget: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
2681
|
+
attachDebugger: jspb.Message.getBooleanFieldWithDefault(msg, 16, false)
|
|
2675
2682
|
};
|
|
2676
2683
|
|
|
2677
2684
|
if (includeInstance) {
|
|
@@ -3047,7 +3054,8 @@ proto.pulumirpc.RunRequest.prototype.getConfigMap = function(opt_noLazyCreate) {
|
|
|
3047
3054
|
*/
|
|
3048
3055
|
proto.pulumirpc.RunRequest.prototype.clearConfigMap = function() {
|
|
3049
3056
|
this.getConfigMap().clear();
|
|
3050
|
-
return this;
|
|
3057
|
+
return this;
|
|
3058
|
+
};
|
|
3051
3059
|
|
|
3052
3060
|
|
|
3053
3061
|
/**
|
|
@@ -3319,8 +3327,8 @@ proto.pulumirpc.RunResponse.prototype.toObject = function(opt_includeInstance) {
|
|
|
3319
3327
|
*/
|
|
3320
3328
|
proto.pulumirpc.RunResponse.toObject = function(includeInstance, msg) {
|
|
3321
3329
|
var f, obj = {
|
|
3322
|
-
|
|
3323
|
-
|
|
3330
|
+
error: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
3331
|
+
bail: jspb.Message.getBooleanFieldWithDefault(msg, 2, false)
|
|
3324
3332
|
};
|
|
3325
3333
|
|
|
3326
3334
|
if (includeInstance) {
|
|
@@ -3479,11 +3487,11 @@ proto.pulumirpc.InstallDependenciesRequest.prototype.toObject = function(opt_inc
|
|
|
3479
3487
|
*/
|
|
3480
3488
|
proto.pulumirpc.InstallDependenciesRequest.toObject = function(includeInstance, msg) {
|
|
3481
3489
|
var f, obj = {
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3490
|
+
directory: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
3491
|
+
isTerminal: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
|
|
3492
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
3493
|
+
useLanguageVersionTools: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
3494
|
+
isPlugin: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
3487
3495
|
};
|
|
3488
3496
|
|
|
3489
3497
|
if (includeInstance) {
|
|
@@ -3750,8 +3758,8 @@ proto.pulumirpc.InstallDependenciesResponse.prototype.toObject = function(opt_in
|
|
|
3750
3758
|
*/
|
|
3751
3759
|
proto.pulumirpc.InstallDependenciesResponse.toObject = function(includeInstance, msg) {
|
|
3752
3760
|
var f, obj = {
|
|
3753
|
-
|
|
3754
|
-
|
|
3761
|
+
stdout: msg.getStdout_asB64(),
|
|
3762
|
+
stderr: msg.getStderr_asB64()
|
|
3755
3763
|
};
|
|
3756
3764
|
|
|
3757
3765
|
if (includeInstance) {
|
|
@@ -3958,7 +3966,7 @@ proto.pulumirpc.RuntimeOptionsRequest.prototype.toObject = function(opt_includeI
|
|
|
3958
3966
|
*/
|
|
3959
3967
|
proto.pulumirpc.RuntimeOptionsRequest.toObject = function(includeInstance, msg) {
|
|
3960
3968
|
var f, obj = {
|
|
3961
|
-
|
|
3969
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f)
|
|
3962
3970
|
};
|
|
3963
3971
|
|
|
3964
3972
|
if (includeInstance) {
|
|
@@ -4116,12 +4124,12 @@ proto.pulumirpc.RuntimeOptionPrompt.prototype.toObject = function(opt_includeIns
|
|
|
4116
4124
|
*/
|
|
4117
4125
|
proto.pulumirpc.RuntimeOptionPrompt.toObject = function(includeInstance, msg) {
|
|
4118
4126
|
var f, obj = {
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4127
|
+
key: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
4128
|
+
description: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
4129
|
+
prompttype: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
4130
|
+
choicesList: jspb.Message.toObjectList(msg.getChoicesList(),
|
|
4123
4131
|
proto.pulumirpc.RuntimeOptionPrompt.RuntimeOptionValue.toObject, includeInstance),
|
|
4124
|
-
|
|
4132
|
+
pb_default: (f = msg.getDefault()) && proto.pulumirpc.RuntimeOptionPrompt.RuntimeOptionValue.toObject(includeInstance, f)
|
|
4125
4133
|
};
|
|
4126
4134
|
|
|
4127
4135
|
if (includeInstance) {
|
|
@@ -4289,10 +4297,10 @@ proto.pulumirpc.RuntimeOptionPrompt.RuntimeOptionValue.prototype.toObject = func
|
|
|
4289
4297
|
*/
|
|
4290
4298
|
proto.pulumirpc.RuntimeOptionPrompt.RuntimeOptionValue.toObject = function(includeInstance, msg) {
|
|
4291
4299
|
var f, obj = {
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
|
|
4295
|
-
|
|
4300
|
+
prompttype: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
4301
|
+
stringvalue: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
4302
|
+
int32value: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
4303
|
+
displayname: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
4296
4304
|
};
|
|
4297
4305
|
|
|
4298
4306
|
if (includeInstance) {
|
|
@@ -4645,7 +4653,7 @@ proto.pulumirpc.RuntimeOptionsResponse.prototype.toObject = function(opt_include
|
|
|
4645
4653
|
*/
|
|
4646
4654
|
proto.pulumirpc.RuntimeOptionsResponse.toObject = function(includeInstance, msg) {
|
|
4647
4655
|
var f, obj = {
|
|
4648
|
-
|
|
4656
|
+
promptsList: jspb.Message.toObjectList(msg.getPromptsList(),
|
|
4649
4657
|
proto.pulumirpc.RuntimeOptionPrompt.toObject, includeInstance)
|
|
4650
4658
|
};
|
|
4651
4659
|
|
|
@@ -4805,14 +4813,14 @@ proto.pulumirpc.RunPluginRequest.prototype.toObject = function(opt_includeInstan
|
|
|
4805
4813
|
*/
|
|
4806
4814
|
proto.pulumirpc.RunPluginRequest.toObject = function(includeInstance, msg) {
|
|
4807
4815
|
var f, obj = {
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
|
|
4816
|
+
pwd: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
4817
|
+
program: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
4818
|
+
argsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
4819
|
+
envList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
4820
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
4821
|
+
kind: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
4822
|
+
name: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
4823
|
+
attachDebugger: jspb.Message.getBooleanFieldWithDefault(msg, 8, false)
|
|
4816
4824
|
};
|
|
4817
4825
|
|
|
4818
4826
|
if (includeInstance) {
|
|
@@ -5231,9 +5239,9 @@ proto.pulumirpc.RunPluginResponse.prototype.toObject = function(opt_includeInsta
|
|
|
5231
5239
|
*/
|
|
5232
5240
|
proto.pulumirpc.RunPluginResponse.toObject = function(includeInstance, msg) {
|
|
5233
5241
|
var f, obj = {
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5242
|
+
stdout: msg.getStdout_asB64(),
|
|
5243
|
+
stderr: msg.getStderr_asB64(),
|
|
5244
|
+
exitcode: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
5237
5245
|
};
|
|
5238
5246
|
|
|
5239
5247
|
if (includeInstance) {
|
|
@@ -5523,9 +5531,9 @@ proto.pulumirpc.GenerateProgramRequest.prototype.toObject = function(opt_include
|
|
|
5523
5531
|
*/
|
|
5524
5532
|
proto.pulumirpc.GenerateProgramRequest.toObject = function(includeInstance, msg) {
|
|
5525
5533
|
var f, obj = {
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5534
|
+
sourceMap: (f = msg.getSourceMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
5535
|
+
loaderTarget: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
5536
|
+
strict: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
|
|
5529
5537
|
};
|
|
5530
5538
|
|
|
5531
5539
|
if (includeInstance) {
|
|
@@ -5645,7 +5653,8 @@ proto.pulumirpc.GenerateProgramRequest.prototype.getSourceMap = function(opt_noL
|
|
|
5645
5653
|
*/
|
|
5646
5654
|
proto.pulumirpc.GenerateProgramRequest.prototype.clearSourceMap = function() {
|
|
5647
5655
|
this.getSourceMap().clear();
|
|
5648
|
-
return this;
|
|
5656
|
+
return this;
|
|
5657
|
+
};
|
|
5649
5658
|
|
|
5650
5659
|
|
|
5651
5660
|
/**
|
|
@@ -5723,9 +5732,9 @@ proto.pulumirpc.GenerateProgramResponse.prototype.toObject = function(opt_includ
|
|
|
5723
5732
|
*/
|
|
5724
5733
|
proto.pulumirpc.GenerateProgramResponse.toObject = function(includeInstance, msg) {
|
|
5725
5734
|
var f, obj = {
|
|
5726
|
-
|
|
5735
|
+
diagnosticsList: jspb.Message.toObjectList(msg.getDiagnosticsList(),
|
|
5727
5736
|
pulumi_codegen_hcl_pb.Diagnostic.toObject, includeInstance),
|
|
5728
|
-
|
|
5737
|
+
sourceMap: (f = msg.getSourceMap()) ? f.toObject(includeInstance, undefined) : []
|
|
5729
5738
|
};
|
|
5730
5739
|
|
|
5731
5740
|
if (includeInstance) {
|
|
@@ -5874,7 +5883,8 @@ proto.pulumirpc.GenerateProgramResponse.prototype.getSourceMap = function(opt_no
|
|
|
5874
5883
|
*/
|
|
5875
5884
|
proto.pulumirpc.GenerateProgramResponse.prototype.clearSourceMap = function() {
|
|
5876
5885
|
this.getSourceMap().clear();
|
|
5877
|
-
return this;
|
|
5886
|
+
return this;
|
|
5887
|
+
};
|
|
5878
5888
|
|
|
5879
5889
|
|
|
5880
5890
|
|
|
@@ -5909,12 +5919,12 @@ proto.pulumirpc.GenerateProjectRequest.prototype.toObject = function(opt_include
|
|
|
5909
5919
|
*/
|
|
5910
5920
|
proto.pulumirpc.GenerateProjectRequest.toObject = function(includeInstance, msg) {
|
|
5911
5921
|
var f, obj = {
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
|
|
5922
|
+
sourceDirectory: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
5923
|
+
targetDirectory: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
5924
|
+
project: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
5925
|
+
strict: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
5926
|
+
loaderTarget: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
5927
|
+
localDependenciesMap: (f = msg.getLocalDependenciesMap()) ? f.toObject(includeInstance, undefined) : []
|
|
5918
5928
|
};
|
|
5919
5929
|
|
|
5920
5930
|
if (includeInstance) {
|
|
@@ -6157,7 +6167,8 @@ proto.pulumirpc.GenerateProjectRequest.prototype.getLocalDependenciesMap = funct
|
|
|
6157
6167
|
*/
|
|
6158
6168
|
proto.pulumirpc.GenerateProjectRequest.prototype.clearLocalDependenciesMap = function() {
|
|
6159
6169
|
this.getLocalDependenciesMap().clear();
|
|
6160
|
-
return this;
|
|
6170
|
+
return this;
|
|
6171
|
+
};
|
|
6161
6172
|
|
|
6162
6173
|
|
|
6163
6174
|
|
|
@@ -6199,7 +6210,7 @@ proto.pulumirpc.GenerateProjectResponse.prototype.toObject = function(opt_includ
|
|
|
6199
6210
|
*/
|
|
6200
6211
|
proto.pulumirpc.GenerateProjectResponse.toObject = function(includeInstance, msg) {
|
|
6201
6212
|
var f, obj = {
|
|
6202
|
-
|
|
6213
|
+
diagnosticsList: jspb.Message.toObjectList(msg.getDiagnosticsList(),
|
|
6203
6214
|
pulumi_codegen_hcl_pb.Diagnostic.toObject, includeInstance)
|
|
6204
6215
|
};
|
|
6205
6216
|
|
|
@@ -6352,12 +6363,12 @@ proto.pulumirpc.GeneratePackageRequest.prototype.toObject = function(opt_include
|
|
|
6352
6363
|
*/
|
|
6353
6364
|
proto.pulumirpc.GeneratePackageRequest.toObject = function(includeInstance, msg) {
|
|
6354
6365
|
var f, obj = {
|
|
6355
|
-
|
|
6356
|
-
|
|
6357
|
-
|
|
6358
|
-
|
|
6359
|
-
|
|
6360
|
-
|
|
6366
|
+
directory: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
6367
|
+
schema: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
6368
|
+
extraFilesMap: (f = msg.getExtraFilesMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
6369
|
+
loaderTarget: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
6370
|
+
localDependenciesMap: (f = msg.getLocalDependenciesMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
6371
|
+
local: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
|
|
6361
6372
|
};
|
|
6362
6373
|
|
|
6363
6374
|
if (includeInstance) {
|
|
@@ -6545,7 +6556,8 @@ proto.pulumirpc.GeneratePackageRequest.prototype.getExtraFilesMap = function(opt
|
|
|
6545
6556
|
*/
|
|
6546
6557
|
proto.pulumirpc.GeneratePackageRequest.prototype.clearExtraFilesMap = function() {
|
|
6547
6558
|
this.getExtraFilesMap().clear();
|
|
6548
|
-
return this;
|
|
6559
|
+
return this;
|
|
6560
|
+
};
|
|
6549
6561
|
|
|
6550
6562
|
|
|
6551
6563
|
/**
|
|
@@ -6585,7 +6597,8 @@ proto.pulumirpc.GeneratePackageRequest.prototype.getLocalDependenciesMap = funct
|
|
|
6585
6597
|
*/
|
|
6586
6598
|
proto.pulumirpc.GeneratePackageRequest.prototype.clearLocalDependenciesMap = function() {
|
|
6587
6599
|
this.getLocalDependenciesMap().clear();
|
|
6588
|
-
return this;
|
|
6600
|
+
return this;
|
|
6601
|
+
};
|
|
6589
6602
|
|
|
6590
6603
|
|
|
6591
6604
|
/**
|
|
@@ -6645,7 +6658,7 @@ proto.pulumirpc.GeneratePackageResponse.prototype.toObject = function(opt_includ
|
|
|
6645
6658
|
*/
|
|
6646
6659
|
proto.pulumirpc.GeneratePackageResponse.toObject = function(includeInstance, msg) {
|
|
6647
6660
|
var f, obj = {
|
|
6648
|
-
|
|
6661
|
+
diagnosticsList: jspb.Message.toObjectList(msg.getDiagnosticsList(),
|
|
6649
6662
|
pulumi_codegen_hcl_pb.Diagnostic.toObject, includeInstance)
|
|
6650
6663
|
};
|
|
6651
6664
|
|
|
@@ -6798,8 +6811,8 @@ proto.pulumirpc.PackRequest.prototype.toObject = function(opt_includeInstance) {
|
|
|
6798
6811
|
*/
|
|
6799
6812
|
proto.pulumirpc.PackRequest.toObject = function(includeInstance, msg) {
|
|
6800
6813
|
var f, obj = {
|
|
6801
|
-
|
|
6802
|
-
|
|
6814
|
+
packageDirectory: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
6815
|
+
destinationDirectory: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
6803
6816
|
};
|
|
6804
6817
|
|
|
6805
6818
|
if (includeInstance) {
|
|
@@ -6958,7 +6971,7 @@ proto.pulumirpc.PackResponse.prototype.toObject = function(opt_includeInstance)
|
|
|
6958
6971
|
*/
|
|
6959
6972
|
proto.pulumirpc.PackResponse.toObject = function(includeInstance, msg) {
|
|
6960
6973
|
var f, obj = {
|
|
6961
|
-
|
|
6974
|
+
artifactPath: jspb.Message.getFieldWithDefault(msg, 1, "")
|
|
6962
6975
|
};
|
|
6963
6976
|
|
|
6964
6977
|
if (includeInstance) {
|
|
@@ -7088,9 +7101,9 @@ proto.pulumirpc.LanguageHandshakeRequest.prototype.toObject = function(opt_inclu
|
|
|
7088
7101
|
*/
|
|
7089
7102
|
proto.pulumirpc.LanguageHandshakeRequest.toObject = function(includeInstance, msg) {
|
|
7090
7103
|
var f, obj = {
|
|
7091
|
-
|
|
7092
|
-
|
|
7093
|
-
|
|
7104
|
+
engineAddress: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
7105
|
+
rootDirectory: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
|
|
7106
|
+
programDirectory: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f
|
|
7094
7107
|
};
|
|
7095
7108
|
|
|
7096
7109
|
if (includeInstance) {
|
|
@@ -7415,8 +7428,8 @@ proto.pulumirpc.LinkRequest.prototype.toObject = function(opt_includeInstance) {
|
|
|
7415
7428
|
*/
|
|
7416
7429
|
proto.pulumirpc.LinkRequest.toObject = function(includeInstance, msg) {
|
|
7417
7430
|
var f, obj = {
|
|
7418
|
-
|
|
7419
|
-
|
|
7431
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
7432
|
+
localDependenciesMap: (f = msg.getLocalDependenciesMap()) ? f.toObject(includeInstance, undefined) : []
|
|
7420
7433
|
};
|
|
7421
7434
|
|
|
7422
7435
|
if (includeInstance) {
|
|
@@ -7564,7 +7577,8 @@ proto.pulumirpc.LinkRequest.prototype.getLocalDependenciesMap = function(opt_noL
|
|
|
7564
7577
|
*/
|
|
7565
7578
|
proto.pulumirpc.LinkRequest.prototype.clearLocalDependenciesMap = function() {
|
|
7566
7579
|
this.getLocalDependenciesMap().clear();
|
|
7567
|
-
return this;
|
|
7580
|
+
return this;
|
|
7581
|
+
};
|
|
7568
7582
|
|
|
7569
7583
|
|
|
7570
7584
|
|
package/proto/plugin_pb.js
CHANGED
|
@@ -13,7 +13,13 @@
|
|
|
13
13
|
|
|
14
14
|
var jspb = require('google-protobuf');
|
|
15
15
|
var goog = jspb;
|
|
16
|
-
var
|
|
16
|
+
var global =
|
|
17
|
+
(typeof globalThis !== 'undefined' && globalThis) ||
|
|
18
|
+
(typeof window !== 'undefined' && window) ||
|
|
19
|
+
(typeof global !== 'undefined' && global) ||
|
|
20
|
+
(typeof self !== 'undefined' && self) ||
|
|
21
|
+
(function () { return this; }).call(null) ||
|
|
22
|
+
Function('return this')();
|
|
17
23
|
|
|
18
24
|
goog.exportSymbol('proto.pulumirpc.PackageDependency', null, global);
|
|
19
25
|
goog.exportSymbol('proto.pulumirpc.PackageParameterization', null, global);
|
|
@@ -157,7 +163,7 @@ proto.pulumirpc.PluginInfo.prototype.toObject = function(opt_includeInstance) {
|
|
|
157
163
|
*/
|
|
158
164
|
proto.pulumirpc.PluginInfo.toObject = function(includeInstance, msg) {
|
|
159
165
|
var f, obj = {
|
|
160
|
-
|
|
166
|
+
version: jspb.Message.getFieldWithDefault(msg, 1, "")
|
|
161
167
|
};
|
|
162
168
|
|
|
163
169
|
if (includeInstance) {
|
|
@@ -287,11 +293,11 @@ proto.pulumirpc.PluginDependency.prototype.toObject = function(opt_includeInstan
|
|
|
287
293
|
*/
|
|
288
294
|
proto.pulumirpc.PluginDependency.toObject = function(includeInstance, msg) {
|
|
289
295
|
var f, obj = {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
296
|
+
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
297
|
+
kind: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
298
|
+
version: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
299
|
+
server: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
300
|
+
checksumsMap: (f = msg.getChecksumsMap()) ? f.toObject(includeInstance, undefined) : []
|
|
295
301
|
};
|
|
296
302
|
|
|
297
303
|
if (includeInstance) {
|
|
@@ -505,7 +511,8 @@ proto.pulumirpc.PluginDependency.prototype.getChecksumsMap = function(opt_noLazy
|
|
|
505
511
|
*/
|
|
506
512
|
proto.pulumirpc.PluginDependency.prototype.clearChecksumsMap = function() {
|
|
507
513
|
this.getChecksumsMap().clear();
|
|
508
|
-
return this;
|
|
514
|
+
return this;
|
|
515
|
+
};
|
|
509
516
|
|
|
510
517
|
|
|
511
518
|
|
|
@@ -540,7 +547,7 @@ proto.pulumirpc.PluginAttach.prototype.toObject = function(opt_includeInstance)
|
|
|
540
547
|
*/
|
|
541
548
|
proto.pulumirpc.PluginAttach.toObject = function(includeInstance, msg) {
|
|
542
549
|
var f, obj = {
|
|
543
|
-
|
|
550
|
+
address: jspb.Message.getFieldWithDefault(msg, 1, "")
|
|
544
551
|
};
|
|
545
552
|
|
|
546
553
|
if (includeInstance) {
|
|
@@ -670,9 +677,9 @@ proto.pulumirpc.PackageParameterization.prototype.toObject = function(opt_includ
|
|
|
670
677
|
*/
|
|
671
678
|
proto.pulumirpc.PackageParameterization.toObject = function(includeInstance, msg) {
|
|
672
679
|
var f, obj = {
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
680
|
+
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
681
|
+
version: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
682
|
+
value: msg.getValue_asB64()
|
|
676
683
|
};
|
|
677
684
|
|
|
678
685
|
if (includeInstance) {
|
|
@@ -884,12 +891,12 @@ proto.pulumirpc.PackageDependency.prototype.toObject = function(opt_includeInsta
|
|
|
884
891
|
*/
|
|
885
892
|
proto.pulumirpc.PackageDependency.toObject = function(includeInstance, msg) {
|
|
886
893
|
var f, obj = {
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
894
|
+
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
895
|
+
kind: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
896
|
+
version: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
897
|
+
server: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
898
|
+
checksumsMap: (f = msg.getChecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
899
|
+
parameterization: (f = msg.getParameterization()) && proto.pulumirpc.PackageParameterization.toObject(includeInstance, f)
|
|
893
900
|
};
|
|
894
901
|
|
|
895
902
|
if (includeInstance) {
|
|
@@ -1116,7 +1123,8 @@ proto.pulumirpc.PackageDependency.prototype.getChecksumsMap = function(opt_noLaz
|
|
|
1116
1123
|
*/
|
|
1117
1124
|
proto.pulumirpc.PackageDependency.prototype.clearChecksumsMap = function() {
|
|
1118
1125
|
this.getChecksumsMap().clear();
|
|
1119
|
-
return this;
|
|
1126
|
+
return this;
|
|
1127
|
+
};
|
|
1120
1128
|
|
|
1121
1129
|
|
|
1122
1130
|
/**
|