@pulumi/pulumi 3.164.0-alpha.xf4b8563 → 3.166.0-alpha.xee90e48
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
|
@@ -568,6 +568,8 @@ export class RunPluginRequest extends jspb.Message {
|
|
|
568
568
|
clearInfo(): void;
|
|
569
569
|
getInfo(): ProgramInfo | undefined;
|
|
570
570
|
setInfo(value?: ProgramInfo): RunPluginRequest;
|
|
571
|
+
getKind(): string;
|
|
572
|
+
setKind(value: string): RunPluginRequest;
|
|
571
573
|
|
|
572
574
|
serializeBinary(): Uint8Array;
|
|
573
575
|
toObject(includeInstance?: boolean): RunPluginRequest.AsObject;
|
|
@@ -586,6 +588,7 @@ export namespace RunPluginRequest {
|
|
|
586
588
|
argsList: Array<string>,
|
|
587
589
|
envList: Array<string>,
|
|
588
590
|
info?: ProgramInfo.AsObject,
|
|
591
|
+
kind: string,
|
|
589
592
|
}
|
|
590
593
|
}
|
|
591
594
|
|
package/proto/language_pb.js
CHANGED
|
@@ -4735,7 +4735,8 @@ proto.pulumirpc.RunPluginRequest.toObject = function(includeInstance, msg) {
|
|
|
4735
4735
|
program: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
4736
4736
|
argsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
4737
4737
|
envList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
4738
|
-
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f)
|
|
4738
|
+
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
4739
|
+
kind: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
4739
4740
|
};
|
|
4740
4741
|
|
|
4741
4742
|
if (includeInstance) {
|
|
@@ -4793,6 +4794,10 @@ proto.pulumirpc.RunPluginRequest.deserializeBinaryFromReader = function(msg, rea
|
|
|
4793
4794
|
reader.readMessage(value,proto.pulumirpc.ProgramInfo.deserializeBinaryFromReader);
|
|
4794
4795
|
msg.setInfo(value);
|
|
4795
4796
|
break;
|
|
4797
|
+
case 6:
|
|
4798
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4799
|
+
msg.setKind(value);
|
|
4800
|
+
break;
|
|
4796
4801
|
default:
|
|
4797
4802
|
reader.skipField();
|
|
4798
4803
|
break;
|
|
@@ -4858,6 +4863,13 @@ proto.pulumirpc.RunPluginRequest.serializeBinaryToWriter = function(message, wri
|
|
|
4858
4863
|
proto.pulumirpc.ProgramInfo.serializeBinaryToWriter
|
|
4859
4864
|
);
|
|
4860
4865
|
}
|
|
4866
|
+
f = message.getKind();
|
|
4867
|
+
if (f.length > 0) {
|
|
4868
|
+
writer.writeString(
|
|
4869
|
+
6,
|
|
4870
|
+
f
|
|
4871
|
+
);
|
|
4872
|
+
}
|
|
4861
4873
|
};
|
|
4862
4874
|
|
|
4863
4875
|
|
|
@@ -5008,6 +5020,24 @@ proto.pulumirpc.RunPluginRequest.prototype.hasInfo = function() {
|
|
|
5008
5020
|
};
|
|
5009
5021
|
|
|
5010
5022
|
|
|
5023
|
+
/**
|
|
5024
|
+
* optional string kind = 6;
|
|
5025
|
+
* @return {string}
|
|
5026
|
+
*/
|
|
5027
|
+
proto.pulumirpc.RunPluginRequest.prototype.getKind = function() {
|
|
5028
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
5029
|
+
};
|
|
5030
|
+
|
|
5031
|
+
|
|
5032
|
+
/**
|
|
5033
|
+
* @param {string} value
|
|
5034
|
+
* @return {!proto.pulumirpc.RunPluginRequest} returns this
|
|
5035
|
+
*/
|
|
5036
|
+
proto.pulumirpc.RunPluginRequest.prototype.setKind = function(value) {
|
|
5037
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
5038
|
+
};
|
|
5039
|
+
|
|
5040
|
+
|
|
5011
5041
|
|
|
5012
5042
|
/**
|
|
5013
5043
|
* 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.166.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.166.0-alpha.xee90e48";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|