@pulumi/pulumi 3.198.0-alpha.x38e7671 → 3.198.0-alpha.x5f08e4b
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 +0 -3
- package/proto/language_pb.js +1 -31
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/language_pb.d.ts
CHANGED
|
@@ -926,8 +926,6 @@ export class LinkRequest extends jspb.Message {
|
|
|
926
926
|
|
|
927
927
|
getLocalDependenciesMap(): jspb.Map<string, string>;
|
|
928
928
|
clearLocalDependenciesMap(): void;
|
|
929
|
-
getLoaderTarget(): string;
|
|
930
|
-
setLoaderTarget(value: string): LinkRequest;
|
|
931
929
|
|
|
932
930
|
serializeBinary(): Uint8Array;
|
|
933
931
|
toObject(includeInstance?: boolean): LinkRequest.AsObject;
|
|
@@ -944,7 +942,6 @@ export namespace LinkRequest {
|
|
|
944
942
|
info?: ProgramInfo.AsObject,
|
|
945
943
|
|
|
946
944
|
localDependenciesMap: Array<[string, string]>,
|
|
947
|
-
loaderTarget: string,
|
|
948
945
|
}
|
|
949
946
|
}
|
|
950
947
|
|
package/proto/language_pb.js
CHANGED
|
@@ -7429,8 +7429,7 @@ proto.pulumirpc.LinkRequest.prototype.toObject = function(opt_includeInstance) {
|
|
|
7429
7429
|
proto.pulumirpc.LinkRequest.toObject = function(includeInstance, msg) {
|
|
7430
7430
|
var f, obj = {
|
|
7431
7431
|
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
7432
|
-
localDependenciesMap: (f = msg.getLocalDependenciesMap()) ? f.toObject(includeInstance, undefined) : []
|
|
7433
|
-
loaderTarget: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
7432
|
+
localDependenciesMap: (f = msg.getLocalDependenciesMap()) ? f.toObject(includeInstance, undefined) : []
|
|
7434
7433
|
};
|
|
7435
7434
|
|
|
7436
7435
|
if (includeInstance) {
|
|
@@ -7478,10 +7477,6 @@ proto.pulumirpc.LinkRequest.deserializeBinaryFromReader = function(msg, reader)
|
|
|
7478
7477
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
7479
7478
|
});
|
|
7480
7479
|
break;
|
|
7481
|
-
case 3:
|
|
7482
|
-
var value = /** @type {string} */ (reader.readString());
|
|
7483
|
-
msg.setLoaderTarget(value);
|
|
7484
|
-
break;
|
|
7485
7480
|
default:
|
|
7486
7481
|
reader.skipField();
|
|
7487
7482
|
break;
|
|
@@ -7523,13 +7518,6 @@ proto.pulumirpc.LinkRequest.serializeBinaryToWriter = function(message, writer)
|
|
|
7523
7518
|
if (f && f.getLength() > 0) {
|
|
7524
7519
|
f.serializeBinary(2, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
7525
7520
|
}
|
|
7526
|
-
f = message.getLoaderTarget();
|
|
7527
|
-
if (f.length > 0) {
|
|
7528
|
-
writer.writeString(
|
|
7529
|
-
3,
|
|
7530
|
-
f
|
|
7531
|
-
);
|
|
7532
|
-
}
|
|
7533
7521
|
};
|
|
7534
7522
|
|
|
7535
7523
|
|
|
@@ -7593,24 +7581,6 @@ proto.pulumirpc.LinkRequest.prototype.clearLocalDependenciesMap = function() {
|
|
|
7593
7581
|
};
|
|
7594
7582
|
|
|
7595
7583
|
|
|
7596
|
-
/**
|
|
7597
|
-
* optional string loader_target = 3;
|
|
7598
|
-
* @return {string}
|
|
7599
|
-
*/
|
|
7600
|
-
proto.pulumirpc.LinkRequest.prototype.getLoaderTarget = function() {
|
|
7601
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
7602
|
-
};
|
|
7603
|
-
|
|
7604
|
-
|
|
7605
|
-
/**
|
|
7606
|
-
* @param {string} value
|
|
7607
|
-
* @return {!proto.pulumirpc.LinkRequest} returns this
|
|
7608
|
-
*/
|
|
7609
|
-
proto.pulumirpc.LinkRequest.prototype.setLoaderTarget = function(value) {
|
|
7610
|
-
return jspb.Message.setProto3StringField(this, 3, value);
|
|
7611
|
-
};
|
|
7612
|
-
|
|
7613
|
-
|
|
7614
7584
|
|
|
7615
7585
|
|
|
7616
7586
|
|
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.198.0-alpha.
|
|
16
|
+
exports.version = "3.198.0-alpha.x5f08e4b";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|