@pulumi/pulumi 3.127.0-alpha.x5b3d00d → 3.127.1-alpha.x1afd769
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/resource_pb.d.ts +6 -0
- package/proto/resource_pb.js +62 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/resource_pb.d.ts
CHANGED
|
@@ -92,6 +92,8 @@ export class ReadResourceRequest extends jspb.Message {
|
|
|
92
92
|
clearSourceposition(): void;
|
|
93
93
|
getSourceposition(): pulumi_source_pb.SourcePosition | undefined;
|
|
94
94
|
setSourceposition(value?: pulumi_source_pb.SourcePosition): ReadResourceRequest;
|
|
95
|
+
getPackageref(): string;
|
|
96
|
+
setPackageref(value: string): ReadResourceRequest;
|
|
95
97
|
|
|
96
98
|
serializeBinary(): Uint8Array;
|
|
97
99
|
toObject(includeInstance?: boolean): ReadResourceRequest.AsObject;
|
|
@@ -120,6 +122,7 @@ export namespace ReadResourceRequest {
|
|
|
120
122
|
|
|
121
123
|
pluginchecksumsMap: Array<[string, Uint8Array | string]>,
|
|
122
124
|
sourceposition?: pulumi_source_pb.SourcePosition.AsObject,
|
|
125
|
+
packageref: string,
|
|
123
126
|
}
|
|
124
127
|
}
|
|
125
128
|
|
|
@@ -516,6 +519,8 @@ export class ResourceCallRequest extends jspb.Message {
|
|
|
516
519
|
clearSourceposition(): void;
|
|
517
520
|
getSourceposition(): pulumi_source_pb.SourcePosition | undefined;
|
|
518
521
|
setSourceposition(value?: pulumi_source_pb.SourcePosition): ResourceCallRequest;
|
|
522
|
+
getPackageref(): string;
|
|
523
|
+
setPackageref(value: string): ResourceCallRequest;
|
|
519
524
|
|
|
520
525
|
serializeBinary(): Uint8Array;
|
|
521
526
|
toObject(includeInstance?: boolean): ResourceCallRequest.AsObject;
|
|
@@ -539,6 +544,7 @@ export namespace ResourceCallRequest {
|
|
|
539
544
|
|
|
540
545
|
pluginchecksumsMap: Array<[string, Uint8Array | string]>,
|
|
541
546
|
sourceposition?: pulumi_source_pb.SourcePosition.AsObject,
|
|
547
|
+
packageref: string,
|
|
542
548
|
}
|
|
543
549
|
|
|
544
550
|
|
package/proto/resource_pb.js
CHANGED
|
@@ -824,7 +824,8 @@ proto.pulumirpc.ReadResourceRequest.toObject = function(includeInstance, msg) {
|
|
|
824
824
|
acceptresources: jspb.Message.getBooleanFieldWithDefault(msg, 12, false),
|
|
825
825
|
plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
826
826
|
pluginchecksumsMap: (f = msg.getPluginchecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
827
|
-
sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f)
|
|
827
|
+
sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f),
|
|
828
|
+
packageref: jspb.Message.getFieldWithDefault(msg, 16, "")
|
|
828
829
|
};
|
|
829
830
|
|
|
830
831
|
if (includeInstance) {
|
|
@@ -921,6 +922,10 @@ proto.pulumirpc.ReadResourceRequest.deserializeBinaryFromReader = function(msg,
|
|
|
921
922
|
reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
|
|
922
923
|
msg.setSourceposition(value);
|
|
923
924
|
break;
|
|
925
|
+
case 16:
|
|
926
|
+
var value = /** @type {string} */ (reader.readString());
|
|
927
|
+
msg.setPackageref(value);
|
|
928
|
+
break;
|
|
924
929
|
default:
|
|
925
930
|
reader.skipField();
|
|
926
931
|
break;
|
|
@@ -1047,6 +1052,13 @@ proto.pulumirpc.ReadResourceRequest.serializeBinaryToWriter = function(message,
|
|
|
1047
1052
|
pulumi_source_pb.SourcePosition.serializeBinaryToWriter
|
|
1048
1053
|
);
|
|
1049
1054
|
}
|
|
1055
|
+
f = message.getPackageref();
|
|
1056
|
+
if (f.length > 0) {
|
|
1057
|
+
writer.writeString(
|
|
1058
|
+
16,
|
|
1059
|
+
f
|
|
1060
|
+
);
|
|
1061
|
+
}
|
|
1050
1062
|
};
|
|
1051
1063
|
|
|
1052
1064
|
|
|
@@ -1382,6 +1394,24 @@ proto.pulumirpc.ReadResourceRequest.prototype.hasSourceposition = function() {
|
|
|
1382
1394
|
};
|
|
1383
1395
|
|
|
1384
1396
|
|
|
1397
|
+
/**
|
|
1398
|
+
* optional string packageRef = 16;
|
|
1399
|
+
* @return {string}
|
|
1400
|
+
*/
|
|
1401
|
+
proto.pulumirpc.ReadResourceRequest.prototype.getPackageref = function() {
|
|
1402
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
|
|
1403
|
+
};
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
/**
|
|
1407
|
+
* @param {string} value
|
|
1408
|
+
* @return {!proto.pulumirpc.ReadResourceRequest} returns this
|
|
1409
|
+
*/
|
|
1410
|
+
proto.pulumirpc.ReadResourceRequest.prototype.setPackageref = function(value) {
|
|
1411
|
+
return jspb.Message.setProto3StringField(this, 16, value);
|
|
1412
|
+
};
|
|
1413
|
+
|
|
1414
|
+
|
|
1385
1415
|
|
|
1386
1416
|
|
|
1387
1417
|
|
|
@@ -4370,7 +4400,8 @@ proto.pulumirpc.ResourceCallRequest.toObject = function(includeInstance, msg) {
|
|
|
4370
4400
|
version: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
4371
4401
|
plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
4372
4402
|
pluginchecksumsMap: (f = msg.getPluginchecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
4373
|
-
sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f)
|
|
4403
|
+
sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f),
|
|
4404
|
+
packageref: jspb.Message.getFieldWithDefault(msg, 17, "")
|
|
4374
4405
|
};
|
|
4375
4406
|
|
|
4376
4407
|
if (includeInstance) {
|
|
@@ -4445,6 +4476,10 @@ proto.pulumirpc.ResourceCallRequest.deserializeBinaryFromReader = function(msg,
|
|
|
4445
4476
|
reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
|
|
4446
4477
|
msg.setSourceposition(value);
|
|
4447
4478
|
break;
|
|
4479
|
+
case 17:
|
|
4480
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4481
|
+
msg.setPackageref(value);
|
|
4482
|
+
break;
|
|
4448
4483
|
default:
|
|
4449
4484
|
reader.skipField();
|
|
4450
4485
|
break;
|
|
@@ -4526,6 +4561,13 @@ proto.pulumirpc.ResourceCallRequest.serializeBinaryToWriter = function(message,
|
|
|
4526
4561
|
pulumi_source_pb.SourcePosition.serializeBinaryToWriter
|
|
4527
4562
|
);
|
|
4528
4563
|
}
|
|
4564
|
+
f = message.getPackageref();
|
|
4565
|
+
if (f.length > 0) {
|
|
4566
|
+
writer.writeString(
|
|
4567
|
+
17,
|
|
4568
|
+
f
|
|
4569
|
+
);
|
|
4570
|
+
}
|
|
4529
4571
|
};
|
|
4530
4572
|
|
|
4531
4573
|
|
|
@@ -4875,6 +4917,24 @@ proto.pulumirpc.ResourceCallRequest.prototype.hasSourceposition = function() {
|
|
|
4875
4917
|
};
|
|
4876
4918
|
|
|
4877
4919
|
|
|
4920
|
+
/**
|
|
4921
|
+
* optional string packageRef = 17;
|
|
4922
|
+
* @return {string}
|
|
4923
|
+
*/
|
|
4924
|
+
proto.pulumirpc.ResourceCallRequest.prototype.getPackageref = function() {
|
|
4925
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
|
|
4926
|
+
};
|
|
4927
|
+
|
|
4928
|
+
|
|
4929
|
+
/**
|
|
4930
|
+
* @param {string} value
|
|
4931
|
+
* @return {!proto.pulumirpc.ResourceCallRequest} returns this
|
|
4932
|
+
*/
|
|
4933
|
+
proto.pulumirpc.ResourceCallRequest.prototype.setPackageref = function(value) {
|
|
4934
|
+
return jspb.Message.setProto3StringField(this, 17, value);
|
|
4935
|
+
};
|
|
4936
|
+
|
|
4937
|
+
|
|
4878
4938
|
|
|
4879
4939
|
/**
|
|
4880
4940
|
* List of repeated fields within this message type.
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.127.
|
|
1
|
+
export declare const version = "3.127.1";
|
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.127.
|
|
16
|
+
exports.version = "3.127.1-alpha.x1afd769";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|