@pulumi/pulumi 3.127.1-alpha.x9f71340 → 3.127.1-alpha.xc9c30f0
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/resource_pb.d.ts +3 -0
- package/proto/resource_pb.js +31 -1
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -367,7 +367,7 @@ var ResourceProviderService = exports.ResourceProviderService = {
|
|
|
367
367
|
//
|
|
368
368
|
// Parameterize should work the same for both the `ParametersArgs` input and the `ParametersValue` input. Either way
|
|
369
369
|
// should return the sub-package name and version (which for `ParametersValue` should match the given input).
|
|
370
|
-
//
|
|
370
|
+
//
|
|
371
371
|
// For extension resources their CRUD operations will include the version of which sub-package they correspond to.
|
|
372
372
|
parameterize: {
|
|
373
373
|
path: '/pulumirpc.ResourceProvider/Parameterize',
|
package/proto/resource_pb.d.ts
CHANGED
|
@@ -519,6 +519,8 @@ export class ResourceCallRequest extends jspb.Message {
|
|
|
519
519
|
clearSourceposition(): void;
|
|
520
520
|
getSourceposition(): pulumi_source_pb.SourcePosition | undefined;
|
|
521
521
|
setSourceposition(value?: pulumi_source_pb.SourcePosition): ResourceCallRequest;
|
|
522
|
+
getPackageref(): string;
|
|
523
|
+
setPackageref(value: string): ResourceCallRequest;
|
|
522
524
|
|
|
523
525
|
serializeBinary(): Uint8Array;
|
|
524
526
|
toObject(includeInstance?: boolean): ResourceCallRequest.AsObject;
|
|
@@ -542,6 +544,7 @@ export namespace ResourceCallRequest {
|
|
|
542
544
|
|
|
543
545
|
pluginchecksumsMap: Array<[string, Uint8Array | string]>,
|
|
544
546
|
sourceposition?: pulumi_source_pb.SourcePosition.AsObject,
|
|
547
|
+
packageref: string,
|
|
545
548
|
}
|
|
546
549
|
|
|
547
550
|
|
package/proto/resource_pb.js
CHANGED
|
@@ -4400,7 +4400,8 @@ proto.pulumirpc.ResourceCallRequest.toObject = function(includeInstance, msg) {
|
|
|
4400
4400
|
version: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
4401
4401
|
plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
4402
4402
|
pluginchecksumsMap: (f = msg.getPluginchecksumsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
4403
|
-
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, "")
|
|
4404
4405
|
};
|
|
4405
4406
|
|
|
4406
4407
|
if (includeInstance) {
|
|
@@ -4475,6 +4476,10 @@ proto.pulumirpc.ResourceCallRequest.deserializeBinaryFromReader = function(msg,
|
|
|
4475
4476
|
reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
|
|
4476
4477
|
msg.setSourceposition(value);
|
|
4477
4478
|
break;
|
|
4479
|
+
case 17:
|
|
4480
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4481
|
+
msg.setPackageref(value);
|
|
4482
|
+
break;
|
|
4478
4483
|
default:
|
|
4479
4484
|
reader.skipField();
|
|
4480
4485
|
break;
|
|
@@ -4556,6 +4561,13 @@ proto.pulumirpc.ResourceCallRequest.serializeBinaryToWriter = function(message,
|
|
|
4556
4561
|
pulumi_source_pb.SourcePosition.serializeBinaryToWriter
|
|
4557
4562
|
);
|
|
4558
4563
|
}
|
|
4564
|
+
f = message.getPackageref();
|
|
4565
|
+
if (f.length > 0) {
|
|
4566
|
+
writer.writeString(
|
|
4567
|
+
17,
|
|
4568
|
+
f
|
|
4569
|
+
);
|
|
4570
|
+
}
|
|
4559
4571
|
};
|
|
4560
4572
|
|
|
4561
4573
|
|
|
@@ -4905,6 +4917,24 @@ proto.pulumirpc.ResourceCallRequest.prototype.hasSourceposition = function() {
|
|
|
4905
4917
|
};
|
|
4906
4918
|
|
|
4907
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
|
+
|
|
4908
4938
|
|
|
4909
4939
|
/**
|
|
4910
4940
|
* List of repeated fields within this message type.
|
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.1-alpha.
|
|
16
|
+
exports.version = "3.127.1-alpha.xc9c30f0";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|