@pulumi/pulumi 3.130.0-alpha.xe1c1b5e → 3.130.1-alpha.x153d830
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 +3 -0
- package/proto/language_pb.js +31 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/language_pb.d.ts
CHANGED
|
@@ -267,6 +267,8 @@ export class RunRequest extends jspb.Message {
|
|
|
267
267
|
clearInfo(): void;
|
|
268
268
|
getInfo(): ProgramInfo | undefined;
|
|
269
269
|
setInfo(value?: ProgramInfo): RunRequest;
|
|
270
|
+
getLoaderTarget(): string;
|
|
271
|
+
setLoaderTarget(value: string): RunRequest;
|
|
270
272
|
|
|
271
273
|
serializeBinary(): Uint8Array;
|
|
272
274
|
toObject(includeInstance?: boolean): RunRequest.AsObject;
|
|
@@ -295,6 +297,7 @@ export namespace RunRequest {
|
|
|
295
297
|
organization: string,
|
|
296
298
|
configpropertymap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
297
299
|
info?: ProgramInfo.AsObject,
|
|
300
|
+
loaderTarget: string,
|
|
298
301
|
}
|
|
299
302
|
}
|
|
300
303
|
|
package/proto/language_pb.js
CHANGED
|
@@ -2226,7 +2226,8 @@ proto.pulumirpc.RunRequest.toObject = function(includeInstance, msg) {
|
|
|
2226
2226
|
configsecretkeysList: (f = jspb.Message.getRepeatedField(msg, 11)) == null ? undefined : f,
|
|
2227
2227
|
organization: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
2228
2228
|
configpropertymap: (f = msg.getConfigpropertymap()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
2229
|
-
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f)
|
|
2229
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
2230
|
+
loaderTarget: jspb.Message.getFieldWithDefault(msg, 15, "")
|
|
2230
2231
|
};
|
|
2231
2232
|
|
|
2232
2233
|
if (includeInstance) {
|
|
@@ -2323,6 +2324,10 @@ proto.pulumirpc.RunRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
2323
2324
|
reader.readMessage(value,proto.pulumirpc.ProgramInfo.deserializeBinaryFromReader);
|
|
2324
2325
|
msg.setInfo(value);
|
|
2325
2326
|
break;
|
|
2327
|
+
case 15:
|
|
2328
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2329
|
+
msg.setLoaderTarget(value);
|
|
2330
|
+
break;
|
|
2326
2331
|
default:
|
|
2327
2332
|
reader.skipField();
|
|
2328
2333
|
break;
|
|
@@ -2449,6 +2454,13 @@ proto.pulumirpc.RunRequest.serializeBinaryToWriter = function(message, writer) {
|
|
|
2449
2454
|
proto.pulumirpc.ProgramInfo.serializeBinaryToWriter
|
|
2450
2455
|
);
|
|
2451
2456
|
}
|
|
2457
|
+
f = message.getLoaderTarget();
|
|
2458
|
+
if (f.length > 0) {
|
|
2459
|
+
writer.writeString(
|
|
2460
|
+
15,
|
|
2461
|
+
f
|
|
2462
|
+
);
|
|
2463
|
+
}
|
|
2452
2464
|
};
|
|
2453
2465
|
|
|
2454
2466
|
|
|
@@ -2784,6 +2796,24 @@ proto.pulumirpc.RunRequest.prototype.hasInfo = function() {
|
|
|
2784
2796
|
};
|
|
2785
2797
|
|
|
2786
2798
|
|
|
2799
|
+
/**
|
|
2800
|
+
* optional string loader_target = 15;
|
|
2801
|
+
* @return {string}
|
|
2802
|
+
*/
|
|
2803
|
+
proto.pulumirpc.RunRequest.prototype.getLoaderTarget = function() {
|
|
2804
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
2805
|
+
};
|
|
2806
|
+
|
|
2807
|
+
|
|
2808
|
+
/**
|
|
2809
|
+
* @param {string} value
|
|
2810
|
+
* @return {!proto.pulumirpc.RunRequest} returns this
|
|
2811
|
+
*/
|
|
2812
|
+
proto.pulumirpc.RunRequest.prototype.setLoaderTarget = function(value) {
|
|
2813
|
+
return jspb.Message.setProto3StringField(this, 15, value);
|
|
2814
|
+
};
|
|
2815
|
+
|
|
2816
|
+
|
|
2787
2817
|
|
|
2788
2818
|
|
|
2789
2819
|
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.130.
|
|
1
|
+
export declare const version = "3.130.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.130.
|
|
16
|
+
exports.version = "3.130.1-alpha.x153d830";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|