@pulumi/pulumi 3.154.0-alpha.x7854e00 → 3.155.0-alpha.x88a4c00
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_grpc_pb.js +3 -3
- package/proto/provider_pb.d.ts +39 -0
- package/proto/provider_pb.js +344 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -382,9 +382,9 @@ function deserialize_pulumirpc_UpdateResponse(buffer_arg) {
|
|
|
382
382
|
var ResourceProviderService = exports.ResourceProviderService = {
|
|
383
383
|
// `Handshake` is the first call made by the engine to a provider. It is used to pass the engine's address to the
|
|
384
384
|
// provider so that it may establish its own connections back, and to establish protocol configuration that will be
|
|
385
|
-
// used to communicate between the two parties. Providers that support `Handshake`
|
|
386
|
-
//
|
|
387
|
-
//
|
|
385
|
+
// used to communicate between the two parties. Providers that support `Handshake` should return responses
|
|
386
|
+
// consistent with those returned in response to [](pulumirpc.ResourceProvider.Configure) calls where there is
|
|
387
|
+
// overlap due to the use of `Configure` prior to `Handshake`'s introduction.
|
|
388
388
|
handshake: {
|
|
389
389
|
path: '/pulumirpc.ResourceProvider/Handshake',
|
|
390
390
|
requestStream: false,
|
package/proto/provider_pb.d.ts
CHANGED
|
@@ -22,6 +22,8 @@ export class ProviderHandshakeRequest extends jspb.Message {
|
|
|
22
22
|
clearProgramDirectory(): void;
|
|
23
23
|
getProgramDirectory(): string | undefined;
|
|
24
24
|
setProgramDirectory(value: string): ProviderHandshakeRequest;
|
|
25
|
+
getConfigureWithUrn(): boolean;
|
|
26
|
+
setConfigureWithUrn(value: boolean): ProviderHandshakeRequest;
|
|
25
27
|
|
|
26
28
|
serializeBinary(): Uint8Array;
|
|
27
29
|
toObject(includeInstance?: boolean): ProviderHandshakeRequest.AsObject;
|
|
@@ -38,10 +40,19 @@ export namespace ProviderHandshakeRequest {
|
|
|
38
40
|
engineAddress: string,
|
|
39
41
|
rootDirectory?: string,
|
|
40
42
|
programDirectory?: string,
|
|
43
|
+
configureWithUrn: boolean,
|
|
41
44
|
}
|
|
42
45
|
}
|
|
43
46
|
|
|
44
47
|
export class ProviderHandshakeResponse extends jspb.Message {
|
|
48
|
+
getAcceptSecrets(): boolean;
|
|
49
|
+
setAcceptSecrets(value: boolean): ProviderHandshakeResponse;
|
|
50
|
+
getAcceptResources(): boolean;
|
|
51
|
+
setAcceptResources(value: boolean): ProviderHandshakeResponse;
|
|
52
|
+
getAcceptOutputs(): boolean;
|
|
53
|
+
setAcceptOutputs(value: boolean): ProviderHandshakeResponse;
|
|
54
|
+
getSupportsAutonamingConfiguration(): boolean;
|
|
55
|
+
setSupportsAutonamingConfiguration(value: boolean): ProviderHandshakeResponse;
|
|
45
56
|
|
|
46
57
|
serializeBinary(): Uint8Array;
|
|
47
58
|
toObject(includeInstance?: boolean): ProviderHandshakeResponse.AsObject;
|
|
@@ -55,6 +66,10 @@ export class ProviderHandshakeResponse extends jspb.Message {
|
|
|
55
66
|
|
|
56
67
|
export namespace ProviderHandshakeResponse {
|
|
57
68
|
export type AsObject = {
|
|
69
|
+
acceptSecrets: boolean,
|
|
70
|
+
acceptResources: boolean,
|
|
71
|
+
acceptOutputs: boolean,
|
|
72
|
+
supportsAutonamingConfiguration: boolean,
|
|
58
73
|
}
|
|
59
74
|
}
|
|
60
75
|
|
|
@@ -235,6 +250,26 @@ export class ConfigureRequest extends jspb.Message {
|
|
|
235
250
|
getSendsOldInputsToDelete(): boolean;
|
|
236
251
|
setSendsOldInputsToDelete(value: boolean): ConfigureRequest;
|
|
237
252
|
|
|
253
|
+
hasId(): boolean;
|
|
254
|
+
clearId(): void;
|
|
255
|
+
getId(): string | undefined;
|
|
256
|
+
setId(value: string): ConfigureRequest;
|
|
257
|
+
|
|
258
|
+
hasUrn(): boolean;
|
|
259
|
+
clearUrn(): void;
|
|
260
|
+
getUrn(): string | undefined;
|
|
261
|
+
setUrn(value: string): ConfigureRequest;
|
|
262
|
+
|
|
263
|
+
hasName(): boolean;
|
|
264
|
+
clearName(): void;
|
|
265
|
+
getName(): string | undefined;
|
|
266
|
+
setName(value: string): ConfigureRequest;
|
|
267
|
+
|
|
268
|
+
hasType(): boolean;
|
|
269
|
+
clearType(): void;
|
|
270
|
+
getType(): string | undefined;
|
|
271
|
+
setType(value: string): ConfigureRequest;
|
|
272
|
+
|
|
238
273
|
serializeBinary(): Uint8Array;
|
|
239
274
|
toObject(includeInstance?: boolean): ConfigureRequest.AsObject;
|
|
240
275
|
static toObject(includeInstance: boolean, msg: ConfigureRequest): ConfigureRequest.AsObject;
|
|
@@ -254,6 +289,10 @@ export namespace ConfigureRequest {
|
|
|
254
289
|
acceptresources: boolean,
|
|
255
290
|
sendsOldInputs: boolean,
|
|
256
291
|
sendsOldInputsToDelete: boolean,
|
|
292
|
+
id?: string,
|
|
293
|
+
urn?: string,
|
|
294
|
+
name?: string,
|
|
295
|
+
type?: string,
|
|
257
296
|
}
|
|
258
297
|
}
|
|
259
298
|
|
package/proto/provider_pb.js
CHANGED
|
@@ -983,7 +983,8 @@ proto.pulumirpc.ProviderHandshakeRequest.toObject = function(includeInstance, ms
|
|
|
983
983
|
var f, obj = {
|
|
984
984
|
engineAddress: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
985
985
|
rootDirectory: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
986
|
-
programDirectory: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
986
|
+
programDirectory: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
987
|
+
configureWithUrn: jspb.Message.getBooleanFieldWithDefault(msg, 4, false)
|
|
987
988
|
};
|
|
988
989
|
|
|
989
990
|
if (includeInstance) {
|
|
@@ -1032,6 +1033,10 @@ proto.pulumirpc.ProviderHandshakeRequest.deserializeBinaryFromReader = function(
|
|
|
1032
1033
|
var value = /** @type {string} */ (reader.readString());
|
|
1033
1034
|
msg.setProgramDirectory(value);
|
|
1034
1035
|
break;
|
|
1036
|
+
case 4:
|
|
1037
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1038
|
+
msg.setConfigureWithUrn(value);
|
|
1039
|
+
break;
|
|
1035
1040
|
default:
|
|
1036
1041
|
reader.skipField();
|
|
1037
1042
|
break;
|
|
@@ -1082,6 +1087,13 @@ proto.pulumirpc.ProviderHandshakeRequest.serializeBinaryToWriter = function(mess
|
|
|
1082
1087
|
f
|
|
1083
1088
|
);
|
|
1084
1089
|
}
|
|
1090
|
+
f = message.getConfigureWithUrn();
|
|
1091
|
+
if (f) {
|
|
1092
|
+
writer.writeBool(
|
|
1093
|
+
4,
|
|
1094
|
+
f
|
|
1095
|
+
);
|
|
1096
|
+
}
|
|
1085
1097
|
};
|
|
1086
1098
|
|
|
1087
1099
|
|
|
@@ -1175,6 +1187,24 @@ proto.pulumirpc.ProviderHandshakeRequest.prototype.hasProgramDirectory = functio
|
|
|
1175
1187
|
};
|
|
1176
1188
|
|
|
1177
1189
|
|
|
1190
|
+
/**
|
|
1191
|
+
* optional bool configure_with_urn = 4;
|
|
1192
|
+
* @return {boolean}
|
|
1193
|
+
*/
|
|
1194
|
+
proto.pulumirpc.ProviderHandshakeRequest.prototype.getConfigureWithUrn = function() {
|
|
1195
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 4, false));
|
|
1196
|
+
};
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
/**
|
|
1200
|
+
* @param {boolean} value
|
|
1201
|
+
* @return {!proto.pulumirpc.ProviderHandshakeRequest} returns this
|
|
1202
|
+
*/
|
|
1203
|
+
proto.pulumirpc.ProviderHandshakeRequest.prototype.setConfigureWithUrn = function(value) {
|
|
1204
|
+
return jspb.Message.setProto3BooleanField(this, 4, value);
|
|
1205
|
+
};
|
|
1206
|
+
|
|
1207
|
+
|
|
1178
1208
|
|
|
1179
1209
|
|
|
1180
1210
|
|
|
@@ -1207,7 +1237,10 @@ proto.pulumirpc.ProviderHandshakeResponse.prototype.toObject = function(opt_incl
|
|
|
1207
1237
|
*/
|
|
1208
1238
|
proto.pulumirpc.ProviderHandshakeResponse.toObject = function(includeInstance, msg) {
|
|
1209
1239
|
var f, obj = {
|
|
1210
|
-
|
|
1240
|
+
acceptSecrets: jspb.Message.getBooleanFieldWithDefault(msg, 1, false),
|
|
1241
|
+
acceptResources: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
|
|
1242
|
+
acceptOutputs: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
1243
|
+
supportsAutonamingConfiguration: jspb.Message.getBooleanFieldWithDefault(msg, 4, false)
|
|
1211
1244
|
};
|
|
1212
1245
|
|
|
1213
1246
|
if (includeInstance) {
|
|
@@ -1244,6 +1277,22 @@ proto.pulumirpc.ProviderHandshakeResponse.deserializeBinaryFromReader = function
|
|
|
1244
1277
|
}
|
|
1245
1278
|
var field = reader.getFieldNumber();
|
|
1246
1279
|
switch (field) {
|
|
1280
|
+
case 1:
|
|
1281
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1282
|
+
msg.setAcceptSecrets(value);
|
|
1283
|
+
break;
|
|
1284
|
+
case 2:
|
|
1285
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1286
|
+
msg.setAcceptResources(value);
|
|
1287
|
+
break;
|
|
1288
|
+
case 3:
|
|
1289
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1290
|
+
msg.setAcceptOutputs(value);
|
|
1291
|
+
break;
|
|
1292
|
+
case 4:
|
|
1293
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1294
|
+
msg.setSupportsAutonamingConfiguration(value);
|
|
1295
|
+
break;
|
|
1247
1296
|
default:
|
|
1248
1297
|
reader.skipField();
|
|
1249
1298
|
break;
|
|
@@ -1273,6 +1322,106 @@ proto.pulumirpc.ProviderHandshakeResponse.prototype.serializeBinary = function()
|
|
|
1273
1322
|
*/
|
|
1274
1323
|
proto.pulumirpc.ProviderHandshakeResponse.serializeBinaryToWriter = function(message, writer) {
|
|
1275
1324
|
var f = undefined;
|
|
1325
|
+
f = message.getAcceptSecrets();
|
|
1326
|
+
if (f) {
|
|
1327
|
+
writer.writeBool(
|
|
1328
|
+
1,
|
|
1329
|
+
f
|
|
1330
|
+
);
|
|
1331
|
+
}
|
|
1332
|
+
f = message.getAcceptResources();
|
|
1333
|
+
if (f) {
|
|
1334
|
+
writer.writeBool(
|
|
1335
|
+
2,
|
|
1336
|
+
f
|
|
1337
|
+
);
|
|
1338
|
+
}
|
|
1339
|
+
f = message.getAcceptOutputs();
|
|
1340
|
+
if (f) {
|
|
1341
|
+
writer.writeBool(
|
|
1342
|
+
3,
|
|
1343
|
+
f
|
|
1344
|
+
);
|
|
1345
|
+
}
|
|
1346
|
+
f = message.getSupportsAutonamingConfiguration();
|
|
1347
|
+
if (f) {
|
|
1348
|
+
writer.writeBool(
|
|
1349
|
+
4,
|
|
1350
|
+
f
|
|
1351
|
+
);
|
|
1352
|
+
}
|
|
1353
|
+
};
|
|
1354
|
+
|
|
1355
|
+
|
|
1356
|
+
/**
|
|
1357
|
+
* optional bool accept_secrets = 1;
|
|
1358
|
+
* @return {boolean}
|
|
1359
|
+
*/
|
|
1360
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.getAcceptSecrets = function() {
|
|
1361
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 1, false));
|
|
1362
|
+
};
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
/**
|
|
1366
|
+
* @param {boolean} value
|
|
1367
|
+
* @return {!proto.pulumirpc.ProviderHandshakeResponse} returns this
|
|
1368
|
+
*/
|
|
1369
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.setAcceptSecrets = function(value) {
|
|
1370
|
+
return jspb.Message.setProto3BooleanField(this, 1, value);
|
|
1371
|
+
};
|
|
1372
|
+
|
|
1373
|
+
|
|
1374
|
+
/**
|
|
1375
|
+
* optional bool accept_resources = 2;
|
|
1376
|
+
* @return {boolean}
|
|
1377
|
+
*/
|
|
1378
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.getAcceptResources = function() {
|
|
1379
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 2, false));
|
|
1380
|
+
};
|
|
1381
|
+
|
|
1382
|
+
|
|
1383
|
+
/**
|
|
1384
|
+
* @param {boolean} value
|
|
1385
|
+
* @return {!proto.pulumirpc.ProviderHandshakeResponse} returns this
|
|
1386
|
+
*/
|
|
1387
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.setAcceptResources = function(value) {
|
|
1388
|
+
return jspb.Message.setProto3BooleanField(this, 2, value);
|
|
1389
|
+
};
|
|
1390
|
+
|
|
1391
|
+
|
|
1392
|
+
/**
|
|
1393
|
+
* optional bool accept_outputs = 3;
|
|
1394
|
+
* @return {boolean}
|
|
1395
|
+
*/
|
|
1396
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.getAcceptOutputs = function() {
|
|
1397
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
|
|
1398
|
+
};
|
|
1399
|
+
|
|
1400
|
+
|
|
1401
|
+
/**
|
|
1402
|
+
* @param {boolean} value
|
|
1403
|
+
* @return {!proto.pulumirpc.ProviderHandshakeResponse} returns this
|
|
1404
|
+
*/
|
|
1405
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.setAcceptOutputs = function(value) {
|
|
1406
|
+
return jspb.Message.setProto3BooleanField(this, 3, value);
|
|
1407
|
+
};
|
|
1408
|
+
|
|
1409
|
+
|
|
1410
|
+
/**
|
|
1411
|
+
* optional bool supports_autonaming_configuration = 4;
|
|
1412
|
+
* @return {boolean}
|
|
1413
|
+
*/
|
|
1414
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.getSupportsAutonamingConfiguration = function() {
|
|
1415
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 4, false));
|
|
1416
|
+
};
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
/**
|
|
1420
|
+
* @param {boolean} value
|
|
1421
|
+
* @return {!proto.pulumirpc.ProviderHandshakeResponse} returns this
|
|
1422
|
+
*/
|
|
1423
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.setSupportsAutonamingConfiguration = function(value) {
|
|
1424
|
+
return jspb.Message.setProto3BooleanField(this, 4, value);
|
|
1276
1425
|
};
|
|
1277
1426
|
|
|
1278
1427
|
|
|
@@ -2391,7 +2540,11 @@ proto.pulumirpc.ConfigureRequest.toObject = function(includeInstance, msg) {
|
|
|
2391
2540
|
acceptsecrets: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
2392
2541
|
acceptresources: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
2393
2542
|
sendsOldInputs: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
2394
|
-
sendsOldInputsToDelete: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
|
|
2543
|
+
sendsOldInputsToDelete: jspb.Message.getBooleanFieldWithDefault(msg, 6, false),
|
|
2544
|
+
id: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
2545
|
+
urn: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
2546
|
+
name: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
2547
|
+
type: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
2395
2548
|
};
|
|
2396
2549
|
|
|
2397
2550
|
if (includeInstance) {
|
|
@@ -2455,6 +2608,22 @@ proto.pulumirpc.ConfigureRequest.deserializeBinaryFromReader = function(msg, rea
|
|
|
2455
2608
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
2456
2609
|
msg.setSendsOldInputsToDelete(value);
|
|
2457
2610
|
break;
|
|
2611
|
+
case 7:
|
|
2612
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2613
|
+
msg.setId(value);
|
|
2614
|
+
break;
|
|
2615
|
+
case 8:
|
|
2616
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2617
|
+
msg.setUrn(value);
|
|
2618
|
+
break;
|
|
2619
|
+
case 9:
|
|
2620
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2621
|
+
msg.setName(value);
|
|
2622
|
+
break;
|
|
2623
|
+
case 10:
|
|
2624
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2625
|
+
msg.setType(value);
|
|
2626
|
+
break;
|
|
2458
2627
|
default:
|
|
2459
2628
|
reader.skipField();
|
|
2460
2629
|
break;
|
|
@@ -2524,6 +2693,34 @@ proto.pulumirpc.ConfigureRequest.serializeBinaryToWriter = function(message, wri
|
|
|
2524
2693
|
f
|
|
2525
2694
|
);
|
|
2526
2695
|
}
|
|
2696
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
2697
|
+
if (f != null) {
|
|
2698
|
+
writer.writeString(
|
|
2699
|
+
7,
|
|
2700
|
+
f
|
|
2701
|
+
);
|
|
2702
|
+
}
|
|
2703
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
2704
|
+
if (f != null) {
|
|
2705
|
+
writer.writeString(
|
|
2706
|
+
8,
|
|
2707
|
+
f
|
|
2708
|
+
);
|
|
2709
|
+
}
|
|
2710
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 9));
|
|
2711
|
+
if (f != null) {
|
|
2712
|
+
writer.writeString(
|
|
2713
|
+
9,
|
|
2714
|
+
f
|
|
2715
|
+
);
|
|
2716
|
+
}
|
|
2717
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 10));
|
|
2718
|
+
if (f != null) {
|
|
2719
|
+
writer.writeString(
|
|
2720
|
+
10,
|
|
2721
|
+
f
|
|
2722
|
+
);
|
|
2723
|
+
}
|
|
2527
2724
|
};
|
|
2528
2725
|
|
|
2529
2726
|
|
|
@@ -2658,6 +2855,150 @@ proto.pulumirpc.ConfigureRequest.prototype.setSendsOldInputsToDelete = function(
|
|
|
2658
2855
|
};
|
|
2659
2856
|
|
|
2660
2857
|
|
|
2858
|
+
/**
|
|
2859
|
+
* optional string id = 7;
|
|
2860
|
+
* @return {string}
|
|
2861
|
+
*/
|
|
2862
|
+
proto.pulumirpc.ConfigureRequest.prototype.getId = function() {
|
|
2863
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
2864
|
+
};
|
|
2865
|
+
|
|
2866
|
+
|
|
2867
|
+
/**
|
|
2868
|
+
* @param {string} value
|
|
2869
|
+
* @return {!proto.pulumirpc.ConfigureRequest} returns this
|
|
2870
|
+
*/
|
|
2871
|
+
proto.pulumirpc.ConfigureRequest.prototype.setId = function(value) {
|
|
2872
|
+
return jspb.Message.setField(this, 7, value);
|
|
2873
|
+
};
|
|
2874
|
+
|
|
2875
|
+
|
|
2876
|
+
/**
|
|
2877
|
+
* Clears the field making it undefined.
|
|
2878
|
+
* @return {!proto.pulumirpc.ConfigureRequest} returns this
|
|
2879
|
+
*/
|
|
2880
|
+
proto.pulumirpc.ConfigureRequest.prototype.clearId = function() {
|
|
2881
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
2882
|
+
};
|
|
2883
|
+
|
|
2884
|
+
|
|
2885
|
+
/**
|
|
2886
|
+
* Returns whether this field is set.
|
|
2887
|
+
* @return {boolean}
|
|
2888
|
+
*/
|
|
2889
|
+
proto.pulumirpc.ConfigureRequest.prototype.hasId = function() {
|
|
2890
|
+
return jspb.Message.getField(this, 7) != null;
|
|
2891
|
+
};
|
|
2892
|
+
|
|
2893
|
+
|
|
2894
|
+
/**
|
|
2895
|
+
* optional string urn = 8;
|
|
2896
|
+
* @return {string}
|
|
2897
|
+
*/
|
|
2898
|
+
proto.pulumirpc.ConfigureRequest.prototype.getUrn = function() {
|
|
2899
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
2900
|
+
};
|
|
2901
|
+
|
|
2902
|
+
|
|
2903
|
+
/**
|
|
2904
|
+
* @param {string} value
|
|
2905
|
+
* @return {!proto.pulumirpc.ConfigureRequest} returns this
|
|
2906
|
+
*/
|
|
2907
|
+
proto.pulumirpc.ConfigureRequest.prototype.setUrn = function(value) {
|
|
2908
|
+
return jspb.Message.setField(this, 8, value);
|
|
2909
|
+
};
|
|
2910
|
+
|
|
2911
|
+
|
|
2912
|
+
/**
|
|
2913
|
+
* Clears the field making it undefined.
|
|
2914
|
+
* @return {!proto.pulumirpc.ConfigureRequest} returns this
|
|
2915
|
+
*/
|
|
2916
|
+
proto.pulumirpc.ConfigureRequest.prototype.clearUrn = function() {
|
|
2917
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
2918
|
+
};
|
|
2919
|
+
|
|
2920
|
+
|
|
2921
|
+
/**
|
|
2922
|
+
* Returns whether this field is set.
|
|
2923
|
+
* @return {boolean}
|
|
2924
|
+
*/
|
|
2925
|
+
proto.pulumirpc.ConfigureRequest.prototype.hasUrn = function() {
|
|
2926
|
+
return jspb.Message.getField(this, 8) != null;
|
|
2927
|
+
};
|
|
2928
|
+
|
|
2929
|
+
|
|
2930
|
+
/**
|
|
2931
|
+
* optional string name = 9;
|
|
2932
|
+
* @return {string}
|
|
2933
|
+
*/
|
|
2934
|
+
proto.pulumirpc.ConfigureRequest.prototype.getName = function() {
|
|
2935
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
2936
|
+
};
|
|
2937
|
+
|
|
2938
|
+
|
|
2939
|
+
/**
|
|
2940
|
+
* @param {string} value
|
|
2941
|
+
* @return {!proto.pulumirpc.ConfigureRequest} returns this
|
|
2942
|
+
*/
|
|
2943
|
+
proto.pulumirpc.ConfigureRequest.prototype.setName = function(value) {
|
|
2944
|
+
return jspb.Message.setField(this, 9, value);
|
|
2945
|
+
};
|
|
2946
|
+
|
|
2947
|
+
|
|
2948
|
+
/**
|
|
2949
|
+
* Clears the field making it undefined.
|
|
2950
|
+
* @return {!proto.pulumirpc.ConfigureRequest} returns this
|
|
2951
|
+
*/
|
|
2952
|
+
proto.pulumirpc.ConfigureRequest.prototype.clearName = function() {
|
|
2953
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
2954
|
+
};
|
|
2955
|
+
|
|
2956
|
+
|
|
2957
|
+
/**
|
|
2958
|
+
* Returns whether this field is set.
|
|
2959
|
+
* @return {boolean}
|
|
2960
|
+
*/
|
|
2961
|
+
proto.pulumirpc.ConfigureRequest.prototype.hasName = function() {
|
|
2962
|
+
return jspb.Message.getField(this, 9) != null;
|
|
2963
|
+
};
|
|
2964
|
+
|
|
2965
|
+
|
|
2966
|
+
/**
|
|
2967
|
+
* optional string type = 10;
|
|
2968
|
+
* @return {string}
|
|
2969
|
+
*/
|
|
2970
|
+
proto.pulumirpc.ConfigureRequest.prototype.getType = function() {
|
|
2971
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
2972
|
+
};
|
|
2973
|
+
|
|
2974
|
+
|
|
2975
|
+
/**
|
|
2976
|
+
* @param {string} value
|
|
2977
|
+
* @return {!proto.pulumirpc.ConfigureRequest} returns this
|
|
2978
|
+
*/
|
|
2979
|
+
proto.pulumirpc.ConfigureRequest.prototype.setType = function(value) {
|
|
2980
|
+
return jspb.Message.setField(this, 10, value);
|
|
2981
|
+
};
|
|
2982
|
+
|
|
2983
|
+
|
|
2984
|
+
/**
|
|
2985
|
+
* Clears the field making it undefined.
|
|
2986
|
+
* @return {!proto.pulumirpc.ConfigureRequest} returns this
|
|
2987
|
+
*/
|
|
2988
|
+
proto.pulumirpc.ConfigureRequest.prototype.clearType = function() {
|
|
2989
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
2990
|
+
};
|
|
2991
|
+
|
|
2992
|
+
|
|
2993
|
+
/**
|
|
2994
|
+
* Returns whether this field is set.
|
|
2995
|
+
* @return {boolean}
|
|
2996
|
+
*/
|
|
2997
|
+
proto.pulumirpc.ConfigureRequest.prototype.hasType = function() {
|
|
2998
|
+
return jspb.Message.getField(this, 10) != null;
|
|
2999
|
+
};
|
|
3000
|
+
|
|
3001
|
+
|
|
2661
3002
|
|
|
2662
3003
|
|
|
2663
3004
|
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.
|
|
1
|
+
export declare const version = "3.155.0";
|
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.155.0-alpha.x88a4c00";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|