@lansweeper/discovery-sensor-proto 2.35.3 → 2.35.4
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.
|
@@ -6922,6 +6922,11 @@ export class ProcessorPerformance extends jspb.Message {
|
|
|
6922
6922
|
getPercentProcessorTime(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
6923
6923
|
setPercentProcessorTime(value?: google_protobuf_wrappers_pb.UInt64Value): ProcessorPerformance;
|
|
6924
6924
|
|
|
6925
|
+
hasName(): boolean;
|
|
6926
|
+
clearName(): void;
|
|
6927
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
6928
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): ProcessorPerformance;
|
|
6929
|
+
|
|
6925
6930
|
serializeBinary(): Uint8Array;
|
|
6926
6931
|
toObject(includeInstance?: boolean): ProcessorPerformance.AsObject;
|
|
6927
6932
|
static toObject(includeInstance: boolean, msg: ProcessorPerformance): ProcessorPerformance.AsObject;
|
|
@@ -6935,6 +6940,7 @@ export class ProcessorPerformance extends jspb.Message {
|
|
|
6935
6940
|
export namespace ProcessorPerformance {
|
|
6936
6941
|
export type AsObject = {
|
|
6937
6942
|
percentProcessorTime?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
6943
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
6938
6944
|
}
|
|
6939
6945
|
}
|
|
6940
6946
|
|
|
@@ -6955,6 +6961,11 @@ export class DiskPerformance extends jspb.Message {
|
|
|
6955
6961
|
getDiskWritesPerSec(): google_protobuf_wrappers_pb.UInt32Value | undefined;
|
|
6956
6962
|
setDiskWritesPerSec(value?: google_protobuf_wrappers_pb.UInt32Value): DiskPerformance;
|
|
6957
6963
|
|
|
6964
|
+
hasName(): boolean;
|
|
6965
|
+
clearName(): void;
|
|
6966
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
6967
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): DiskPerformance;
|
|
6968
|
+
|
|
6958
6969
|
serializeBinary(): Uint8Array;
|
|
6959
6970
|
toObject(includeInstance?: boolean): DiskPerformance.AsObject;
|
|
6960
6971
|
static toObject(includeInstance: boolean, msg: DiskPerformance): DiskPerformance.AsObject;
|
|
@@ -6970,6 +6981,7 @@ export namespace DiskPerformance {
|
|
|
6970
6981
|
diskReadsPerSec?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
6971
6982
|
diskTransfersPerSec?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
6972
6983
|
diskWritesPerSec?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
6984
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
6973
6985
|
}
|
|
6974
6986
|
}
|
|
6975
6987
|
|
|
@@ -58386,7 +58386,8 @@ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.
|
|
|
58386
58386
|
*/
|
|
58387
58387
|
proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.toObject = function(includeInstance, msg) {
|
|
58388
58388
|
var f, obj = {
|
|
58389
|
-
percentProcessorTime: (f = msg.getPercentProcessorTime()) && google_protobuf_wrappers_pb.UInt64Value.toObject(includeInstance, f)
|
|
58389
|
+
percentProcessorTime: (f = msg.getPercentProcessorTime()) && google_protobuf_wrappers_pb.UInt64Value.toObject(includeInstance, f),
|
|
58390
|
+
name: (f = msg.getName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
58390
58391
|
};
|
|
58391
58392
|
|
|
58392
58393
|
if (includeInstance) {
|
|
@@ -58428,6 +58429,11 @@ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.deserializ
|
|
|
58428
58429
|
reader.readMessage(value,google_protobuf_wrappers_pb.UInt64Value.deserializeBinaryFromReader);
|
|
58429
58430
|
msg.setPercentProcessorTime(value);
|
|
58430
58431
|
break;
|
|
58432
|
+
case 2:
|
|
58433
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
58434
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
58435
|
+
msg.setName(value);
|
|
58436
|
+
break;
|
|
58431
58437
|
default:
|
|
58432
58438
|
reader.skipField();
|
|
58433
58439
|
break;
|
|
@@ -58465,6 +58471,14 @@ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.serializeB
|
|
|
58465
58471
|
google_protobuf_wrappers_pb.UInt64Value.serializeBinaryToWriter
|
|
58466
58472
|
);
|
|
58467
58473
|
}
|
|
58474
|
+
f = message.getName();
|
|
58475
|
+
if (f != null) {
|
|
58476
|
+
writer.writeMessage(
|
|
58477
|
+
2,
|
|
58478
|
+
f,
|
|
58479
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
58480
|
+
);
|
|
58481
|
+
}
|
|
58468
58482
|
};
|
|
58469
58483
|
|
|
58470
58484
|
|
|
@@ -58505,6 +58519,43 @@ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.
|
|
|
58505
58519
|
};
|
|
58506
58520
|
|
|
58507
58521
|
|
|
58522
|
+
/**
|
|
58523
|
+
* optional google.protobuf.StringValue name = 2;
|
|
58524
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
58525
|
+
*/
|
|
58526
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.getName = function() {
|
|
58527
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
58528
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 2));
|
|
58529
|
+
};
|
|
58530
|
+
|
|
58531
|
+
|
|
58532
|
+
/**
|
|
58533
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
58534
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance} returns this
|
|
58535
|
+
*/
|
|
58536
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.setName = function(value) {
|
|
58537
|
+
return jspb.Message.setWrapperField(this, 2, value);
|
|
58538
|
+
};
|
|
58539
|
+
|
|
58540
|
+
|
|
58541
|
+
/**
|
|
58542
|
+
* Clears the message field making it undefined.
|
|
58543
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance} returns this
|
|
58544
|
+
*/
|
|
58545
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.clearName = function() {
|
|
58546
|
+
return this.setName(undefined);
|
|
58547
|
+
};
|
|
58548
|
+
|
|
58549
|
+
|
|
58550
|
+
/**
|
|
58551
|
+
* Returns whether this field is set.
|
|
58552
|
+
* @return {boolean}
|
|
58553
|
+
*/
|
|
58554
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.hasName = function() {
|
|
58555
|
+
return jspb.Message.getField(this, 2) != null;
|
|
58556
|
+
};
|
|
58557
|
+
|
|
58558
|
+
|
|
58508
58559
|
|
|
58509
58560
|
|
|
58510
58561
|
|
|
@@ -58539,7 +58590,8 @@ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.toObject = func
|
|
|
58539
58590
|
var f, obj = {
|
|
58540
58591
|
diskReadsPerSec: (f = msg.getDiskReadsPerSec()) && google_protobuf_wrappers_pb.UInt32Value.toObject(includeInstance, f),
|
|
58541
58592
|
diskTransfersPerSec: (f = msg.getDiskTransfersPerSec()) && google_protobuf_wrappers_pb.UInt32Value.toObject(includeInstance, f),
|
|
58542
|
-
diskWritesPerSec: (f = msg.getDiskWritesPerSec()) && google_protobuf_wrappers_pb.UInt32Value.toObject(includeInstance, f)
|
|
58593
|
+
diskWritesPerSec: (f = msg.getDiskWritesPerSec()) && google_protobuf_wrappers_pb.UInt32Value.toObject(includeInstance, f),
|
|
58594
|
+
name: (f = msg.getName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
58543
58595
|
};
|
|
58544
58596
|
|
|
58545
58597
|
if (includeInstance) {
|
|
@@ -58591,6 +58643,11 @@ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.deserializeBina
|
|
|
58591
58643
|
reader.readMessage(value,google_protobuf_wrappers_pb.UInt32Value.deserializeBinaryFromReader);
|
|
58592
58644
|
msg.setDiskWritesPerSec(value);
|
|
58593
58645
|
break;
|
|
58646
|
+
case 4:
|
|
58647
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
58648
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
58649
|
+
msg.setName(value);
|
|
58650
|
+
break;
|
|
58594
58651
|
default:
|
|
58595
58652
|
reader.skipField();
|
|
58596
58653
|
break;
|
|
@@ -58644,6 +58701,14 @@ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.serializeBinary
|
|
|
58644
58701
|
google_protobuf_wrappers_pb.UInt32Value.serializeBinaryToWriter
|
|
58645
58702
|
);
|
|
58646
58703
|
}
|
|
58704
|
+
f = message.getName();
|
|
58705
|
+
if (f != null) {
|
|
58706
|
+
writer.writeMessage(
|
|
58707
|
+
4,
|
|
58708
|
+
f,
|
|
58709
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
58710
|
+
);
|
|
58711
|
+
}
|
|
58647
58712
|
};
|
|
58648
58713
|
|
|
58649
58714
|
|
|
@@ -58758,6 +58823,43 @@ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.hasDi
|
|
|
58758
58823
|
};
|
|
58759
58824
|
|
|
58760
58825
|
|
|
58826
|
+
/**
|
|
58827
|
+
* optional google.protobuf.StringValue name = 4;
|
|
58828
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
58829
|
+
*/
|
|
58830
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.getName = function() {
|
|
58831
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
58832
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 4));
|
|
58833
|
+
};
|
|
58834
|
+
|
|
58835
|
+
|
|
58836
|
+
/**
|
|
58837
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
58838
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance} returns this
|
|
58839
|
+
*/
|
|
58840
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.setName = function(value) {
|
|
58841
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
58842
|
+
};
|
|
58843
|
+
|
|
58844
|
+
|
|
58845
|
+
/**
|
|
58846
|
+
* Clears the message field making it undefined.
|
|
58847
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance} returns this
|
|
58848
|
+
*/
|
|
58849
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.clearName = function() {
|
|
58850
|
+
return this.setName(undefined);
|
|
58851
|
+
};
|
|
58852
|
+
|
|
58853
|
+
|
|
58854
|
+
/**
|
|
58855
|
+
* Returns whether this field is set.
|
|
58856
|
+
* @return {boolean}
|
|
58857
|
+
*/
|
|
58858
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.hasName = function() {
|
|
58859
|
+
return jspb.Message.getField(this, 4) != null;
|
|
58860
|
+
};
|
|
58861
|
+
|
|
58862
|
+
|
|
58761
58863
|
|
|
58762
58864
|
|
|
58763
58865
|
|