@pulumi/pulumi 3.215.0-alpha.xcc61474 → 3.216.0-alpha.x55513b8
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 +1 -1
- package/proto/provider_pb.d.ts +6 -0
- package/proto/provider_pb.js +49 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// GENERATED CODE -- DO NOT EDIT!
|
|
2
2
|
|
|
3
3
|
// Original file comments:
|
|
4
|
-
// Copyright 2016-
|
|
4
|
+
// Copyright 2016-2026, Pulumi Corporation.
|
|
5
5
|
//
|
|
6
6
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
// you may not use this file except in compliance with the License.
|
package/proto/provider_pb.d.ts
CHANGED
|
@@ -63,6 +63,11 @@ export class ProviderHandshakeResponse extends jspb.Message {
|
|
|
63
63
|
getSupportsAutonamingConfiguration(): boolean;
|
|
64
64
|
setSupportsAutonamingConfiguration(value: boolean): ProviderHandshakeResponse;
|
|
65
65
|
|
|
66
|
+
hasPulumiVersionRange(): boolean;
|
|
67
|
+
clearPulumiVersionRange(): void;
|
|
68
|
+
getPulumiVersionRange(): string | undefined;
|
|
69
|
+
setPulumiVersionRange(value: string): ProviderHandshakeResponse;
|
|
70
|
+
|
|
66
71
|
serializeBinary(): Uint8Array;
|
|
67
72
|
toObject(includeInstance?: boolean): ProviderHandshakeResponse.AsObject;
|
|
68
73
|
static toObject(includeInstance: boolean, msg: ProviderHandshakeResponse): ProviderHandshakeResponse.AsObject;
|
|
@@ -79,6 +84,7 @@ export namespace ProviderHandshakeResponse {
|
|
|
79
84
|
acceptResources: boolean,
|
|
80
85
|
acceptOutputs: boolean,
|
|
81
86
|
supportsAutonamingConfiguration: boolean,
|
|
87
|
+
pulumiVersionRange?: string,
|
|
82
88
|
}
|
|
83
89
|
}
|
|
84
90
|
|
package/proto/provider_pb.js
CHANGED
|
@@ -1374,7 +1374,8 @@ proto.pulumirpc.ProviderHandshakeResponse.toObject = function(includeInstance, m
|
|
|
1374
1374
|
acceptSecrets: jspb.Message.getBooleanFieldWithDefault(msg, 1, false),
|
|
1375
1375
|
acceptResources: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
|
|
1376
1376
|
acceptOutputs: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
1377
|
-
supportsAutonamingConfiguration: jspb.Message.getBooleanFieldWithDefault(msg, 4, false)
|
|
1377
|
+
supportsAutonamingConfiguration: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
1378
|
+
pulumiVersionRange: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f
|
|
1378
1379
|
};
|
|
1379
1380
|
|
|
1380
1381
|
if (includeInstance) {
|
|
@@ -1427,6 +1428,10 @@ proto.pulumirpc.ProviderHandshakeResponse.deserializeBinaryFromReader = function
|
|
|
1427
1428
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
1428
1429
|
msg.setSupportsAutonamingConfiguration(value);
|
|
1429
1430
|
break;
|
|
1431
|
+
case 5:
|
|
1432
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1433
|
+
msg.setPulumiVersionRange(value);
|
|
1434
|
+
break;
|
|
1430
1435
|
default:
|
|
1431
1436
|
reader.skipField();
|
|
1432
1437
|
break;
|
|
@@ -1484,6 +1489,13 @@ proto.pulumirpc.ProviderHandshakeResponse.serializeBinaryToWriter = function(mes
|
|
|
1484
1489
|
f
|
|
1485
1490
|
);
|
|
1486
1491
|
}
|
|
1492
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
1493
|
+
if (f != null) {
|
|
1494
|
+
writer.writeString(
|
|
1495
|
+
5,
|
|
1496
|
+
f
|
|
1497
|
+
);
|
|
1498
|
+
}
|
|
1487
1499
|
};
|
|
1488
1500
|
|
|
1489
1501
|
|
|
@@ -1559,6 +1571,42 @@ proto.pulumirpc.ProviderHandshakeResponse.prototype.setSupportsAutonamingConfigu
|
|
|
1559
1571
|
};
|
|
1560
1572
|
|
|
1561
1573
|
|
|
1574
|
+
/**
|
|
1575
|
+
* optional string pulumi_version_range = 5;
|
|
1576
|
+
* @return {string}
|
|
1577
|
+
*/
|
|
1578
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.getPulumiVersionRange = function() {
|
|
1579
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
1580
|
+
};
|
|
1581
|
+
|
|
1582
|
+
|
|
1583
|
+
/**
|
|
1584
|
+
* @param {string} value
|
|
1585
|
+
* @return {!proto.pulumirpc.ProviderHandshakeResponse} returns this
|
|
1586
|
+
*/
|
|
1587
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.setPulumiVersionRange = function(value) {
|
|
1588
|
+
return jspb.Message.setField(this, 5, value);
|
|
1589
|
+
};
|
|
1590
|
+
|
|
1591
|
+
|
|
1592
|
+
/**
|
|
1593
|
+
* Clears the field making it undefined.
|
|
1594
|
+
* @return {!proto.pulumirpc.ProviderHandshakeResponse} returns this
|
|
1595
|
+
*/
|
|
1596
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.clearPulumiVersionRange = function() {
|
|
1597
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
1598
|
+
};
|
|
1599
|
+
|
|
1600
|
+
|
|
1601
|
+
/**
|
|
1602
|
+
* Returns whether this field is set.
|
|
1603
|
+
* @return {boolean}
|
|
1604
|
+
*/
|
|
1605
|
+
proto.pulumirpc.ProviderHandshakeResponse.prototype.hasPulumiVersionRange = function() {
|
|
1606
|
+
return jspb.Message.getField(this, 5) != null;
|
|
1607
|
+
};
|
|
1608
|
+
|
|
1609
|
+
|
|
1562
1610
|
|
|
1563
1611
|
/**
|
|
1564
1612
|
* Oneof group definitions for this message. Each group defines the field
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.
|
|
1
|
+
export declare const version = "3.216.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.216.0-alpha.x55513b8";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|