@pulumi/pulumi 3.130.1-alpha.x257bdb8 → 3.130.1-alpha.x5311466
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/engine_grpc_pb.d.ts +12 -12
- package/proto/engine_grpc_pb.js +12 -10
- package/proto/engine_pb.d.ts +9 -9
- package/proto/engine_pb.js +28 -28
- package/proto/language_pb.d.ts +3 -3
- package/proto/language_pb.js +6 -6
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@ interface IEngineService extends grpc.ServiceDefinition<grpc.UntypedServiceImple
|
|
|
13
13
|
log: IEngineService_ILog;
|
|
14
14
|
getRootResource: IEngineService_IGetRootResource;
|
|
15
15
|
setRootResource: IEngineService_ISetRootResource;
|
|
16
|
-
|
|
16
|
+
startDebugging: IEngineService_IStartDebugging;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
interface IEngineService_ILog extends grpc.MethodDefinition<pulumi_engine_pb.LogRequest, google_protobuf_empty_pb.Empty> {
|
|
@@ -43,12 +43,12 @@ interface IEngineService_ISetRootResource extends grpc.MethodDefinition<pulumi_e
|
|
|
43
43
|
responseSerialize: grpc.serialize<pulumi_engine_pb.SetRootResourceResponse>;
|
|
44
44
|
responseDeserialize: grpc.deserialize<pulumi_engine_pb.SetRootResourceResponse>;
|
|
45
45
|
}
|
|
46
|
-
interface
|
|
47
|
-
path: "/pulumirpc.Engine/
|
|
46
|
+
interface IEngineService_IStartDebugging extends grpc.MethodDefinition<pulumi_engine_pb.StartDebuggingRequest, google_protobuf_empty_pb.Empty> {
|
|
47
|
+
path: "/pulumirpc.Engine/StartDebugging";
|
|
48
48
|
requestStream: false;
|
|
49
49
|
responseStream: false;
|
|
50
|
-
requestSerialize: grpc.serialize<pulumi_engine_pb.
|
|
51
|
-
requestDeserialize: grpc.deserialize<pulumi_engine_pb.
|
|
50
|
+
requestSerialize: grpc.serialize<pulumi_engine_pb.StartDebuggingRequest>;
|
|
51
|
+
requestDeserialize: grpc.deserialize<pulumi_engine_pb.StartDebuggingRequest>;
|
|
52
52
|
responseSerialize: grpc.serialize<google_protobuf_empty_pb.Empty>;
|
|
53
53
|
responseDeserialize: grpc.deserialize<google_protobuf_empty_pb.Empty>;
|
|
54
54
|
}
|
|
@@ -59,7 +59,7 @@ export interface IEngineServer extends grpc.UntypedServiceImplementation {
|
|
|
59
59
|
log: grpc.handleUnaryCall<pulumi_engine_pb.LogRequest, google_protobuf_empty_pb.Empty>;
|
|
60
60
|
getRootResource: grpc.handleUnaryCall<pulumi_engine_pb.GetRootResourceRequest, pulumi_engine_pb.GetRootResourceResponse>;
|
|
61
61
|
setRootResource: grpc.handleUnaryCall<pulumi_engine_pb.SetRootResourceRequest, pulumi_engine_pb.SetRootResourceResponse>;
|
|
62
|
-
|
|
62
|
+
startDebugging: grpc.handleUnaryCall<pulumi_engine_pb.StartDebuggingRequest, google_protobuf_empty_pb.Empty>;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
export interface IEngineClient {
|
|
@@ -72,9 +72,9 @@ export interface IEngineClient {
|
|
|
72
72
|
setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
73
73
|
setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
74
74
|
setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
75
|
+
startDebugging(request: pulumi_engine_pb.StartDebuggingRequest, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
76
|
+
startDebugging(request: pulumi_engine_pb.StartDebuggingRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
77
|
+
startDebugging(request: pulumi_engine_pb.StartDebuggingRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
export class EngineClient extends grpc.Client implements IEngineClient {
|
|
@@ -88,7 +88,7 @@ export class EngineClient extends grpc.Client implements IEngineClient {
|
|
|
88
88
|
public setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
89
89
|
public setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
90
90
|
public setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
91
|
-
public
|
|
92
|
-
public
|
|
93
|
-
public
|
|
91
|
+
public startDebugging(request: pulumi_engine_pb.StartDebuggingRequest, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
92
|
+
public startDebugging(request: pulumi_engine_pb.StartDebuggingRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
93
|
+
public startDebugging(request: pulumi_engine_pb.StartDebuggingRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
94
94
|
}
|
package/proto/engine_grpc_pb.js
CHANGED
|
@@ -87,15 +87,15 @@ function deserialize_pulumirpc_SetRootResourceResponse(buffer_arg) {
|
|
|
87
87
|
return pulumi_engine_pb.SetRootResourceResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
function
|
|
91
|
-
if (!(arg instanceof pulumi_engine_pb.
|
|
92
|
-
throw new Error('Expected argument of type pulumirpc.
|
|
90
|
+
function serialize_pulumirpc_StartDebuggingRequest(arg) {
|
|
91
|
+
if (!(arg instanceof pulumi_engine_pb.StartDebuggingRequest)) {
|
|
92
|
+
throw new Error('Expected argument of type pulumirpc.StartDebuggingRequest');
|
|
93
93
|
}
|
|
94
94
|
return Buffer.from(arg.serializeBinary());
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
function
|
|
98
|
-
return pulumi_engine_pb.
|
|
97
|
+
function deserialize_pulumirpc_StartDebuggingRequest(buffer_arg) {
|
|
98
|
+
return pulumi_engine_pb.StartDebuggingRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
|
|
@@ -140,14 +140,16 @@ setRootResource: {
|
|
|
140
140
|
responseSerialize: serialize_pulumirpc_SetRootResourceResponse,
|
|
141
141
|
responseDeserialize: deserialize_pulumirpc_SetRootResourceResponse,
|
|
142
142
|
},
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
// StartDebugging indicates to the engine that the program has started under a debugger, and the engine
|
|
144
|
+
// should notify the user of how to connect to the debugger.
|
|
145
|
+
startDebugging: {
|
|
146
|
+
path: '/pulumirpc.Engine/StartDebugging',
|
|
145
147
|
requestStream: false,
|
|
146
148
|
responseStream: false,
|
|
147
|
-
requestType: pulumi_engine_pb.
|
|
149
|
+
requestType: pulumi_engine_pb.StartDebuggingRequest,
|
|
148
150
|
responseType: google_protobuf_empty_pb.Empty,
|
|
149
|
-
requestSerialize:
|
|
150
|
-
requestDeserialize:
|
|
151
|
+
requestSerialize: serialize_pulumirpc_StartDebuggingRequest,
|
|
152
|
+
requestDeserialize: deserialize_pulumirpc_StartDebuggingRequest,
|
|
151
153
|
responseSerialize: serialize_google_protobuf_Empty,
|
|
152
154
|
responseDeserialize: deserialize_google_protobuf_Empty,
|
|
153
155
|
},
|
package/proto/engine_pb.d.ts
CHANGED
|
@@ -114,26 +114,26 @@ export namespace SetRootResourceResponse {
|
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
export class
|
|
117
|
+
export class StartDebuggingRequest extends jspb.Message {
|
|
118
118
|
|
|
119
119
|
hasConfig(): boolean;
|
|
120
120
|
clearConfig(): void;
|
|
121
121
|
getConfig(): google_protobuf_struct_pb.Struct | undefined;
|
|
122
|
-
setConfig(value?: google_protobuf_struct_pb.Struct):
|
|
122
|
+
setConfig(value?: google_protobuf_struct_pb.Struct): StartDebuggingRequest;
|
|
123
123
|
getMessage(): string;
|
|
124
|
-
setMessage(value: string):
|
|
124
|
+
setMessage(value: string): StartDebuggingRequest;
|
|
125
125
|
|
|
126
126
|
serializeBinary(): Uint8Array;
|
|
127
|
-
toObject(includeInstance?: boolean):
|
|
128
|
-
static toObject(includeInstance: boolean, msg:
|
|
127
|
+
toObject(includeInstance?: boolean): StartDebuggingRequest.AsObject;
|
|
128
|
+
static toObject(includeInstance: boolean, msg: StartDebuggingRequest): StartDebuggingRequest.AsObject;
|
|
129
129
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
130
130
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
131
|
-
static serializeBinaryToWriter(message:
|
|
132
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
133
|
-
static deserializeBinaryFromReader(message:
|
|
131
|
+
static serializeBinaryToWriter(message: StartDebuggingRequest, writer: jspb.BinaryWriter): void;
|
|
132
|
+
static deserializeBinary(bytes: Uint8Array): StartDebuggingRequest;
|
|
133
|
+
static deserializeBinaryFromReader(message: StartDebuggingRequest, reader: jspb.BinaryReader): StartDebuggingRequest;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
-
export namespace
|
|
136
|
+
export namespace StartDebuggingRequest {
|
|
137
137
|
export type AsObject = {
|
|
138
138
|
config?: google_protobuf_struct_pb.Struct.AsObject,
|
|
139
139
|
message: string,
|
package/proto/engine_pb.js
CHANGED
|
@@ -25,7 +25,7 @@ goog.exportSymbol('proto.pulumirpc.LogRequest', null, global);
|
|
|
25
25
|
goog.exportSymbol('proto.pulumirpc.LogSeverity', null, global);
|
|
26
26
|
goog.exportSymbol('proto.pulumirpc.SetRootResourceRequest', null, global);
|
|
27
27
|
goog.exportSymbol('proto.pulumirpc.SetRootResourceResponse', null, global);
|
|
28
|
-
goog.exportSymbol('proto.pulumirpc.
|
|
28
|
+
goog.exportSymbol('proto.pulumirpc.StartDebuggingRequest', null, global);
|
|
29
29
|
/**
|
|
30
30
|
* Generated by JsPbCodeGenerator.
|
|
31
31
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -141,16 +141,16 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
141
141
|
* @extends {jspb.Message}
|
|
142
142
|
* @constructor
|
|
143
143
|
*/
|
|
144
|
-
proto.pulumirpc.
|
|
144
|
+
proto.pulumirpc.StartDebuggingRequest = function(opt_data) {
|
|
145
145
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
146
146
|
};
|
|
147
|
-
goog.inherits(proto.pulumirpc.
|
|
147
|
+
goog.inherits(proto.pulumirpc.StartDebuggingRequest, jspb.Message);
|
|
148
148
|
if (goog.DEBUG && !COMPILED) {
|
|
149
149
|
/**
|
|
150
150
|
* @public
|
|
151
151
|
* @override
|
|
152
152
|
*/
|
|
153
|
-
proto.pulumirpc.
|
|
153
|
+
proto.pulumirpc.StartDebuggingRequest.displayName = 'proto.pulumirpc.StartDebuggingRequest';
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
|
|
@@ -880,8 +880,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
880
880
|
* http://goto/soy-param-migration
|
|
881
881
|
* @return {!Object}
|
|
882
882
|
*/
|
|
883
|
-
proto.pulumirpc.
|
|
884
|
-
return proto.pulumirpc.
|
|
883
|
+
proto.pulumirpc.StartDebuggingRequest.prototype.toObject = function(opt_includeInstance) {
|
|
884
|
+
return proto.pulumirpc.StartDebuggingRequest.toObject(opt_includeInstance, this);
|
|
885
885
|
};
|
|
886
886
|
|
|
887
887
|
|
|
@@ -890,11 +890,11 @@ proto.pulumirpc.StartDebuggerRequest.prototype.toObject = function(opt_includeIn
|
|
|
890
890
|
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
891
891
|
* the JSPB instance for transitional soy proto support:
|
|
892
892
|
* http://goto/soy-param-migration
|
|
893
|
-
* @param {!proto.pulumirpc.
|
|
893
|
+
* @param {!proto.pulumirpc.StartDebuggingRequest} msg The msg instance to transform.
|
|
894
894
|
* @return {!Object}
|
|
895
895
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
896
896
|
*/
|
|
897
|
-
proto.pulumirpc.
|
|
897
|
+
proto.pulumirpc.StartDebuggingRequest.toObject = function(includeInstance, msg) {
|
|
898
898
|
var f, obj = {
|
|
899
899
|
config: (f = msg.getConfig()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
900
900
|
message: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
@@ -911,23 +911,23 @@ proto.pulumirpc.StartDebuggerRequest.toObject = function(includeInstance, msg) {
|
|
|
911
911
|
/**
|
|
912
912
|
* Deserializes binary data (in protobuf wire format).
|
|
913
913
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
914
|
-
* @return {!proto.pulumirpc.
|
|
914
|
+
* @return {!proto.pulumirpc.StartDebuggingRequest}
|
|
915
915
|
*/
|
|
916
|
-
proto.pulumirpc.
|
|
916
|
+
proto.pulumirpc.StartDebuggingRequest.deserializeBinary = function(bytes) {
|
|
917
917
|
var reader = new jspb.BinaryReader(bytes);
|
|
918
|
-
var msg = new proto.pulumirpc.
|
|
919
|
-
return proto.pulumirpc.
|
|
918
|
+
var msg = new proto.pulumirpc.StartDebuggingRequest;
|
|
919
|
+
return proto.pulumirpc.StartDebuggingRequest.deserializeBinaryFromReader(msg, reader);
|
|
920
920
|
};
|
|
921
921
|
|
|
922
922
|
|
|
923
923
|
/**
|
|
924
924
|
* Deserializes binary data (in protobuf wire format) from the
|
|
925
925
|
* given reader into the given message object.
|
|
926
|
-
* @param {!proto.pulumirpc.
|
|
926
|
+
* @param {!proto.pulumirpc.StartDebuggingRequest} msg The message object to deserialize into.
|
|
927
927
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
928
|
-
* @return {!proto.pulumirpc.
|
|
928
|
+
* @return {!proto.pulumirpc.StartDebuggingRequest}
|
|
929
929
|
*/
|
|
930
|
-
proto.pulumirpc.
|
|
930
|
+
proto.pulumirpc.StartDebuggingRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
931
931
|
while (reader.nextField()) {
|
|
932
932
|
if (reader.isEndGroup()) {
|
|
933
933
|
break;
|
|
@@ -956,9 +956,9 @@ proto.pulumirpc.StartDebuggerRequest.deserializeBinaryFromReader = function(msg,
|
|
|
956
956
|
* Serializes the message to binary data (in protobuf wire format).
|
|
957
957
|
* @return {!Uint8Array}
|
|
958
958
|
*/
|
|
959
|
-
proto.pulumirpc.
|
|
959
|
+
proto.pulumirpc.StartDebuggingRequest.prototype.serializeBinary = function() {
|
|
960
960
|
var writer = new jspb.BinaryWriter();
|
|
961
|
-
proto.pulumirpc.
|
|
961
|
+
proto.pulumirpc.StartDebuggingRequest.serializeBinaryToWriter(this, writer);
|
|
962
962
|
return writer.getResultBuffer();
|
|
963
963
|
};
|
|
964
964
|
|
|
@@ -966,11 +966,11 @@ proto.pulumirpc.StartDebuggerRequest.prototype.serializeBinary = function() {
|
|
|
966
966
|
/**
|
|
967
967
|
* Serializes the given message to binary data (in protobuf wire
|
|
968
968
|
* format), writing to the given BinaryWriter.
|
|
969
|
-
* @param {!proto.pulumirpc.
|
|
969
|
+
* @param {!proto.pulumirpc.StartDebuggingRequest} message
|
|
970
970
|
* @param {!jspb.BinaryWriter} writer
|
|
971
971
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
972
972
|
*/
|
|
973
|
-
proto.pulumirpc.
|
|
973
|
+
proto.pulumirpc.StartDebuggingRequest.serializeBinaryToWriter = function(message, writer) {
|
|
974
974
|
var f = undefined;
|
|
975
975
|
f = message.getConfig();
|
|
976
976
|
if (f != null) {
|
|
@@ -994,7 +994,7 @@ proto.pulumirpc.StartDebuggerRequest.serializeBinaryToWriter = function(message,
|
|
|
994
994
|
* optional google.protobuf.Struct config = 1;
|
|
995
995
|
* @return {?proto.google.protobuf.Struct}
|
|
996
996
|
*/
|
|
997
|
-
proto.pulumirpc.
|
|
997
|
+
proto.pulumirpc.StartDebuggingRequest.prototype.getConfig = function() {
|
|
998
998
|
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
999
999
|
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 1));
|
|
1000
1000
|
};
|
|
@@ -1002,18 +1002,18 @@ proto.pulumirpc.StartDebuggerRequest.prototype.getConfig = function() {
|
|
|
1002
1002
|
|
|
1003
1003
|
/**
|
|
1004
1004
|
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
1005
|
-
* @return {!proto.pulumirpc.
|
|
1005
|
+
* @return {!proto.pulumirpc.StartDebuggingRequest} returns this
|
|
1006
1006
|
*/
|
|
1007
|
-
proto.pulumirpc.
|
|
1007
|
+
proto.pulumirpc.StartDebuggingRequest.prototype.setConfig = function(value) {
|
|
1008
1008
|
return jspb.Message.setWrapperField(this, 1, value);
|
|
1009
1009
|
};
|
|
1010
1010
|
|
|
1011
1011
|
|
|
1012
1012
|
/**
|
|
1013
1013
|
* Clears the message field making it undefined.
|
|
1014
|
-
* @return {!proto.pulumirpc.
|
|
1014
|
+
* @return {!proto.pulumirpc.StartDebuggingRequest} returns this
|
|
1015
1015
|
*/
|
|
1016
|
-
proto.pulumirpc.
|
|
1016
|
+
proto.pulumirpc.StartDebuggingRequest.prototype.clearConfig = function() {
|
|
1017
1017
|
return this.setConfig(undefined);
|
|
1018
1018
|
};
|
|
1019
1019
|
|
|
@@ -1022,7 +1022,7 @@ proto.pulumirpc.StartDebuggerRequest.prototype.clearConfig = function() {
|
|
|
1022
1022
|
* Returns whether this field is set.
|
|
1023
1023
|
* @return {boolean}
|
|
1024
1024
|
*/
|
|
1025
|
-
proto.pulumirpc.
|
|
1025
|
+
proto.pulumirpc.StartDebuggingRequest.prototype.hasConfig = function() {
|
|
1026
1026
|
return jspb.Message.getField(this, 1) != null;
|
|
1027
1027
|
};
|
|
1028
1028
|
|
|
@@ -1031,16 +1031,16 @@ proto.pulumirpc.StartDebuggerRequest.prototype.hasConfig = function() {
|
|
|
1031
1031
|
* optional string message = 2;
|
|
1032
1032
|
* @return {string}
|
|
1033
1033
|
*/
|
|
1034
|
-
proto.pulumirpc.
|
|
1034
|
+
proto.pulumirpc.StartDebuggingRequest.prototype.getMessage = function() {
|
|
1035
1035
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
1036
1036
|
};
|
|
1037
1037
|
|
|
1038
1038
|
|
|
1039
1039
|
/**
|
|
1040
1040
|
* @param {string} value
|
|
1041
|
-
* @return {!proto.pulumirpc.
|
|
1041
|
+
* @return {!proto.pulumirpc.StartDebuggingRequest} returns this
|
|
1042
1042
|
*/
|
|
1043
|
-
proto.pulumirpc.
|
|
1043
|
+
proto.pulumirpc.StartDebuggingRequest.prototype.setMessage = function(value) {
|
|
1044
1044
|
return jspb.Message.setProto3StringField(this, 2, value);
|
|
1045
1045
|
};
|
|
1046
1046
|
|
package/proto/language_pb.d.ts
CHANGED
|
@@ -269,8 +269,8 @@ export class RunRequest extends jspb.Message {
|
|
|
269
269
|
setInfo(value?: ProgramInfo): RunRequest;
|
|
270
270
|
getLoaderTarget(): string;
|
|
271
271
|
setLoaderTarget(value: string): RunRequest;
|
|
272
|
-
|
|
273
|
-
|
|
272
|
+
getAttachDebugger(): boolean;
|
|
273
|
+
setAttachDebugger(value: boolean): RunRequest;
|
|
274
274
|
|
|
275
275
|
serializeBinary(): Uint8Array;
|
|
276
276
|
toObject(includeInstance?: boolean): RunRequest.AsObject;
|
|
@@ -300,7 +300,7 @@ export namespace RunRequest {
|
|
|
300
300
|
configpropertymap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
301
301
|
info?: ProgramInfo.AsObject,
|
|
302
302
|
loaderTarget: string,
|
|
303
|
-
|
|
303
|
+
attachDebugger: boolean,
|
|
304
304
|
}
|
|
305
305
|
}
|
|
306
306
|
|
package/proto/language_pb.js
CHANGED
|
@@ -2228,7 +2228,7 @@ proto.pulumirpc.RunRequest.toObject = function(includeInstance, msg) {
|
|
|
2228
2228
|
configpropertymap: (f = msg.getConfigpropertymap()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
2229
2229
|
info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
|
|
2230
2230
|
loaderTarget: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
2231
|
-
|
|
2231
|
+
attachDebugger: jspb.Message.getBooleanFieldWithDefault(msg, 16, false)
|
|
2232
2232
|
};
|
|
2233
2233
|
|
|
2234
2234
|
if (includeInstance) {
|
|
@@ -2331,7 +2331,7 @@ proto.pulumirpc.RunRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
2331
2331
|
break;
|
|
2332
2332
|
case 16:
|
|
2333
2333
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
2334
|
-
msg.
|
|
2334
|
+
msg.setAttachDebugger(value);
|
|
2335
2335
|
break;
|
|
2336
2336
|
default:
|
|
2337
2337
|
reader.skipField();
|
|
@@ -2466,7 +2466,7 @@ proto.pulumirpc.RunRequest.serializeBinaryToWriter = function(message, writer) {
|
|
|
2466
2466
|
f
|
|
2467
2467
|
);
|
|
2468
2468
|
}
|
|
2469
|
-
f = message.
|
|
2469
|
+
f = message.getAttachDebugger();
|
|
2470
2470
|
if (f) {
|
|
2471
2471
|
writer.writeBool(
|
|
2472
2472
|
16,
|
|
@@ -2827,10 +2827,10 @@ proto.pulumirpc.RunRequest.prototype.setLoaderTarget = function(value) {
|
|
|
2827
2827
|
|
|
2828
2828
|
|
|
2829
2829
|
/**
|
|
2830
|
-
* optional bool
|
|
2830
|
+
* optional bool attach_debugger = 16;
|
|
2831
2831
|
* @return {boolean}
|
|
2832
2832
|
*/
|
|
2833
|
-
proto.pulumirpc.RunRequest.prototype.
|
|
2833
|
+
proto.pulumirpc.RunRequest.prototype.getAttachDebugger = function() {
|
|
2834
2834
|
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 16, false));
|
|
2835
2835
|
};
|
|
2836
2836
|
|
|
@@ -2839,7 +2839,7 @@ proto.pulumirpc.RunRequest.prototype.getStartDebugger = function() {
|
|
|
2839
2839
|
* @param {boolean} value
|
|
2840
2840
|
* @return {!proto.pulumirpc.RunRequest} returns this
|
|
2841
2841
|
*/
|
|
2842
|
-
proto.pulumirpc.RunRequest.prototype.
|
|
2842
|
+
proto.pulumirpc.RunRequest.prototype.setAttachDebugger = function(value) {
|
|
2843
2843
|
return jspb.Message.setProto3BooleanField(this, 16, value);
|
|
2844
2844
|
};
|
|
2845
2845
|
|
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.1-alpha.
|
|
16
|
+
exports.version = "3.130.1-alpha.x5311466";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|