@lansweeper/discovery-sensor-proto 2.39.0 → 2.41.0
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.
|
@@ -701,6 +701,20 @@ export class NetworkIpv6 extends jspb.Message {
|
|
|
701
701
|
setSubnetMasksList(value: Array<string>): NetworkIpv6;
|
|
702
702
|
addSubnetMasks(value: string, index?: number): string;
|
|
703
703
|
|
|
704
|
+
hasConfirmedInterfaceName(): boolean;
|
|
705
|
+
clearConfirmedInterfaceName(): void;
|
|
706
|
+
getConfirmedInterfaceName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
707
|
+
setConfirmedInterfaceName(value?: google_protobuf_wrappers_pb.StringValue): NetworkIpv6;
|
|
708
|
+
|
|
709
|
+
hasNetworkSignature(): boolean;
|
|
710
|
+
clearNetworkSignature(): void;
|
|
711
|
+
getNetworkSignature(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
712
|
+
setNetworkSignature(value?: google_protobuf_wrappers_pb.StringValue): NetworkIpv6;
|
|
713
|
+
clearPrefixLengthList(): void;
|
|
714
|
+
getPrefixLengthList(): Array<string>;
|
|
715
|
+
setPrefixLengthList(value: Array<string>): NetworkIpv6;
|
|
716
|
+
addPrefixLength(value: string, index?: number): string;
|
|
717
|
+
|
|
704
718
|
serializeBinary(): Uint8Array;
|
|
705
719
|
toObject(includeInstance?: boolean): NetworkIpv6.AsObject;
|
|
706
720
|
static toObject(includeInstance: boolean, msg: NetworkIpv6): NetworkIpv6.AsObject;
|
|
@@ -718,6 +732,9 @@ export namespace NetworkIpv6 {
|
|
|
718
732
|
router?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
719
733
|
addressesList: Array<string>,
|
|
720
734
|
subnetMasksList: Array<string>,
|
|
735
|
+
confirmedInterfaceName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
736
|
+
networkSignature?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
737
|
+
prefixLengthList: Array<string>,
|
|
721
738
|
}
|
|
722
739
|
}
|
|
723
740
|
|
|
@@ -731,6 +748,10 @@ export class NetworkDns extends jspb.Message {
|
|
|
731
748
|
getServerAddressesList(): Array<string>;
|
|
732
749
|
setServerAddressesList(value: Array<string>): NetworkDns;
|
|
733
750
|
addServerAddresses(value: string, index?: number): string;
|
|
751
|
+
clearSearchDomainsList(): void;
|
|
752
|
+
getSearchDomainsList(): Array<string>;
|
|
753
|
+
setSearchDomainsList(value: Array<string>): NetworkDns;
|
|
754
|
+
addSearchDomains(value: string, index?: number): string;
|
|
734
755
|
|
|
735
756
|
serializeBinary(): Uint8Array;
|
|
736
757
|
toObject(includeInstance?: boolean): NetworkDns.AsObject;
|
|
@@ -746,6 +767,7 @@ export namespace NetworkDns {
|
|
|
746
767
|
export type AsObject = {
|
|
747
768
|
domainName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
748
769
|
serverAddressesList: Array<string>,
|
|
770
|
+
searchDomainsList: Array<string>,
|
|
749
771
|
}
|
|
750
772
|
}
|
|
751
773
|
|
|
@@ -1460,6 +1482,20 @@ export class Software extends jspb.Message {
|
|
|
1460
1482
|
getHas64BitIntelCode(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
1461
1483
|
setHas64BitIntelCode(value?: google_protobuf_wrappers_pb.StringValue): Software;
|
|
1462
1484
|
|
|
1485
|
+
hasArchKind(): boolean;
|
|
1486
|
+
clearArchKind(): void;
|
|
1487
|
+
getArchKind(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
1488
|
+
setArchKind(value?: google_protobuf_wrappers_pb.StringValue): Software;
|
|
1489
|
+
|
|
1490
|
+
hasObtainedFrom(): boolean;
|
|
1491
|
+
clearObtainedFrom(): void;
|
|
1492
|
+
getObtainedFrom(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
1493
|
+
setObtainedFrom(value?: google_protobuf_wrappers_pb.StringValue): Software;
|
|
1494
|
+
clearSignedByList(): void;
|
|
1495
|
+
getSignedByList(): Array<string>;
|
|
1496
|
+
setSignedByList(value: Array<string>): Software;
|
|
1497
|
+
addSignedBy(value: string, index?: number): string;
|
|
1498
|
+
|
|
1463
1499
|
serializeBinary(): Uint8Array;
|
|
1464
1500
|
toObject(includeInstance?: boolean): Software.AsObject;
|
|
1465
1501
|
static toObject(includeInstance: boolean, msg: Software): Software.AsObject;
|
|
@@ -1479,6 +1515,9 @@ export namespace Software {
|
|
|
1479
1515
|
path?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1480
1516
|
runtimeEnvironment?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1481
1517
|
has64BitIntelCode?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1518
|
+
archKind?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1519
|
+
obtainedFrom?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1520
|
+
signedByList: Array<string>,
|
|
1482
1521
|
}
|
|
1483
1522
|
}
|
|
1484
1523
|
|
|
@@ -668,7 +668,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
668
668
|
* @constructor
|
|
669
669
|
*/
|
|
670
670
|
proto.com.lansweeper.discovery.sensor.mac.v1.Software = function(opt_data) {
|
|
671
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
671
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.com.lansweeper.discovery.sensor.mac.v1.Software.repeatedFields_, null);
|
|
672
672
|
};
|
|
673
673
|
goog.inherits(proto.com.lansweeper.discovery.sensor.mac.v1.Software, jspb.Message);
|
|
674
674
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -6272,7 +6272,7 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv4AdditionalRoutes.prototy
|
|
|
6272
6272
|
* @private {!Array<number>}
|
|
6273
6273
|
* @const
|
|
6274
6274
|
*/
|
|
6275
|
-
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.repeatedFields_ = [4,5];
|
|
6275
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.repeatedFields_ = [4,5,8];
|
|
6276
6276
|
|
|
6277
6277
|
|
|
6278
6278
|
|
|
@@ -6309,7 +6309,10 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.toObject = function(inc
|
|
|
6309
6309
|
interfaceName: (f = msg.getInterfaceName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
6310
6310
|
router: (f = msg.getRouter()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
6311
6311
|
addressesList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
6312
|
-
subnetMasksList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f
|
|
6312
|
+
subnetMasksList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
6313
|
+
confirmedInterfaceName: (f = msg.getConfirmedInterfaceName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
6314
|
+
networkSignature: (f = msg.getNetworkSignature()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
6315
|
+
prefixLengthList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f
|
|
6313
6316
|
};
|
|
6314
6317
|
|
|
6315
6318
|
if (includeInstance) {
|
|
@@ -6369,6 +6372,20 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.deserializeBinaryFromRe
|
|
|
6369
6372
|
var value = /** @type {string} */ (reader.readString());
|
|
6370
6373
|
msg.addSubnetMasks(value);
|
|
6371
6374
|
break;
|
|
6375
|
+
case 6:
|
|
6376
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
6377
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
6378
|
+
msg.setConfirmedInterfaceName(value);
|
|
6379
|
+
break;
|
|
6380
|
+
case 7:
|
|
6381
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
6382
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
6383
|
+
msg.setNetworkSignature(value);
|
|
6384
|
+
break;
|
|
6385
|
+
case 8:
|
|
6386
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6387
|
+
msg.addPrefixLength(value);
|
|
6388
|
+
break;
|
|
6372
6389
|
default:
|
|
6373
6390
|
reader.skipField();
|
|
6374
6391
|
break;
|
|
@@ -6436,6 +6453,29 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.serializeBinaryToWriter
|
|
|
6436
6453
|
f
|
|
6437
6454
|
);
|
|
6438
6455
|
}
|
|
6456
|
+
f = message.getConfirmedInterfaceName();
|
|
6457
|
+
if (f != null) {
|
|
6458
|
+
writer.writeMessage(
|
|
6459
|
+
6,
|
|
6460
|
+
f,
|
|
6461
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
6462
|
+
);
|
|
6463
|
+
}
|
|
6464
|
+
f = message.getNetworkSignature();
|
|
6465
|
+
if (f != null) {
|
|
6466
|
+
writer.writeMessage(
|
|
6467
|
+
7,
|
|
6468
|
+
f,
|
|
6469
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
6470
|
+
);
|
|
6471
|
+
}
|
|
6472
|
+
f = message.getPrefixLengthList();
|
|
6473
|
+
if (f.length > 0) {
|
|
6474
|
+
writer.writeRepeatedString(
|
|
6475
|
+
8,
|
|
6476
|
+
f
|
|
6477
|
+
);
|
|
6478
|
+
}
|
|
6439
6479
|
};
|
|
6440
6480
|
|
|
6441
6481
|
|
|
@@ -6624,13 +6664,124 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.clearSubnetMa
|
|
|
6624
6664
|
};
|
|
6625
6665
|
|
|
6626
6666
|
|
|
6667
|
+
/**
|
|
6668
|
+
* optional google.protobuf.StringValue confirmed_interface_name = 6;
|
|
6669
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
6670
|
+
*/
|
|
6671
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.getConfirmedInterfaceName = function() {
|
|
6672
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
6673
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 6));
|
|
6674
|
+
};
|
|
6675
|
+
|
|
6676
|
+
|
|
6677
|
+
/**
|
|
6678
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
6679
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
|
|
6680
|
+
*/
|
|
6681
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.setConfirmedInterfaceName = function(value) {
|
|
6682
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
6683
|
+
};
|
|
6684
|
+
|
|
6685
|
+
|
|
6686
|
+
/**
|
|
6687
|
+
* Clears the message field making it undefined.
|
|
6688
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
|
|
6689
|
+
*/
|
|
6690
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.clearConfirmedInterfaceName = function() {
|
|
6691
|
+
return this.setConfirmedInterfaceName(undefined);
|
|
6692
|
+
};
|
|
6693
|
+
|
|
6694
|
+
|
|
6695
|
+
/**
|
|
6696
|
+
* Returns whether this field is set.
|
|
6697
|
+
* @return {boolean}
|
|
6698
|
+
*/
|
|
6699
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.hasConfirmedInterfaceName = function() {
|
|
6700
|
+
return jspb.Message.getField(this, 6) != null;
|
|
6701
|
+
};
|
|
6702
|
+
|
|
6703
|
+
|
|
6704
|
+
/**
|
|
6705
|
+
* optional google.protobuf.StringValue network_signature = 7;
|
|
6706
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
6707
|
+
*/
|
|
6708
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.getNetworkSignature = function() {
|
|
6709
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
6710
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 7));
|
|
6711
|
+
};
|
|
6712
|
+
|
|
6713
|
+
|
|
6714
|
+
/**
|
|
6715
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
6716
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
|
|
6717
|
+
*/
|
|
6718
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.setNetworkSignature = function(value) {
|
|
6719
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
6720
|
+
};
|
|
6721
|
+
|
|
6722
|
+
|
|
6723
|
+
/**
|
|
6724
|
+
* Clears the message field making it undefined.
|
|
6725
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
|
|
6726
|
+
*/
|
|
6727
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.clearNetworkSignature = function() {
|
|
6728
|
+
return this.setNetworkSignature(undefined);
|
|
6729
|
+
};
|
|
6730
|
+
|
|
6731
|
+
|
|
6732
|
+
/**
|
|
6733
|
+
* Returns whether this field is set.
|
|
6734
|
+
* @return {boolean}
|
|
6735
|
+
*/
|
|
6736
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.hasNetworkSignature = function() {
|
|
6737
|
+
return jspb.Message.getField(this, 7) != null;
|
|
6738
|
+
};
|
|
6739
|
+
|
|
6740
|
+
|
|
6741
|
+
/**
|
|
6742
|
+
* repeated string prefix_length = 8;
|
|
6743
|
+
* @return {!Array<string>}
|
|
6744
|
+
*/
|
|
6745
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.getPrefixLengthList = function() {
|
|
6746
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 8));
|
|
6747
|
+
};
|
|
6748
|
+
|
|
6749
|
+
|
|
6750
|
+
/**
|
|
6751
|
+
* @param {!Array<string>} value
|
|
6752
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
|
|
6753
|
+
*/
|
|
6754
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.setPrefixLengthList = function(value) {
|
|
6755
|
+
return jspb.Message.setField(this, 8, value || []);
|
|
6756
|
+
};
|
|
6757
|
+
|
|
6758
|
+
|
|
6759
|
+
/**
|
|
6760
|
+
* @param {string} value
|
|
6761
|
+
* @param {number=} opt_index
|
|
6762
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
|
|
6763
|
+
*/
|
|
6764
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.addPrefixLength = function(value, opt_index) {
|
|
6765
|
+
return jspb.Message.addToRepeatedField(this, 8, value, opt_index);
|
|
6766
|
+
};
|
|
6767
|
+
|
|
6768
|
+
|
|
6769
|
+
/**
|
|
6770
|
+
* Clears the list making it empty but non-null.
|
|
6771
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
|
|
6772
|
+
*/
|
|
6773
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.clearPrefixLengthList = function() {
|
|
6774
|
+
return this.setPrefixLengthList([]);
|
|
6775
|
+
};
|
|
6776
|
+
|
|
6777
|
+
|
|
6627
6778
|
|
|
6628
6779
|
/**
|
|
6629
6780
|
* List of repeated fields within this message type.
|
|
6630
6781
|
* @private {!Array<number>}
|
|
6631
6782
|
* @const
|
|
6632
6783
|
*/
|
|
6633
|
-
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.repeatedFields_ = [2];
|
|
6784
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.repeatedFields_ = [2,3];
|
|
6634
6785
|
|
|
6635
6786
|
|
|
6636
6787
|
|
|
@@ -6664,7 +6815,8 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.toObject = fun
|
|
|
6664
6815
|
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.toObject = function(includeInstance, msg) {
|
|
6665
6816
|
var f, obj = {
|
|
6666
6817
|
domainName: (f = msg.getDomainName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
6667
|
-
serverAddressesList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f
|
|
6818
|
+
serverAddressesList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
6819
|
+
searchDomainsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f
|
|
6668
6820
|
};
|
|
6669
6821
|
|
|
6670
6822
|
if (includeInstance) {
|
|
@@ -6710,6 +6862,10 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.deserializeBinaryFromRea
|
|
|
6710
6862
|
var value = /** @type {string} */ (reader.readString());
|
|
6711
6863
|
msg.addServerAddresses(value);
|
|
6712
6864
|
break;
|
|
6865
|
+
case 3:
|
|
6866
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6867
|
+
msg.addSearchDomains(value);
|
|
6868
|
+
break;
|
|
6713
6869
|
default:
|
|
6714
6870
|
reader.skipField();
|
|
6715
6871
|
break;
|
|
@@ -6754,6 +6910,13 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.serializeBinaryToWriter
|
|
|
6754
6910
|
f
|
|
6755
6911
|
);
|
|
6756
6912
|
}
|
|
6913
|
+
f = message.getSearchDomainsList();
|
|
6914
|
+
if (f.length > 0) {
|
|
6915
|
+
writer.writeRepeatedString(
|
|
6916
|
+
3,
|
|
6917
|
+
f
|
|
6918
|
+
);
|
|
6919
|
+
}
|
|
6757
6920
|
};
|
|
6758
6921
|
|
|
6759
6922
|
|
|
@@ -6831,6 +6994,43 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.clearServerAdd
|
|
|
6831
6994
|
};
|
|
6832
6995
|
|
|
6833
6996
|
|
|
6997
|
+
/**
|
|
6998
|
+
* repeated string search_domains = 3;
|
|
6999
|
+
* @return {!Array<string>}
|
|
7000
|
+
*/
|
|
7001
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.getSearchDomainsList = function() {
|
|
7002
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 3));
|
|
7003
|
+
};
|
|
7004
|
+
|
|
7005
|
+
|
|
7006
|
+
/**
|
|
7007
|
+
* @param {!Array<string>} value
|
|
7008
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns} returns this
|
|
7009
|
+
*/
|
|
7010
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.setSearchDomainsList = function(value) {
|
|
7011
|
+
return jspb.Message.setField(this, 3, value || []);
|
|
7012
|
+
};
|
|
7013
|
+
|
|
7014
|
+
|
|
7015
|
+
/**
|
|
7016
|
+
* @param {string} value
|
|
7017
|
+
* @param {number=} opt_index
|
|
7018
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns} returns this
|
|
7019
|
+
*/
|
|
7020
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.addSearchDomains = function(value, opt_index) {
|
|
7021
|
+
return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
|
|
7022
|
+
};
|
|
7023
|
+
|
|
7024
|
+
|
|
7025
|
+
/**
|
|
7026
|
+
* Clears the list making it empty but non-null.
|
|
7027
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns} returns this
|
|
7028
|
+
*/
|
|
7029
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.clearSearchDomainsList = function() {
|
|
7030
|
+
return this.setSearchDomainsList([]);
|
|
7031
|
+
};
|
|
7032
|
+
|
|
7033
|
+
|
|
6834
7034
|
|
|
6835
7035
|
/**
|
|
6836
7036
|
* List of repeated fields within this message type.
|
|
@@ -12031,6 +12231,13 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacSoftware.prototype.clearEntriesL
|
|
|
12031
12231
|
|
|
12032
12232
|
|
|
12033
12233
|
|
|
12234
|
+
/**
|
|
12235
|
+
* List of repeated fields within this message type.
|
|
12236
|
+
* @private {!Array<number>}
|
|
12237
|
+
* @const
|
|
12238
|
+
*/
|
|
12239
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.repeatedFields_ = [10];
|
|
12240
|
+
|
|
12034
12241
|
|
|
12035
12242
|
|
|
12036
12243
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -12068,7 +12275,10 @@ proto.com.lansweeper.discovery.sensor.mac.v1.Software.toObject = function(includ
|
|
|
12068
12275
|
description: (f = msg.getDescription()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
12069
12276
|
path: (f = msg.getPath()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
12070
12277
|
runtimeEnvironment: (f = msg.getRuntimeEnvironment()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
12071
|
-
has64BitIntelCode: (f = msg.getHas64BitIntelCode()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
12278
|
+
has64BitIntelCode: (f = msg.getHas64BitIntelCode()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
12279
|
+
archKind: (f = msg.getArchKind()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
12280
|
+
obtainedFrom: (f = msg.getObtainedFrom()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
12281
|
+
signedByList: (f = jspb.Message.getRepeatedField(msg, 10)) == null ? undefined : f
|
|
12072
12282
|
};
|
|
12073
12283
|
|
|
12074
12284
|
if (includeInstance) {
|
|
@@ -12140,6 +12350,20 @@ proto.com.lansweeper.discovery.sensor.mac.v1.Software.deserializeBinaryFromReade
|
|
|
12140
12350
|
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
12141
12351
|
msg.setHas64BitIntelCode(value);
|
|
12142
12352
|
break;
|
|
12353
|
+
case 8:
|
|
12354
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
12355
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
12356
|
+
msg.setArchKind(value);
|
|
12357
|
+
break;
|
|
12358
|
+
case 9:
|
|
12359
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
12360
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
12361
|
+
msg.setObtainedFrom(value);
|
|
12362
|
+
break;
|
|
12363
|
+
case 10:
|
|
12364
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12365
|
+
msg.addSignedBy(value);
|
|
12366
|
+
break;
|
|
12143
12367
|
default:
|
|
12144
12368
|
reader.skipField();
|
|
12145
12369
|
break;
|
|
@@ -12225,6 +12449,29 @@ proto.com.lansweeper.discovery.sensor.mac.v1.Software.serializeBinaryToWriter =
|
|
|
12225
12449
|
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
12226
12450
|
);
|
|
12227
12451
|
}
|
|
12452
|
+
f = message.getArchKind();
|
|
12453
|
+
if (f != null) {
|
|
12454
|
+
writer.writeMessage(
|
|
12455
|
+
8,
|
|
12456
|
+
f,
|
|
12457
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
12458
|
+
);
|
|
12459
|
+
}
|
|
12460
|
+
f = message.getObtainedFrom();
|
|
12461
|
+
if (f != null) {
|
|
12462
|
+
writer.writeMessage(
|
|
12463
|
+
9,
|
|
12464
|
+
f,
|
|
12465
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
12466
|
+
);
|
|
12467
|
+
}
|
|
12468
|
+
f = message.getSignedByList();
|
|
12469
|
+
if (f.length > 0) {
|
|
12470
|
+
writer.writeRepeatedString(
|
|
12471
|
+
10,
|
|
12472
|
+
f
|
|
12473
|
+
);
|
|
12474
|
+
}
|
|
12228
12475
|
};
|
|
12229
12476
|
|
|
12230
12477
|
|
|
@@ -12487,6 +12734,117 @@ proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.hasHas64BitIntel
|
|
|
12487
12734
|
};
|
|
12488
12735
|
|
|
12489
12736
|
|
|
12737
|
+
/**
|
|
12738
|
+
* optional google.protobuf.StringValue arch_kind = 8;
|
|
12739
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
12740
|
+
*/
|
|
12741
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.getArchKind = function() {
|
|
12742
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
12743
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 8));
|
|
12744
|
+
};
|
|
12745
|
+
|
|
12746
|
+
|
|
12747
|
+
/**
|
|
12748
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
12749
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Software} returns this
|
|
12750
|
+
*/
|
|
12751
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.setArchKind = function(value) {
|
|
12752
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
12753
|
+
};
|
|
12754
|
+
|
|
12755
|
+
|
|
12756
|
+
/**
|
|
12757
|
+
* Clears the message field making it undefined.
|
|
12758
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Software} returns this
|
|
12759
|
+
*/
|
|
12760
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.clearArchKind = function() {
|
|
12761
|
+
return this.setArchKind(undefined);
|
|
12762
|
+
};
|
|
12763
|
+
|
|
12764
|
+
|
|
12765
|
+
/**
|
|
12766
|
+
* Returns whether this field is set.
|
|
12767
|
+
* @return {boolean}
|
|
12768
|
+
*/
|
|
12769
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.hasArchKind = function() {
|
|
12770
|
+
return jspb.Message.getField(this, 8) != null;
|
|
12771
|
+
};
|
|
12772
|
+
|
|
12773
|
+
|
|
12774
|
+
/**
|
|
12775
|
+
* optional google.protobuf.StringValue obtained_from = 9;
|
|
12776
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
12777
|
+
*/
|
|
12778
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.getObtainedFrom = function() {
|
|
12779
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
12780
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 9));
|
|
12781
|
+
};
|
|
12782
|
+
|
|
12783
|
+
|
|
12784
|
+
/**
|
|
12785
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
12786
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Software} returns this
|
|
12787
|
+
*/
|
|
12788
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.setObtainedFrom = function(value) {
|
|
12789
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
12790
|
+
};
|
|
12791
|
+
|
|
12792
|
+
|
|
12793
|
+
/**
|
|
12794
|
+
* Clears the message field making it undefined.
|
|
12795
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Software} returns this
|
|
12796
|
+
*/
|
|
12797
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.clearObtainedFrom = function() {
|
|
12798
|
+
return this.setObtainedFrom(undefined);
|
|
12799
|
+
};
|
|
12800
|
+
|
|
12801
|
+
|
|
12802
|
+
/**
|
|
12803
|
+
* Returns whether this field is set.
|
|
12804
|
+
* @return {boolean}
|
|
12805
|
+
*/
|
|
12806
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.hasObtainedFrom = function() {
|
|
12807
|
+
return jspb.Message.getField(this, 9) != null;
|
|
12808
|
+
};
|
|
12809
|
+
|
|
12810
|
+
|
|
12811
|
+
/**
|
|
12812
|
+
* repeated string signed_by = 10;
|
|
12813
|
+
* @return {!Array<string>}
|
|
12814
|
+
*/
|
|
12815
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.getSignedByList = function() {
|
|
12816
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 10));
|
|
12817
|
+
};
|
|
12818
|
+
|
|
12819
|
+
|
|
12820
|
+
/**
|
|
12821
|
+
* @param {!Array<string>} value
|
|
12822
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Software} returns this
|
|
12823
|
+
*/
|
|
12824
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.setSignedByList = function(value) {
|
|
12825
|
+
return jspb.Message.setField(this, 10, value || []);
|
|
12826
|
+
};
|
|
12827
|
+
|
|
12828
|
+
|
|
12829
|
+
/**
|
|
12830
|
+
* @param {string} value
|
|
12831
|
+
* @param {number=} opt_index
|
|
12832
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Software} returns this
|
|
12833
|
+
*/
|
|
12834
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.addSignedBy = function(value, opt_index) {
|
|
12835
|
+
return jspb.Message.addToRepeatedField(this, 10, value, opt_index);
|
|
12836
|
+
};
|
|
12837
|
+
|
|
12838
|
+
|
|
12839
|
+
/**
|
|
12840
|
+
* Clears the list making it empty but non-null.
|
|
12841
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Software} returns this
|
|
12842
|
+
*/
|
|
12843
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.Software.prototype.clearSignedByList = function() {
|
|
12844
|
+
return this.setSignedByList([]);
|
|
12845
|
+
};
|
|
12846
|
+
|
|
12847
|
+
|
|
12490
12848
|
|
|
12491
12849
|
|
|
12492
12850
|
|