@pulumi/pulumi 3.245.0-alpha.xe029cfe → 3.245.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/language_pb.d.ts +5 -0
- package/proto/language_pb.js +55 -2
- package/proto/plugin_pb.d.ts +36 -0
- package/proto/plugin_pb.js +302 -0
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/language_pb.d.ts
CHANGED
|
@@ -255,6 +255,10 @@ export class GetRequiredPackagesResponse extends jspb.Message {
|
|
|
255
255
|
getPackagesList(): Array<pulumi_plugin_pb.PackageDependency>;
|
|
256
256
|
setPackagesList(value: Array<pulumi_plugin_pb.PackageDependency>): GetRequiredPackagesResponse;
|
|
257
257
|
addPackages(value?: pulumi_plugin_pb.PackageDependency, index?: number): pulumi_plugin_pb.PackageDependency;
|
|
258
|
+
clearSpecsList(): void;
|
|
259
|
+
getSpecsList(): Array<pulumi_plugin_pb.PackageSpec>;
|
|
260
|
+
setSpecsList(value: Array<pulumi_plugin_pb.PackageSpec>): GetRequiredPackagesResponse;
|
|
261
|
+
addSpecs(value?: pulumi_plugin_pb.PackageSpec, index?: number): pulumi_plugin_pb.PackageSpec;
|
|
258
262
|
|
|
259
263
|
serializeBinary(): Uint8Array;
|
|
260
264
|
toObject(includeInstance?: boolean): GetRequiredPackagesResponse.AsObject;
|
|
@@ -269,6 +273,7 @@ export class GetRequiredPackagesResponse extends jspb.Message {
|
|
|
269
273
|
export namespace GetRequiredPackagesResponse {
|
|
270
274
|
export type AsObject = {
|
|
271
275
|
packagesList: Array<pulumi_plugin_pb.PackageDependency.AsObject>,
|
|
276
|
+
specsList: Array<pulumi_plugin_pb.PackageSpec.AsObject>,
|
|
272
277
|
}
|
|
273
278
|
}
|
|
274
279
|
|
package/proto/language_pb.js
CHANGED
|
@@ -2530,7 +2530,7 @@ proto.pulumirpc.GetRequiredPackagesRequest.prototype.hasInfo = function() {
|
|
|
2530
2530
|
* @private {!Array<number>}
|
|
2531
2531
|
* @const
|
|
2532
2532
|
*/
|
|
2533
|
-
proto.pulumirpc.GetRequiredPackagesResponse.repeatedFields_ = [1];
|
|
2533
|
+
proto.pulumirpc.GetRequiredPackagesResponse.repeatedFields_ = [1,2];
|
|
2534
2534
|
|
|
2535
2535
|
|
|
2536
2536
|
|
|
@@ -2564,7 +2564,9 @@ proto.pulumirpc.GetRequiredPackagesResponse.prototype.toObject = function(opt_in
|
|
|
2564
2564
|
proto.pulumirpc.GetRequiredPackagesResponse.toObject = function(includeInstance, msg) {
|
|
2565
2565
|
var f, obj = {
|
|
2566
2566
|
packagesList: jspb.Message.toObjectList(msg.getPackagesList(),
|
|
2567
|
-
pulumi_plugin_pb.PackageDependency.toObject, includeInstance)
|
|
2567
|
+
pulumi_plugin_pb.PackageDependency.toObject, includeInstance),
|
|
2568
|
+
specsList: jspb.Message.toObjectList(msg.getSpecsList(),
|
|
2569
|
+
pulumi_plugin_pb.PackageSpec.toObject, includeInstance)
|
|
2568
2570
|
};
|
|
2569
2571
|
|
|
2570
2572
|
if (includeInstance) {
|
|
@@ -2606,6 +2608,11 @@ proto.pulumirpc.GetRequiredPackagesResponse.deserializeBinaryFromReader = functi
|
|
|
2606
2608
|
reader.readMessage(value,pulumi_plugin_pb.PackageDependency.deserializeBinaryFromReader);
|
|
2607
2609
|
msg.addPackages(value);
|
|
2608
2610
|
break;
|
|
2611
|
+
case 2:
|
|
2612
|
+
var value = new pulumi_plugin_pb.PackageSpec;
|
|
2613
|
+
reader.readMessage(value,pulumi_plugin_pb.PackageSpec.deserializeBinaryFromReader);
|
|
2614
|
+
msg.addSpecs(value);
|
|
2615
|
+
break;
|
|
2609
2616
|
default:
|
|
2610
2617
|
reader.skipField();
|
|
2611
2618
|
break;
|
|
@@ -2643,6 +2650,14 @@ proto.pulumirpc.GetRequiredPackagesResponse.serializeBinaryToWriter = function(m
|
|
|
2643
2650
|
pulumi_plugin_pb.PackageDependency.serializeBinaryToWriter
|
|
2644
2651
|
);
|
|
2645
2652
|
}
|
|
2653
|
+
f = message.getSpecsList();
|
|
2654
|
+
if (f.length > 0) {
|
|
2655
|
+
writer.writeRepeatedMessage(
|
|
2656
|
+
2,
|
|
2657
|
+
f,
|
|
2658
|
+
pulumi_plugin_pb.PackageSpec.serializeBinaryToWriter
|
|
2659
|
+
);
|
|
2660
|
+
}
|
|
2646
2661
|
};
|
|
2647
2662
|
|
|
2648
2663
|
|
|
@@ -2684,6 +2699,44 @@ proto.pulumirpc.GetRequiredPackagesResponse.prototype.clearPackagesList = functi
|
|
|
2684
2699
|
};
|
|
2685
2700
|
|
|
2686
2701
|
|
|
2702
|
+
/**
|
|
2703
|
+
* repeated PackageSpec specs = 2;
|
|
2704
|
+
* @return {!Array<!proto.pulumirpc.PackageSpec>}
|
|
2705
|
+
*/
|
|
2706
|
+
proto.pulumirpc.GetRequiredPackagesResponse.prototype.getSpecsList = function() {
|
|
2707
|
+
return /** @type{!Array<!proto.pulumirpc.PackageSpec>} */ (
|
|
2708
|
+
jspb.Message.getRepeatedWrapperField(this, pulumi_plugin_pb.PackageSpec, 2));
|
|
2709
|
+
};
|
|
2710
|
+
|
|
2711
|
+
|
|
2712
|
+
/**
|
|
2713
|
+
* @param {!Array<!proto.pulumirpc.PackageSpec>} value
|
|
2714
|
+
* @return {!proto.pulumirpc.GetRequiredPackagesResponse} returns this
|
|
2715
|
+
*/
|
|
2716
|
+
proto.pulumirpc.GetRequiredPackagesResponse.prototype.setSpecsList = function(value) {
|
|
2717
|
+
return jspb.Message.setRepeatedWrapperField(this, 2, value);
|
|
2718
|
+
};
|
|
2719
|
+
|
|
2720
|
+
|
|
2721
|
+
/**
|
|
2722
|
+
* @param {!proto.pulumirpc.PackageSpec=} opt_value
|
|
2723
|
+
* @param {number=} opt_index
|
|
2724
|
+
* @return {!proto.pulumirpc.PackageSpec}
|
|
2725
|
+
*/
|
|
2726
|
+
proto.pulumirpc.GetRequiredPackagesResponse.prototype.addSpecs = function(opt_value, opt_index) {
|
|
2727
|
+
return jspb.Message.addToRepeatedWrapperField(this, 2, opt_value, proto.pulumirpc.PackageSpec, opt_index);
|
|
2728
|
+
};
|
|
2729
|
+
|
|
2730
|
+
|
|
2731
|
+
/**
|
|
2732
|
+
* Clears the list making it empty but non-null.
|
|
2733
|
+
* @return {!proto.pulumirpc.GetRequiredPackagesResponse} returns this
|
|
2734
|
+
*/
|
|
2735
|
+
proto.pulumirpc.GetRequiredPackagesResponse.prototype.clearSpecsList = function() {
|
|
2736
|
+
return this.setSpecsList([]);
|
|
2737
|
+
};
|
|
2738
|
+
|
|
2739
|
+
|
|
2687
2740
|
|
|
2688
2741
|
/**
|
|
2689
2742
|
* List of repeated fields within this message type.
|
package/proto/plugin_pb.d.ts
CHANGED
|
@@ -147,3 +147,39 @@ export namespace PackageDependency {
|
|
|
147
147
|
parameterization?: PackageParameterization.AsObject,
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
|
+
|
|
151
|
+
export class PackageSpec extends jspb.Message {
|
|
152
|
+
getSource(): string;
|
|
153
|
+
setSource(value: string): PackageSpec;
|
|
154
|
+
getVersion(): string;
|
|
155
|
+
setVersion(value: string): PackageSpec;
|
|
156
|
+
clearParametersList(): void;
|
|
157
|
+
getParametersList(): Array<string>;
|
|
158
|
+
setParametersList(value: Array<string>): PackageSpec;
|
|
159
|
+
addParameters(value: string, index?: number): string;
|
|
160
|
+
|
|
161
|
+
getChecksumsMap(): jspb.Map<string, Uint8Array | string>;
|
|
162
|
+
clearChecksumsMap(): void;
|
|
163
|
+
getServer(): string;
|
|
164
|
+
setServer(value: string): PackageSpec;
|
|
165
|
+
|
|
166
|
+
serializeBinary(): Uint8Array;
|
|
167
|
+
toObject(includeInstance?: boolean): PackageSpec.AsObject;
|
|
168
|
+
static toObject(includeInstance: boolean, msg: PackageSpec): PackageSpec.AsObject;
|
|
169
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
170
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
171
|
+
static serializeBinaryToWriter(message: PackageSpec, writer: jspb.BinaryWriter): void;
|
|
172
|
+
static deserializeBinary(bytes: Uint8Array): PackageSpec;
|
|
173
|
+
static deserializeBinaryFromReader(message: PackageSpec, reader: jspb.BinaryReader): PackageSpec;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
export namespace PackageSpec {
|
|
177
|
+
export type AsObject = {
|
|
178
|
+
source: string,
|
|
179
|
+
version: string,
|
|
180
|
+
parametersList: Array<string>,
|
|
181
|
+
|
|
182
|
+
checksumsMap: Array<[string, Uint8Array | string]>,
|
|
183
|
+
server: string,
|
|
184
|
+
}
|
|
185
|
+
}
|
package/proto/plugin_pb.js
CHANGED
|
@@ -17,6 +17,7 @@ var proto = { codegen: { }, pulumirpc: { codegen: { }, testing: { } } }, global
|
|
|
17
17
|
|
|
18
18
|
goog.exportSymbol('proto.pulumirpc.PackageDependency', null, global);
|
|
19
19
|
goog.exportSymbol('proto.pulumirpc.PackageParameterization', null, global);
|
|
20
|
+
goog.exportSymbol('proto.pulumirpc.PackageSpec', null, global);
|
|
20
21
|
goog.exportSymbol('proto.pulumirpc.PluginAttach', null, global);
|
|
21
22
|
goog.exportSymbol('proto.pulumirpc.PluginDependency', null, global);
|
|
22
23
|
goog.exportSymbol('proto.pulumirpc.PluginInfo', null, global);
|
|
@@ -125,6 +126,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
125
126
|
*/
|
|
126
127
|
proto.pulumirpc.PackageDependency.displayName = 'proto.pulumirpc.PackageDependency';
|
|
127
128
|
}
|
|
129
|
+
/**
|
|
130
|
+
* Generated by JsPbCodeGenerator.
|
|
131
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
132
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
133
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
134
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
135
|
+
* valid.
|
|
136
|
+
* @extends {jspb.Message}
|
|
137
|
+
* @constructor
|
|
138
|
+
*/
|
|
139
|
+
proto.pulumirpc.PackageSpec = function(opt_data) {
|
|
140
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.PackageSpec.repeatedFields_, null);
|
|
141
|
+
};
|
|
142
|
+
goog.inherits(proto.pulumirpc.PackageSpec, jspb.Message);
|
|
143
|
+
if (goog.DEBUG && !COMPILED) {
|
|
144
|
+
/**
|
|
145
|
+
* @public
|
|
146
|
+
* @override
|
|
147
|
+
*/
|
|
148
|
+
proto.pulumirpc.PackageSpec.displayName = 'proto.pulumirpc.PackageSpec';
|
|
149
|
+
}
|
|
128
150
|
|
|
129
151
|
|
|
130
152
|
|
|
@@ -1158,4 +1180,284 @@ proto.pulumirpc.PackageDependency.prototype.hasParameterization = function() {
|
|
|
1158
1180
|
};
|
|
1159
1181
|
|
|
1160
1182
|
|
|
1183
|
+
|
|
1184
|
+
/**
|
|
1185
|
+
* List of repeated fields within this message type.
|
|
1186
|
+
* @private {!Array<number>}
|
|
1187
|
+
* @const
|
|
1188
|
+
*/
|
|
1189
|
+
proto.pulumirpc.PackageSpec.repeatedFields_ = [3];
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
1194
|
+
/**
|
|
1195
|
+
* Creates an object representation of this proto.
|
|
1196
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
1197
|
+
* Optional fields that are not set will be set to undefined.
|
|
1198
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
1199
|
+
* For the list of reserved names please see:
|
|
1200
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
1201
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
1202
|
+
* JSPB instance for transitional soy proto support:
|
|
1203
|
+
* http://goto/soy-param-migration
|
|
1204
|
+
* @return {!Object}
|
|
1205
|
+
*/
|
|
1206
|
+
proto.pulumirpc.PackageSpec.prototype.toObject = function(opt_includeInstance) {
|
|
1207
|
+
return proto.pulumirpc.PackageSpec.toObject(opt_includeInstance, this);
|
|
1208
|
+
};
|
|
1209
|
+
|
|
1210
|
+
|
|
1211
|
+
/**
|
|
1212
|
+
* Static version of the {@see toObject} method.
|
|
1213
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
1214
|
+
* the JSPB instance for transitional soy proto support:
|
|
1215
|
+
* http://goto/soy-param-migration
|
|
1216
|
+
* @param {!proto.pulumirpc.PackageSpec} msg The msg instance to transform.
|
|
1217
|
+
* @return {!Object}
|
|
1218
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1219
|
+
*/
|
|
1220
|
+
proto.pulumirpc.PackageSpec.toObject = function(includeInstance, msg) {
|
|
1221
|
+
var f, obj = {
|
|
1222
|
+
source: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
1223
|
+
version: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
1224
|
+
parametersList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
1225
|
+
checksumsMap: (f = msg.getChecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
1226
|
+
server: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
1227
|
+
};
|
|
1228
|
+
|
|
1229
|
+
if (includeInstance) {
|
|
1230
|
+
obj.$jspbMessageInstance = msg;
|
|
1231
|
+
}
|
|
1232
|
+
return obj;
|
|
1233
|
+
};
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
|
|
1237
|
+
/**
|
|
1238
|
+
* Deserializes binary data (in protobuf wire format).
|
|
1239
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
1240
|
+
* @return {!proto.pulumirpc.PackageSpec}
|
|
1241
|
+
*/
|
|
1242
|
+
proto.pulumirpc.PackageSpec.deserializeBinary = function(bytes) {
|
|
1243
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
1244
|
+
var msg = new proto.pulumirpc.PackageSpec;
|
|
1245
|
+
return proto.pulumirpc.PackageSpec.deserializeBinaryFromReader(msg, reader);
|
|
1246
|
+
};
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
/**
|
|
1250
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
1251
|
+
* given reader into the given message object.
|
|
1252
|
+
* @param {!proto.pulumirpc.PackageSpec} msg The message object to deserialize into.
|
|
1253
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
1254
|
+
* @return {!proto.pulumirpc.PackageSpec}
|
|
1255
|
+
*/
|
|
1256
|
+
proto.pulumirpc.PackageSpec.deserializeBinaryFromReader = function(msg, reader) {
|
|
1257
|
+
while (reader.nextField()) {
|
|
1258
|
+
if (reader.isEndGroup()) {
|
|
1259
|
+
break;
|
|
1260
|
+
}
|
|
1261
|
+
var field = reader.getFieldNumber();
|
|
1262
|
+
switch (field) {
|
|
1263
|
+
case 1:
|
|
1264
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1265
|
+
msg.setSource(value);
|
|
1266
|
+
break;
|
|
1267
|
+
case 2:
|
|
1268
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1269
|
+
msg.setVersion(value);
|
|
1270
|
+
break;
|
|
1271
|
+
case 3:
|
|
1272
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1273
|
+
msg.addParameters(value);
|
|
1274
|
+
break;
|
|
1275
|
+
case 4:
|
|
1276
|
+
var value = msg.getChecksumsMap();
|
|
1277
|
+
reader.readMessage(value, function(message, reader) {
|
|
1278
|
+
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readBytes, null, "", "");
|
|
1279
|
+
});
|
|
1280
|
+
break;
|
|
1281
|
+
case 5:
|
|
1282
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1283
|
+
msg.setServer(value);
|
|
1284
|
+
break;
|
|
1285
|
+
default:
|
|
1286
|
+
reader.skipField();
|
|
1287
|
+
break;
|
|
1288
|
+
}
|
|
1289
|
+
}
|
|
1290
|
+
return msg;
|
|
1291
|
+
};
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
/**
|
|
1295
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
1296
|
+
* @return {!Uint8Array}
|
|
1297
|
+
*/
|
|
1298
|
+
proto.pulumirpc.PackageSpec.prototype.serializeBinary = function() {
|
|
1299
|
+
var writer = new jspb.BinaryWriter();
|
|
1300
|
+
proto.pulumirpc.PackageSpec.serializeBinaryToWriter(this, writer);
|
|
1301
|
+
return writer.getResultBuffer();
|
|
1302
|
+
};
|
|
1303
|
+
|
|
1304
|
+
|
|
1305
|
+
/**
|
|
1306
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
1307
|
+
* format), writing to the given BinaryWriter.
|
|
1308
|
+
* @param {!proto.pulumirpc.PackageSpec} message
|
|
1309
|
+
* @param {!jspb.BinaryWriter} writer
|
|
1310
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1311
|
+
*/
|
|
1312
|
+
proto.pulumirpc.PackageSpec.serializeBinaryToWriter = function(message, writer) {
|
|
1313
|
+
var f = undefined;
|
|
1314
|
+
f = message.getSource();
|
|
1315
|
+
if (f.length > 0) {
|
|
1316
|
+
writer.writeString(
|
|
1317
|
+
1,
|
|
1318
|
+
f
|
|
1319
|
+
);
|
|
1320
|
+
}
|
|
1321
|
+
f = message.getVersion();
|
|
1322
|
+
if (f.length > 0) {
|
|
1323
|
+
writer.writeString(
|
|
1324
|
+
2,
|
|
1325
|
+
f
|
|
1326
|
+
);
|
|
1327
|
+
}
|
|
1328
|
+
f = message.getParametersList();
|
|
1329
|
+
if (f.length > 0) {
|
|
1330
|
+
writer.writeRepeatedString(
|
|
1331
|
+
3,
|
|
1332
|
+
f
|
|
1333
|
+
);
|
|
1334
|
+
}
|
|
1335
|
+
f = message.getChecksumsMap(true);
|
|
1336
|
+
if (f && f.getLength() > 0) {
|
|
1337
|
+
f.serializeBinary(4, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeBytes);
|
|
1338
|
+
}
|
|
1339
|
+
f = message.getServer();
|
|
1340
|
+
if (f.length > 0) {
|
|
1341
|
+
writer.writeString(
|
|
1342
|
+
5,
|
|
1343
|
+
f
|
|
1344
|
+
);
|
|
1345
|
+
}
|
|
1346
|
+
};
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
/**
|
|
1350
|
+
* optional string source = 1;
|
|
1351
|
+
* @return {string}
|
|
1352
|
+
*/
|
|
1353
|
+
proto.pulumirpc.PackageSpec.prototype.getSource = function() {
|
|
1354
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
1355
|
+
};
|
|
1356
|
+
|
|
1357
|
+
|
|
1358
|
+
/**
|
|
1359
|
+
* @param {string} value
|
|
1360
|
+
* @return {!proto.pulumirpc.PackageSpec} returns this
|
|
1361
|
+
*/
|
|
1362
|
+
proto.pulumirpc.PackageSpec.prototype.setSource = function(value) {
|
|
1363
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
1364
|
+
};
|
|
1365
|
+
|
|
1366
|
+
|
|
1367
|
+
/**
|
|
1368
|
+
* optional string version = 2;
|
|
1369
|
+
* @return {string}
|
|
1370
|
+
*/
|
|
1371
|
+
proto.pulumirpc.PackageSpec.prototype.getVersion = function() {
|
|
1372
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
1373
|
+
};
|
|
1374
|
+
|
|
1375
|
+
|
|
1376
|
+
/**
|
|
1377
|
+
* @param {string} value
|
|
1378
|
+
* @return {!proto.pulumirpc.PackageSpec} returns this
|
|
1379
|
+
*/
|
|
1380
|
+
proto.pulumirpc.PackageSpec.prototype.setVersion = function(value) {
|
|
1381
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
1382
|
+
};
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
/**
|
|
1386
|
+
* repeated string parameters = 3;
|
|
1387
|
+
* @return {!Array<string>}
|
|
1388
|
+
*/
|
|
1389
|
+
proto.pulumirpc.PackageSpec.prototype.getParametersList = function() {
|
|
1390
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 3));
|
|
1391
|
+
};
|
|
1392
|
+
|
|
1393
|
+
|
|
1394
|
+
/**
|
|
1395
|
+
* @param {!Array<string>} value
|
|
1396
|
+
* @return {!proto.pulumirpc.PackageSpec} returns this
|
|
1397
|
+
*/
|
|
1398
|
+
proto.pulumirpc.PackageSpec.prototype.setParametersList = function(value) {
|
|
1399
|
+
return jspb.Message.setField(this, 3, value || []);
|
|
1400
|
+
};
|
|
1401
|
+
|
|
1402
|
+
|
|
1403
|
+
/**
|
|
1404
|
+
* @param {string} value
|
|
1405
|
+
* @param {number=} opt_index
|
|
1406
|
+
* @return {!proto.pulumirpc.PackageSpec} returns this
|
|
1407
|
+
*/
|
|
1408
|
+
proto.pulumirpc.PackageSpec.prototype.addParameters = function(value, opt_index) {
|
|
1409
|
+
return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
|
|
1410
|
+
};
|
|
1411
|
+
|
|
1412
|
+
|
|
1413
|
+
/**
|
|
1414
|
+
* Clears the list making it empty but non-null.
|
|
1415
|
+
* @return {!proto.pulumirpc.PackageSpec} returns this
|
|
1416
|
+
*/
|
|
1417
|
+
proto.pulumirpc.PackageSpec.prototype.clearParametersList = function() {
|
|
1418
|
+
return this.setParametersList([]);
|
|
1419
|
+
};
|
|
1420
|
+
|
|
1421
|
+
|
|
1422
|
+
/**
|
|
1423
|
+
* map<string, bytes> checksums = 4;
|
|
1424
|
+
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
1425
|
+
* empty, instead returning `undefined`
|
|
1426
|
+
* @return {!jspb.Map<string,!(string|Uint8Array)>}
|
|
1427
|
+
*/
|
|
1428
|
+
proto.pulumirpc.PackageSpec.prototype.getChecksumsMap = function(opt_noLazyCreate) {
|
|
1429
|
+
return /** @type {!jspb.Map<string,!(string|Uint8Array)>} */ (
|
|
1430
|
+
jspb.Message.getMapField(this, 4, opt_noLazyCreate,
|
|
1431
|
+
null));
|
|
1432
|
+
};
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
/**
|
|
1436
|
+
* Clears values from the map. The map will be non-null.
|
|
1437
|
+
* @return {!proto.pulumirpc.PackageSpec} returns this
|
|
1438
|
+
*/
|
|
1439
|
+
proto.pulumirpc.PackageSpec.prototype.clearChecksumsMap = function() {
|
|
1440
|
+
this.getChecksumsMap().clear();
|
|
1441
|
+
return this;
|
|
1442
|
+
};
|
|
1443
|
+
|
|
1444
|
+
|
|
1445
|
+
/**
|
|
1446
|
+
* optional string server = 5;
|
|
1447
|
+
* @return {string}
|
|
1448
|
+
*/
|
|
1449
|
+
proto.pulumirpc.PackageSpec.prototype.getServer = function() {
|
|
1450
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
1451
|
+
};
|
|
1452
|
+
|
|
1453
|
+
|
|
1454
|
+
/**
|
|
1455
|
+
* @param {string} value
|
|
1456
|
+
* @return {!proto.pulumirpc.PackageSpec} returns this
|
|
1457
|
+
*/
|
|
1458
|
+
proto.pulumirpc.PackageSpec.prototype.setServer = function(value) {
|
|
1459
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
1460
|
+
};
|
|
1461
|
+
|
|
1462
|
+
|
|
1161
1463
|
goog.object.extend(exports, proto.pulumirpc);
|
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.245.0
|
|
16
|
+
exports.version = "3.245.0";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|