@pulumi/pulumi 3.130.1-alpha.xb52882e → 3.130.1-alpha.xd51c0bd
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 +18 -0
- package/proto/engine_grpc_pb.js +23 -0
- package/proto/engine_pb.d.ts +27 -0
- package/proto/engine_pb.js +205 -0
- package/proto/language_pb.d.ts +3 -0
- package/proto/language_pb.js +31 -1
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -7,11 +7,13 @@
|
|
|
7
7
|
import * as grpc from "@grpc/grpc-js";
|
|
8
8
|
import * as pulumi_engine_pb from "./engine_pb";
|
|
9
9
|
import * as google_protobuf_empty_pb from "google-protobuf/google/protobuf/empty_pb";
|
|
10
|
+
import * as google_protobuf_struct_pb from "google-protobuf/google/protobuf/struct_pb";
|
|
10
11
|
|
|
11
12
|
interface IEngineService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
|
|
12
13
|
log: IEngineService_ILog;
|
|
13
14
|
getRootResource: IEngineService_IGetRootResource;
|
|
14
15
|
setRootResource: IEngineService_ISetRootResource;
|
|
16
|
+
startDebugger: IEngineService_IStartDebugger;
|
|
15
17
|
}
|
|
16
18
|
|
|
17
19
|
interface IEngineService_ILog extends grpc.MethodDefinition<pulumi_engine_pb.LogRequest, google_protobuf_empty_pb.Empty> {
|
|
@@ -41,6 +43,15 @@ interface IEngineService_ISetRootResource extends grpc.MethodDefinition<pulumi_e
|
|
|
41
43
|
responseSerialize: grpc.serialize<pulumi_engine_pb.SetRootResourceResponse>;
|
|
42
44
|
responseDeserialize: grpc.deserialize<pulumi_engine_pb.SetRootResourceResponse>;
|
|
43
45
|
}
|
|
46
|
+
interface IEngineService_IStartDebugger extends grpc.MethodDefinition<pulumi_engine_pb.StartDebuggerRequest, google_protobuf_empty_pb.Empty> {
|
|
47
|
+
path: "/pulumirpc.Engine/StartDebugger";
|
|
48
|
+
requestStream: false;
|
|
49
|
+
responseStream: false;
|
|
50
|
+
requestSerialize: grpc.serialize<pulumi_engine_pb.StartDebuggerRequest>;
|
|
51
|
+
requestDeserialize: grpc.deserialize<pulumi_engine_pb.StartDebuggerRequest>;
|
|
52
|
+
responseSerialize: grpc.serialize<google_protobuf_empty_pb.Empty>;
|
|
53
|
+
responseDeserialize: grpc.deserialize<google_protobuf_empty_pb.Empty>;
|
|
54
|
+
}
|
|
44
55
|
|
|
45
56
|
export const EngineService: IEngineService;
|
|
46
57
|
|
|
@@ -48,6 +59,7 @@ export interface IEngineServer extends grpc.UntypedServiceImplementation {
|
|
|
48
59
|
log: grpc.handleUnaryCall<pulumi_engine_pb.LogRequest, google_protobuf_empty_pb.Empty>;
|
|
49
60
|
getRootResource: grpc.handleUnaryCall<pulumi_engine_pb.GetRootResourceRequest, pulumi_engine_pb.GetRootResourceResponse>;
|
|
50
61
|
setRootResource: grpc.handleUnaryCall<pulumi_engine_pb.SetRootResourceRequest, pulumi_engine_pb.SetRootResourceResponse>;
|
|
62
|
+
startDebugger: grpc.handleUnaryCall<pulumi_engine_pb.StartDebuggerRequest, google_protobuf_empty_pb.Empty>;
|
|
51
63
|
}
|
|
52
64
|
|
|
53
65
|
export interface IEngineClient {
|
|
@@ -60,6 +72,9 @@ export interface IEngineClient {
|
|
|
60
72
|
setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
61
73
|
setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
62
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
|
+
startDebugger(request: pulumi_engine_pb.StartDebuggerRequest, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
76
|
+
startDebugger(request: pulumi_engine_pb.StartDebuggerRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
77
|
+
startDebugger(request: pulumi_engine_pb.StartDebuggerRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
63
78
|
}
|
|
64
79
|
|
|
65
80
|
export class EngineClient extends grpc.Client implements IEngineClient {
|
|
@@ -73,4 +88,7 @@ export class EngineClient extends grpc.Client implements IEngineClient {
|
|
|
73
88
|
public setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
74
89
|
public setRootResource(request: pulumi_engine_pb.SetRootResourceRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: pulumi_engine_pb.SetRootResourceResponse) => void): grpc.ClientUnaryCall;
|
|
75
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 startDebugger(request: pulumi_engine_pb.StartDebuggerRequest, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
92
|
+
public startDebugger(request: pulumi_engine_pb.StartDebuggerRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
93
|
+
public startDebugger(request: pulumi_engine_pb.StartDebuggerRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: google_protobuf_empty_pb.Empty) => void): grpc.ClientUnaryCall;
|
|
76
94
|
}
|
package/proto/engine_grpc_pb.js
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
var grpc = require('@grpc/grpc-js');
|
|
20
20
|
var pulumi_engine_pb = require('./engine_pb.js');
|
|
21
21
|
var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js');
|
|
22
|
+
var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js');
|
|
22
23
|
|
|
23
24
|
function serialize_google_protobuf_Empty(arg) {
|
|
24
25
|
if (!(arg instanceof google_protobuf_empty_pb.Empty)) {
|
|
@@ -86,6 +87,17 @@ function deserialize_pulumirpc_SetRootResourceResponse(buffer_arg) {
|
|
|
86
87
|
return pulumi_engine_pb.SetRootResourceResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
87
88
|
}
|
|
88
89
|
|
|
90
|
+
function serialize_pulumirpc_StartDebuggerRequest(arg) {
|
|
91
|
+
if (!(arg instanceof pulumi_engine_pb.StartDebuggerRequest)) {
|
|
92
|
+
throw new Error('Expected argument of type pulumirpc.StartDebuggerRequest');
|
|
93
|
+
}
|
|
94
|
+
return Buffer.from(arg.serializeBinary());
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
function deserialize_pulumirpc_StartDebuggerRequest(buffer_arg) {
|
|
98
|
+
return pulumi_engine_pb.StartDebuggerRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
99
|
+
}
|
|
100
|
+
|
|
89
101
|
|
|
90
102
|
// Engine is an auxiliary service offered to language and resource provider plugins. Its main purpose today is
|
|
91
103
|
// to serve as a common logging endpoint, but it also serves as a state storage mechanism for language hosts
|
|
@@ -128,6 +140,17 @@ setRootResource: {
|
|
|
128
140
|
responseSerialize: serialize_pulumirpc_SetRootResourceResponse,
|
|
129
141
|
responseDeserialize: deserialize_pulumirpc_SetRootResourceResponse,
|
|
130
142
|
},
|
|
143
|
+
startDebugger: {
|
|
144
|
+
path: '/pulumirpc.Engine/StartDebugger',
|
|
145
|
+
requestStream: false,
|
|
146
|
+
responseStream: false,
|
|
147
|
+
requestType: pulumi_engine_pb.StartDebuggerRequest,
|
|
148
|
+
responseType: google_protobuf_empty_pb.Empty,
|
|
149
|
+
requestSerialize: serialize_pulumirpc_StartDebuggerRequest,
|
|
150
|
+
requestDeserialize: deserialize_pulumirpc_StartDebuggerRequest,
|
|
151
|
+
responseSerialize: serialize_google_protobuf_Empty,
|
|
152
|
+
responseDeserialize: deserialize_google_protobuf_Empty,
|
|
153
|
+
},
|
|
131
154
|
};
|
|
132
155
|
|
|
133
156
|
exports.EngineClient = grpc.makeGenericClientConstructor(EngineService);
|
package/proto/engine_pb.d.ts
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
import * as jspb from "google-protobuf";
|
|
8
8
|
import * as google_protobuf_empty_pb from "google-protobuf/google/protobuf/empty_pb";
|
|
9
|
+
import * as google_protobuf_struct_pb from "google-protobuf/google/protobuf/struct_pb";
|
|
9
10
|
|
|
10
11
|
export class LogRequest extends jspb.Message {
|
|
11
12
|
getSeverity(): LogSeverity;
|
|
@@ -113,6 +114,32 @@ export namespace SetRootResourceResponse {
|
|
|
113
114
|
}
|
|
114
115
|
}
|
|
115
116
|
|
|
117
|
+
export class StartDebuggerRequest extends jspb.Message {
|
|
118
|
+
|
|
119
|
+
hasConfig(): boolean;
|
|
120
|
+
clearConfig(): void;
|
|
121
|
+
getConfig(): google_protobuf_struct_pb.Struct | undefined;
|
|
122
|
+
setConfig(value?: google_protobuf_struct_pb.Struct): StartDebuggerRequest;
|
|
123
|
+
getMessage(): string;
|
|
124
|
+
setMessage(value: string): StartDebuggerRequest;
|
|
125
|
+
|
|
126
|
+
serializeBinary(): Uint8Array;
|
|
127
|
+
toObject(includeInstance?: boolean): StartDebuggerRequest.AsObject;
|
|
128
|
+
static toObject(includeInstance: boolean, msg: StartDebuggerRequest): StartDebuggerRequest.AsObject;
|
|
129
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
130
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
131
|
+
static serializeBinaryToWriter(message: StartDebuggerRequest, writer: jspb.BinaryWriter): void;
|
|
132
|
+
static deserializeBinary(bytes: Uint8Array): StartDebuggerRequest;
|
|
133
|
+
static deserializeBinaryFromReader(message: StartDebuggerRequest, reader: jspb.BinaryReader): StartDebuggerRequest;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export namespace StartDebuggerRequest {
|
|
137
|
+
export type AsObject = {
|
|
138
|
+
config?: google_protobuf_struct_pb.Struct.AsObject,
|
|
139
|
+
message: string,
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
116
143
|
export enum LogSeverity {
|
|
117
144
|
DEBUG = 0,
|
|
118
145
|
INFO = 1,
|
package/proto/engine_pb.js
CHANGED
|
@@ -17,12 +17,15 @@ var proto = { pulumirpc: { codegen: { }, testing: { } } }, global = proto;
|
|
|
17
17
|
|
|
18
18
|
var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js');
|
|
19
19
|
goog.object.extend(proto, google_protobuf_empty_pb);
|
|
20
|
+
var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js');
|
|
21
|
+
goog.object.extend(proto, google_protobuf_struct_pb);
|
|
20
22
|
goog.exportSymbol('proto.pulumirpc.GetRootResourceRequest', null, global);
|
|
21
23
|
goog.exportSymbol('proto.pulumirpc.GetRootResourceResponse', null, global);
|
|
22
24
|
goog.exportSymbol('proto.pulumirpc.LogRequest', null, global);
|
|
23
25
|
goog.exportSymbol('proto.pulumirpc.LogSeverity', null, global);
|
|
24
26
|
goog.exportSymbol('proto.pulumirpc.SetRootResourceRequest', null, global);
|
|
25
27
|
goog.exportSymbol('proto.pulumirpc.SetRootResourceResponse', null, global);
|
|
28
|
+
goog.exportSymbol('proto.pulumirpc.StartDebuggerRequest', null, global);
|
|
26
29
|
/**
|
|
27
30
|
* Generated by JsPbCodeGenerator.
|
|
28
31
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -128,6 +131,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
128
131
|
*/
|
|
129
132
|
proto.pulumirpc.SetRootResourceResponse.displayName = 'proto.pulumirpc.SetRootResourceResponse';
|
|
130
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* Generated by JsPbCodeGenerator.
|
|
136
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
137
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
138
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
139
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
140
|
+
* valid.
|
|
141
|
+
* @extends {jspb.Message}
|
|
142
|
+
* @constructor
|
|
143
|
+
*/
|
|
144
|
+
proto.pulumirpc.StartDebuggerRequest = function(opt_data) {
|
|
145
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
146
|
+
};
|
|
147
|
+
goog.inherits(proto.pulumirpc.StartDebuggerRequest, jspb.Message);
|
|
148
|
+
if (goog.DEBUG && !COMPILED) {
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
* @override
|
|
152
|
+
*/
|
|
153
|
+
proto.pulumirpc.StartDebuggerRequest.displayName = 'proto.pulumirpc.StartDebuggerRequest';
|
|
154
|
+
}
|
|
131
155
|
|
|
132
156
|
|
|
133
157
|
|
|
@@ -840,6 +864,187 @@ proto.pulumirpc.SetRootResourceResponse.serializeBinaryToWriter = function(messa
|
|
|
840
864
|
};
|
|
841
865
|
|
|
842
866
|
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
871
|
+
/**
|
|
872
|
+
* Creates an object representation of this proto.
|
|
873
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
874
|
+
* Optional fields that are not set will be set to undefined.
|
|
875
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
876
|
+
* For the list of reserved names please see:
|
|
877
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
878
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
879
|
+
* JSPB instance for transitional soy proto support:
|
|
880
|
+
* http://goto/soy-param-migration
|
|
881
|
+
* @return {!Object}
|
|
882
|
+
*/
|
|
883
|
+
proto.pulumirpc.StartDebuggerRequest.prototype.toObject = function(opt_includeInstance) {
|
|
884
|
+
return proto.pulumirpc.StartDebuggerRequest.toObject(opt_includeInstance, this);
|
|
885
|
+
};
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
/**
|
|
889
|
+
* Static version of the {@see toObject} method.
|
|
890
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
891
|
+
* the JSPB instance for transitional soy proto support:
|
|
892
|
+
* http://goto/soy-param-migration
|
|
893
|
+
* @param {!proto.pulumirpc.StartDebuggerRequest} msg The msg instance to transform.
|
|
894
|
+
* @return {!Object}
|
|
895
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
896
|
+
*/
|
|
897
|
+
proto.pulumirpc.StartDebuggerRequest.toObject = function(includeInstance, msg) {
|
|
898
|
+
var f, obj = {
|
|
899
|
+
config: (f = msg.getConfig()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
900
|
+
message: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
901
|
+
};
|
|
902
|
+
|
|
903
|
+
if (includeInstance) {
|
|
904
|
+
obj.$jspbMessageInstance = msg;
|
|
905
|
+
}
|
|
906
|
+
return obj;
|
|
907
|
+
};
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
/**
|
|
912
|
+
* Deserializes binary data (in protobuf wire format).
|
|
913
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
914
|
+
* @return {!proto.pulumirpc.StartDebuggerRequest}
|
|
915
|
+
*/
|
|
916
|
+
proto.pulumirpc.StartDebuggerRequest.deserializeBinary = function(bytes) {
|
|
917
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
918
|
+
var msg = new proto.pulumirpc.StartDebuggerRequest;
|
|
919
|
+
return proto.pulumirpc.StartDebuggerRequest.deserializeBinaryFromReader(msg, reader);
|
|
920
|
+
};
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
/**
|
|
924
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
925
|
+
* given reader into the given message object.
|
|
926
|
+
* @param {!proto.pulumirpc.StartDebuggerRequest} msg The message object to deserialize into.
|
|
927
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
928
|
+
* @return {!proto.pulumirpc.StartDebuggerRequest}
|
|
929
|
+
*/
|
|
930
|
+
proto.pulumirpc.StartDebuggerRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
931
|
+
while (reader.nextField()) {
|
|
932
|
+
if (reader.isEndGroup()) {
|
|
933
|
+
break;
|
|
934
|
+
}
|
|
935
|
+
var field = reader.getFieldNumber();
|
|
936
|
+
switch (field) {
|
|
937
|
+
case 1:
|
|
938
|
+
var value = new google_protobuf_struct_pb.Struct;
|
|
939
|
+
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
|
|
940
|
+
msg.setConfig(value);
|
|
941
|
+
break;
|
|
942
|
+
case 2:
|
|
943
|
+
var value = /** @type {string} */ (reader.readString());
|
|
944
|
+
msg.setMessage(value);
|
|
945
|
+
break;
|
|
946
|
+
default:
|
|
947
|
+
reader.skipField();
|
|
948
|
+
break;
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
return msg;
|
|
952
|
+
};
|
|
953
|
+
|
|
954
|
+
|
|
955
|
+
/**
|
|
956
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
957
|
+
* @return {!Uint8Array}
|
|
958
|
+
*/
|
|
959
|
+
proto.pulumirpc.StartDebuggerRequest.prototype.serializeBinary = function() {
|
|
960
|
+
var writer = new jspb.BinaryWriter();
|
|
961
|
+
proto.pulumirpc.StartDebuggerRequest.serializeBinaryToWriter(this, writer);
|
|
962
|
+
return writer.getResultBuffer();
|
|
963
|
+
};
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
/**
|
|
967
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
968
|
+
* format), writing to the given BinaryWriter.
|
|
969
|
+
* @param {!proto.pulumirpc.StartDebuggerRequest} message
|
|
970
|
+
* @param {!jspb.BinaryWriter} writer
|
|
971
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
972
|
+
*/
|
|
973
|
+
proto.pulumirpc.StartDebuggerRequest.serializeBinaryToWriter = function(message, writer) {
|
|
974
|
+
var f = undefined;
|
|
975
|
+
f = message.getConfig();
|
|
976
|
+
if (f != null) {
|
|
977
|
+
writer.writeMessage(
|
|
978
|
+
1,
|
|
979
|
+
f,
|
|
980
|
+
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
|
|
981
|
+
);
|
|
982
|
+
}
|
|
983
|
+
f = message.getMessage();
|
|
984
|
+
if (f.length > 0) {
|
|
985
|
+
writer.writeString(
|
|
986
|
+
2,
|
|
987
|
+
f
|
|
988
|
+
);
|
|
989
|
+
}
|
|
990
|
+
};
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
/**
|
|
994
|
+
* optional google.protobuf.Struct config = 1;
|
|
995
|
+
* @return {?proto.google.protobuf.Struct}
|
|
996
|
+
*/
|
|
997
|
+
proto.pulumirpc.StartDebuggerRequest.prototype.getConfig = function() {
|
|
998
|
+
return /** @type{?proto.google.protobuf.Struct} */ (
|
|
999
|
+
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 1));
|
|
1000
|
+
};
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
/**
|
|
1004
|
+
* @param {?proto.google.protobuf.Struct|undefined} value
|
|
1005
|
+
* @return {!proto.pulumirpc.StartDebuggerRequest} returns this
|
|
1006
|
+
*/
|
|
1007
|
+
proto.pulumirpc.StartDebuggerRequest.prototype.setConfig = function(value) {
|
|
1008
|
+
return jspb.Message.setWrapperField(this, 1, value);
|
|
1009
|
+
};
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
/**
|
|
1013
|
+
* Clears the message field making it undefined.
|
|
1014
|
+
* @return {!proto.pulumirpc.StartDebuggerRequest} returns this
|
|
1015
|
+
*/
|
|
1016
|
+
proto.pulumirpc.StartDebuggerRequest.prototype.clearConfig = function() {
|
|
1017
|
+
return this.setConfig(undefined);
|
|
1018
|
+
};
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+
/**
|
|
1022
|
+
* Returns whether this field is set.
|
|
1023
|
+
* @return {boolean}
|
|
1024
|
+
*/
|
|
1025
|
+
proto.pulumirpc.StartDebuggerRequest.prototype.hasConfig = function() {
|
|
1026
|
+
return jspb.Message.getField(this, 1) != null;
|
|
1027
|
+
};
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
/**
|
|
1031
|
+
* optional string message = 2;
|
|
1032
|
+
* @return {string}
|
|
1033
|
+
*/
|
|
1034
|
+
proto.pulumirpc.StartDebuggerRequest.prototype.getMessage = function() {
|
|
1035
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
1036
|
+
};
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
/**
|
|
1040
|
+
* @param {string} value
|
|
1041
|
+
* @return {!proto.pulumirpc.StartDebuggerRequest} returns this
|
|
1042
|
+
*/
|
|
1043
|
+
proto.pulumirpc.StartDebuggerRequest.prototype.setMessage = function(value) {
|
|
1044
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
1045
|
+
};
|
|
1046
|
+
|
|
1047
|
+
|
|
843
1048
|
/**
|
|
844
1049
|
* @enum {number}
|
|
845
1050
|
*/
|
package/proto/language_pb.d.ts
CHANGED
|
@@ -269,6 +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
|
+
getStartDebugger(): boolean;
|
|
273
|
+
setStartDebugger(value: boolean): RunRequest;
|
|
272
274
|
|
|
273
275
|
serializeBinary(): Uint8Array;
|
|
274
276
|
toObject(includeInstance?: boolean): RunRequest.AsObject;
|
|
@@ -298,6 +300,7 @@ export namespace RunRequest {
|
|
|
298
300
|
configpropertymap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
299
301
|
info?: ProgramInfo.AsObject,
|
|
300
302
|
loaderTarget: string,
|
|
303
|
+
startDebugger: boolean,
|
|
301
304
|
}
|
|
302
305
|
}
|
|
303
306
|
|
package/proto/language_pb.js
CHANGED
|
@@ -2227,7 +2227,8 @@ proto.pulumirpc.RunRequest.toObject = function(includeInstance, msg) {
|
|
|
2227
2227
|
organization: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
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
|
-
loaderTarget: jspb.Message.getFieldWithDefault(msg, 15, "")
|
|
2230
|
+
loaderTarget: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
2231
|
+
startDebugger: jspb.Message.getBooleanFieldWithDefault(msg, 16, false)
|
|
2231
2232
|
};
|
|
2232
2233
|
|
|
2233
2234
|
if (includeInstance) {
|
|
@@ -2328,6 +2329,10 @@ proto.pulumirpc.RunRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
2328
2329
|
var value = /** @type {string} */ (reader.readString());
|
|
2329
2330
|
msg.setLoaderTarget(value);
|
|
2330
2331
|
break;
|
|
2332
|
+
case 16:
|
|
2333
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
2334
|
+
msg.setStartDebugger(value);
|
|
2335
|
+
break;
|
|
2331
2336
|
default:
|
|
2332
2337
|
reader.skipField();
|
|
2333
2338
|
break;
|
|
@@ -2461,6 +2466,13 @@ proto.pulumirpc.RunRequest.serializeBinaryToWriter = function(message, writer) {
|
|
|
2461
2466
|
f
|
|
2462
2467
|
);
|
|
2463
2468
|
}
|
|
2469
|
+
f = message.getStartDebugger();
|
|
2470
|
+
if (f) {
|
|
2471
|
+
writer.writeBool(
|
|
2472
|
+
16,
|
|
2473
|
+
f
|
|
2474
|
+
);
|
|
2475
|
+
}
|
|
2464
2476
|
};
|
|
2465
2477
|
|
|
2466
2478
|
|
|
@@ -2814,6 +2826,24 @@ proto.pulumirpc.RunRequest.prototype.setLoaderTarget = function(value) {
|
|
|
2814
2826
|
};
|
|
2815
2827
|
|
|
2816
2828
|
|
|
2829
|
+
/**
|
|
2830
|
+
* optional bool start_debugger = 16;
|
|
2831
|
+
* @return {boolean}
|
|
2832
|
+
*/
|
|
2833
|
+
proto.pulumirpc.RunRequest.prototype.getStartDebugger = function() {
|
|
2834
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 16, false));
|
|
2835
|
+
};
|
|
2836
|
+
|
|
2837
|
+
|
|
2838
|
+
/**
|
|
2839
|
+
* @param {boolean} value
|
|
2840
|
+
* @return {!proto.pulumirpc.RunRequest} returns this
|
|
2841
|
+
*/
|
|
2842
|
+
proto.pulumirpc.RunRequest.prototype.setStartDebugger = function(value) {
|
|
2843
|
+
return jspb.Message.setProto3BooleanField(this, 16, value);
|
|
2844
|
+
};
|
|
2845
|
+
|
|
2846
|
+
|
|
2817
2847
|
|
|
2818
2848
|
|
|
2819
2849
|
|
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.xd51c0bd";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|