@nebius/js-sdk 0.1.24 → 0.1.26
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/dist/cjs/api/nebius/audit/v2/index.d.ts +339 -0
- package/dist/cjs/api/nebius/audit/v2/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/audit/v2/index.js +1523 -1
- package/dist/cjs/api/nebius/audit/v2/index.js.map +1 -1
- package/dist/cjs/api/nebius/common/v1/index.d.ts +126 -0
- package/dist/cjs/api/nebius/common/v1/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/common/v1/index.js +549 -1
- package/dist/cjs/api/nebius/common/v1/index.js.map +1 -1
- package/dist/cjs/api/nebius/logging/v1/agentmanager/index.d.ts +36 -1
- package/dist/cjs/api/nebius/logging/v1/agentmanager/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/logging/v1/agentmanager/index.js +202 -1
- package/dist/cjs/api/nebius/logging/v1/agentmanager/index.js.map +1 -1
- package/dist/cjs/api/nebius/mk8s/v1/index.d.ts +59 -0
- package/dist/cjs/api/nebius/mk8s/v1/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/mk8s/v1/index.js +277 -2
- package/dist/cjs/api/nebius/mk8s/v1/index.js.map +1 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/api/nebius/audit/v2/index.d.ts +339 -0
- package/dist/esm/api/nebius/audit/v2/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/common/v1/index.d.ts +126 -0
- package/dist/esm/api/nebius/common/v1/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/logging/v1/agentmanager/index.d.ts +36 -1
- package/dist/esm/api/nebius/logging/v1/agentmanager/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/mk8s/v1/index.d.ts +59 -0
- package/dist/esm/api/nebius/mk8s/v1/index.d.ts.map +1 -1
- package/dist/esm/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { unknownFieldsSymbol } from "../../../../../runtime/protos/index";
|
|
1
|
+
import { Long, unknownFieldsSymbol } from "../../../../../runtime/protos/index";
|
|
2
2
|
import type { Duration, MessageFns, EnumInstance, EnumClass } from "../../../../../runtime/protos/index";
|
|
3
3
|
import { customJson } from "../../../../../runtime/util/logging";
|
|
4
4
|
import { ChannelCredentials, Client, ClientUnaryCall, ClientOptions, CallOptions, Metadata, ServiceError as GrpcServiceError, handleUnaryCall, UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
@@ -184,6 +184,11 @@ export interface GetVersionRequest {
|
|
|
184
184
|
*
|
|
185
185
|
*/
|
|
186
186
|
dcgmVersion: string;
|
|
187
|
+
/**
|
|
188
|
+
* Health check logs information for monitoring disk usage.
|
|
189
|
+
*
|
|
190
|
+
*/
|
|
191
|
+
healthcheckLogs?: HealthCheckLogs | undefined;
|
|
187
192
|
}
|
|
188
193
|
export declare const GetVersionRequest: MessageFns<GetVersionRequest, "nebius.logging.agentmanager.v1.GetVersionRequest">;
|
|
189
194
|
/**
|
|
@@ -219,8 +224,38 @@ export interface ModulesHealth {
|
|
|
219
224
|
*
|
|
220
225
|
*/
|
|
221
226
|
vmappsPipeline?: ModuleHealth | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* Health status of the common service logs pipeline module.
|
|
229
|
+
*
|
|
230
|
+
*/
|
|
231
|
+
commonServiceLogsPipeline?: ModuleHealth | undefined;
|
|
232
|
+
/**
|
|
233
|
+
* Health status of the vm service logs pipeline module.
|
|
234
|
+
*
|
|
235
|
+
*/
|
|
236
|
+
vmServiceLogsPipeline?: ModuleHealth | undefined;
|
|
222
237
|
}
|
|
223
238
|
export declare const ModulesHealth: MessageFns<ModulesHealth, "nebius.logging.agentmanager.v1.ModulesHealth">;
|
|
239
|
+
/**
|
|
240
|
+
* Health check logs information for monitoring disk usage.
|
|
241
|
+
*
|
|
242
|
+
*/
|
|
243
|
+
export interface HealthCheckLogs {
|
|
244
|
+
$type: "nebius.logging.agentmanager.v1.HealthCheckLogs";
|
|
245
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
246
|
+
[customJson]?: () => unknown;
|
|
247
|
+
/**
|
|
248
|
+
* Size of the healthcheck directory in bytes.
|
|
249
|
+
*
|
|
250
|
+
*/
|
|
251
|
+
directorySizeBytes: Long;
|
|
252
|
+
/**
|
|
253
|
+
* Total size of the healthcheck mountpoint in bytes.
|
|
254
|
+
*
|
|
255
|
+
*/
|
|
256
|
+
mountpointTotalBytes: Long;
|
|
257
|
+
}
|
|
258
|
+
export declare const HealthCheckLogs: MessageFns<HealthCheckLogs, "nebius.logging.agentmanager.v1.HealthCheckLogs">;
|
|
224
259
|
/**
|
|
225
260
|
* Health status information for an individual module.
|
|
226
261
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/api/nebius/logging/v1/agentmanager/index.ts"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/api/nebius/logging/v1/agentmanager/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/* Generated by Nebius TS generator. DO NOT EDIT! */
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.VersionService = exports.VersionServiceBaseClient = exports.VersionServiceServiceDescription = exports.RestartActionParams = exports.UpdateActionParams = exports.NopActionParams = exports.GetVersionResponse = exports.OSInfo = exports.Parameter = exports.ModuleHealth = exports.ModulesHealth = exports.GetVersionRequest = exports.Action = exports.AgentState = exports.AgentType = void 0;
|
|
4
|
+
exports.VersionService = exports.VersionServiceBaseClient = exports.VersionServiceServiceDescription = exports.RestartActionParams = exports.UpdateActionParams = exports.NopActionParams = exports.GetVersionResponse = exports.OSInfo = exports.Parameter = exports.ModuleHealth = exports.HealthCheckLogs = exports.ModulesHealth = exports.GetVersionRequest = exports.Action = exports.AgentState = exports.AgentType = void 0;
|
|
5
5
|
const index_1 = require("../../../../../runtime/protos/index");
|
|
6
6
|
const util_1 = require("util");
|
|
7
7
|
const protobuf_1 = require("../../../../protobuf");
|
|
@@ -151,6 +151,11 @@ exports.GetVersionRequest = {
|
|
|
151
151
|
if (message.dcgmVersion !== "") {
|
|
152
152
|
writer.uint32(162).string(message.dcgmVersion);
|
|
153
153
|
}
|
|
154
|
+
if (message.healthcheckLogs !== undefined) {
|
|
155
|
+
const w = writer.uint32(170).fork();
|
|
156
|
+
exports.HealthCheckLogs.encode(message.healthcheckLogs, w);
|
|
157
|
+
w.join();
|
|
158
|
+
}
|
|
154
159
|
if (message[index_1.unknownFieldsSymbol]) {
|
|
155
160
|
writer.raw(message[index_1.unknownFieldsSymbol]);
|
|
156
161
|
}
|
|
@@ -287,6 +292,12 @@ exports.GetVersionRequest = {
|
|
|
287
292
|
message.dcgmVersion = reader.string();
|
|
288
293
|
continue;
|
|
289
294
|
}
|
|
295
|
+
case 21: {
|
|
296
|
+
if (tag !== 170)
|
|
297
|
+
break;
|
|
298
|
+
message.healthcheckLogs = exports.HealthCheckLogs.decode(reader, reader.uint32());
|
|
299
|
+
continue;
|
|
300
|
+
}
|
|
290
301
|
default:
|
|
291
302
|
break;
|
|
292
303
|
}
|
|
@@ -368,6 +379,9 @@ exports.GetVersionRequest = {
|
|
|
368
379
|
dcgmVersion: (0, index_1.isSet)(object.dcgmVersion ?? object.dcgm_version)
|
|
369
380
|
? String(object.dcgmVersion ?? object.dcgm_version)
|
|
370
381
|
: "",
|
|
382
|
+
healthcheckLogs: (0, index_1.isSet)(object.healthcheckLogs ?? object.healthcheck_logs)
|
|
383
|
+
? exports.HealthCheckLogs.fromJSON(object.healthcheckLogs ?? object.healthcheck_logs)
|
|
384
|
+
: undefined,
|
|
371
385
|
});
|
|
372
386
|
},
|
|
373
387
|
toJSON(message, use = "json") {
|
|
@@ -437,6 +451,11 @@ exports.GetVersionRequest = {
|
|
|
437
451
|
if (message.dcgmVersion !== "") {
|
|
438
452
|
obj[pick("dcgmVersion", "dcgm_version")] = message.dcgmVersion;
|
|
439
453
|
}
|
|
454
|
+
if (message.healthcheckLogs !== undefined) {
|
|
455
|
+
obj[pick("healthcheckLogs", "healthcheck_logs")] = message.healthcheckLogs
|
|
456
|
+
? exports.HealthCheckLogs.toJSON(message.healthcheckLogs, use)
|
|
457
|
+
: undefined;
|
|
458
|
+
}
|
|
440
459
|
return obj;
|
|
441
460
|
},
|
|
442
461
|
create(base) {
|
|
@@ -502,6 +521,9 @@ exports.GetVersionRequest = {
|
|
|
502
521
|
message.dcgmVersion = (object.dcgmVersion !== undefined && object.dcgmVersion !== null)
|
|
503
522
|
? object.dcgmVersion
|
|
504
523
|
: "";
|
|
524
|
+
message.healthcheckLogs = (object.healthcheckLogs !== undefined && object.healthcheckLogs !== null)
|
|
525
|
+
? exports.HealthCheckLogs.fromPartial(object.healthcheckLogs)
|
|
526
|
+
: undefined;
|
|
505
527
|
return message;
|
|
506
528
|
},
|
|
507
529
|
};
|
|
@@ -548,6 +570,8 @@ function GetVersionRequestCustomInspect() {
|
|
|
548
570
|
parts.push("gpuNumber" + "=" + (0, util_1.inspect)(this.gpuNumber));
|
|
549
571
|
if (this.dcgmVersion !== "")
|
|
550
572
|
parts.push("dcgmVersion" + "=" + (0, util_1.inspect)(this.dcgmVersion));
|
|
573
|
+
if (this.healthcheckLogs !== undefined)
|
|
574
|
+
parts.push("healthcheckLogs" + "=" + (0, util_1.inspect)(this.healthcheckLogs));
|
|
551
575
|
return `${this.$type}(${parts.join(", ")})`;
|
|
552
576
|
}
|
|
553
577
|
function GetVersionRequestCustomJson() {
|
|
@@ -594,6 +618,8 @@ function GetVersionRequestCustomJson() {
|
|
|
594
618
|
obj.gpuNumber = (0, logging_1.inspectJson)(this.gpuNumber);
|
|
595
619
|
if (this.dcgmVersion !== "")
|
|
596
620
|
obj.dcgmVersion = (0, logging_1.inspectJson)(this.dcgmVersion);
|
|
621
|
+
if (this.healthcheckLogs !== undefined)
|
|
622
|
+
obj.healthcheckLogs = (0, logging_1.inspectJson)(this.healthcheckLogs);
|
|
597
623
|
return obj;
|
|
598
624
|
}
|
|
599
625
|
function applyGetVersionRequestCustom(message) {
|
|
@@ -624,6 +650,7 @@ function createBaseGetVersionRequest() {
|
|
|
624
650
|
gpuModel: "",
|
|
625
651
|
gpuNumber: 0,
|
|
626
652
|
dcgmVersion: "",
|
|
653
|
+
healthcheckLogs: undefined,
|
|
627
654
|
};
|
|
628
655
|
return applyGetVersionRequestCustom(message);
|
|
629
656
|
}
|
|
@@ -655,6 +682,16 @@ exports.ModulesHealth = {
|
|
|
655
682
|
exports.ModuleHealth.encode(message.vmappsPipeline, w);
|
|
656
683
|
w.join();
|
|
657
684
|
}
|
|
685
|
+
if (message.commonServiceLogsPipeline !== undefined) {
|
|
686
|
+
const w = writer.uint32(50).fork();
|
|
687
|
+
exports.ModuleHealth.encode(message.commonServiceLogsPipeline, w);
|
|
688
|
+
w.join();
|
|
689
|
+
}
|
|
690
|
+
if (message.vmServiceLogsPipeline !== undefined) {
|
|
691
|
+
const w = writer.uint32(58).fork();
|
|
692
|
+
exports.ModuleHealth.encode(message.vmServiceLogsPipeline, w);
|
|
693
|
+
w.join();
|
|
694
|
+
}
|
|
658
695
|
if (message[index_1.unknownFieldsSymbol]) {
|
|
659
696
|
writer.raw(message[index_1.unknownFieldsSymbol]);
|
|
660
697
|
}
|
|
@@ -698,6 +735,18 @@ exports.ModulesHealth = {
|
|
|
698
735
|
message.vmappsPipeline = exports.ModuleHealth.decode(reader, reader.uint32());
|
|
699
736
|
continue;
|
|
700
737
|
}
|
|
738
|
+
case 6: {
|
|
739
|
+
if (tag !== 50)
|
|
740
|
+
break;
|
|
741
|
+
message.commonServiceLogsPipeline = exports.ModuleHealth.decode(reader, reader.uint32());
|
|
742
|
+
continue;
|
|
743
|
+
}
|
|
744
|
+
case 7: {
|
|
745
|
+
if (tag !== 58)
|
|
746
|
+
break;
|
|
747
|
+
message.vmServiceLogsPipeline = exports.ModuleHealth.decode(reader, reader.uint32());
|
|
748
|
+
continue;
|
|
749
|
+
}
|
|
701
750
|
default:
|
|
702
751
|
break;
|
|
703
752
|
}
|
|
@@ -734,6 +783,12 @@ exports.ModulesHealth = {
|
|
|
734
783
|
vmappsPipeline: (0, index_1.isSet)(object.vmappsPipeline ?? object.vmapps_pipeline)
|
|
735
784
|
? exports.ModuleHealth.fromJSON(object.vmappsPipeline ?? object.vmapps_pipeline)
|
|
736
785
|
: undefined,
|
|
786
|
+
commonServiceLogsPipeline: (0, index_1.isSet)(object.commonServiceLogsPipeline ?? object.common_service_logs_pipeline)
|
|
787
|
+
? exports.ModuleHealth.fromJSON(object.commonServiceLogsPipeline ?? object.common_service_logs_pipeline)
|
|
788
|
+
: undefined,
|
|
789
|
+
vmServiceLogsPipeline: (0, index_1.isSet)(object.vmServiceLogsPipeline ?? object.vm_service_logs_pipeline)
|
|
790
|
+
? exports.ModuleHealth.fromJSON(object.vmServiceLogsPipeline ?? object.vm_service_logs_pipeline)
|
|
791
|
+
: undefined,
|
|
737
792
|
});
|
|
738
793
|
},
|
|
739
794
|
toJSON(message, use = "json") {
|
|
@@ -764,6 +819,16 @@ exports.ModulesHealth = {
|
|
|
764
819
|
? exports.ModuleHealth.toJSON(message.vmappsPipeline, use)
|
|
765
820
|
: undefined;
|
|
766
821
|
}
|
|
822
|
+
if (message.commonServiceLogsPipeline !== undefined) {
|
|
823
|
+
obj[pick("commonServiceLogsPipeline", "common_service_logs_pipeline")] = message.commonServiceLogsPipeline
|
|
824
|
+
? exports.ModuleHealth.toJSON(message.commonServiceLogsPipeline, use)
|
|
825
|
+
: undefined;
|
|
826
|
+
}
|
|
827
|
+
if (message.vmServiceLogsPipeline !== undefined) {
|
|
828
|
+
obj[pick("vmServiceLogsPipeline", "vm_service_logs_pipeline")] = message.vmServiceLogsPipeline
|
|
829
|
+
? exports.ModuleHealth.toJSON(message.vmServiceLogsPipeline, use)
|
|
830
|
+
: undefined;
|
|
831
|
+
}
|
|
767
832
|
return obj;
|
|
768
833
|
},
|
|
769
834
|
create(base) {
|
|
@@ -786,6 +851,12 @@ exports.ModulesHealth = {
|
|
|
786
851
|
message.vmappsPipeline = (object.vmappsPipeline !== undefined && object.vmappsPipeline !== null)
|
|
787
852
|
? exports.ModuleHealth.fromPartial(object.vmappsPipeline)
|
|
788
853
|
: undefined;
|
|
854
|
+
message.commonServiceLogsPipeline = (object.commonServiceLogsPipeline !== undefined && object.commonServiceLogsPipeline !== null)
|
|
855
|
+
? exports.ModuleHealth.fromPartial(object.commonServiceLogsPipeline)
|
|
856
|
+
: undefined;
|
|
857
|
+
message.vmServiceLogsPipeline = (object.vmServiceLogsPipeline !== undefined && object.vmServiceLogsPipeline !== null)
|
|
858
|
+
? exports.ModuleHealth.fromPartial(object.vmServiceLogsPipeline)
|
|
859
|
+
: undefined;
|
|
789
860
|
return message;
|
|
790
861
|
},
|
|
791
862
|
};
|
|
@@ -802,6 +873,10 @@ function ModulesHealthCustomInspect() {
|
|
|
802
873
|
parts.push("ciliumPipeline" + "=" + (0, util_1.inspect)(this.ciliumPipeline));
|
|
803
874
|
if (this.vmappsPipeline !== undefined)
|
|
804
875
|
parts.push("vmappsPipeline" + "=" + (0, util_1.inspect)(this.vmappsPipeline));
|
|
876
|
+
if (this.commonServiceLogsPipeline !== undefined)
|
|
877
|
+
parts.push("commonServiceLogsPipeline" + "=" + (0, util_1.inspect)(this.commonServiceLogsPipeline));
|
|
878
|
+
if (this.vmServiceLogsPipeline !== undefined)
|
|
879
|
+
parts.push("vmServiceLogsPipeline" + "=" + (0, util_1.inspect)(this.vmServiceLogsPipeline));
|
|
805
880
|
return `${this.$type}(${parts.join(", ")})`;
|
|
806
881
|
}
|
|
807
882
|
function ModulesHealthCustomJson() {
|
|
@@ -818,6 +893,10 @@ function ModulesHealthCustomJson() {
|
|
|
818
893
|
obj.ciliumPipeline = (0, logging_1.inspectJson)(this.ciliumPipeline);
|
|
819
894
|
if (this.vmappsPipeline !== undefined)
|
|
820
895
|
obj.vmappsPipeline = (0, logging_1.inspectJson)(this.vmappsPipeline);
|
|
896
|
+
if (this.commonServiceLogsPipeline !== undefined)
|
|
897
|
+
obj.commonServiceLogsPipeline = (0, logging_1.inspectJson)(this.commonServiceLogsPipeline);
|
|
898
|
+
if (this.vmServiceLogsPipeline !== undefined)
|
|
899
|
+
obj.vmServiceLogsPipeline = (0, logging_1.inspectJson)(this.vmServiceLogsPipeline);
|
|
821
900
|
return obj;
|
|
822
901
|
}
|
|
823
902
|
function applyModulesHealthCustom(message) {
|
|
@@ -833,9 +912,131 @@ function createBaseModulesHealth() {
|
|
|
833
912
|
cpuPipeline: undefined,
|
|
834
913
|
ciliumPipeline: undefined,
|
|
835
914
|
vmappsPipeline: undefined,
|
|
915
|
+
commonServiceLogsPipeline: undefined,
|
|
916
|
+
vmServiceLogsPipeline: undefined,
|
|
836
917
|
};
|
|
837
918
|
return applyModulesHealthCustom(message);
|
|
838
919
|
}
|
|
920
|
+
exports.HealthCheckLogs = {
|
|
921
|
+
$type: "nebius.logging.agentmanager.v1.HealthCheckLogs",
|
|
922
|
+
encode(message, writer = new index_1.BinaryWriter()) {
|
|
923
|
+
if (message.directorySizeBytes !== undefined && !message.directorySizeBytes.isZero?.()) {
|
|
924
|
+
writer.uint32(8).int64(message.directorySizeBytes.toString());
|
|
925
|
+
}
|
|
926
|
+
if (message.mountpointTotalBytes !== undefined && !message.mountpointTotalBytes.isZero?.()) {
|
|
927
|
+
writer.uint32(16).int64(message.mountpointTotalBytes.toString());
|
|
928
|
+
}
|
|
929
|
+
if (message[index_1.unknownFieldsSymbol]) {
|
|
930
|
+
writer.raw(message[index_1.unknownFieldsSymbol]);
|
|
931
|
+
}
|
|
932
|
+
return writer;
|
|
933
|
+
},
|
|
934
|
+
decode(input, length) {
|
|
935
|
+
const reader = input instanceof index_1.BinaryReader ? input : new index_1.BinaryReader(input);
|
|
936
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
937
|
+
const message = createBaseHealthCheckLogs();
|
|
938
|
+
let writer = undefined;
|
|
939
|
+
while (reader.pos < end) {
|
|
940
|
+
const tag = reader.uint32();
|
|
941
|
+
switch (tag >>> 3) {
|
|
942
|
+
case 1: {
|
|
943
|
+
if (tag !== 8)
|
|
944
|
+
break;
|
|
945
|
+
message.directorySizeBytes = index_1.Long.fromValue(reader.int64());
|
|
946
|
+
continue;
|
|
947
|
+
}
|
|
948
|
+
case 2: {
|
|
949
|
+
if (tag !== 16)
|
|
950
|
+
break;
|
|
951
|
+
message.mountpointTotalBytes = index_1.Long.fromValue(reader.int64());
|
|
952
|
+
continue;
|
|
953
|
+
}
|
|
954
|
+
default:
|
|
955
|
+
break;
|
|
956
|
+
}
|
|
957
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
958
|
+
break;
|
|
959
|
+
}
|
|
960
|
+
{
|
|
961
|
+
if (!writer)
|
|
962
|
+
writer = new index_1.BinaryWriter();
|
|
963
|
+
const skipped = reader.skip(tag & 7, tag >>> 3);
|
|
964
|
+
writer.uint32(tag).raw(skipped);
|
|
965
|
+
}
|
|
966
|
+
}
|
|
967
|
+
if (writer) {
|
|
968
|
+
message[index_1.unknownFieldsSymbol] = writer.finish();
|
|
969
|
+
}
|
|
970
|
+
return message;
|
|
971
|
+
},
|
|
972
|
+
fromJSON(object) {
|
|
973
|
+
return applyHealthCheckLogsCustom({
|
|
974
|
+
$type: "nebius.logging.agentmanager.v1.HealthCheckLogs",
|
|
975
|
+
directorySizeBytes: (0, index_1.isSet)(object.directorySizeBytes ?? object.directory_size_bytes)
|
|
976
|
+
? index_1.Long.fromValue(object.directorySizeBytes ?? object.directory_size_bytes)
|
|
977
|
+
: index_1.Long.ZERO,
|
|
978
|
+
mountpointTotalBytes: (0, index_1.isSet)(object.mountpointTotalBytes ?? object.mountpoint_total_bytes)
|
|
979
|
+
? index_1.Long.fromValue(object.mountpointTotalBytes ?? object.mountpoint_total_bytes)
|
|
980
|
+
: index_1.Long.ZERO,
|
|
981
|
+
});
|
|
982
|
+
},
|
|
983
|
+
toJSON(message, use = "json") {
|
|
984
|
+
const obj = {};
|
|
985
|
+
const pick = (json, pb) => (use === "json" ? json : pb);
|
|
986
|
+
if (!message.directorySizeBytes?.isZero?.()) {
|
|
987
|
+
obj[pick("directorySizeBytes", "directory_size_bytes")] = (message.directorySizeBytes || index_1.Long.ZERO).toString();
|
|
988
|
+
}
|
|
989
|
+
if (!message.mountpointTotalBytes?.isZero?.()) {
|
|
990
|
+
obj[pick("mountpointTotalBytes", "mountpoint_total_bytes")] = (message.mountpointTotalBytes || index_1.Long.ZERO).toString();
|
|
991
|
+
}
|
|
992
|
+
return obj;
|
|
993
|
+
},
|
|
994
|
+
create(base) {
|
|
995
|
+
return exports.HealthCheckLogs.fromPartial(base ?? {});
|
|
996
|
+
},
|
|
997
|
+
fromPartial(object) {
|
|
998
|
+
const message = createBaseHealthCheckLogs();
|
|
999
|
+
message.directorySizeBytes = (object.directorySizeBytes !== undefined && object.directorySizeBytes !== null)
|
|
1000
|
+
? index_1.Long.fromValue(object.directorySizeBytes)
|
|
1001
|
+
: index_1.Long.ZERO;
|
|
1002
|
+
message.mountpointTotalBytes = (object.mountpointTotalBytes !== undefined && object.mountpointTotalBytes !== null)
|
|
1003
|
+
? index_1.Long.fromValue(object.mountpointTotalBytes)
|
|
1004
|
+
: index_1.Long.ZERO;
|
|
1005
|
+
return message;
|
|
1006
|
+
},
|
|
1007
|
+
};
|
|
1008
|
+
protobuf_1.protoRegistry.registerMessage(exports.HealthCheckLogs);
|
|
1009
|
+
function HealthCheckLogsCustomInspect() {
|
|
1010
|
+
const parts = [];
|
|
1011
|
+
if (!this.directorySizeBytes?.isZero?.())
|
|
1012
|
+
parts.push("directorySizeBytes" + "=" + (0, util_1.inspect)(this.directorySizeBytes));
|
|
1013
|
+
if (!this.mountpointTotalBytes?.isZero?.())
|
|
1014
|
+
parts.push("mountpointTotalBytes" + "=" + (0, util_1.inspect)(this.mountpointTotalBytes));
|
|
1015
|
+
return `${this.$type}(${parts.join(", ")})`;
|
|
1016
|
+
}
|
|
1017
|
+
function HealthCheckLogsCustomJson() {
|
|
1018
|
+
const obj = {
|
|
1019
|
+
type: this.$type,
|
|
1020
|
+
};
|
|
1021
|
+
if (!this.directorySizeBytes?.isZero?.())
|
|
1022
|
+
obj.directorySizeBytes = (0, logging_1.inspectJson)(this.directorySizeBytes);
|
|
1023
|
+
if (!this.mountpointTotalBytes?.isZero?.())
|
|
1024
|
+
obj.mountpointTotalBytes = (0, logging_1.inspectJson)(this.mountpointTotalBytes);
|
|
1025
|
+
return obj;
|
|
1026
|
+
}
|
|
1027
|
+
function applyHealthCheckLogsCustom(message) {
|
|
1028
|
+
message[logging_1.custom] = HealthCheckLogsCustomInspect;
|
|
1029
|
+
message[logging_1.customJson] = HealthCheckLogsCustomJson;
|
|
1030
|
+
return message;
|
|
1031
|
+
}
|
|
1032
|
+
function createBaseHealthCheckLogs() {
|
|
1033
|
+
const message = {
|
|
1034
|
+
$type: "nebius.logging.agentmanager.v1.HealthCheckLogs",
|
|
1035
|
+
directorySizeBytes: index_1.Long.ZERO,
|
|
1036
|
+
mountpointTotalBytes: index_1.Long.ZERO,
|
|
1037
|
+
};
|
|
1038
|
+
return applyHealthCheckLogsCustom(message);
|
|
1039
|
+
}
|
|
839
1040
|
exports.ModuleHealth = {
|
|
840
1041
|
$type: "nebius.logging.agentmanager.v1.ModuleHealth",
|
|
841
1042
|
encode(message, writer = new index_1.BinaryWriter()) {
|