@pulumi/pulumi 3.170.0-alpha.x6eb80e0 → 3.170.0-alpha.xbbd6bcc
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 +6 -0
- package/proto/language_pb.js +61 -1
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/language_pb.d.ts
CHANGED
|
@@ -570,6 +570,10 @@ export class RunPluginRequest extends jspb.Message {
|
|
|
570
570
|
setInfo(value?: ProgramInfo): RunPluginRequest;
|
|
571
571
|
getKind(): string;
|
|
572
572
|
setKind(value: string): RunPluginRequest;
|
|
573
|
+
getName(): string;
|
|
574
|
+
setName(value: string): RunPluginRequest;
|
|
575
|
+
getAttachDebugger(): boolean;
|
|
576
|
+
setAttachDebugger(value: boolean): RunPluginRequest;
|
|
573
577
|
|
|
574
578
|
serializeBinary(): Uint8Array;
|
|
575
579
|
toObject(includeInstance?: boolean): RunPluginRequest.AsObject;
|
|
@@ -589,6 +593,8 @@ export namespace RunPluginRequest {
|
|
|
589
593
|
envList: Array<string>,
|
|
590
594
|
info?: ProgramInfo.AsObject,
|
|
591
595
|
kind: string,
|
|
596
|
+
name: string,
|
|
597
|
+
attachDebugger: boolean,
|
|
592
598
|
}
|
|
593
599
|
}
|
|
594
600
|
|
package/proto/language_pb.js
CHANGED
|
@@ -4736,7 +4736,9 @@ proto.pulumirpc.RunPluginRequest.toObject = function(includeInstance, msg) {
|
|
|
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
4738
|
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
4739
|
-
kind: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
4739
|
+
kind: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
4740
|
+
name: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
4741
|
+
attachDebugger: jspb.Message.getBooleanFieldWithDefault(msg, 8, false)
|
|
4740
4742
|
};
|
|
4741
4743
|
|
|
4742
4744
|
if (includeInstance) {
|
|
@@ -4798,6 +4800,14 @@ proto.pulumirpc.RunPluginRequest.deserializeBinaryFromReader = function(msg, rea
|
|
|
4798
4800
|
var value = /** @type {string} */ (reader.readString());
|
|
4799
4801
|
msg.setKind(value);
|
|
4800
4802
|
break;
|
|
4803
|
+
case 7:
|
|
4804
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4805
|
+
msg.setName(value);
|
|
4806
|
+
break;
|
|
4807
|
+
case 8:
|
|
4808
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
4809
|
+
msg.setAttachDebugger(value);
|
|
4810
|
+
break;
|
|
4801
4811
|
default:
|
|
4802
4812
|
reader.skipField();
|
|
4803
4813
|
break;
|
|
@@ -4870,6 +4880,20 @@ proto.pulumirpc.RunPluginRequest.serializeBinaryToWriter = function(message, wri
|
|
|
4870
4880
|
f
|
|
4871
4881
|
);
|
|
4872
4882
|
}
|
|
4883
|
+
f = message.getName();
|
|
4884
|
+
if (f.length > 0) {
|
|
4885
|
+
writer.writeString(
|
|
4886
|
+
7,
|
|
4887
|
+
f
|
|
4888
|
+
);
|
|
4889
|
+
}
|
|
4890
|
+
f = message.getAttachDebugger();
|
|
4891
|
+
if (f) {
|
|
4892
|
+
writer.writeBool(
|
|
4893
|
+
8,
|
|
4894
|
+
f
|
|
4895
|
+
);
|
|
4896
|
+
}
|
|
4873
4897
|
};
|
|
4874
4898
|
|
|
4875
4899
|
|
|
@@ -5038,6 +5062,42 @@ proto.pulumirpc.RunPluginRequest.prototype.setKind = function(value) {
|
|
|
5038
5062
|
};
|
|
5039
5063
|
|
|
5040
5064
|
|
|
5065
|
+
/**
|
|
5066
|
+
* optional string name = 7;
|
|
5067
|
+
* @return {string}
|
|
5068
|
+
*/
|
|
5069
|
+
proto.pulumirpc.RunPluginRequest.prototype.getName = function() {
|
|
5070
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
5071
|
+
};
|
|
5072
|
+
|
|
5073
|
+
|
|
5074
|
+
/**
|
|
5075
|
+
* @param {string} value
|
|
5076
|
+
* @return {!proto.pulumirpc.RunPluginRequest} returns this
|
|
5077
|
+
*/
|
|
5078
|
+
proto.pulumirpc.RunPluginRequest.prototype.setName = function(value) {
|
|
5079
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
5080
|
+
};
|
|
5081
|
+
|
|
5082
|
+
|
|
5083
|
+
/**
|
|
5084
|
+
* optional bool attach_debugger = 8;
|
|
5085
|
+
* @return {boolean}
|
|
5086
|
+
*/
|
|
5087
|
+
proto.pulumirpc.RunPluginRequest.prototype.getAttachDebugger = function() {
|
|
5088
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 8, false));
|
|
5089
|
+
};
|
|
5090
|
+
|
|
5091
|
+
|
|
5092
|
+
/**
|
|
5093
|
+
* @param {boolean} value
|
|
5094
|
+
* @return {!proto.pulumirpc.RunPluginRequest} returns this
|
|
5095
|
+
*/
|
|
5096
|
+
proto.pulumirpc.RunPluginRequest.prototype.setAttachDebugger = function(value) {
|
|
5097
|
+
return jspb.Message.setProto3BooleanField(this, 8, value);
|
|
5098
|
+
};
|
|
5099
|
+
|
|
5100
|
+
|
|
5041
5101
|
|
|
5042
5102
|
/**
|
|
5043
5103
|
* Oneof group definitions for this message. Each group defines the field
|
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.170.0-alpha.
|
|
16
|
+
exports.version = "3.170.0-alpha.xbbd6bcc";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|