@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.
@@ -0,0 +1 @@
1
+ // GENERATED CODE -- NO SERVICES IN PROTO
@@ -0,0 +1,9 @@
1
+ // package: norsk.api.manager.nodes
2
+ // file: nodes.proto
3
+
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+
7
+ import * as jspb from "google-protobuf";
8
+ import * as google_protobuf_timestamp_pb from "@bufbuild/protobuf";
9
+ import * as google_protobuf_empty_pb from "@bufbuild/protobuf";
@@ -0,0 +1 @@
1
+ // GENERATED CODE -- NO SERVICES IN PROTO
@@ -0,0 +1,187 @@
1
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
+ import { Message } from "@bufbuild/protobuf";
3
+ /**
4
+ * `Version` gives version information about the currently running Norsk release
5
+ *
6
+ *
7
+ * @generated from message norsk.api.common.Version
8
+ */
9
+ export declare class Version extends Message<Version> {
10
+ /**
11
+ * The major version number
12
+ *
13
+ * @generated from field: int32 majorVersion = 1;
14
+ */
15
+ majorVersion: number;
16
+ /**
17
+ * The minor version number
18
+ *
19
+ * @generated from field: int32 minorVersion = 2;
20
+ */
21
+ minorVersion: number;
22
+ /**
23
+ * The build number
24
+ *
25
+ * @generated from field: int32 buildNumber = 3;
26
+ */
27
+ buildNumber: number;
28
+ /**
29
+ * The git branch name
30
+ *
31
+ * @generated from field: string branchName = 4;
32
+ */
33
+ branchName: string;
34
+ /**
35
+ * The version label to uniquely identify this build
36
+ *
37
+ * @generated from field: string label = 5;
38
+ */
39
+ label: string;
40
+ constructor(data?: PartialMessage<Version>);
41
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
42
+ static readonly typeName = "norsk.api.common.Version";
43
+ static readonly fields: FieldList;
44
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Version;
45
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Version;
46
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Version;
47
+ static equals(a: Version | PlainMessage<Version> | undefined, b: Version | PlainMessage<Version> | undefined): boolean;
48
+ }
49
+ /**
50
+ * @generated from message norsk.api.common.QuorumDefinition
51
+ */
52
+ export declare class QuorumDefinition extends Message<QuorumDefinition> {
53
+ /**
54
+ * @generated from field: string groupName = 1;
55
+ */
56
+ groupName: string;
57
+ /**
58
+ * @generated from field: int32 numberOfWitnesses = 2;
59
+ */
60
+ numberOfWitnesses: number;
61
+ constructor(data?: PartialMessage<QuorumDefinition>);
62
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
63
+ static readonly typeName = "norsk.api.common.QuorumDefinition";
64
+ static readonly fields: FieldList;
65
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuorumDefinition;
66
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuorumDefinition;
67
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuorumDefinition;
68
+ static equals(a: QuorumDefinition | PlainMessage<QuorumDefinition> | undefined, b: QuorumDefinition | PlainMessage<QuorumDefinition> | undefined): boolean;
69
+ }
70
+ /**
71
+ * Metrics on the Erlang VM scheduler utilization
72
+ *
73
+ * @generated from message norsk.api.common.SchedulerUtilization
74
+ */
75
+ export declare class SchedulerUtilization extends Message<SchedulerUtilization> {
76
+ /**
77
+ * @generated from field: float normalPercentage = 1;
78
+ */
79
+ normalPercentage: number;
80
+ /**
81
+ * @generated from field: float cpuPercentage = 2;
82
+ */
83
+ cpuPercentage: number;
84
+ /**
85
+ * @generated from field: float ioPercentage = 3;
86
+ */
87
+ ioPercentage: number;
88
+ constructor(data?: PartialMessage<SchedulerUtilization>);
89
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
90
+ static readonly typeName = "norsk.api.common.SchedulerUtilization";
91
+ static readonly fields: FieldList;
92
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SchedulerUtilization;
93
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SchedulerUtilization;
94
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SchedulerUtilization;
95
+ static equals(a: SchedulerUtilization | PlainMessage<SchedulerUtilization> | undefined, b: SchedulerUtilization | PlainMessage<SchedulerUtilization> | undefined): boolean;
96
+ }
97
+ /**
98
+ * Metrics on the host load. CPU and Network metrics are for the entire
99
+ * host, whereas the scheduler utilization is just for the erlang instance
100
+ * reporting the metric
101
+ *
102
+ * @generated from message norsk.api.common.CurrentLoad
103
+ */
104
+ export declare class CurrentLoad extends Message<CurrentLoad> {
105
+ /**
106
+ * @generated from field: float cpuPercentage = 1;
107
+ */
108
+ cpuPercentage: number;
109
+ /**
110
+ * @generated from field: uint64 networkKbps = 2;
111
+ */
112
+ networkKbps: bigint;
113
+ /**
114
+ * @generated from field: norsk.api.common.SchedulerUtilization schedulerUtilization = 3;
115
+ */
116
+ schedulerUtilization?: SchedulerUtilization;
117
+ constructor(data?: PartialMessage<CurrentLoad>);
118
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
119
+ static readonly typeName = "norsk.api.common.CurrentLoad";
120
+ static readonly fields: FieldList;
121
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurrentLoad;
122
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurrentLoad;
123
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurrentLoad;
124
+ static equals(a: CurrentLoad | PlainMessage<CurrentLoad> | undefined, b: CurrentLoad | PlainMessage<CurrentLoad> | undefined): boolean;
125
+ }
126
+ /**
127
+ * @generated from message norsk.api.common.Log
128
+ */
129
+ export declare class Log extends Message<Log> {
130
+ /**
131
+ * @generated from field: norsk.api.common.Log.Level level = 1;
132
+ */
133
+ level: Log_Level;
134
+ /**
135
+ * @generated from field: uint64 timestamp = 2;
136
+ */
137
+ timestamp: bigint;
138
+ /**
139
+ * @generated from field: string msg = 3;
140
+ */
141
+ msg: string;
142
+ constructor(data?: PartialMessage<Log>);
143
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
144
+ static readonly typeName = "norsk.api.common.Log";
145
+ static readonly fields: FieldList;
146
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Log;
147
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Log;
148
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Log;
149
+ static equals(a: Log | PlainMessage<Log> | undefined, b: Log | PlainMessage<Log> | undefined): boolean;
150
+ }
151
+ /**
152
+ * @generated from enum norsk.api.common.Log.Level
153
+ */
154
+ export declare enum Log_Level {
155
+ /**
156
+ * @generated from enum value: EMERGENCY = 0;
157
+ */
158
+ EMERGENCY = 0,
159
+ /**
160
+ * @generated from enum value: ALERT = 1;
161
+ */
162
+ ALERT = 1,
163
+ /**
164
+ * @generated from enum value: CRITICAL = 2;
165
+ */
166
+ CRITICAL = 2,
167
+ /**
168
+ * @generated from enum value: ERROR = 3;
169
+ */
170
+ ERROR = 3,
171
+ /**
172
+ * @generated from enum value: WARNING = 4;
173
+ */
174
+ WARNING = 4,
175
+ /**
176
+ * @generated from enum value: NOTICE = 5;
177
+ */
178
+ NOTICE = 5,
179
+ /**
180
+ * @generated from enum value: INFO = 6;
181
+ */
182
+ INFO = 6,
183
+ /**
184
+ * @generated from enum value: DEBUG = 7;
185
+ */
186
+ DEBUG = 7
187
+ }
@@ -0,0 +1,283 @@
1
+ "use strict";
2
+ // @generated by protoc-gen-es v0.3.0 with parameter "target=ts"
3
+ // @generated from file shared/common.proto (package norsk.api.common, syntax proto3)
4
+ /* eslint-disable */
5
+ // @ts-nocheck
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.Log_Level = exports.Log = exports.CurrentLoad = exports.SchedulerUtilization = exports.QuorumDefinition = exports.Version = void 0;
8
+ const protobuf_1 = require("@bufbuild/protobuf");
9
+ /**
10
+ * `Version` gives version information about the currently running Norsk release
11
+ *
12
+ *
13
+ * @generated from message norsk.api.common.Version
14
+ */
15
+ class Version extends protobuf_1.Message {
16
+ constructor(data) {
17
+ super();
18
+ /**
19
+ * The major version number
20
+ *
21
+ * @generated from field: int32 majorVersion = 1;
22
+ */
23
+ this.majorVersion = 0;
24
+ /**
25
+ * The minor version number
26
+ *
27
+ * @generated from field: int32 minorVersion = 2;
28
+ */
29
+ this.minorVersion = 0;
30
+ /**
31
+ * The build number
32
+ *
33
+ * @generated from field: int32 buildNumber = 3;
34
+ */
35
+ this.buildNumber = 0;
36
+ /**
37
+ * The git branch name
38
+ *
39
+ * @generated from field: string branchName = 4;
40
+ */
41
+ this.branchName = "";
42
+ /**
43
+ * The version label to uniquely identify this build
44
+ *
45
+ * @generated from field: string label = 5;
46
+ */
47
+ this.label = "";
48
+ protobuf_1.proto3.util.initPartial(data, this);
49
+ }
50
+ static fromBinary(bytes, options) {
51
+ return new Version().fromBinary(bytes, options);
52
+ }
53
+ static fromJson(jsonValue, options) {
54
+ return new Version().fromJson(jsonValue, options);
55
+ }
56
+ static fromJsonString(jsonString, options) {
57
+ return new Version().fromJsonString(jsonString, options);
58
+ }
59
+ static equals(a, b) {
60
+ return protobuf_1.proto3.util.equals(Version, a, b);
61
+ }
62
+ }
63
+ exports.Version = Version;
64
+ Version.runtime = protobuf_1.proto3;
65
+ Version.typeName = "norsk.api.common.Version";
66
+ Version.fields = protobuf_1.proto3.util.newFieldList(() => [
67
+ { no: 1, name: "majorVersion", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
68
+ { no: 2, name: "minorVersion", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
69
+ { no: 3, name: "buildNumber", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
70
+ { no: 4, name: "branchName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
71
+ { no: 5, name: "label", kind: "scalar", T: 9 /* ScalarType.STRING */ },
72
+ ]);
73
+ /**
74
+ * @generated from message norsk.api.common.QuorumDefinition
75
+ */
76
+ class QuorumDefinition extends protobuf_1.Message {
77
+ constructor(data) {
78
+ super();
79
+ /**
80
+ * @generated from field: string groupName = 1;
81
+ */
82
+ this.groupName = "";
83
+ /**
84
+ * @generated from field: int32 numberOfWitnesses = 2;
85
+ */
86
+ this.numberOfWitnesses = 0;
87
+ protobuf_1.proto3.util.initPartial(data, this);
88
+ }
89
+ static fromBinary(bytes, options) {
90
+ return new QuorumDefinition().fromBinary(bytes, options);
91
+ }
92
+ static fromJson(jsonValue, options) {
93
+ return new QuorumDefinition().fromJson(jsonValue, options);
94
+ }
95
+ static fromJsonString(jsonString, options) {
96
+ return new QuorumDefinition().fromJsonString(jsonString, options);
97
+ }
98
+ static equals(a, b) {
99
+ return protobuf_1.proto3.util.equals(QuorumDefinition, a, b);
100
+ }
101
+ }
102
+ exports.QuorumDefinition = QuorumDefinition;
103
+ QuorumDefinition.runtime = protobuf_1.proto3;
104
+ QuorumDefinition.typeName = "norsk.api.common.QuorumDefinition";
105
+ QuorumDefinition.fields = protobuf_1.proto3.util.newFieldList(() => [
106
+ { no: 1, name: "groupName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
107
+ { no: 2, name: "numberOfWitnesses", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
108
+ ]);
109
+ /**
110
+ * Metrics on the Erlang VM scheduler utilization
111
+ *
112
+ * @generated from message norsk.api.common.SchedulerUtilization
113
+ */
114
+ class SchedulerUtilization extends protobuf_1.Message {
115
+ constructor(data) {
116
+ super();
117
+ /**
118
+ * @generated from field: float normalPercentage = 1;
119
+ */
120
+ this.normalPercentage = 0;
121
+ /**
122
+ * @generated from field: float cpuPercentage = 2;
123
+ */
124
+ this.cpuPercentage = 0;
125
+ /**
126
+ * @generated from field: float ioPercentage = 3;
127
+ */
128
+ this.ioPercentage = 0;
129
+ protobuf_1.proto3.util.initPartial(data, this);
130
+ }
131
+ static fromBinary(bytes, options) {
132
+ return new SchedulerUtilization().fromBinary(bytes, options);
133
+ }
134
+ static fromJson(jsonValue, options) {
135
+ return new SchedulerUtilization().fromJson(jsonValue, options);
136
+ }
137
+ static fromJsonString(jsonString, options) {
138
+ return new SchedulerUtilization().fromJsonString(jsonString, options);
139
+ }
140
+ static equals(a, b) {
141
+ return protobuf_1.proto3.util.equals(SchedulerUtilization, a, b);
142
+ }
143
+ }
144
+ exports.SchedulerUtilization = SchedulerUtilization;
145
+ SchedulerUtilization.runtime = protobuf_1.proto3;
146
+ SchedulerUtilization.typeName = "norsk.api.common.SchedulerUtilization";
147
+ SchedulerUtilization.fields = protobuf_1.proto3.util.newFieldList(() => [
148
+ { no: 1, name: "normalPercentage", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
149
+ { no: 2, name: "cpuPercentage", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
150
+ { no: 3, name: "ioPercentage", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
151
+ ]);
152
+ /**
153
+ * Metrics on the host load. CPU and Network metrics are for the entire
154
+ * host, whereas the scheduler utilization is just for the erlang instance
155
+ * reporting the metric
156
+ *
157
+ * @generated from message norsk.api.common.CurrentLoad
158
+ */
159
+ class CurrentLoad extends protobuf_1.Message {
160
+ constructor(data) {
161
+ super();
162
+ /**
163
+ * @generated from field: float cpuPercentage = 1;
164
+ */
165
+ this.cpuPercentage = 0;
166
+ /**
167
+ * @generated from field: uint64 networkKbps = 2;
168
+ */
169
+ this.networkKbps = protobuf_1.protoInt64.zero;
170
+ protobuf_1.proto3.util.initPartial(data, this);
171
+ }
172
+ static fromBinary(bytes, options) {
173
+ return new CurrentLoad().fromBinary(bytes, options);
174
+ }
175
+ static fromJson(jsonValue, options) {
176
+ return new CurrentLoad().fromJson(jsonValue, options);
177
+ }
178
+ static fromJsonString(jsonString, options) {
179
+ return new CurrentLoad().fromJsonString(jsonString, options);
180
+ }
181
+ static equals(a, b) {
182
+ return protobuf_1.proto3.util.equals(CurrentLoad, a, b);
183
+ }
184
+ }
185
+ exports.CurrentLoad = CurrentLoad;
186
+ CurrentLoad.runtime = protobuf_1.proto3;
187
+ CurrentLoad.typeName = "norsk.api.common.CurrentLoad";
188
+ CurrentLoad.fields = protobuf_1.proto3.util.newFieldList(() => [
189
+ { no: 1, name: "cpuPercentage", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
190
+ { no: 2, name: "networkKbps", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
191
+ { no: 3, name: "schedulerUtilization", kind: "message", T: SchedulerUtilization },
192
+ ]);
193
+ /**
194
+ * @generated from message norsk.api.common.Log
195
+ */
196
+ class Log extends protobuf_1.Message {
197
+ constructor(data) {
198
+ super();
199
+ /**
200
+ * @generated from field: norsk.api.common.Log.Level level = 1;
201
+ */
202
+ this.level = Log_Level.EMERGENCY;
203
+ /**
204
+ * @generated from field: uint64 timestamp = 2;
205
+ */
206
+ this.timestamp = protobuf_1.protoInt64.zero;
207
+ /**
208
+ * @generated from field: string msg = 3;
209
+ */
210
+ this.msg = "";
211
+ protobuf_1.proto3.util.initPartial(data, this);
212
+ }
213
+ static fromBinary(bytes, options) {
214
+ return new Log().fromBinary(bytes, options);
215
+ }
216
+ static fromJson(jsonValue, options) {
217
+ return new Log().fromJson(jsonValue, options);
218
+ }
219
+ static fromJsonString(jsonString, options) {
220
+ return new Log().fromJsonString(jsonString, options);
221
+ }
222
+ static equals(a, b) {
223
+ return protobuf_1.proto3.util.equals(Log, a, b);
224
+ }
225
+ }
226
+ exports.Log = Log;
227
+ Log.runtime = protobuf_1.proto3;
228
+ Log.typeName = "norsk.api.common.Log";
229
+ Log.fields = protobuf_1.proto3.util.newFieldList(() => [
230
+ { no: 1, name: "level", kind: "enum", T: protobuf_1.proto3.getEnumType(Log_Level) },
231
+ { no: 2, name: "timestamp", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
232
+ { no: 3, name: "msg", kind: "scalar", T: 9 /* ScalarType.STRING */ },
233
+ ]);
234
+ /**
235
+ * @generated from enum norsk.api.common.Log.Level
236
+ */
237
+ var Log_Level;
238
+ (function (Log_Level) {
239
+ /**
240
+ * @generated from enum value: EMERGENCY = 0;
241
+ */
242
+ Log_Level[Log_Level["EMERGENCY"] = 0] = "EMERGENCY";
243
+ /**
244
+ * @generated from enum value: ALERT = 1;
245
+ */
246
+ Log_Level[Log_Level["ALERT"] = 1] = "ALERT";
247
+ /**
248
+ * @generated from enum value: CRITICAL = 2;
249
+ */
250
+ Log_Level[Log_Level["CRITICAL"] = 2] = "CRITICAL";
251
+ /**
252
+ * @generated from enum value: ERROR = 3;
253
+ */
254
+ Log_Level[Log_Level["ERROR"] = 3] = "ERROR";
255
+ /**
256
+ * @generated from enum value: WARNING = 4;
257
+ */
258
+ Log_Level[Log_Level["WARNING"] = 4] = "WARNING";
259
+ /**
260
+ * @generated from enum value: NOTICE = 5;
261
+ */
262
+ Log_Level[Log_Level["NOTICE"] = 5] = "NOTICE";
263
+ /**
264
+ * @generated from enum value: INFO = 6;
265
+ */
266
+ Log_Level[Log_Level["INFO"] = 6] = "INFO";
267
+ /**
268
+ * @generated from enum value: DEBUG = 7;
269
+ */
270
+ Log_Level[Log_Level["DEBUG"] = 7] = "DEBUG";
271
+ })(Log_Level = exports.Log_Level || (exports.Log_Level = {}));
272
+ // Retrieve enum metadata with: proto3.getEnumType(Log_Level)
273
+ protobuf_1.proto3.util.setEnumType(Log_Level, "norsk.api.common.Log.Level", [
274
+ { no: 0, name: "EMERGENCY" },
275
+ { no: 1, name: "ALERT" },
276
+ { no: 2, name: "CRITICAL" },
277
+ { no: 3, name: "ERROR" },
278
+ { no: 4, name: "WARNING" },
279
+ { no: 5, name: "NOTICE" },
280
+ { no: 6, name: "INFO" },
281
+ { no: 7, name: "DEBUG" },
282
+ ]);
283
+ //# sourceMappingURL=common_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"common_pb.js","sourceRoot":"","sources":["common_pb.ts"],"names":[],"mappings":"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"}