@norskvideo/norsk-api 0.0.322
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/lib/manager_grpc_pb.d.ts +208 -0
- package/lib/manager_grpc_pb.js +278 -0
- package/lib/manager_pb.d.ts +1259 -0
- package/lib/manager_pb.js +1543 -0
- package/lib/manager_pb.js.map +1 -0
- package/lib/manager_pb.ts +2256 -0
- package/lib/media_grpc_pb.d.ts +923 -0
- package/lib/media_grpc_pb.js +1731 -0
- package/lib/media_pb.d.ts +10786 -0
- package/lib/media_pb.js +12181 -0
- package/lib/media_pb.js.map +1 -0
- package/lib/media_pb.ts +17647 -0
- package/lib/nodes_grpc_pb.js +1 -0
- package/lib/nodes_pb.d.ts +9 -0
- package/lib/shared/common_grpc_pb.js +1 -0
- package/lib/shared/common_pb.d.ts +187 -0
- package/lib/shared/common_pb.js +283 -0
- package/lib/shared/common_pb.js.map +1 -0
- package/lib/shared/common_pb.ts +334 -0
- package/lib/shared/health_grpc_pb.d.ts +56 -0
- package/lib/shared/health_grpc_pb.js +90 -0
- package/lib/shared/health_pb.d.ts +59 -0
- package/lib/shared/health_pb.js +111 -0
- package/lib/shared/health_pb.js.map +1 -0
- package/lib/shared/health_pb.ts +133 -0
- package/lib/worker_grpc_pb.d.ts +42 -0
- package/lib/worker_grpc_pb.js +46 -0
- package/lib/worker_pb.d.ts +277 -0
- package/lib/worker_pb.js +344 -0
- package/lib/worker_pb.js.map +1 -0
- package/lib/worker_pb.ts +492 -0
- package/package.json +25 -0
- package/tsconfig.json +20 -0
|
@@ -0,0 +1,1543 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @generated by protoc-gen-es v0.3.0 with parameter "target=ts"
|
|
3
|
+
// @generated from file manager.proto (package norsk.api.manager, syntax proto3)
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.NorskStatusEvent = exports.JobSearchRequest = exports.ManagerActivityStreamEvent = exports.InitialDataComplete = exports.ManagerActivityStreamRequest = exports.JobFilter = exports.DateFilter_Within = exports.DateFilter = exports.IdFilter = exports.TagFilter = exports.StopJobRequest = exports.StartJobRequest = exports.UpdatePhysicalNodeRequest = exports.CreateAwsNodeRequest = exports.NodeId = exports.JobId = exports.PhysicalNodeConnected = exports.NodeRunning = exports.NodeFailed = exports.NodeStopped = exports.NodeStopping = exports.NodeStarted = exports.NodeStarting = exports.CurrentJob = exports.JobInstanceFailed = exports.JobInstanceStopped = exports.JobInstanceStopping = exports.JobDueToStop = exports.JobInstanceStarted = exports.JobInstanceStarting = exports.JobDueToStart = exports.JobUpdated = exports.JobPending = exports.RunningJob = exports.PhysicalNode = exports.AwsRunningNode = exports.AwsNodeAddress = exports.AwsNode = exports.Job = exports.NpmPackage = exports.DockerContainer = exports.Location = exports.CustomLocation = exports.PublicHttpLocation = exports.AwsS3Location = exports.Hello = void 0;
|
|
8
|
+
const protobuf_1 = require("@bufbuild/protobuf");
|
|
9
|
+
const common_pb_js_1 = require("./shared/common_pb.js");
|
|
10
|
+
/**
|
|
11
|
+
* `Hello` is sent to the client at the start of a status channel, and gives
|
|
12
|
+
* information about the current Norsk runtime
|
|
13
|
+
*
|
|
14
|
+
* @generated from message norsk.api.manager.Hello
|
|
15
|
+
*/
|
|
16
|
+
class Hello extends protobuf_1.Message {
|
|
17
|
+
constructor(data) {
|
|
18
|
+
super();
|
|
19
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
20
|
+
}
|
|
21
|
+
static fromBinary(bytes, options) {
|
|
22
|
+
return new Hello().fromBinary(bytes, options);
|
|
23
|
+
}
|
|
24
|
+
static fromJson(jsonValue, options) {
|
|
25
|
+
return new Hello().fromJson(jsonValue, options);
|
|
26
|
+
}
|
|
27
|
+
static fromJsonString(jsonString, options) {
|
|
28
|
+
return new Hello().fromJsonString(jsonString, options);
|
|
29
|
+
}
|
|
30
|
+
static equals(a, b) {
|
|
31
|
+
return protobuf_1.proto3.util.equals(Hello, a, b);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.Hello = Hello;
|
|
35
|
+
Hello.runtime = protobuf_1.proto3;
|
|
36
|
+
Hello.typeName = "norsk.api.manager.Hello";
|
|
37
|
+
Hello.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
38
|
+
{ no: 1, name: "version", kind: "message", T: common_pb_js_1.Version },
|
|
39
|
+
]);
|
|
40
|
+
/**
|
|
41
|
+
* @generated from message norsk.api.manager.AwsS3Location
|
|
42
|
+
*/
|
|
43
|
+
class AwsS3Location extends protobuf_1.Message {
|
|
44
|
+
constructor(data) {
|
|
45
|
+
super();
|
|
46
|
+
/**
|
|
47
|
+
* @generated from field: string url = 1;
|
|
48
|
+
*/
|
|
49
|
+
this.url = "";
|
|
50
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
51
|
+
}
|
|
52
|
+
static fromBinary(bytes, options) {
|
|
53
|
+
return new AwsS3Location().fromBinary(bytes, options);
|
|
54
|
+
}
|
|
55
|
+
static fromJson(jsonValue, options) {
|
|
56
|
+
return new AwsS3Location().fromJson(jsonValue, options);
|
|
57
|
+
}
|
|
58
|
+
static fromJsonString(jsonString, options) {
|
|
59
|
+
return new AwsS3Location().fromJsonString(jsonString, options);
|
|
60
|
+
}
|
|
61
|
+
static equals(a, b) {
|
|
62
|
+
return protobuf_1.proto3.util.equals(AwsS3Location, a, b);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.AwsS3Location = AwsS3Location;
|
|
66
|
+
AwsS3Location.runtime = protobuf_1.proto3;
|
|
67
|
+
AwsS3Location.typeName = "norsk.api.manager.AwsS3Location";
|
|
68
|
+
AwsS3Location.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
69
|
+
{ no: 1, name: "url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
70
|
+
]);
|
|
71
|
+
/**
|
|
72
|
+
* @generated from message norsk.api.manager.PublicHttpLocation
|
|
73
|
+
*/
|
|
74
|
+
class PublicHttpLocation extends protobuf_1.Message {
|
|
75
|
+
constructor(data) {
|
|
76
|
+
super();
|
|
77
|
+
/**
|
|
78
|
+
* @generated from field: string url = 1;
|
|
79
|
+
*/
|
|
80
|
+
this.url = "";
|
|
81
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
82
|
+
}
|
|
83
|
+
static fromBinary(bytes, options) {
|
|
84
|
+
return new PublicHttpLocation().fromBinary(bytes, options);
|
|
85
|
+
}
|
|
86
|
+
static fromJson(jsonValue, options) {
|
|
87
|
+
return new PublicHttpLocation().fromJson(jsonValue, options);
|
|
88
|
+
}
|
|
89
|
+
static fromJsonString(jsonString, options) {
|
|
90
|
+
return new PublicHttpLocation().fromJsonString(jsonString, options);
|
|
91
|
+
}
|
|
92
|
+
static equals(a, b) {
|
|
93
|
+
return protobuf_1.proto3.util.equals(PublicHttpLocation, a, b);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
exports.PublicHttpLocation = PublicHttpLocation;
|
|
97
|
+
PublicHttpLocation.runtime = protobuf_1.proto3;
|
|
98
|
+
PublicHttpLocation.typeName = "norsk.api.manager.PublicHttpLocation";
|
|
99
|
+
PublicHttpLocation.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
100
|
+
{ no: 1, name: "url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
101
|
+
]);
|
|
102
|
+
/**
|
|
103
|
+
* @generated from message norsk.api.manager.CustomLocation
|
|
104
|
+
*/
|
|
105
|
+
class CustomLocation extends protobuf_1.Message {
|
|
106
|
+
constructor(data) {
|
|
107
|
+
super();
|
|
108
|
+
/**
|
|
109
|
+
* @generated from oneof norsk.api.manager.CustomLocation.script
|
|
110
|
+
*/
|
|
111
|
+
this.script = { case: undefined };
|
|
112
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
113
|
+
}
|
|
114
|
+
static fromBinary(bytes, options) {
|
|
115
|
+
return new CustomLocation().fromBinary(bytes, options);
|
|
116
|
+
}
|
|
117
|
+
static fromJson(jsonValue, options) {
|
|
118
|
+
return new CustomLocation().fromJson(jsonValue, options);
|
|
119
|
+
}
|
|
120
|
+
static fromJsonString(jsonString, options) {
|
|
121
|
+
return new CustomLocation().fromJsonString(jsonString, options);
|
|
122
|
+
}
|
|
123
|
+
static equals(a, b) {
|
|
124
|
+
return protobuf_1.proto3.util.equals(CustomLocation, a, b);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
exports.CustomLocation = CustomLocation;
|
|
128
|
+
CustomLocation.runtime = protobuf_1.proto3;
|
|
129
|
+
CustomLocation.typeName = "norsk.api.manager.CustomLocation";
|
|
130
|
+
CustomLocation.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
131
|
+
{ no: 1, name: "aws_s3_location", kind: "message", T: AwsS3Location, oneof: "script" },
|
|
132
|
+
{ no: 2, name: "http_location", kind: "message", T: PublicHttpLocation, oneof: "script" },
|
|
133
|
+
]);
|
|
134
|
+
/**
|
|
135
|
+
* @generated from message norsk.api.manager.Location
|
|
136
|
+
*/
|
|
137
|
+
class Location extends protobuf_1.Message {
|
|
138
|
+
constructor(data) {
|
|
139
|
+
super();
|
|
140
|
+
/**
|
|
141
|
+
* @generated from oneof norsk.api.manager.Location.location
|
|
142
|
+
*/
|
|
143
|
+
this.location = { case: undefined };
|
|
144
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
145
|
+
}
|
|
146
|
+
static fromBinary(bytes, options) {
|
|
147
|
+
return new Location().fromBinary(bytes, options);
|
|
148
|
+
}
|
|
149
|
+
static fromJson(jsonValue, options) {
|
|
150
|
+
return new Location().fromJson(jsonValue, options);
|
|
151
|
+
}
|
|
152
|
+
static fromJsonString(jsonString, options) {
|
|
153
|
+
return new Location().fromJsonString(jsonString, options);
|
|
154
|
+
}
|
|
155
|
+
static equals(a, b) {
|
|
156
|
+
return protobuf_1.proto3.util.equals(Location, a, b);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
exports.Location = Location;
|
|
160
|
+
Location.runtime = protobuf_1.proto3;
|
|
161
|
+
Location.typeName = "norsk.api.manager.Location";
|
|
162
|
+
Location.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
163
|
+
{ no: 1, name: "aws_s3_location", kind: "message", T: AwsS3Location, oneof: "location" },
|
|
164
|
+
{ no: 2, name: "http_location", kind: "message", T: PublicHttpLocation, oneof: "location" },
|
|
165
|
+
{ no: 3, name: "custom_location", kind: "message", T: CustomLocation, oneof: "location" },
|
|
166
|
+
]);
|
|
167
|
+
/**
|
|
168
|
+
* @generated from message norsk.api.manager.DockerContainer
|
|
169
|
+
*/
|
|
170
|
+
class DockerContainer extends protobuf_1.Message {
|
|
171
|
+
constructor(data) {
|
|
172
|
+
super();
|
|
173
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
174
|
+
}
|
|
175
|
+
static fromBinary(bytes, options) {
|
|
176
|
+
return new DockerContainer().fromBinary(bytes, options);
|
|
177
|
+
}
|
|
178
|
+
static fromJson(jsonValue, options) {
|
|
179
|
+
return new DockerContainer().fromJson(jsonValue, options);
|
|
180
|
+
}
|
|
181
|
+
static fromJsonString(jsonString, options) {
|
|
182
|
+
return new DockerContainer().fromJsonString(jsonString, options);
|
|
183
|
+
}
|
|
184
|
+
static equals(a, b) {
|
|
185
|
+
return protobuf_1.proto3.util.equals(DockerContainer, a, b);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
exports.DockerContainer = DockerContainer;
|
|
189
|
+
DockerContainer.runtime = protobuf_1.proto3;
|
|
190
|
+
DockerContainer.typeName = "norsk.api.manager.DockerContainer";
|
|
191
|
+
DockerContainer.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
192
|
+
{ no: 1, name: "location", kind: "message", T: Location },
|
|
193
|
+
]);
|
|
194
|
+
/**
|
|
195
|
+
* @generated from message norsk.api.manager.NpmPackage
|
|
196
|
+
*/
|
|
197
|
+
class NpmPackage extends protobuf_1.Message {
|
|
198
|
+
constructor(data) {
|
|
199
|
+
super();
|
|
200
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
201
|
+
}
|
|
202
|
+
static fromBinary(bytes, options) {
|
|
203
|
+
return new NpmPackage().fromBinary(bytes, options);
|
|
204
|
+
}
|
|
205
|
+
static fromJson(jsonValue, options) {
|
|
206
|
+
return new NpmPackage().fromJson(jsonValue, options);
|
|
207
|
+
}
|
|
208
|
+
static fromJsonString(jsonString, options) {
|
|
209
|
+
return new NpmPackage().fromJsonString(jsonString, options);
|
|
210
|
+
}
|
|
211
|
+
static equals(a, b) {
|
|
212
|
+
return protobuf_1.proto3.util.equals(NpmPackage, a, b);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
exports.NpmPackage = NpmPackage;
|
|
216
|
+
NpmPackage.runtime = protobuf_1.proto3;
|
|
217
|
+
NpmPackage.typeName = "norsk.api.manager.NpmPackage";
|
|
218
|
+
NpmPackage.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
219
|
+
{ no: 1, name: "location", kind: "message", T: Location },
|
|
220
|
+
]);
|
|
221
|
+
/**
|
|
222
|
+
* @generated from message norsk.api.manager.Job
|
|
223
|
+
*/
|
|
224
|
+
class Job extends protobuf_1.Message {
|
|
225
|
+
constructor(data) {
|
|
226
|
+
super();
|
|
227
|
+
/**
|
|
228
|
+
* @generated from field: string id = 1;
|
|
229
|
+
*/
|
|
230
|
+
this.id = "";
|
|
231
|
+
/**
|
|
232
|
+
* @generated from field: string description = 2;
|
|
233
|
+
*/
|
|
234
|
+
this.description = "";
|
|
235
|
+
/**
|
|
236
|
+
* @generated from field: map<string, string> tags = 3;
|
|
237
|
+
*/
|
|
238
|
+
this.tags = {};
|
|
239
|
+
/**
|
|
240
|
+
* @generated from field: int64 current_hash = 6;
|
|
241
|
+
*/
|
|
242
|
+
this.currentHash = protobuf_1.protoInt64.zero;
|
|
243
|
+
/**
|
|
244
|
+
* @generated from field: string media_configuration = 7;
|
|
245
|
+
*/
|
|
246
|
+
this.mediaConfiguration = "";
|
|
247
|
+
/**
|
|
248
|
+
* @generated from field: string manager_configuration = 8;
|
|
249
|
+
*/
|
|
250
|
+
this.managerConfiguration = "";
|
|
251
|
+
/**
|
|
252
|
+
* @generated from field: string norsk_media_version = 9;
|
|
253
|
+
*/
|
|
254
|
+
this.norskMediaVersion = "";
|
|
255
|
+
/**
|
|
256
|
+
* @generated from oneof norsk.api.manager.Job.client_code
|
|
257
|
+
*/
|
|
258
|
+
this.clientCode = { case: undefined };
|
|
259
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
260
|
+
}
|
|
261
|
+
static fromBinary(bytes, options) {
|
|
262
|
+
return new Job().fromBinary(bytes, options);
|
|
263
|
+
}
|
|
264
|
+
static fromJson(jsonValue, options) {
|
|
265
|
+
return new Job().fromJson(jsonValue, options);
|
|
266
|
+
}
|
|
267
|
+
static fromJsonString(jsonString, options) {
|
|
268
|
+
return new Job().fromJsonString(jsonString, options);
|
|
269
|
+
}
|
|
270
|
+
static equals(a, b) {
|
|
271
|
+
return protobuf_1.proto3.util.equals(Job, a, b);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
exports.Job = Job;
|
|
275
|
+
Job.runtime = protobuf_1.proto3;
|
|
276
|
+
Job.typeName = "norsk.api.manager.Job";
|
|
277
|
+
Job.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
278
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
279
|
+
{ no: 2, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
280
|
+
{ no: 3, name: "tags", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "scalar", T: 9 /* ScalarType.STRING */ } },
|
|
281
|
+
{ no: 4, name: "start_date_time", kind: "message", T: protobuf_1.Timestamp },
|
|
282
|
+
{ no: 5, name: "end_date_time", kind: "message", T: protobuf_1.Timestamp },
|
|
283
|
+
{ no: 6, name: "current_hash", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
|
|
284
|
+
{ no: 7, name: "media_configuration", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
285
|
+
{ no: 8, name: "manager_configuration", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
286
|
+
{ no: 9, name: "norsk_media_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
287
|
+
{ no: 10, name: "docker", kind: "message", T: DockerContainer, oneof: "client_code" },
|
|
288
|
+
{ no: 11, name: "npm", kind: "message", T: NpmPackage, oneof: "client_code" },
|
|
289
|
+
]);
|
|
290
|
+
/**
|
|
291
|
+
* @generated from message norsk.api.manager.AwsNode
|
|
292
|
+
*/
|
|
293
|
+
class AwsNode extends protobuf_1.Message {
|
|
294
|
+
constructor(data) {
|
|
295
|
+
super();
|
|
296
|
+
/**
|
|
297
|
+
* @generated from field: string id = 1;
|
|
298
|
+
*/
|
|
299
|
+
this.id = "";
|
|
300
|
+
/**
|
|
301
|
+
* @generated from field: map<string, string> tags = 2;
|
|
302
|
+
*/
|
|
303
|
+
this.tags = {};
|
|
304
|
+
/**
|
|
305
|
+
* @generated from field: string instance_type = 3;
|
|
306
|
+
*/
|
|
307
|
+
this.instanceType = "";
|
|
308
|
+
/**
|
|
309
|
+
* @generated from field: string region = 4;
|
|
310
|
+
*/
|
|
311
|
+
this.region = "";
|
|
312
|
+
/**
|
|
313
|
+
* @generated from field: string az = 5;
|
|
314
|
+
*/
|
|
315
|
+
this.az = "";
|
|
316
|
+
/**
|
|
317
|
+
* @generated from field: string daemon_version = 7;
|
|
318
|
+
*/
|
|
319
|
+
this.daemonVersion = "";
|
|
320
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
321
|
+
}
|
|
322
|
+
static fromBinary(bytes, options) {
|
|
323
|
+
return new AwsNode().fromBinary(bytes, options);
|
|
324
|
+
}
|
|
325
|
+
static fromJson(jsonValue, options) {
|
|
326
|
+
return new AwsNode().fromJson(jsonValue, options);
|
|
327
|
+
}
|
|
328
|
+
static fromJsonString(jsonString, options) {
|
|
329
|
+
return new AwsNode().fromJsonString(jsonString, options);
|
|
330
|
+
}
|
|
331
|
+
static equals(a, b) {
|
|
332
|
+
return protobuf_1.proto3.util.equals(AwsNode, a, b);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
exports.AwsNode = AwsNode;
|
|
336
|
+
AwsNode.runtime = protobuf_1.proto3;
|
|
337
|
+
AwsNode.typeName = "norsk.api.manager.AwsNode";
|
|
338
|
+
AwsNode.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
339
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
340
|
+
{ no: 2, name: "tags", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "scalar", T: 9 /* ScalarType.STRING */ } },
|
|
341
|
+
{ no: 3, name: "instance_type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
342
|
+
{ no: 4, name: "region", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
343
|
+
{ no: 5, name: "az", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
344
|
+
{ no: 6, name: "created_at", kind: "message", T: protobuf_1.Timestamp },
|
|
345
|
+
{ no: 7, name: "daemon_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
346
|
+
]);
|
|
347
|
+
/**
|
|
348
|
+
* @generated from message norsk.api.manager.AwsNodeAddress
|
|
349
|
+
*/
|
|
350
|
+
class AwsNodeAddress extends protobuf_1.Message {
|
|
351
|
+
constructor(data) {
|
|
352
|
+
super();
|
|
353
|
+
/**
|
|
354
|
+
* @generated from field: string public_dns_name = 1;
|
|
355
|
+
*/
|
|
356
|
+
this.publicDnsName = "";
|
|
357
|
+
/**
|
|
358
|
+
* @generated from field: string private_dns_name = 2;
|
|
359
|
+
*/
|
|
360
|
+
this.privateDnsName = "";
|
|
361
|
+
/**
|
|
362
|
+
* @generated from field: string private_ip_address = 3;
|
|
363
|
+
*/
|
|
364
|
+
this.privateIpAddress = "";
|
|
365
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
366
|
+
}
|
|
367
|
+
static fromBinary(bytes, options) {
|
|
368
|
+
return new AwsNodeAddress().fromBinary(bytes, options);
|
|
369
|
+
}
|
|
370
|
+
static fromJson(jsonValue, options) {
|
|
371
|
+
return new AwsNodeAddress().fromJson(jsonValue, options);
|
|
372
|
+
}
|
|
373
|
+
static fromJsonString(jsonString, options) {
|
|
374
|
+
return new AwsNodeAddress().fromJsonString(jsonString, options);
|
|
375
|
+
}
|
|
376
|
+
static equals(a, b) {
|
|
377
|
+
return protobuf_1.proto3.util.equals(AwsNodeAddress, a, b);
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
exports.AwsNodeAddress = AwsNodeAddress;
|
|
381
|
+
AwsNodeAddress.runtime = protobuf_1.proto3;
|
|
382
|
+
AwsNodeAddress.typeName = "norsk.api.manager.AwsNodeAddress";
|
|
383
|
+
AwsNodeAddress.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
384
|
+
{ no: 1, name: "public_dns_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
385
|
+
{ no: 2, name: "private_dns_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
386
|
+
{ no: 3, name: "private_ip_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
387
|
+
]);
|
|
388
|
+
/**
|
|
389
|
+
* @generated from message norsk.api.manager.AwsRunningNode
|
|
390
|
+
*/
|
|
391
|
+
class AwsRunningNode extends protobuf_1.Message {
|
|
392
|
+
constructor(data) {
|
|
393
|
+
super();
|
|
394
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
395
|
+
}
|
|
396
|
+
static fromBinary(bytes, options) {
|
|
397
|
+
return new AwsRunningNode().fromBinary(bytes, options);
|
|
398
|
+
}
|
|
399
|
+
static fromJson(jsonValue, options) {
|
|
400
|
+
return new AwsRunningNode().fromJson(jsonValue, options);
|
|
401
|
+
}
|
|
402
|
+
static fromJsonString(jsonString, options) {
|
|
403
|
+
return new AwsRunningNode().fromJsonString(jsonString, options);
|
|
404
|
+
}
|
|
405
|
+
static equals(a, b) {
|
|
406
|
+
return protobuf_1.proto3.util.equals(AwsRunningNode, a, b);
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
exports.AwsRunningNode = AwsRunningNode;
|
|
410
|
+
AwsRunningNode.runtime = protobuf_1.proto3;
|
|
411
|
+
AwsRunningNode.typeName = "norsk.api.manager.AwsRunningNode";
|
|
412
|
+
AwsRunningNode.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
413
|
+
{ no: 1, name: "node", kind: "message", T: AwsNode },
|
|
414
|
+
{ no: 2, name: "address", kind: "message", T: AwsNodeAddress },
|
|
415
|
+
]);
|
|
416
|
+
/**
|
|
417
|
+
* @generated from message norsk.api.manager.PhysicalNode
|
|
418
|
+
*/
|
|
419
|
+
class PhysicalNode extends protobuf_1.Message {
|
|
420
|
+
constructor(data) {
|
|
421
|
+
super();
|
|
422
|
+
/**
|
|
423
|
+
* @generated from field: string id = 1;
|
|
424
|
+
*/
|
|
425
|
+
this.id = "";
|
|
426
|
+
/**
|
|
427
|
+
* @generated from field: map<string, string> tags = 2;
|
|
428
|
+
*/
|
|
429
|
+
this.tags = {};
|
|
430
|
+
/**
|
|
431
|
+
* @generated from field: string ip_address = 3;
|
|
432
|
+
*/
|
|
433
|
+
this.ipAddress = "";
|
|
434
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
435
|
+
}
|
|
436
|
+
static fromBinary(bytes, options) {
|
|
437
|
+
return new PhysicalNode().fromBinary(bytes, options);
|
|
438
|
+
}
|
|
439
|
+
static fromJson(jsonValue, options) {
|
|
440
|
+
return new PhysicalNode().fromJson(jsonValue, options);
|
|
441
|
+
}
|
|
442
|
+
static fromJsonString(jsonString, options) {
|
|
443
|
+
return new PhysicalNode().fromJsonString(jsonString, options);
|
|
444
|
+
}
|
|
445
|
+
static equals(a, b) {
|
|
446
|
+
return protobuf_1.proto3.util.equals(PhysicalNode, a, b);
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
exports.PhysicalNode = PhysicalNode;
|
|
450
|
+
PhysicalNode.runtime = protobuf_1.proto3;
|
|
451
|
+
PhysicalNode.typeName = "norsk.api.manager.PhysicalNode";
|
|
452
|
+
PhysicalNode.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
453
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
454
|
+
{ no: 2, name: "tags", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "scalar", T: 9 /* ScalarType.STRING */ } },
|
|
455
|
+
{ no: 3, name: "ip_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
456
|
+
]);
|
|
457
|
+
/**
|
|
458
|
+
* @generated from message norsk.api.manager.RunningJob
|
|
459
|
+
*/
|
|
460
|
+
class RunningJob extends protobuf_1.Message {
|
|
461
|
+
constructor(data) {
|
|
462
|
+
super();
|
|
463
|
+
/**
|
|
464
|
+
* @generated from field: string role = 2;
|
|
465
|
+
*/
|
|
466
|
+
this.role = "";
|
|
467
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
468
|
+
}
|
|
469
|
+
static fromBinary(bytes, options) {
|
|
470
|
+
return new RunningJob().fromBinary(bytes, options);
|
|
471
|
+
}
|
|
472
|
+
static fromJson(jsonValue, options) {
|
|
473
|
+
return new RunningJob().fromJson(jsonValue, options);
|
|
474
|
+
}
|
|
475
|
+
static fromJsonString(jsonString, options) {
|
|
476
|
+
return new RunningJob().fromJsonString(jsonString, options);
|
|
477
|
+
}
|
|
478
|
+
static equals(a, b) {
|
|
479
|
+
return protobuf_1.proto3.util.equals(RunningJob, a, b);
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
exports.RunningJob = RunningJob;
|
|
483
|
+
RunningJob.runtime = protobuf_1.proto3;
|
|
484
|
+
RunningJob.typeName = "norsk.api.manager.RunningJob";
|
|
485
|
+
RunningJob.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
486
|
+
{ no: 1, name: "job_id", kind: "message", T: JobId },
|
|
487
|
+
{ no: 2, name: "role", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
488
|
+
{ no: 3, name: "node_id", kind: "message", T: NodeId },
|
|
489
|
+
]);
|
|
490
|
+
/**
|
|
491
|
+
* @generated from message norsk.api.manager.JobPending
|
|
492
|
+
*/
|
|
493
|
+
class JobPending extends protobuf_1.Message {
|
|
494
|
+
constructor(data) {
|
|
495
|
+
super();
|
|
496
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
497
|
+
}
|
|
498
|
+
static fromBinary(bytes, options) {
|
|
499
|
+
return new JobPending().fromBinary(bytes, options);
|
|
500
|
+
}
|
|
501
|
+
static fromJson(jsonValue, options) {
|
|
502
|
+
return new JobPending().fromJson(jsonValue, options);
|
|
503
|
+
}
|
|
504
|
+
static fromJsonString(jsonString, options) {
|
|
505
|
+
return new JobPending().fromJsonString(jsonString, options);
|
|
506
|
+
}
|
|
507
|
+
static equals(a, b) {
|
|
508
|
+
return protobuf_1.proto3.util.equals(JobPending, a, b);
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
exports.JobPending = JobPending;
|
|
512
|
+
JobPending.runtime = protobuf_1.proto3;
|
|
513
|
+
JobPending.typeName = "norsk.api.manager.JobPending";
|
|
514
|
+
JobPending.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
515
|
+
{ no: 1, name: "job", kind: "message", T: Job },
|
|
516
|
+
]);
|
|
517
|
+
/**
|
|
518
|
+
* @generated from message norsk.api.manager.JobUpdated
|
|
519
|
+
*/
|
|
520
|
+
class JobUpdated extends protobuf_1.Message {
|
|
521
|
+
constructor(data) {
|
|
522
|
+
super();
|
|
523
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
524
|
+
}
|
|
525
|
+
static fromBinary(bytes, options) {
|
|
526
|
+
return new JobUpdated().fromBinary(bytes, options);
|
|
527
|
+
}
|
|
528
|
+
static fromJson(jsonValue, options) {
|
|
529
|
+
return new JobUpdated().fromJson(jsonValue, options);
|
|
530
|
+
}
|
|
531
|
+
static fromJsonString(jsonString, options) {
|
|
532
|
+
return new JobUpdated().fromJsonString(jsonString, options);
|
|
533
|
+
}
|
|
534
|
+
static equals(a, b) {
|
|
535
|
+
return protobuf_1.proto3.util.equals(JobUpdated, a, b);
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
exports.JobUpdated = JobUpdated;
|
|
539
|
+
JobUpdated.runtime = protobuf_1.proto3;
|
|
540
|
+
JobUpdated.typeName = "norsk.api.manager.JobUpdated";
|
|
541
|
+
JobUpdated.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
542
|
+
{ no: 1, name: "job", kind: "message", T: Job },
|
|
543
|
+
]);
|
|
544
|
+
/**
|
|
545
|
+
* @generated from message norsk.api.manager.JobDueToStart
|
|
546
|
+
*/
|
|
547
|
+
class JobDueToStart extends protobuf_1.Message {
|
|
548
|
+
constructor(data) {
|
|
549
|
+
super();
|
|
550
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
551
|
+
}
|
|
552
|
+
static fromBinary(bytes, options) {
|
|
553
|
+
return new JobDueToStart().fromBinary(bytes, options);
|
|
554
|
+
}
|
|
555
|
+
static fromJson(jsonValue, options) {
|
|
556
|
+
return new JobDueToStart().fromJson(jsonValue, options);
|
|
557
|
+
}
|
|
558
|
+
static fromJsonString(jsonString, options) {
|
|
559
|
+
return new JobDueToStart().fromJsonString(jsonString, options);
|
|
560
|
+
}
|
|
561
|
+
static equals(a, b) {
|
|
562
|
+
return protobuf_1.proto3.util.equals(JobDueToStart, a, b);
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
exports.JobDueToStart = JobDueToStart;
|
|
566
|
+
JobDueToStart.runtime = protobuf_1.proto3;
|
|
567
|
+
JobDueToStart.typeName = "norsk.api.manager.JobDueToStart";
|
|
568
|
+
JobDueToStart.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
569
|
+
{ no: 1, name: "job", kind: "message", T: Job },
|
|
570
|
+
]);
|
|
571
|
+
/**
|
|
572
|
+
* @generated from message norsk.api.manager.JobInstanceStarting
|
|
573
|
+
*/
|
|
574
|
+
class JobInstanceStarting extends protobuf_1.Message {
|
|
575
|
+
constructor(data) {
|
|
576
|
+
super();
|
|
577
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
578
|
+
}
|
|
579
|
+
static fromBinary(bytes, options) {
|
|
580
|
+
return new JobInstanceStarting().fromBinary(bytes, options);
|
|
581
|
+
}
|
|
582
|
+
static fromJson(jsonValue, options) {
|
|
583
|
+
return new JobInstanceStarting().fromJson(jsonValue, options);
|
|
584
|
+
}
|
|
585
|
+
static fromJsonString(jsonString, options) {
|
|
586
|
+
return new JobInstanceStarting().fromJsonString(jsonString, options);
|
|
587
|
+
}
|
|
588
|
+
static equals(a, b) {
|
|
589
|
+
return protobuf_1.proto3.util.equals(JobInstanceStarting, a, b);
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
exports.JobInstanceStarting = JobInstanceStarting;
|
|
593
|
+
JobInstanceStarting.runtime = protobuf_1.proto3;
|
|
594
|
+
JobInstanceStarting.typeName = "norsk.api.manager.JobInstanceStarting";
|
|
595
|
+
JobInstanceStarting.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
596
|
+
{ no: 1, name: "running_job", kind: "message", T: RunningJob },
|
|
597
|
+
]);
|
|
598
|
+
/**
|
|
599
|
+
* @generated from message norsk.api.manager.JobInstanceStarted
|
|
600
|
+
*/
|
|
601
|
+
class JobInstanceStarted extends protobuf_1.Message {
|
|
602
|
+
constructor(data) {
|
|
603
|
+
super();
|
|
604
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
605
|
+
}
|
|
606
|
+
static fromBinary(bytes, options) {
|
|
607
|
+
return new JobInstanceStarted().fromBinary(bytes, options);
|
|
608
|
+
}
|
|
609
|
+
static fromJson(jsonValue, options) {
|
|
610
|
+
return new JobInstanceStarted().fromJson(jsonValue, options);
|
|
611
|
+
}
|
|
612
|
+
static fromJsonString(jsonString, options) {
|
|
613
|
+
return new JobInstanceStarted().fromJsonString(jsonString, options);
|
|
614
|
+
}
|
|
615
|
+
static equals(a, b) {
|
|
616
|
+
return protobuf_1.proto3.util.equals(JobInstanceStarted, a, b);
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
exports.JobInstanceStarted = JobInstanceStarted;
|
|
620
|
+
JobInstanceStarted.runtime = protobuf_1.proto3;
|
|
621
|
+
JobInstanceStarted.typeName = "norsk.api.manager.JobInstanceStarted";
|
|
622
|
+
JobInstanceStarted.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
623
|
+
{ no: 1, name: "running_job", kind: "message", T: RunningJob },
|
|
624
|
+
]);
|
|
625
|
+
/**
|
|
626
|
+
* @generated from message norsk.api.manager.JobDueToStop
|
|
627
|
+
*/
|
|
628
|
+
class JobDueToStop extends protobuf_1.Message {
|
|
629
|
+
constructor(data) {
|
|
630
|
+
super();
|
|
631
|
+
/**
|
|
632
|
+
* @generated from field: repeated norsk.api.manager.RunningJob instances = 2;
|
|
633
|
+
*/
|
|
634
|
+
this.instances = [];
|
|
635
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
636
|
+
}
|
|
637
|
+
static fromBinary(bytes, options) {
|
|
638
|
+
return new JobDueToStop().fromBinary(bytes, options);
|
|
639
|
+
}
|
|
640
|
+
static fromJson(jsonValue, options) {
|
|
641
|
+
return new JobDueToStop().fromJson(jsonValue, options);
|
|
642
|
+
}
|
|
643
|
+
static fromJsonString(jsonString, options) {
|
|
644
|
+
return new JobDueToStop().fromJsonString(jsonString, options);
|
|
645
|
+
}
|
|
646
|
+
static equals(a, b) {
|
|
647
|
+
return protobuf_1.proto3.util.equals(JobDueToStop, a, b);
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
exports.JobDueToStop = JobDueToStop;
|
|
651
|
+
JobDueToStop.runtime = protobuf_1.proto3;
|
|
652
|
+
JobDueToStop.typeName = "norsk.api.manager.JobDueToStop";
|
|
653
|
+
JobDueToStop.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
654
|
+
{ no: 1, name: "job", kind: "message", T: Job },
|
|
655
|
+
{ no: 2, name: "instances", kind: "message", T: RunningJob, repeated: true },
|
|
656
|
+
]);
|
|
657
|
+
/**
|
|
658
|
+
* @generated from message norsk.api.manager.JobInstanceStopping
|
|
659
|
+
*/
|
|
660
|
+
class JobInstanceStopping extends protobuf_1.Message {
|
|
661
|
+
constructor(data) {
|
|
662
|
+
super();
|
|
663
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
664
|
+
}
|
|
665
|
+
static fromBinary(bytes, options) {
|
|
666
|
+
return new JobInstanceStopping().fromBinary(bytes, options);
|
|
667
|
+
}
|
|
668
|
+
static fromJson(jsonValue, options) {
|
|
669
|
+
return new JobInstanceStopping().fromJson(jsonValue, options);
|
|
670
|
+
}
|
|
671
|
+
static fromJsonString(jsonString, options) {
|
|
672
|
+
return new JobInstanceStopping().fromJsonString(jsonString, options);
|
|
673
|
+
}
|
|
674
|
+
static equals(a, b) {
|
|
675
|
+
return protobuf_1.proto3.util.equals(JobInstanceStopping, a, b);
|
|
676
|
+
}
|
|
677
|
+
}
|
|
678
|
+
exports.JobInstanceStopping = JobInstanceStopping;
|
|
679
|
+
JobInstanceStopping.runtime = protobuf_1.proto3;
|
|
680
|
+
JobInstanceStopping.typeName = "norsk.api.manager.JobInstanceStopping";
|
|
681
|
+
JobInstanceStopping.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
682
|
+
{ no: 1, name: "running_job", kind: "message", T: RunningJob },
|
|
683
|
+
]);
|
|
684
|
+
/**
|
|
685
|
+
* @generated from message norsk.api.manager.JobInstanceStopped
|
|
686
|
+
*/
|
|
687
|
+
class JobInstanceStopped extends protobuf_1.Message {
|
|
688
|
+
constructor(data) {
|
|
689
|
+
super();
|
|
690
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
691
|
+
}
|
|
692
|
+
static fromBinary(bytes, options) {
|
|
693
|
+
return new JobInstanceStopped().fromBinary(bytes, options);
|
|
694
|
+
}
|
|
695
|
+
static fromJson(jsonValue, options) {
|
|
696
|
+
return new JobInstanceStopped().fromJson(jsonValue, options);
|
|
697
|
+
}
|
|
698
|
+
static fromJsonString(jsonString, options) {
|
|
699
|
+
return new JobInstanceStopped().fromJsonString(jsonString, options);
|
|
700
|
+
}
|
|
701
|
+
static equals(a, b) {
|
|
702
|
+
return protobuf_1.proto3.util.equals(JobInstanceStopped, a, b);
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
exports.JobInstanceStopped = JobInstanceStopped;
|
|
706
|
+
JobInstanceStopped.runtime = protobuf_1.proto3;
|
|
707
|
+
JobInstanceStopped.typeName = "norsk.api.manager.JobInstanceStopped";
|
|
708
|
+
JobInstanceStopped.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
709
|
+
{ no: 1, name: "running_job", kind: "message", T: RunningJob },
|
|
710
|
+
]);
|
|
711
|
+
/**
|
|
712
|
+
* @generated from message norsk.api.manager.JobInstanceFailed
|
|
713
|
+
*/
|
|
714
|
+
class JobInstanceFailed extends protobuf_1.Message {
|
|
715
|
+
constructor(data) {
|
|
716
|
+
super();
|
|
717
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
718
|
+
}
|
|
719
|
+
static fromBinary(bytes, options) {
|
|
720
|
+
return new JobInstanceFailed().fromBinary(bytes, options);
|
|
721
|
+
}
|
|
722
|
+
static fromJson(jsonValue, options) {
|
|
723
|
+
return new JobInstanceFailed().fromJson(jsonValue, options);
|
|
724
|
+
}
|
|
725
|
+
static fromJsonString(jsonString, options) {
|
|
726
|
+
return new JobInstanceFailed().fromJsonString(jsonString, options);
|
|
727
|
+
}
|
|
728
|
+
static equals(a, b) {
|
|
729
|
+
return protobuf_1.proto3.util.equals(JobInstanceFailed, a, b);
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
exports.JobInstanceFailed = JobInstanceFailed;
|
|
733
|
+
JobInstanceFailed.runtime = protobuf_1.proto3;
|
|
734
|
+
JobInstanceFailed.typeName = "norsk.api.manager.JobInstanceFailed";
|
|
735
|
+
JobInstanceFailed.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
736
|
+
{ no: 1, name: "running_job", kind: "message", T: RunningJob },
|
|
737
|
+
]);
|
|
738
|
+
/**
|
|
739
|
+
* @generated from message norsk.api.manager.CurrentJob
|
|
740
|
+
*/
|
|
741
|
+
class CurrentJob extends protobuf_1.Message {
|
|
742
|
+
constructor(data) {
|
|
743
|
+
super();
|
|
744
|
+
/**
|
|
745
|
+
* @generated from field: repeated norsk.api.manager.RunningJob instances = 2;
|
|
746
|
+
*/
|
|
747
|
+
this.instances = [];
|
|
748
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
749
|
+
}
|
|
750
|
+
static fromBinary(bytes, options) {
|
|
751
|
+
return new CurrentJob().fromBinary(bytes, options);
|
|
752
|
+
}
|
|
753
|
+
static fromJson(jsonValue, options) {
|
|
754
|
+
return new CurrentJob().fromJson(jsonValue, options);
|
|
755
|
+
}
|
|
756
|
+
static fromJsonString(jsonString, options) {
|
|
757
|
+
return new CurrentJob().fromJsonString(jsonString, options);
|
|
758
|
+
}
|
|
759
|
+
static equals(a, b) {
|
|
760
|
+
return protobuf_1.proto3.util.equals(CurrentJob, a, b);
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
exports.CurrentJob = CurrentJob;
|
|
764
|
+
CurrentJob.runtime = protobuf_1.proto3;
|
|
765
|
+
CurrentJob.typeName = "norsk.api.manager.CurrentJob";
|
|
766
|
+
CurrentJob.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
767
|
+
{ no: 1, name: "job", kind: "message", T: Job },
|
|
768
|
+
{ no: 2, name: "instances", kind: "message", T: RunningJob, repeated: true },
|
|
769
|
+
]);
|
|
770
|
+
/**
|
|
771
|
+
* @generated from message norsk.api.manager.NodeStarting
|
|
772
|
+
*/
|
|
773
|
+
class NodeStarting extends protobuf_1.Message {
|
|
774
|
+
constructor(data) {
|
|
775
|
+
super();
|
|
776
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
777
|
+
}
|
|
778
|
+
static fromBinary(bytes, options) {
|
|
779
|
+
return new NodeStarting().fromBinary(bytes, options);
|
|
780
|
+
}
|
|
781
|
+
static fromJson(jsonValue, options) {
|
|
782
|
+
return new NodeStarting().fromJson(jsonValue, options);
|
|
783
|
+
}
|
|
784
|
+
static fromJsonString(jsonString, options) {
|
|
785
|
+
return new NodeStarting().fromJsonString(jsonString, options);
|
|
786
|
+
}
|
|
787
|
+
static equals(a, b) {
|
|
788
|
+
return protobuf_1.proto3.util.equals(NodeStarting, a, b);
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
exports.NodeStarting = NodeStarting;
|
|
792
|
+
NodeStarting.runtime = protobuf_1.proto3;
|
|
793
|
+
NodeStarting.typeName = "norsk.api.manager.NodeStarting";
|
|
794
|
+
NodeStarting.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
795
|
+
{ no: 1, name: "node_id", kind: "message", T: NodeId },
|
|
796
|
+
]);
|
|
797
|
+
/**
|
|
798
|
+
* @generated from message norsk.api.manager.NodeStarted
|
|
799
|
+
*/
|
|
800
|
+
class NodeStarted extends protobuf_1.Message {
|
|
801
|
+
constructor(data) {
|
|
802
|
+
super();
|
|
803
|
+
/**
|
|
804
|
+
* @generated from oneof norsk.api.manager.NodeStarted.node
|
|
805
|
+
*/
|
|
806
|
+
this.node = { case: undefined };
|
|
807
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
808
|
+
}
|
|
809
|
+
static fromBinary(bytes, options) {
|
|
810
|
+
return new NodeStarted().fromBinary(bytes, options);
|
|
811
|
+
}
|
|
812
|
+
static fromJson(jsonValue, options) {
|
|
813
|
+
return new NodeStarted().fromJson(jsonValue, options);
|
|
814
|
+
}
|
|
815
|
+
static fromJsonString(jsonString, options) {
|
|
816
|
+
return new NodeStarted().fromJsonString(jsonString, options);
|
|
817
|
+
}
|
|
818
|
+
static equals(a, b) {
|
|
819
|
+
return protobuf_1.proto3.util.equals(NodeStarted, a, b);
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
exports.NodeStarted = NodeStarted;
|
|
823
|
+
NodeStarted.runtime = protobuf_1.proto3;
|
|
824
|
+
NodeStarted.typeName = "norsk.api.manager.NodeStarted";
|
|
825
|
+
NodeStarted.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
826
|
+
{ no: 1, name: "aws_node", kind: "message", T: AwsRunningNode, oneof: "node" },
|
|
827
|
+
]);
|
|
828
|
+
/**
|
|
829
|
+
* @generated from message norsk.api.manager.NodeStopping
|
|
830
|
+
*/
|
|
831
|
+
class NodeStopping extends protobuf_1.Message {
|
|
832
|
+
constructor(data) {
|
|
833
|
+
super();
|
|
834
|
+
/**
|
|
835
|
+
* @generated from field: repeated norsk.api.manager.RunningJob instances = 2;
|
|
836
|
+
*/
|
|
837
|
+
this.instances = [];
|
|
838
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
839
|
+
}
|
|
840
|
+
static fromBinary(bytes, options) {
|
|
841
|
+
return new NodeStopping().fromBinary(bytes, options);
|
|
842
|
+
}
|
|
843
|
+
static fromJson(jsonValue, options) {
|
|
844
|
+
return new NodeStopping().fromJson(jsonValue, options);
|
|
845
|
+
}
|
|
846
|
+
static fromJsonString(jsonString, options) {
|
|
847
|
+
return new NodeStopping().fromJsonString(jsonString, options);
|
|
848
|
+
}
|
|
849
|
+
static equals(a, b) {
|
|
850
|
+
return protobuf_1.proto3.util.equals(NodeStopping, a, b);
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
exports.NodeStopping = NodeStopping;
|
|
854
|
+
NodeStopping.runtime = protobuf_1.proto3;
|
|
855
|
+
NodeStopping.typeName = "norsk.api.manager.NodeStopping";
|
|
856
|
+
NodeStopping.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
857
|
+
{ no: 1, name: "node_id", kind: "message", T: NodeId },
|
|
858
|
+
{ no: 2, name: "instances", kind: "message", T: RunningJob, repeated: true },
|
|
859
|
+
]);
|
|
860
|
+
/**
|
|
861
|
+
* @generated from message norsk.api.manager.NodeStopped
|
|
862
|
+
*/
|
|
863
|
+
class NodeStopped extends protobuf_1.Message {
|
|
864
|
+
constructor(data) {
|
|
865
|
+
super();
|
|
866
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
867
|
+
}
|
|
868
|
+
static fromBinary(bytes, options) {
|
|
869
|
+
return new NodeStopped().fromBinary(bytes, options);
|
|
870
|
+
}
|
|
871
|
+
static fromJson(jsonValue, options) {
|
|
872
|
+
return new NodeStopped().fromJson(jsonValue, options);
|
|
873
|
+
}
|
|
874
|
+
static fromJsonString(jsonString, options) {
|
|
875
|
+
return new NodeStopped().fromJsonString(jsonString, options);
|
|
876
|
+
}
|
|
877
|
+
static equals(a, b) {
|
|
878
|
+
return protobuf_1.proto3.util.equals(NodeStopped, a, b);
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
exports.NodeStopped = NodeStopped;
|
|
882
|
+
NodeStopped.runtime = protobuf_1.proto3;
|
|
883
|
+
NodeStopped.typeName = "norsk.api.manager.NodeStopped";
|
|
884
|
+
NodeStopped.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
885
|
+
{ no: 1, name: "node_id", kind: "message", T: NodeId },
|
|
886
|
+
]);
|
|
887
|
+
/**
|
|
888
|
+
* @generated from message norsk.api.manager.NodeFailed
|
|
889
|
+
*/
|
|
890
|
+
class NodeFailed extends protobuf_1.Message {
|
|
891
|
+
constructor(data) {
|
|
892
|
+
super();
|
|
893
|
+
/**
|
|
894
|
+
* @generated from field: repeated norsk.api.manager.RunningJob instances = 2;
|
|
895
|
+
*/
|
|
896
|
+
this.instances = [];
|
|
897
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
898
|
+
}
|
|
899
|
+
static fromBinary(bytes, options) {
|
|
900
|
+
return new NodeFailed().fromBinary(bytes, options);
|
|
901
|
+
}
|
|
902
|
+
static fromJson(jsonValue, options) {
|
|
903
|
+
return new NodeFailed().fromJson(jsonValue, options);
|
|
904
|
+
}
|
|
905
|
+
static fromJsonString(jsonString, options) {
|
|
906
|
+
return new NodeFailed().fromJsonString(jsonString, options);
|
|
907
|
+
}
|
|
908
|
+
static equals(a, b) {
|
|
909
|
+
return protobuf_1.proto3.util.equals(NodeFailed, a, b);
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
exports.NodeFailed = NodeFailed;
|
|
913
|
+
NodeFailed.runtime = protobuf_1.proto3;
|
|
914
|
+
NodeFailed.typeName = "norsk.api.manager.NodeFailed";
|
|
915
|
+
NodeFailed.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
916
|
+
{ no: 1, name: "node_id", kind: "message", T: NodeId },
|
|
917
|
+
{ no: 2, name: "instances", kind: "message", T: RunningJob, repeated: true },
|
|
918
|
+
]);
|
|
919
|
+
/**
|
|
920
|
+
* @generated from message norsk.api.manager.NodeRunning
|
|
921
|
+
*/
|
|
922
|
+
class NodeRunning extends protobuf_1.Message {
|
|
923
|
+
constructor(data) {
|
|
924
|
+
super();
|
|
925
|
+
/**
|
|
926
|
+
* @generated from oneof norsk.api.manager.NodeRunning.node
|
|
927
|
+
*/
|
|
928
|
+
this.node = { case: undefined };
|
|
929
|
+
/**
|
|
930
|
+
* @generated from field: repeated norsk.api.manager.RunningJob instances = 3;
|
|
931
|
+
*/
|
|
932
|
+
this.instances = [];
|
|
933
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
934
|
+
}
|
|
935
|
+
static fromBinary(bytes, options) {
|
|
936
|
+
return new NodeRunning().fromBinary(bytes, options);
|
|
937
|
+
}
|
|
938
|
+
static fromJson(jsonValue, options) {
|
|
939
|
+
return new NodeRunning().fromJson(jsonValue, options);
|
|
940
|
+
}
|
|
941
|
+
static fromJsonString(jsonString, options) {
|
|
942
|
+
return new NodeRunning().fromJsonString(jsonString, options);
|
|
943
|
+
}
|
|
944
|
+
static equals(a, b) {
|
|
945
|
+
return protobuf_1.proto3.util.equals(NodeRunning, a, b);
|
|
946
|
+
}
|
|
947
|
+
}
|
|
948
|
+
exports.NodeRunning = NodeRunning;
|
|
949
|
+
NodeRunning.runtime = protobuf_1.proto3;
|
|
950
|
+
NodeRunning.typeName = "norsk.api.manager.NodeRunning";
|
|
951
|
+
NodeRunning.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
952
|
+
{ no: 1, name: "aws_node", kind: "message", T: AwsRunningNode, oneof: "node" },
|
|
953
|
+
{ no: 2, name: "physical_node", kind: "message", T: PhysicalNode, oneof: "node" },
|
|
954
|
+
{ no: 3, name: "instances", kind: "message", T: RunningJob, repeated: true },
|
|
955
|
+
]);
|
|
956
|
+
/**
|
|
957
|
+
* @generated from message norsk.api.manager.PhysicalNodeConnected
|
|
958
|
+
*/
|
|
959
|
+
class PhysicalNodeConnected extends protobuf_1.Message {
|
|
960
|
+
constructor(data) {
|
|
961
|
+
super();
|
|
962
|
+
/**
|
|
963
|
+
* @generated from field: repeated norsk.api.manager.RunningJob instances = 2;
|
|
964
|
+
*/
|
|
965
|
+
this.instances = [];
|
|
966
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
967
|
+
}
|
|
968
|
+
static fromBinary(bytes, options) {
|
|
969
|
+
return new PhysicalNodeConnected().fromBinary(bytes, options);
|
|
970
|
+
}
|
|
971
|
+
static fromJson(jsonValue, options) {
|
|
972
|
+
return new PhysicalNodeConnected().fromJson(jsonValue, options);
|
|
973
|
+
}
|
|
974
|
+
static fromJsonString(jsonString, options) {
|
|
975
|
+
return new PhysicalNodeConnected().fromJsonString(jsonString, options);
|
|
976
|
+
}
|
|
977
|
+
static equals(a, b) {
|
|
978
|
+
return protobuf_1.proto3.util.equals(PhysicalNodeConnected, a, b);
|
|
979
|
+
}
|
|
980
|
+
}
|
|
981
|
+
exports.PhysicalNodeConnected = PhysicalNodeConnected;
|
|
982
|
+
PhysicalNodeConnected.runtime = protobuf_1.proto3;
|
|
983
|
+
PhysicalNodeConnected.typeName = "norsk.api.manager.PhysicalNodeConnected";
|
|
984
|
+
PhysicalNodeConnected.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
985
|
+
{ no: 1, name: "node", kind: "message", T: PhysicalNode },
|
|
986
|
+
{ no: 2, name: "instances", kind: "message", T: RunningJob, repeated: true },
|
|
987
|
+
]);
|
|
988
|
+
/**
|
|
989
|
+
* @generated from message norsk.api.manager.JobId
|
|
990
|
+
*/
|
|
991
|
+
class JobId extends protobuf_1.Message {
|
|
992
|
+
constructor(data) {
|
|
993
|
+
super();
|
|
994
|
+
/**
|
|
995
|
+
* @generated from field: string job_id = 1;
|
|
996
|
+
*/
|
|
997
|
+
this.jobId = "";
|
|
998
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
999
|
+
}
|
|
1000
|
+
static fromBinary(bytes, options) {
|
|
1001
|
+
return new JobId().fromBinary(bytes, options);
|
|
1002
|
+
}
|
|
1003
|
+
static fromJson(jsonValue, options) {
|
|
1004
|
+
return new JobId().fromJson(jsonValue, options);
|
|
1005
|
+
}
|
|
1006
|
+
static fromJsonString(jsonString, options) {
|
|
1007
|
+
return new JobId().fromJsonString(jsonString, options);
|
|
1008
|
+
}
|
|
1009
|
+
static equals(a, b) {
|
|
1010
|
+
return protobuf_1.proto3.util.equals(JobId, a, b);
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
exports.JobId = JobId;
|
|
1014
|
+
JobId.runtime = protobuf_1.proto3;
|
|
1015
|
+
JobId.typeName = "norsk.api.manager.JobId";
|
|
1016
|
+
JobId.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1017
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1018
|
+
]);
|
|
1019
|
+
/**
|
|
1020
|
+
* @generated from message norsk.api.manager.NodeId
|
|
1021
|
+
*/
|
|
1022
|
+
class NodeId extends protobuf_1.Message {
|
|
1023
|
+
constructor(data) {
|
|
1024
|
+
super();
|
|
1025
|
+
/**
|
|
1026
|
+
* @generated from field: string node_id = 1;
|
|
1027
|
+
*/
|
|
1028
|
+
this.nodeId = "";
|
|
1029
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1030
|
+
}
|
|
1031
|
+
static fromBinary(bytes, options) {
|
|
1032
|
+
return new NodeId().fromBinary(bytes, options);
|
|
1033
|
+
}
|
|
1034
|
+
static fromJson(jsonValue, options) {
|
|
1035
|
+
return new NodeId().fromJson(jsonValue, options);
|
|
1036
|
+
}
|
|
1037
|
+
static fromJsonString(jsonString, options) {
|
|
1038
|
+
return new NodeId().fromJsonString(jsonString, options);
|
|
1039
|
+
}
|
|
1040
|
+
static equals(a, b) {
|
|
1041
|
+
return protobuf_1.proto3.util.equals(NodeId, a, b);
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
exports.NodeId = NodeId;
|
|
1045
|
+
NodeId.runtime = protobuf_1.proto3;
|
|
1046
|
+
NodeId.typeName = "norsk.api.manager.NodeId";
|
|
1047
|
+
NodeId.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1048
|
+
{ no: 1, name: "node_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1049
|
+
]);
|
|
1050
|
+
/**
|
|
1051
|
+
* @generated from message norsk.api.manager.CreateAwsNodeRequest
|
|
1052
|
+
*/
|
|
1053
|
+
class CreateAwsNodeRequest extends protobuf_1.Message {
|
|
1054
|
+
constructor(data) {
|
|
1055
|
+
super();
|
|
1056
|
+
/**
|
|
1057
|
+
* @generated from field: map<string, string> tags = 1;
|
|
1058
|
+
*/
|
|
1059
|
+
this.tags = {};
|
|
1060
|
+
/**
|
|
1061
|
+
* @generated from field: string instance_type = 2;
|
|
1062
|
+
*/
|
|
1063
|
+
this.instanceType = "";
|
|
1064
|
+
/**
|
|
1065
|
+
* @generated from field: string region = 3;
|
|
1066
|
+
*/
|
|
1067
|
+
this.region = "";
|
|
1068
|
+
/**
|
|
1069
|
+
* @generated from field: string az = 4;
|
|
1070
|
+
*/
|
|
1071
|
+
this.az = "";
|
|
1072
|
+
/**
|
|
1073
|
+
* @generated from field: string norsk_bootstrap_version = 5;
|
|
1074
|
+
*/
|
|
1075
|
+
this.norskBootstrapVersion = "";
|
|
1076
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1077
|
+
}
|
|
1078
|
+
static fromBinary(bytes, options) {
|
|
1079
|
+
return new CreateAwsNodeRequest().fromBinary(bytes, options);
|
|
1080
|
+
}
|
|
1081
|
+
static fromJson(jsonValue, options) {
|
|
1082
|
+
return new CreateAwsNodeRequest().fromJson(jsonValue, options);
|
|
1083
|
+
}
|
|
1084
|
+
static fromJsonString(jsonString, options) {
|
|
1085
|
+
return new CreateAwsNodeRequest().fromJsonString(jsonString, options);
|
|
1086
|
+
}
|
|
1087
|
+
static equals(a, b) {
|
|
1088
|
+
return protobuf_1.proto3.util.equals(CreateAwsNodeRequest, a, b);
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
exports.CreateAwsNodeRequest = CreateAwsNodeRequest;
|
|
1092
|
+
CreateAwsNodeRequest.runtime = protobuf_1.proto3;
|
|
1093
|
+
CreateAwsNodeRequest.typeName = "norsk.api.manager.CreateAwsNodeRequest";
|
|
1094
|
+
CreateAwsNodeRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1095
|
+
{ no: 1, name: "tags", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "scalar", T: 9 /* ScalarType.STRING */ } },
|
|
1096
|
+
{ no: 2, name: "instance_type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1097
|
+
{ no: 3, name: "region", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1098
|
+
{ no: 4, name: "az", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1099
|
+
{ no: 5, name: "norsk_bootstrap_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1100
|
+
]);
|
|
1101
|
+
/**
|
|
1102
|
+
* @generated from message norsk.api.manager.UpdatePhysicalNodeRequest
|
|
1103
|
+
*/
|
|
1104
|
+
class UpdatePhysicalNodeRequest extends protobuf_1.Message {
|
|
1105
|
+
constructor(data) {
|
|
1106
|
+
super();
|
|
1107
|
+
/**
|
|
1108
|
+
* @generated from field: string id = 1;
|
|
1109
|
+
*/
|
|
1110
|
+
this.id = "";
|
|
1111
|
+
/**
|
|
1112
|
+
* @generated from field: string norsk_bootstrap_version = 2;
|
|
1113
|
+
*/
|
|
1114
|
+
this.norskBootstrapVersion = "";
|
|
1115
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1116
|
+
}
|
|
1117
|
+
static fromBinary(bytes, options) {
|
|
1118
|
+
return new UpdatePhysicalNodeRequest().fromBinary(bytes, options);
|
|
1119
|
+
}
|
|
1120
|
+
static fromJson(jsonValue, options) {
|
|
1121
|
+
return new UpdatePhysicalNodeRequest().fromJson(jsonValue, options);
|
|
1122
|
+
}
|
|
1123
|
+
static fromJsonString(jsonString, options) {
|
|
1124
|
+
return new UpdatePhysicalNodeRequest().fromJsonString(jsonString, options);
|
|
1125
|
+
}
|
|
1126
|
+
static equals(a, b) {
|
|
1127
|
+
return protobuf_1.proto3.util.equals(UpdatePhysicalNodeRequest, a, b);
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
exports.UpdatePhysicalNodeRequest = UpdatePhysicalNodeRequest;
|
|
1131
|
+
UpdatePhysicalNodeRequest.runtime = protobuf_1.proto3;
|
|
1132
|
+
UpdatePhysicalNodeRequest.typeName = "norsk.api.manager.UpdatePhysicalNodeRequest";
|
|
1133
|
+
UpdatePhysicalNodeRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1134
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1135
|
+
{ no: 2, name: "norsk_bootstrap_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1136
|
+
]);
|
|
1137
|
+
/**
|
|
1138
|
+
* @generated from message norsk.api.manager.StartJobRequest
|
|
1139
|
+
*/
|
|
1140
|
+
class StartJobRequest extends protobuf_1.Message {
|
|
1141
|
+
constructor(data) {
|
|
1142
|
+
super();
|
|
1143
|
+
/**
|
|
1144
|
+
* @generated from field: string role = 2;
|
|
1145
|
+
*/
|
|
1146
|
+
this.role = "";
|
|
1147
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1148
|
+
}
|
|
1149
|
+
static fromBinary(bytes, options) {
|
|
1150
|
+
return new StartJobRequest().fromBinary(bytes, options);
|
|
1151
|
+
}
|
|
1152
|
+
static fromJson(jsonValue, options) {
|
|
1153
|
+
return new StartJobRequest().fromJson(jsonValue, options);
|
|
1154
|
+
}
|
|
1155
|
+
static fromJsonString(jsonString, options) {
|
|
1156
|
+
return new StartJobRequest().fromJsonString(jsonString, options);
|
|
1157
|
+
}
|
|
1158
|
+
static equals(a, b) {
|
|
1159
|
+
return protobuf_1.proto3.util.equals(StartJobRequest, a, b);
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
exports.StartJobRequest = StartJobRequest;
|
|
1163
|
+
StartJobRequest.runtime = protobuf_1.proto3;
|
|
1164
|
+
StartJobRequest.typeName = "norsk.api.manager.StartJobRequest";
|
|
1165
|
+
StartJobRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1166
|
+
{ no: 1, name: "job_id", kind: "message", T: JobId },
|
|
1167
|
+
{ no: 2, name: "role", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1168
|
+
{ no: 3, name: "node_id", kind: "message", T: NodeId },
|
|
1169
|
+
]);
|
|
1170
|
+
/**
|
|
1171
|
+
* @generated from message norsk.api.manager.StopJobRequest
|
|
1172
|
+
*/
|
|
1173
|
+
class StopJobRequest extends protobuf_1.Message {
|
|
1174
|
+
constructor(data) {
|
|
1175
|
+
super();
|
|
1176
|
+
/**
|
|
1177
|
+
* @generated from field: string role = 2;
|
|
1178
|
+
*/
|
|
1179
|
+
this.role = "";
|
|
1180
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1181
|
+
}
|
|
1182
|
+
static fromBinary(bytes, options) {
|
|
1183
|
+
return new StopJobRequest().fromBinary(bytes, options);
|
|
1184
|
+
}
|
|
1185
|
+
static fromJson(jsonValue, options) {
|
|
1186
|
+
return new StopJobRequest().fromJson(jsonValue, options);
|
|
1187
|
+
}
|
|
1188
|
+
static fromJsonString(jsonString, options) {
|
|
1189
|
+
return new StopJobRequest().fromJsonString(jsonString, options);
|
|
1190
|
+
}
|
|
1191
|
+
static equals(a, b) {
|
|
1192
|
+
return protobuf_1.proto3.util.equals(StopJobRequest, a, b);
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
exports.StopJobRequest = StopJobRequest;
|
|
1196
|
+
StopJobRequest.runtime = protobuf_1.proto3;
|
|
1197
|
+
StopJobRequest.typeName = "norsk.api.manager.StopJobRequest";
|
|
1198
|
+
StopJobRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1199
|
+
{ no: 1, name: "job_id", kind: "message", T: JobId },
|
|
1200
|
+
{ no: 2, name: "role", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1201
|
+
{ no: 3, name: "node_id", kind: "message", T: NodeId },
|
|
1202
|
+
]);
|
|
1203
|
+
/**
|
|
1204
|
+
* @generated from message norsk.api.manager.TagFilter
|
|
1205
|
+
*/
|
|
1206
|
+
class TagFilter extends protobuf_1.Message {
|
|
1207
|
+
constructor(data) {
|
|
1208
|
+
super();
|
|
1209
|
+
/**
|
|
1210
|
+
* @generated from field: string tagName = 1;
|
|
1211
|
+
*/
|
|
1212
|
+
this.tagName = "";
|
|
1213
|
+
/**
|
|
1214
|
+
* @generated from oneof norsk.api.manager.TagFilter.comparison
|
|
1215
|
+
*/
|
|
1216
|
+
this.comparison = { case: undefined };
|
|
1217
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1218
|
+
}
|
|
1219
|
+
static fromBinary(bytes, options) {
|
|
1220
|
+
return new TagFilter().fromBinary(bytes, options);
|
|
1221
|
+
}
|
|
1222
|
+
static fromJson(jsonValue, options) {
|
|
1223
|
+
return new TagFilter().fromJson(jsonValue, options);
|
|
1224
|
+
}
|
|
1225
|
+
static fromJsonString(jsonString, options) {
|
|
1226
|
+
return new TagFilter().fromJsonString(jsonString, options);
|
|
1227
|
+
}
|
|
1228
|
+
static equals(a, b) {
|
|
1229
|
+
return protobuf_1.proto3.util.equals(TagFilter, a, b);
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
exports.TagFilter = TagFilter;
|
|
1233
|
+
TagFilter.runtime = protobuf_1.proto3;
|
|
1234
|
+
TagFilter.typeName = "norsk.api.manager.TagFilter";
|
|
1235
|
+
TagFilter.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1236
|
+
{ no: 1, name: "tagName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1237
|
+
{ no: 2, name: "eq", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "comparison" },
|
|
1238
|
+
{ no: 3, name: "neq", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "comparison" },
|
|
1239
|
+
{ no: 4, name: "re", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "comparison" },
|
|
1240
|
+
{ no: 5, name: "exists", kind: "scalar", T: 8 /* ScalarType.BOOL */, oneof: "comparison" },
|
|
1241
|
+
]);
|
|
1242
|
+
/**
|
|
1243
|
+
* @generated from message norsk.api.manager.IdFilter
|
|
1244
|
+
*/
|
|
1245
|
+
class IdFilter extends protobuf_1.Message {
|
|
1246
|
+
constructor(data) {
|
|
1247
|
+
super();
|
|
1248
|
+
/**
|
|
1249
|
+
* @generated from oneof norsk.api.manager.IdFilter.comparison
|
|
1250
|
+
*/
|
|
1251
|
+
this.comparison = { case: undefined };
|
|
1252
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1253
|
+
}
|
|
1254
|
+
static fromBinary(bytes, options) {
|
|
1255
|
+
return new IdFilter().fromBinary(bytes, options);
|
|
1256
|
+
}
|
|
1257
|
+
static fromJson(jsonValue, options) {
|
|
1258
|
+
return new IdFilter().fromJson(jsonValue, options);
|
|
1259
|
+
}
|
|
1260
|
+
static fromJsonString(jsonString, options) {
|
|
1261
|
+
return new IdFilter().fromJsonString(jsonString, options);
|
|
1262
|
+
}
|
|
1263
|
+
static equals(a, b) {
|
|
1264
|
+
return protobuf_1.proto3.util.equals(IdFilter, a, b);
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
exports.IdFilter = IdFilter;
|
|
1268
|
+
IdFilter.runtime = protobuf_1.proto3;
|
|
1269
|
+
IdFilter.typeName = "norsk.api.manager.IdFilter";
|
|
1270
|
+
IdFilter.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1271
|
+
{ no: 1, name: "eq", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "comparison" },
|
|
1272
|
+
{ no: 2, name: "neq", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "comparison" },
|
|
1273
|
+
{ no: 3, name: "re", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "comparison" },
|
|
1274
|
+
]);
|
|
1275
|
+
/**
|
|
1276
|
+
* @generated from message norsk.api.manager.DateFilter
|
|
1277
|
+
*/
|
|
1278
|
+
class DateFilter extends protobuf_1.Message {
|
|
1279
|
+
constructor(data) {
|
|
1280
|
+
super();
|
|
1281
|
+
/**
|
|
1282
|
+
* @generated from oneof norsk.api.manager.DateFilter.comparison
|
|
1283
|
+
*/
|
|
1284
|
+
this.comparison = { case: undefined };
|
|
1285
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1286
|
+
}
|
|
1287
|
+
static fromBinary(bytes, options) {
|
|
1288
|
+
return new DateFilter().fromBinary(bytes, options);
|
|
1289
|
+
}
|
|
1290
|
+
static fromJson(jsonValue, options) {
|
|
1291
|
+
return new DateFilter().fromJson(jsonValue, options);
|
|
1292
|
+
}
|
|
1293
|
+
static fromJsonString(jsonString, options) {
|
|
1294
|
+
return new DateFilter().fromJsonString(jsonString, options);
|
|
1295
|
+
}
|
|
1296
|
+
static equals(a, b) {
|
|
1297
|
+
return protobuf_1.proto3.util.equals(DateFilter, a, b);
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
exports.DateFilter = DateFilter;
|
|
1301
|
+
DateFilter.runtime = protobuf_1.proto3;
|
|
1302
|
+
DateFilter.typeName = "norsk.api.manager.DateFilter";
|
|
1303
|
+
DateFilter.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1304
|
+
{ no: 1, name: "eq", kind: "message", T: protobuf_1.Timestamp, oneof: "comparison" },
|
|
1305
|
+
{ no: 2, name: "lt", kind: "message", T: protobuf_1.Timestamp, oneof: "comparison" },
|
|
1306
|
+
{ no: 3, name: "lte", kind: "message", T: protobuf_1.Timestamp, oneof: "comparison" },
|
|
1307
|
+
{ no: 4, name: "gt", kind: "message", T: protobuf_1.Timestamp, oneof: "comparison" },
|
|
1308
|
+
{ no: 5, name: "gte", kind: "message", T: protobuf_1.Timestamp, oneof: "comparison" },
|
|
1309
|
+
{ no: 6, name: "within", kind: "message", T: DateFilter_Within, oneof: "comparison" },
|
|
1310
|
+
]);
|
|
1311
|
+
/**
|
|
1312
|
+
* @generated from message norsk.api.manager.DateFilter.Within
|
|
1313
|
+
*/
|
|
1314
|
+
class DateFilter_Within extends protobuf_1.Message {
|
|
1315
|
+
constructor(data) {
|
|
1316
|
+
super();
|
|
1317
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1318
|
+
}
|
|
1319
|
+
static fromBinary(bytes, options) {
|
|
1320
|
+
return new DateFilter_Within().fromBinary(bytes, options);
|
|
1321
|
+
}
|
|
1322
|
+
static fromJson(jsonValue, options) {
|
|
1323
|
+
return new DateFilter_Within().fromJson(jsonValue, options);
|
|
1324
|
+
}
|
|
1325
|
+
static fromJsonString(jsonString, options) {
|
|
1326
|
+
return new DateFilter_Within().fromJsonString(jsonString, options);
|
|
1327
|
+
}
|
|
1328
|
+
static equals(a, b) {
|
|
1329
|
+
return protobuf_1.proto3.util.equals(DateFilter_Within, a, b);
|
|
1330
|
+
}
|
|
1331
|
+
}
|
|
1332
|
+
exports.DateFilter_Within = DateFilter_Within;
|
|
1333
|
+
DateFilter_Within.runtime = protobuf_1.proto3;
|
|
1334
|
+
DateFilter_Within.typeName = "norsk.api.manager.DateFilter.Within";
|
|
1335
|
+
DateFilter_Within.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1336
|
+
{ no: 6, name: "start_date", kind: "message", T: protobuf_1.Timestamp },
|
|
1337
|
+
{ no: 7, name: "end_date", kind: "message", T: protobuf_1.Timestamp },
|
|
1338
|
+
]);
|
|
1339
|
+
/**
|
|
1340
|
+
* @generated from message norsk.api.manager.JobFilter
|
|
1341
|
+
*/
|
|
1342
|
+
class JobFilter extends protobuf_1.Message {
|
|
1343
|
+
constructor(data) {
|
|
1344
|
+
super();
|
|
1345
|
+
/**
|
|
1346
|
+
* @generated from oneof norsk.api.manager.JobFilter.job_filter
|
|
1347
|
+
*/
|
|
1348
|
+
this.jobFilter = { case: undefined };
|
|
1349
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1350
|
+
}
|
|
1351
|
+
static fromBinary(bytes, options) {
|
|
1352
|
+
return new JobFilter().fromBinary(bytes, options);
|
|
1353
|
+
}
|
|
1354
|
+
static fromJson(jsonValue, options) {
|
|
1355
|
+
return new JobFilter().fromJson(jsonValue, options);
|
|
1356
|
+
}
|
|
1357
|
+
static fromJsonString(jsonString, options) {
|
|
1358
|
+
return new JobFilter().fromJsonString(jsonString, options);
|
|
1359
|
+
}
|
|
1360
|
+
static equals(a, b) {
|
|
1361
|
+
return protobuf_1.proto3.util.equals(JobFilter, a, b);
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
exports.JobFilter = JobFilter;
|
|
1365
|
+
JobFilter.runtime = protobuf_1.proto3;
|
|
1366
|
+
JobFilter.typeName = "norsk.api.manager.JobFilter";
|
|
1367
|
+
JobFilter.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1368
|
+
{ no: 1, name: "tag_filter", kind: "message", T: TagFilter, oneof: "job_filter" },
|
|
1369
|
+
{ no: 2, name: "id_filter", kind: "message", T: IdFilter, oneof: "job_filter" },
|
|
1370
|
+
{ no: 3, name: "date_filter", kind: "message", T: DateFilter, oneof: "job_filter" },
|
|
1371
|
+
]);
|
|
1372
|
+
/**
|
|
1373
|
+
* @generated from message norsk.api.manager.ManagerActivityStreamRequest
|
|
1374
|
+
*/
|
|
1375
|
+
class ManagerActivityStreamRequest extends protobuf_1.Message {
|
|
1376
|
+
constructor(data) {
|
|
1377
|
+
super();
|
|
1378
|
+
/**
|
|
1379
|
+
* @generated from field: int32 pending_window_s = 1;
|
|
1380
|
+
*/
|
|
1381
|
+
this.pendingWindowS = 0;
|
|
1382
|
+
/**
|
|
1383
|
+
* @generated from field: repeated norsk.api.manager.JobFilter job_filter = 2;
|
|
1384
|
+
*/
|
|
1385
|
+
this.jobFilter = [];
|
|
1386
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1387
|
+
}
|
|
1388
|
+
static fromBinary(bytes, options) {
|
|
1389
|
+
return new ManagerActivityStreamRequest().fromBinary(bytes, options);
|
|
1390
|
+
}
|
|
1391
|
+
static fromJson(jsonValue, options) {
|
|
1392
|
+
return new ManagerActivityStreamRequest().fromJson(jsonValue, options);
|
|
1393
|
+
}
|
|
1394
|
+
static fromJsonString(jsonString, options) {
|
|
1395
|
+
return new ManagerActivityStreamRequest().fromJsonString(jsonString, options);
|
|
1396
|
+
}
|
|
1397
|
+
static equals(a, b) {
|
|
1398
|
+
return protobuf_1.proto3.util.equals(ManagerActivityStreamRequest, a, b);
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
exports.ManagerActivityStreamRequest = ManagerActivityStreamRequest;
|
|
1402
|
+
ManagerActivityStreamRequest.runtime = protobuf_1.proto3;
|
|
1403
|
+
ManagerActivityStreamRequest.typeName = "norsk.api.manager.ManagerActivityStreamRequest";
|
|
1404
|
+
ManagerActivityStreamRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1405
|
+
{ no: 1, name: "pending_window_s", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
1406
|
+
{ no: 2, name: "job_filter", kind: "message", T: JobFilter, repeated: true },
|
|
1407
|
+
]);
|
|
1408
|
+
/**
|
|
1409
|
+
* @generated from message norsk.api.manager.InitialDataComplete
|
|
1410
|
+
*/
|
|
1411
|
+
class InitialDataComplete extends protobuf_1.Message {
|
|
1412
|
+
constructor(data) {
|
|
1413
|
+
super();
|
|
1414
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1415
|
+
}
|
|
1416
|
+
static fromBinary(bytes, options) {
|
|
1417
|
+
return new InitialDataComplete().fromBinary(bytes, options);
|
|
1418
|
+
}
|
|
1419
|
+
static fromJson(jsonValue, options) {
|
|
1420
|
+
return new InitialDataComplete().fromJson(jsonValue, options);
|
|
1421
|
+
}
|
|
1422
|
+
static fromJsonString(jsonString, options) {
|
|
1423
|
+
return new InitialDataComplete().fromJsonString(jsonString, options);
|
|
1424
|
+
}
|
|
1425
|
+
static equals(a, b) {
|
|
1426
|
+
return protobuf_1.proto3.util.equals(InitialDataComplete, a, b);
|
|
1427
|
+
}
|
|
1428
|
+
}
|
|
1429
|
+
exports.InitialDataComplete = InitialDataComplete;
|
|
1430
|
+
InitialDataComplete.runtime = protobuf_1.proto3;
|
|
1431
|
+
InitialDataComplete.typeName = "norsk.api.manager.InitialDataComplete";
|
|
1432
|
+
InitialDataComplete.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
|
1433
|
+
/**
|
|
1434
|
+
* @generated from message norsk.api.manager.ManagerActivityStreamEvent
|
|
1435
|
+
*/
|
|
1436
|
+
class ManagerActivityStreamEvent extends protobuf_1.Message {
|
|
1437
|
+
constructor(data) {
|
|
1438
|
+
super();
|
|
1439
|
+
/**
|
|
1440
|
+
* @generated from oneof norsk.api.manager.ManagerActivityStreamEvent.event
|
|
1441
|
+
*/
|
|
1442
|
+
this.event = { case: undefined };
|
|
1443
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1444
|
+
}
|
|
1445
|
+
static fromBinary(bytes, options) {
|
|
1446
|
+
return new ManagerActivityStreamEvent().fromBinary(bytes, options);
|
|
1447
|
+
}
|
|
1448
|
+
static fromJson(jsonValue, options) {
|
|
1449
|
+
return new ManagerActivityStreamEvent().fromJson(jsonValue, options);
|
|
1450
|
+
}
|
|
1451
|
+
static fromJsonString(jsonString, options) {
|
|
1452
|
+
return new ManagerActivityStreamEvent().fromJsonString(jsonString, options);
|
|
1453
|
+
}
|
|
1454
|
+
static equals(a, b) {
|
|
1455
|
+
return protobuf_1.proto3.util.equals(ManagerActivityStreamEvent, a, b);
|
|
1456
|
+
}
|
|
1457
|
+
}
|
|
1458
|
+
exports.ManagerActivityStreamEvent = ManagerActivityStreamEvent;
|
|
1459
|
+
ManagerActivityStreamEvent.runtime = protobuf_1.proto3;
|
|
1460
|
+
ManagerActivityStreamEvent.typeName = "norsk.api.manager.ManagerActivityStreamEvent";
|
|
1461
|
+
ManagerActivityStreamEvent.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1462
|
+
{ no: 1, name: "initial_data_complete", kind: "message", T: InitialDataComplete, oneof: "event" },
|
|
1463
|
+
{ no: 2, name: "job_updated", kind: "message", T: JobUpdated, oneof: "event" },
|
|
1464
|
+
{ no: 3, name: "job_pending", kind: "message", T: JobPending, oneof: "event" },
|
|
1465
|
+
{ no: 4, name: "job_due_to_start", kind: "message", T: JobDueToStart, oneof: "event" },
|
|
1466
|
+
{ no: 5, name: "job_instance_starting", kind: "message", T: JobInstanceStarting, oneof: "event" },
|
|
1467
|
+
{ no: 6, name: "job_instance_started", kind: "message", T: JobInstanceStarted, oneof: "event" },
|
|
1468
|
+
{ no: 7, name: "job_due_to_stop", kind: "message", T: JobDueToStop, oneof: "event" },
|
|
1469
|
+
{ no: 8, name: "job_instance_stopping", kind: "message", T: JobInstanceStopping, oneof: "event" },
|
|
1470
|
+
{ no: 9, name: "job_instance_stopped", kind: "message", T: JobInstanceStopped, oneof: "event" },
|
|
1471
|
+
{ no: 10, name: "job_instance_failed", kind: "message", T: JobInstanceFailed, oneof: "event" },
|
|
1472
|
+
{ no: 11, name: "node_running", kind: "message", T: NodeRunning, oneof: "event" },
|
|
1473
|
+
{ no: 12, name: "node_starting", kind: "message", T: NodeStarting, oneof: "event" },
|
|
1474
|
+
{ no: 13, name: "node_started", kind: "message", T: NodeStarted, oneof: "event" },
|
|
1475
|
+
{ no: 14, name: "node_stopping", kind: "message", T: NodeStopping, oneof: "event" },
|
|
1476
|
+
{ no: 15, name: "node_stopped", kind: "message", T: NodeStopped, oneof: "event" },
|
|
1477
|
+
{ no: 16, name: "node_failed", kind: "message", T: NodeFailed, oneof: "event" },
|
|
1478
|
+
{ no: 17, name: "physical_node_connected", kind: "message", T: PhysicalNodeConnected, oneof: "event" },
|
|
1479
|
+
]);
|
|
1480
|
+
/**
|
|
1481
|
+
* @generated from message norsk.api.manager.JobSearchRequest
|
|
1482
|
+
*/
|
|
1483
|
+
class JobSearchRequest extends protobuf_1.Message {
|
|
1484
|
+
constructor(data) {
|
|
1485
|
+
super();
|
|
1486
|
+
/**
|
|
1487
|
+
* @generated from field: repeated norsk.api.manager.JobFilter job_filter = 2;
|
|
1488
|
+
*/
|
|
1489
|
+
this.jobFilter = [];
|
|
1490
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1491
|
+
}
|
|
1492
|
+
static fromBinary(bytes, options) {
|
|
1493
|
+
return new JobSearchRequest().fromBinary(bytes, options);
|
|
1494
|
+
}
|
|
1495
|
+
static fromJson(jsonValue, options) {
|
|
1496
|
+
return new JobSearchRequest().fromJson(jsonValue, options);
|
|
1497
|
+
}
|
|
1498
|
+
static fromJsonString(jsonString, options) {
|
|
1499
|
+
return new JobSearchRequest().fromJsonString(jsonString, options);
|
|
1500
|
+
}
|
|
1501
|
+
static equals(a, b) {
|
|
1502
|
+
return protobuf_1.proto3.util.equals(JobSearchRequest, a, b);
|
|
1503
|
+
}
|
|
1504
|
+
}
|
|
1505
|
+
exports.JobSearchRequest = JobSearchRequest;
|
|
1506
|
+
JobSearchRequest.runtime = protobuf_1.proto3;
|
|
1507
|
+
JobSearchRequest.typeName = "norsk.api.manager.JobSearchRequest";
|
|
1508
|
+
JobSearchRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1509
|
+
{ no: 2, name: "job_filter", kind: "message", T: JobFilter, repeated: true },
|
|
1510
|
+
]);
|
|
1511
|
+
/**
|
|
1512
|
+
* @generated from message norsk.api.manager.NorskStatusEvent
|
|
1513
|
+
*/
|
|
1514
|
+
class NorskStatusEvent extends protobuf_1.Message {
|
|
1515
|
+
constructor(data) {
|
|
1516
|
+
super();
|
|
1517
|
+
/**
|
|
1518
|
+
* @generated from oneof norsk.api.manager.NorskStatusEvent.message
|
|
1519
|
+
*/
|
|
1520
|
+
this.message = { case: undefined };
|
|
1521
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1522
|
+
}
|
|
1523
|
+
static fromBinary(bytes, options) {
|
|
1524
|
+
return new NorskStatusEvent().fromBinary(bytes, options);
|
|
1525
|
+
}
|
|
1526
|
+
static fromJson(jsonValue, options) {
|
|
1527
|
+
return new NorskStatusEvent().fromJson(jsonValue, options);
|
|
1528
|
+
}
|
|
1529
|
+
static fromJsonString(jsonString, options) {
|
|
1530
|
+
return new NorskStatusEvent().fromJsonString(jsonString, options);
|
|
1531
|
+
}
|
|
1532
|
+
static equals(a, b) {
|
|
1533
|
+
return protobuf_1.proto3.util.equals(NorskStatusEvent, a, b);
|
|
1534
|
+
}
|
|
1535
|
+
}
|
|
1536
|
+
exports.NorskStatusEvent = NorskStatusEvent;
|
|
1537
|
+
NorskStatusEvent.runtime = protobuf_1.proto3;
|
|
1538
|
+
NorskStatusEvent.typeName = "norsk.api.manager.NorskStatusEvent";
|
|
1539
|
+
NorskStatusEvent.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1540
|
+
{ no: 1, name: "hello", kind: "message", T: Hello, oneof: "message" },
|
|
1541
|
+
{ no: 2, name: "log_event", kind: "message", T: common_pb_js_1.Log, oneof: "message" },
|
|
1542
|
+
]);
|
|
1543
|
+
//# sourceMappingURL=manager_pb.js.map
|