@pulumi/pulumi 3.243.0-alpha.xfb52a2c → 3.243.0
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/converter_pb.d.ts +10 -0
- package/proto/converter_pb.js +70 -2
- package/proto/language_pb.d.ts +3 -0
- package/proto/language_pb.js +31 -1
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/converter_pb.d.ts
CHANGED
|
@@ -177,6 +177,9 @@ export class ConvertSnippetRequest extends jspb.Message {
|
|
|
177
177
|
getToken(): string;
|
|
178
178
|
setToken(value: string): ConvertSnippetRequest;
|
|
179
179
|
|
|
180
|
+
getAttributesMap(): jspb.Map<string, string>;
|
|
181
|
+
clearAttributesMap(): void;
|
|
182
|
+
|
|
180
183
|
serializeBinary(): Uint8Array;
|
|
181
184
|
toObject(includeInstance?: boolean): ConvertSnippetRequest.AsObject;
|
|
182
185
|
static toObject(includeInstance: boolean, msg: ConvertSnippetRequest): ConvertSnippetRequest.AsObject;
|
|
@@ -194,6 +197,8 @@ export namespace ConvertSnippetRequest {
|
|
|
194
197
|
targetLoader: string,
|
|
195
198
|
pb_package?: pulumi_codegen_loader_pb.GetSchemaRequest.AsObject,
|
|
196
199
|
token: string,
|
|
200
|
+
|
|
201
|
+
attributesMap: Array<[string, string]>,
|
|
197
202
|
}
|
|
198
203
|
}
|
|
199
204
|
|
|
@@ -209,6 +214,9 @@ export class ConvertSnippetResponse extends jspb.Message {
|
|
|
209
214
|
getSource_asB64(): string;
|
|
210
215
|
setSource(value: Uint8Array | string): ConvertSnippetResponse;
|
|
211
216
|
|
|
217
|
+
getAttributesMap(): jspb.Map<string, string>;
|
|
218
|
+
clearAttributesMap(): void;
|
|
219
|
+
|
|
212
220
|
serializeBinary(): Uint8Array;
|
|
213
221
|
toObject(includeInstance?: boolean): ConvertSnippetResponse.AsObject;
|
|
214
222
|
static toObject(includeInstance: boolean, msg: ConvertSnippetResponse): ConvertSnippetResponse.AsObject;
|
|
@@ -224,5 +232,7 @@ export namespace ConvertSnippetResponse {
|
|
|
224
232
|
diagnosticsList: Array<pulumi_codegen_hcl_pb.Diagnostic.AsObject>,
|
|
225
233
|
filename: string,
|
|
226
234
|
source: Uint8Array | string,
|
|
235
|
+
|
|
236
|
+
attributesMap: Array<[string, string]>,
|
|
227
237
|
}
|
|
228
238
|
}
|
package/proto/converter_pb.js
CHANGED
|
@@ -1414,7 +1414,8 @@ filename: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
|
1414
1414
|
source: msg.getSource_asB64(),
|
|
1415
1415
|
targetLoader: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
1416
1416
|
pb_package: (f = msg.getPackage()) && pulumi_codegen_loader_pb.GetSchemaRequest.toObject(includeInstance, f),
|
|
1417
|
-
token: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
1417
|
+
token: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
1418
|
+
attributesMap: (f = msg.getAttributesMap()) ? f.toObject(includeInstance, undefined) : []
|
|
1418
1419
|
};
|
|
1419
1420
|
|
|
1420
1421
|
if (includeInstance) {
|
|
@@ -1472,6 +1473,12 @@ proto.pulumirpc.ConvertSnippetRequest.deserializeBinaryFromReader = function(msg
|
|
|
1472
1473
|
var value = /** @type {string} */ (reader.readString());
|
|
1473
1474
|
msg.setToken(value);
|
|
1474
1475
|
break;
|
|
1476
|
+
case 6:
|
|
1477
|
+
var value = msg.getAttributesMap();
|
|
1478
|
+
reader.readMessage(value, function(message, reader) {
|
|
1479
|
+
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
1480
|
+
});
|
|
1481
|
+
break;
|
|
1475
1482
|
default:
|
|
1476
1483
|
reader.skipField();
|
|
1477
1484
|
break;
|
|
@@ -1537,6 +1544,10 @@ proto.pulumirpc.ConvertSnippetRequest.serializeBinaryToWriter = function(message
|
|
|
1537
1544
|
f
|
|
1538
1545
|
);
|
|
1539
1546
|
}
|
|
1547
|
+
f = message.getAttributesMap(true);
|
|
1548
|
+
if (f && f.getLength() > 0) {
|
|
1549
|
+
f.serializeBinary(6, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
1550
|
+
}
|
|
1540
1551
|
};
|
|
1541
1552
|
|
|
1542
1553
|
|
|
@@ -1673,6 +1684,29 @@ proto.pulumirpc.ConvertSnippetRequest.prototype.setToken = function(value) {
|
|
|
1673
1684
|
};
|
|
1674
1685
|
|
|
1675
1686
|
|
|
1687
|
+
/**
|
|
1688
|
+
* map<string, string> attributes = 6;
|
|
1689
|
+
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
1690
|
+
* empty, instead returning `undefined`
|
|
1691
|
+
* @return {!jspb.Map<string,string>}
|
|
1692
|
+
*/
|
|
1693
|
+
proto.pulumirpc.ConvertSnippetRequest.prototype.getAttributesMap = function(opt_noLazyCreate) {
|
|
1694
|
+
return /** @type {!jspb.Map<string,string>} */ (
|
|
1695
|
+
jspb.Message.getMapField(this, 6, opt_noLazyCreate,
|
|
1696
|
+
null));
|
|
1697
|
+
};
|
|
1698
|
+
|
|
1699
|
+
|
|
1700
|
+
/**
|
|
1701
|
+
* Clears values from the map. The map will be non-null.
|
|
1702
|
+
* @return {!proto.pulumirpc.ConvertSnippetRequest} returns this
|
|
1703
|
+
*/
|
|
1704
|
+
proto.pulumirpc.ConvertSnippetRequest.prototype.clearAttributesMap = function() {
|
|
1705
|
+
this.getAttributesMap().clear();
|
|
1706
|
+
return this;
|
|
1707
|
+
};
|
|
1708
|
+
|
|
1709
|
+
|
|
1676
1710
|
|
|
1677
1711
|
/**
|
|
1678
1712
|
* List of repeated fields within this message type.
|
|
@@ -1715,7 +1749,8 @@ proto.pulumirpc.ConvertSnippetResponse.toObject = function(includeInstance, msg)
|
|
|
1715
1749
|
diagnosticsList: jspb.Message.toObjectList(msg.getDiagnosticsList(),
|
|
1716
1750
|
pulumi_codegen_hcl_pb.Diagnostic.toObject, includeInstance),
|
|
1717
1751
|
filename: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
1718
|
-
source: msg.getSource_asB64()
|
|
1752
|
+
source: msg.getSource_asB64(),
|
|
1753
|
+
attributesMap: (f = msg.getAttributesMap()) ? f.toObject(includeInstance, undefined) : []
|
|
1719
1754
|
};
|
|
1720
1755
|
|
|
1721
1756
|
if (includeInstance) {
|
|
@@ -1765,6 +1800,12 @@ proto.pulumirpc.ConvertSnippetResponse.deserializeBinaryFromReader = function(ms
|
|
|
1765
1800
|
var value = /** @type {!Uint8Array} */ (reader.readBytes());
|
|
1766
1801
|
msg.setSource(value);
|
|
1767
1802
|
break;
|
|
1803
|
+
case 4:
|
|
1804
|
+
var value = msg.getAttributesMap();
|
|
1805
|
+
reader.readMessage(value, function(message, reader) {
|
|
1806
|
+
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
1807
|
+
});
|
|
1808
|
+
break;
|
|
1768
1809
|
default:
|
|
1769
1810
|
reader.skipField();
|
|
1770
1811
|
break;
|
|
@@ -1816,6 +1857,10 @@ proto.pulumirpc.ConvertSnippetResponse.serializeBinaryToWriter = function(messag
|
|
|
1816
1857
|
f
|
|
1817
1858
|
);
|
|
1818
1859
|
}
|
|
1860
|
+
f = message.getAttributesMap(true);
|
|
1861
|
+
if (f && f.getLength() > 0) {
|
|
1862
|
+
f.serializeBinary(4, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
1863
|
+
}
|
|
1819
1864
|
};
|
|
1820
1865
|
|
|
1821
1866
|
|
|
@@ -1917,4 +1962,27 @@ proto.pulumirpc.ConvertSnippetResponse.prototype.setSource = function(value) {
|
|
|
1917
1962
|
};
|
|
1918
1963
|
|
|
1919
1964
|
|
|
1965
|
+
/**
|
|
1966
|
+
* map<string, string> attributes = 4;
|
|
1967
|
+
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
1968
|
+
* empty, instead returning `undefined`
|
|
1969
|
+
* @return {!jspb.Map<string,string>}
|
|
1970
|
+
*/
|
|
1971
|
+
proto.pulumirpc.ConvertSnippetResponse.prototype.getAttributesMap = function(opt_noLazyCreate) {
|
|
1972
|
+
return /** @type {!jspb.Map<string,string>} */ (
|
|
1973
|
+
jspb.Message.getMapField(this, 4, opt_noLazyCreate,
|
|
1974
|
+
null));
|
|
1975
|
+
};
|
|
1976
|
+
|
|
1977
|
+
|
|
1978
|
+
/**
|
|
1979
|
+
* Clears values from the map. The map will be non-null.
|
|
1980
|
+
* @return {!proto.pulumirpc.ConvertSnippetResponse} returns this
|
|
1981
|
+
*/
|
|
1982
|
+
proto.pulumirpc.ConvertSnippetResponse.prototype.clearAttributesMap = function() {
|
|
1983
|
+
this.getAttributesMap().clear();
|
|
1984
|
+
return this;
|
|
1985
|
+
};
|
|
1986
|
+
|
|
1987
|
+
|
|
1920
1988
|
goog.object.extend(exports, proto.pulumirpc);
|
package/proto/language_pb.d.ts
CHANGED
|
@@ -316,6 +316,8 @@ export class RunRequest extends jspb.Message {
|
|
|
316
316
|
setLoaderTarget(value: string): RunRequest;
|
|
317
317
|
getAttachDebugger(): boolean;
|
|
318
318
|
setAttachDebugger(value: boolean): RunRequest;
|
|
319
|
+
getMapperTarget(): string;
|
|
320
|
+
setMapperTarget(value: string): RunRequest;
|
|
319
321
|
|
|
320
322
|
serializeBinary(): Uint8Array;
|
|
321
323
|
toObject(includeInstance?: boolean): RunRequest.AsObject;
|
|
@@ -346,6 +348,7 @@ export namespace RunRequest {
|
|
|
346
348
|
info?: ProgramInfo.AsObject,
|
|
347
349
|
loaderTarget: string,
|
|
348
350
|
attachDebugger: boolean,
|
|
351
|
+
mapperTarget: string,
|
|
349
352
|
}
|
|
350
353
|
}
|
|
351
354
|
|
package/proto/language_pb.js
CHANGED
|
@@ -2738,7 +2738,8 @@ organization: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
|
2738
2738
|
configpropertymap: (f = msg.getConfigpropertymap()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
2739
2739
|
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
2740
2740
|
loaderTarget: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
2741
|
-
attachDebugger: jspb.Message.getBooleanFieldWithDefault(msg, 16, false)
|
|
2741
|
+
attachDebugger: jspb.Message.getBooleanFieldWithDefault(msg, 16, false),
|
|
2742
|
+
mapperTarget: jspb.Message.getFieldWithDefault(msg, 17, "")
|
|
2742
2743
|
};
|
|
2743
2744
|
|
|
2744
2745
|
if (includeInstance) {
|
|
@@ -2843,6 +2844,10 @@ proto.pulumirpc.RunRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
2843
2844
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
2844
2845
|
msg.setAttachDebugger(value);
|
|
2845
2846
|
break;
|
|
2847
|
+
case 17:
|
|
2848
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2849
|
+
msg.setMapperTarget(value);
|
|
2850
|
+
break;
|
|
2846
2851
|
default:
|
|
2847
2852
|
reader.skipField();
|
|
2848
2853
|
break;
|
|
@@ -2983,6 +2988,13 @@ proto.pulumirpc.RunRequest.serializeBinaryToWriter = function(message, writer) {
|
|
|
2983
2988
|
f
|
|
2984
2989
|
);
|
|
2985
2990
|
}
|
|
2991
|
+
f = message.getMapperTarget();
|
|
2992
|
+
if (f.length > 0) {
|
|
2993
|
+
writer.writeString(
|
|
2994
|
+
17,
|
|
2995
|
+
f
|
|
2996
|
+
);
|
|
2997
|
+
}
|
|
2986
2998
|
};
|
|
2987
2999
|
|
|
2988
3000
|
|
|
@@ -3355,6 +3367,24 @@ proto.pulumirpc.RunRequest.prototype.setAttachDebugger = function(value) {
|
|
|
3355
3367
|
};
|
|
3356
3368
|
|
|
3357
3369
|
|
|
3370
|
+
/**
|
|
3371
|
+
* optional string mapper_target = 17;
|
|
3372
|
+
* @return {string}
|
|
3373
|
+
*/
|
|
3374
|
+
proto.pulumirpc.RunRequest.prototype.getMapperTarget = function() {
|
|
3375
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
|
|
3376
|
+
};
|
|
3377
|
+
|
|
3378
|
+
|
|
3379
|
+
/**
|
|
3380
|
+
* @param {string} value
|
|
3381
|
+
* @return {!proto.pulumirpc.RunRequest} returns this
|
|
3382
|
+
*/
|
|
3383
|
+
proto.pulumirpc.RunRequest.prototype.setMapperTarget = function(value) {
|
|
3384
|
+
return jspb.Message.setProto3StringField(this, 17, value);
|
|
3385
|
+
};
|
|
3386
|
+
|
|
3387
|
+
|
|
3358
3388
|
|
|
3359
3389
|
|
|
3360
3390
|
|
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.243.0
|
|
16
|
+
exports.version = "3.243.0";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|