@lansweeper/data-platform-outbound-grpc 0.1.91 → 0.1.92
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/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +87 -0
- package/gen-proto/outbound_pb.js +668 -0
- package/generated-go/outbound.pb.go +6473 -6161
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +33 -7
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -140,6 +140,9 @@ goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.PortScan', null, global);
|
|
|
140
140
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.PortableBattery', null, global);
|
|
141
141
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.Processor', null, global);
|
|
142
142
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.RawSoftware', null, global);
|
|
143
|
+
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo', null, global);
|
|
144
|
+
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.EntryState', null, global);
|
|
145
|
+
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType', null, global);
|
|
143
146
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.Relation', null, global);
|
|
144
147
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.RunningProcess', null, global);
|
|
145
148
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ScanError', null, global);
|
|
@@ -564,6 +567,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
564
567
|
*/
|
|
565
568
|
proto.com.lansweeper.dp.outbound.v1.CorrField.displayName = 'proto.com.lansweeper.dp.outbound.v1.CorrField';
|
|
566
569
|
}
|
|
570
|
+
/**
|
|
571
|
+
* Generated by JsPbCodeGenerator.
|
|
572
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
573
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
574
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
575
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
576
|
+
* valid.
|
|
577
|
+
* @extends {jspb.Message}
|
|
578
|
+
* @constructor
|
|
579
|
+
*/
|
|
580
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo = function(opt_data) {
|
|
581
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.repeatedFields_, null);
|
|
582
|
+
};
|
|
583
|
+
goog.inherits(proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo, jspb.Message);
|
|
584
|
+
if (goog.DEBUG && !COMPILED) {
|
|
585
|
+
/**
|
|
586
|
+
* @public
|
|
587
|
+
* @override
|
|
588
|
+
*/
|
|
589
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.displayName = 'proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo';
|
|
590
|
+
}
|
|
567
591
|
/**
|
|
568
592
|
* Generated by JsPbCodeGenerator.
|
|
569
593
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -6127,6 +6151,7 @@ proto.com.lansweeper.dp.outbound.v1.Asset.toObject = function(includeInstance, m
|
|
|
6127
6151
|
relationList: jspb.Message.toObjectList(msg.getRelationList(),
|
|
6128
6152
|
proto.com.lansweeper.dp.outbound.v1.Relation.toObject, includeInstance),
|
|
6129
6153
|
correlationFields: (f = msg.getCorrelationFields()) && proto.com.lansweeper.dp.outbound.v1.CorrelationFields.toObject(includeInstance, f),
|
|
6154
|
+
reconciliation: (f = msg.getReconciliation()) && proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.toObject(includeInstance, f),
|
|
6130
6155
|
core: (f = msg.getCore()) && proto.com.lansweeper.dp.outbound.v1.CoreFields.toObject(includeInstance, f),
|
|
6131
6156
|
hw: (f = msg.getHw()) && proto.com.lansweeper.dp.outbound.v1.HardwareInfo.toObject(includeInstance, f),
|
|
6132
6157
|
os: (f = msg.getOs()) && proto.com.lansweeper.dp.outbound.v1.OperatingSystem.toObject(includeInstance, f),
|
|
@@ -6240,6 +6265,11 @@ proto.com.lansweeper.dp.outbound.v1.Asset.deserializeBinaryFromReader = function
|
|
|
6240
6265
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CorrelationFields.deserializeBinaryFromReader);
|
|
6241
6266
|
msg.setCorrelationFields(value);
|
|
6242
6267
|
break;
|
|
6268
|
+
case 79:
|
|
6269
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo;
|
|
6270
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.deserializeBinaryFromReader);
|
|
6271
|
+
msg.setReconciliation(value);
|
|
6272
|
+
break;
|
|
6243
6273
|
case 6:
|
|
6244
6274
|
var value = new proto.com.lansweeper.dp.outbound.v1.CoreFields;
|
|
6245
6275
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CoreFields.deserializeBinaryFromReader);
|
|
@@ -6428,6 +6458,14 @@ proto.com.lansweeper.dp.outbound.v1.Asset.serializeBinaryToWriter = function(mes
|
|
|
6428
6458
|
proto.com.lansweeper.dp.outbound.v1.CorrelationFields.serializeBinaryToWriter
|
|
6429
6459
|
);
|
|
6430
6460
|
}
|
|
6461
|
+
f = message.getReconciliation();
|
|
6462
|
+
if (f != null) {
|
|
6463
|
+
writer.writeMessage(
|
|
6464
|
+
79,
|
|
6465
|
+
f,
|
|
6466
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.serializeBinaryToWriter
|
|
6467
|
+
);
|
|
6468
|
+
}
|
|
6431
6469
|
f = message.getCore();
|
|
6432
6470
|
if (f != null) {
|
|
6433
6471
|
writer.writeMessage(
|
|
@@ -7030,6 +7068,43 @@ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.hasCorrelationFields = funct
|
|
|
7030
7068
|
};
|
|
7031
7069
|
|
|
7032
7070
|
|
|
7071
|
+
/**
|
|
7072
|
+
* optional ReconciliationInfo reconciliation = 79;
|
|
7073
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo}
|
|
7074
|
+
*/
|
|
7075
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.getReconciliation = function() {
|
|
7076
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} */ (
|
|
7077
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo, 79));
|
|
7078
|
+
};
|
|
7079
|
+
|
|
7080
|
+
|
|
7081
|
+
/**
|
|
7082
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo|undefined} value
|
|
7083
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Asset} returns this
|
|
7084
|
+
*/
|
|
7085
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.setReconciliation = function(value) {
|
|
7086
|
+
return jspb.Message.setWrapperField(this, 79, value);
|
|
7087
|
+
};
|
|
7088
|
+
|
|
7089
|
+
|
|
7090
|
+
/**
|
|
7091
|
+
* Clears the message field making it undefined.
|
|
7092
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Asset} returns this
|
|
7093
|
+
*/
|
|
7094
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.clearReconciliation = function() {
|
|
7095
|
+
return this.setReconciliation(undefined);
|
|
7096
|
+
};
|
|
7097
|
+
|
|
7098
|
+
|
|
7099
|
+
/**
|
|
7100
|
+
* Returns whether this field is set.
|
|
7101
|
+
* @return {boolean}
|
|
7102
|
+
*/
|
|
7103
|
+
proto.com.lansweeper.dp.outbound.v1.Asset.prototype.hasReconciliation = function() {
|
|
7104
|
+
return jspb.Message.getField(this, 79) != null;
|
|
7105
|
+
};
|
|
7106
|
+
|
|
7107
|
+
|
|
7033
7108
|
/**
|
|
7034
7109
|
* optional CoreFields core = 6;
|
|
7035
7110
|
* @return {?proto.com.lansweeper.dp.outbound.v1.CoreFields}
|
|
@@ -11743,6 +11818,509 @@ proto.com.lansweeper.dp.outbound.v1.CorrField.prototype.clearValueList = functio
|
|
|
11743
11818
|
|
|
11744
11819
|
|
|
11745
11820
|
|
|
11821
|
+
/**
|
|
11822
|
+
* List of repeated fields within this message type.
|
|
11823
|
+
* @private {!Array<number>}
|
|
11824
|
+
* @const
|
|
11825
|
+
*/
|
|
11826
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.repeatedFields_ = [6];
|
|
11827
|
+
|
|
11828
|
+
|
|
11829
|
+
|
|
11830
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
11831
|
+
/**
|
|
11832
|
+
* Creates an object representation of this proto.
|
|
11833
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
11834
|
+
* Optional fields that are not set will be set to undefined.
|
|
11835
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
11836
|
+
* For the list of reserved names please see:
|
|
11837
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
11838
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
11839
|
+
* JSPB instance for transitional soy proto support:
|
|
11840
|
+
* http://goto/soy-param-migration
|
|
11841
|
+
* @return {!Object}
|
|
11842
|
+
*/
|
|
11843
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.toObject = function(opt_includeInstance) {
|
|
11844
|
+
return proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.toObject(opt_includeInstance, this);
|
|
11845
|
+
};
|
|
11846
|
+
|
|
11847
|
+
|
|
11848
|
+
/**
|
|
11849
|
+
* Static version of the {@see toObject} method.
|
|
11850
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
11851
|
+
* the JSPB instance for transitional soy proto support:
|
|
11852
|
+
* http://goto/soy-param-migration
|
|
11853
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} msg The msg instance to transform.
|
|
11854
|
+
* @return {!Object}
|
|
11855
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
11856
|
+
*/
|
|
11857
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.toObject = function(includeInstance, msg) {
|
|
11858
|
+
var f, obj = {
|
|
11859
|
+
correlationTime: (f = msg.getCorrelationTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
11860
|
+
state: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
11861
|
+
masterType: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
11862
|
+
master: (f = msg.getMaster()) && proto.com.lansweeper.dp.outbound.v1.EntityPath.toObject(includeInstance, f),
|
|
11863
|
+
reference: (f = msg.getReference()) && proto.com.lansweeper.dp.outbound.v1.EntityPath.toObject(includeInstance, f),
|
|
11864
|
+
aliasList: jspb.Message.toObjectList(msg.getAliasList(),
|
|
11865
|
+
proto.com.lansweeper.dp.outbound.v1.EntityPath.toObject, includeInstance),
|
|
11866
|
+
confidence: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
11867
|
+
debugString: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
11868
|
+
};
|
|
11869
|
+
|
|
11870
|
+
if (includeInstance) {
|
|
11871
|
+
obj.$jspbMessageInstance = msg;
|
|
11872
|
+
}
|
|
11873
|
+
return obj;
|
|
11874
|
+
};
|
|
11875
|
+
}
|
|
11876
|
+
|
|
11877
|
+
|
|
11878
|
+
/**
|
|
11879
|
+
* Deserializes binary data (in protobuf wire format).
|
|
11880
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
11881
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo}
|
|
11882
|
+
*/
|
|
11883
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.deserializeBinary = function(bytes) {
|
|
11884
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
11885
|
+
var msg = new proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo;
|
|
11886
|
+
return proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.deserializeBinaryFromReader(msg, reader);
|
|
11887
|
+
};
|
|
11888
|
+
|
|
11889
|
+
|
|
11890
|
+
/**
|
|
11891
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
11892
|
+
* given reader into the given message object.
|
|
11893
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} msg The message object to deserialize into.
|
|
11894
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
11895
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo}
|
|
11896
|
+
*/
|
|
11897
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.deserializeBinaryFromReader = function(msg, reader) {
|
|
11898
|
+
while (reader.nextField()) {
|
|
11899
|
+
if (reader.isEndGroup()) {
|
|
11900
|
+
break;
|
|
11901
|
+
}
|
|
11902
|
+
var field = reader.getFieldNumber();
|
|
11903
|
+
switch (field) {
|
|
11904
|
+
case 1:
|
|
11905
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
11906
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
11907
|
+
msg.setCorrelationTime(value);
|
|
11908
|
+
break;
|
|
11909
|
+
case 2:
|
|
11910
|
+
var value = /** @type {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.EntryState} */ (reader.readEnum());
|
|
11911
|
+
msg.setState(value);
|
|
11912
|
+
break;
|
|
11913
|
+
case 3:
|
|
11914
|
+
var value = /** @type {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType} */ (reader.readEnum());
|
|
11915
|
+
msg.setMasterType(value);
|
|
11916
|
+
break;
|
|
11917
|
+
case 4:
|
|
11918
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.EntityPath;
|
|
11919
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.EntityPath.deserializeBinaryFromReader);
|
|
11920
|
+
msg.setMaster(value);
|
|
11921
|
+
break;
|
|
11922
|
+
case 5:
|
|
11923
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.EntityPath;
|
|
11924
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.EntityPath.deserializeBinaryFromReader);
|
|
11925
|
+
msg.setReference(value);
|
|
11926
|
+
break;
|
|
11927
|
+
case 6:
|
|
11928
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.EntityPath;
|
|
11929
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.EntityPath.deserializeBinaryFromReader);
|
|
11930
|
+
msg.addAlias(value);
|
|
11931
|
+
break;
|
|
11932
|
+
case 7:
|
|
11933
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
11934
|
+
msg.setConfidence(value);
|
|
11935
|
+
break;
|
|
11936
|
+
case 8:
|
|
11937
|
+
var value = /** @type {string} */ (reader.readString());
|
|
11938
|
+
msg.setDebugString(value);
|
|
11939
|
+
break;
|
|
11940
|
+
default:
|
|
11941
|
+
reader.skipField();
|
|
11942
|
+
break;
|
|
11943
|
+
}
|
|
11944
|
+
}
|
|
11945
|
+
return msg;
|
|
11946
|
+
};
|
|
11947
|
+
|
|
11948
|
+
|
|
11949
|
+
/**
|
|
11950
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
11951
|
+
* @return {!Uint8Array}
|
|
11952
|
+
*/
|
|
11953
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.serializeBinary = function() {
|
|
11954
|
+
var writer = new jspb.BinaryWriter();
|
|
11955
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.serializeBinaryToWriter(this, writer);
|
|
11956
|
+
return writer.getResultBuffer();
|
|
11957
|
+
};
|
|
11958
|
+
|
|
11959
|
+
|
|
11960
|
+
/**
|
|
11961
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
11962
|
+
* format), writing to the given BinaryWriter.
|
|
11963
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} message
|
|
11964
|
+
* @param {!jspb.BinaryWriter} writer
|
|
11965
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
11966
|
+
*/
|
|
11967
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.serializeBinaryToWriter = function(message, writer) {
|
|
11968
|
+
var f = undefined;
|
|
11969
|
+
f = message.getCorrelationTime();
|
|
11970
|
+
if (f != null) {
|
|
11971
|
+
writer.writeMessage(
|
|
11972
|
+
1,
|
|
11973
|
+
f,
|
|
11974
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
11975
|
+
);
|
|
11976
|
+
}
|
|
11977
|
+
f = message.getState();
|
|
11978
|
+
if (f !== 0.0) {
|
|
11979
|
+
writer.writeEnum(
|
|
11980
|
+
2,
|
|
11981
|
+
f
|
|
11982
|
+
);
|
|
11983
|
+
}
|
|
11984
|
+
f = /** @type {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType} */ (jspb.Message.getField(message, 3));
|
|
11985
|
+
if (f != null) {
|
|
11986
|
+
writer.writeEnum(
|
|
11987
|
+
3,
|
|
11988
|
+
f
|
|
11989
|
+
);
|
|
11990
|
+
}
|
|
11991
|
+
f = message.getMaster();
|
|
11992
|
+
if (f != null) {
|
|
11993
|
+
writer.writeMessage(
|
|
11994
|
+
4,
|
|
11995
|
+
f,
|
|
11996
|
+
proto.com.lansweeper.dp.outbound.v1.EntityPath.serializeBinaryToWriter
|
|
11997
|
+
);
|
|
11998
|
+
}
|
|
11999
|
+
f = message.getReference();
|
|
12000
|
+
if (f != null) {
|
|
12001
|
+
writer.writeMessage(
|
|
12002
|
+
5,
|
|
12003
|
+
f,
|
|
12004
|
+
proto.com.lansweeper.dp.outbound.v1.EntityPath.serializeBinaryToWriter
|
|
12005
|
+
);
|
|
12006
|
+
}
|
|
12007
|
+
f = message.getAliasList();
|
|
12008
|
+
if (f.length > 0) {
|
|
12009
|
+
writer.writeRepeatedMessage(
|
|
12010
|
+
6,
|
|
12011
|
+
f,
|
|
12012
|
+
proto.com.lansweeper.dp.outbound.v1.EntityPath.serializeBinaryToWriter
|
|
12013
|
+
);
|
|
12014
|
+
}
|
|
12015
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 7));
|
|
12016
|
+
if (f != null) {
|
|
12017
|
+
writer.writeInt32(
|
|
12018
|
+
7,
|
|
12019
|
+
f
|
|
12020
|
+
);
|
|
12021
|
+
}
|
|
12022
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
12023
|
+
if (f != null) {
|
|
12024
|
+
writer.writeString(
|
|
12025
|
+
8,
|
|
12026
|
+
f
|
|
12027
|
+
);
|
|
12028
|
+
}
|
|
12029
|
+
};
|
|
12030
|
+
|
|
12031
|
+
|
|
12032
|
+
/**
|
|
12033
|
+
* @enum {number}
|
|
12034
|
+
*/
|
|
12035
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.EntryState = {
|
|
12036
|
+
GOLDEN: 0,
|
|
12037
|
+
ALIAS: 1
|
|
12038
|
+
};
|
|
12039
|
+
|
|
12040
|
+
/**
|
|
12041
|
+
* @enum {number}
|
|
12042
|
+
*/
|
|
12043
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType = {
|
|
12044
|
+
ENGINE: 0,
|
|
12045
|
+
USER: 1
|
|
12046
|
+
};
|
|
12047
|
+
|
|
12048
|
+
/**
|
|
12049
|
+
* optional google.protobuf.Timestamp correlation_time = 1;
|
|
12050
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
12051
|
+
*/
|
|
12052
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.getCorrelationTime = function() {
|
|
12053
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
12054
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 1));
|
|
12055
|
+
};
|
|
12056
|
+
|
|
12057
|
+
|
|
12058
|
+
/**
|
|
12059
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
12060
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12061
|
+
*/
|
|
12062
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.setCorrelationTime = function(value) {
|
|
12063
|
+
return jspb.Message.setWrapperField(this, 1, value);
|
|
12064
|
+
};
|
|
12065
|
+
|
|
12066
|
+
|
|
12067
|
+
/**
|
|
12068
|
+
* Clears the message field making it undefined.
|
|
12069
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12070
|
+
*/
|
|
12071
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.clearCorrelationTime = function() {
|
|
12072
|
+
return this.setCorrelationTime(undefined);
|
|
12073
|
+
};
|
|
12074
|
+
|
|
12075
|
+
|
|
12076
|
+
/**
|
|
12077
|
+
* Returns whether this field is set.
|
|
12078
|
+
* @return {boolean}
|
|
12079
|
+
*/
|
|
12080
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.hasCorrelationTime = function() {
|
|
12081
|
+
return jspb.Message.getField(this, 1) != null;
|
|
12082
|
+
};
|
|
12083
|
+
|
|
12084
|
+
|
|
12085
|
+
/**
|
|
12086
|
+
* optional EntryState state = 2;
|
|
12087
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.EntryState}
|
|
12088
|
+
*/
|
|
12089
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.getState = function() {
|
|
12090
|
+
return /** @type {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.EntryState} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
12091
|
+
};
|
|
12092
|
+
|
|
12093
|
+
|
|
12094
|
+
/**
|
|
12095
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.EntryState} value
|
|
12096
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12097
|
+
*/
|
|
12098
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.setState = function(value) {
|
|
12099
|
+
return jspb.Message.setProto3EnumField(this, 2, value);
|
|
12100
|
+
};
|
|
12101
|
+
|
|
12102
|
+
|
|
12103
|
+
/**
|
|
12104
|
+
* optional MasterType master_type = 3;
|
|
12105
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType}
|
|
12106
|
+
*/
|
|
12107
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.getMasterType = function() {
|
|
12108
|
+
return /** @type {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
12109
|
+
};
|
|
12110
|
+
|
|
12111
|
+
|
|
12112
|
+
/**
|
|
12113
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType} value
|
|
12114
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12115
|
+
*/
|
|
12116
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.setMasterType = function(value) {
|
|
12117
|
+
return jspb.Message.setField(this, 3, value);
|
|
12118
|
+
};
|
|
12119
|
+
|
|
12120
|
+
|
|
12121
|
+
/**
|
|
12122
|
+
* Clears the field making it undefined.
|
|
12123
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12124
|
+
*/
|
|
12125
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.clearMasterType = function() {
|
|
12126
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
12127
|
+
};
|
|
12128
|
+
|
|
12129
|
+
|
|
12130
|
+
/**
|
|
12131
|
+
* Returns whether this field is set.
|
|
12132
|
+
* @return {boolean}
|
|
12133
|
+
*/
|
|
12134
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.hasMasterType = function() {
|
|
12135
|
+
return jspb.Message.getField(this, 3) != null;
|
|
12136
|
+
};
|
|
12137
|
+
|
|
12138
|
+
|
|
12139
|
+
/**
|
|
12140
|
+
* optional EntityPath master = 4;
|
|
12141
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.EntityPath}
|
|
12142
|
+
*/
|
|
12143
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.getMaster = function() {
|
|
12144
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.EntityPath} */ (
|
|
12145
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.EntityPath, 4));
|
|
12146
|
+
};
|
|
12147
|
+
|
|
12148
|
+
|
|
12149
|
+
/**
|
|
12150
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.EntityPath|undefined} value
|
|
12151
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12152
|
+
*/
|
|
12153
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.setMaster = function(value) {
|
|
12154
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
12155
|
+
};
|
|
12156
|
+
|
|
12157
|
+
|
|
12158
|
+
/**
|
|
12159
|
+
* Clears the message field making it undefined.
|
|
12160
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12161
|
+
*/
|
|
12162
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.clearMaster = function() {
|
|
12163
|
+
return this.setMaster(undefined);
|
|
12164
|
+
};
|
|
12165
|
+
|
|
12166
|
+
|
|
12167
|
+
/**
|
|
12168
|
+
* Returns whether this field is set.
|
|
12169
|
+
* @return {boolean}
|
|
12170
|
+
*/
|
|
12171
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.hasMaster = function() {
|
|
12172
|
+
return jspb.Message.getField(this, 4) != null;
|
|
12173
|
+
};
|
|
12174
|
+
|
|
12175
|
+
|
|
12176
|
+
/**
|
|
12177
|
+
* optional EntityPath reference = 5;
|
|
12178
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.EntityPath}
|
|
12179
|
+
*/
|
|
12180
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.getReference = function() {
|
|
12181
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.EntityPath} */ (
|
|
12182
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.EntityPath, 5));
|
|
12183
|
+
};
|
|
12184
|
+
|
|
12185
|
+
|
|
12186
|
+
/**
|
|
12187
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.EntityPath|undefined} value
|
|
12188
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12189
|
+
*/
|
|
12190
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.setReference = function(value) {
|
|
12191
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
12192
|
+
};
|
|
12193
|
+
|
|
12194
|
+
|
|
12195
|
+
/**
|
|
12196
|
+
* Clears the message field making it undefined.
|
|
12197
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12198
|
+
*/
|
|
12199
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.clearReference = function() {
|
|
12200
|
+
return this.setReference(undefined);
|
|
12201
|
+
};
|
|
12202
|
+
|
|
12203
|
+
|
|
12204
|
+
/**
|
|
12205
|
+
* Returns whether this field is set.
|
|
12206
|
+
* @return {boolean}
|
|
12207
|
+
*/
|
|
12208
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.hasReference = function() {
|
|
12209
|
+
return jspb.Message.getField(this, 5) != null;
|
|
12210
|
+
};
|
|
12211
|
+
|
|
12212
|
+
|
|
12213
|
+
/**
|
|
12214
|
+
* repeated EntityPath alias = 6;
|
|
12215
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.EntityPath>}
|
|
12216
|
+
*/
|
|
12217
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.getAliasList = function() {
|
|
12218
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.EntityPath>} */ (
|
|
12219
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.EntityPath, 6));
|
|
12220
|
+
};
|
|
12221
|
+
|
|
12222
|
+
|
|
12223
|
+
/**
|
|
12224
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.EntityPath>} value
|
|
12225
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12226
|
+
*/
|
|
12227
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.setAliasList = function(value) {
|
|
12228
|
+
return jspb.Message.setRepeatedWrapperField(this, 6, value);
|
|
12229
|
+
};
|
|
12230
|
+
|
|
12231
|
+
|
|
12232
|
+
/**
|
|
12233
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.EntityPath=} opt_value
|
|
12234
|
+
* @param {number=} opt_index
|
|
12235
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.EntityPath}
|
|
12236
|
+
*/
|
|
12237
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.addAlias = function(opt_value, opt_index) {
|
|
12238
|
+
return jspb.Message.addToRepeatedWrapperField(this, 6, opt_value, proto.com.lansweeper.dp.outbound.v1.EntityPath, opt_index);
|
|
12239
|
+
};
|
|
12240
|
+
|
|
12241
|
+
|
|
12242
|
+
/**
|
|
12243
|
+
* Clears the list making it empty but non-null.
|
|
12244
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12245
|
+
*/
|
|
12246
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.clearAliasList = function() {
|
|
12247
|
+
return this.setAliasList([]);
|
|
12248
|
+
};
|
|
12249
|
+
|
|
12250
|
+
|
|
12251
|
+
/**
|
|
12252
|
+
* optional int32 confidence = 7;
|
|
12253
|
+
* @return {number}
|
|
12254
|
+
*/
|
|
12255
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.getConfidence = function() {
|
|
12256
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
|
|
12257
|
+
};
|
|
12258
|
+
|
|
12259
|
+
|
|
12260
|
+
/**
|
|
12261
|
+
* @param {number} value
|
|
12262
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12263
|
+
*/
|
|
12264
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.setConfidence = function(value) {
|
|
12265
|
+
return jspb.Message.setField(this, 7, value);
|
|
12266
|
+
};
|
|
12267
|
+
|
|
12268
|
+
|
|
12269
|
+
/**
|
|
12270
|
+
* Clears the field making it undefined.
|
|
12271
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12272
|
+
*/
|
|
12273
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.clearConfidence = function() {
|
|
12274
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
12275
|
+
};
|
|
12276
|
+
|
|
12277
|
+
|
|
12278
|
+
/**
|
|
12279
|
+
* Returns whether this field is set.
|
|
12280
|
+
* @return {boolean}
|
|
12281
|
+
*/
|
|
12282
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.hasConfidence = function() {
|
|
12283
|
+
return jspb.Message.getField(this, 7) != null;
|
|
12284
|
+
};
|
|
12285
|
+
|
|
12286
|
+
|
|
12287
|
+
/**
|
|
12288
|
+
* optional string debug_string = 8;
|
|
12289
|
+
* @return {string}
|
|
12290
|
+
*/
|
|
12291
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.getDebugString = function() {
|
|
12292
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
12293
|
+
};
|
|
12294
|
+
|
|
12295
|
+
|
|
12296
|
+
/**
|
|
12297
|
+
* @param {string} value
|
|
12298
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12299
|
+
*/
|
|
12300
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.setDebugString = function(value) {
|
|
12301
|
+
return jspb.Message.setField(this, 8, value);
|
|
12302
|
+
};
|
|
12303
|
+
|
|
12304
|
+
|
|
12305
|
+
/**
|
|
12306
|
+
* Clears the field making it undefined.
|
|
12307
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} returns this
|
|
12308
|
+
*/
|
|
12309
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.clearDebugString = function() {
|
|
12310
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
12311
|
+
};
|
|
12312
|
+
|
|
12313
|
+
|
|
12314
|
+
/**
|
|
12315
|
+
* Returns whether this field is set.
|
|
12316
|
+
* @return {boolean}
|
|
12317
|
+
*/
|
|
12318
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.prototype.hasDebugString = function() {
|
|
12319
|
+
return jspb.Message.getField(this, 8) != null;
|
|
12320
|
+
};
|
|
12321
|
+
|
|
12322
|
+
|
|
12323
|
+
|
|
11746
12324
|
|
|
11747
12325
|
|
|
11748
12326
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -12104,6 +12682,9 @@ proto.com.lansweeper.dp.outbound.v1.OtModule.toObject = function(includeInstance
|
|
|
12104
12682
|
busConfigList: jspb.Message.toObjectList(msg.getBusConfigList(),
|
|
12105
12683
|
proto.com.lansweeper.dp.outbound.v1.OtBusConfig.toObject, includeInstance),
|
|
12106
12684
|
isMainModule: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
12685
|
+
totalBusCount: jspb.Message.getFieldWithDefault(msg, 11, 0),
|
|
12686
|
+
totalBusSize: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
12687
|
+
maxBusLevel: jspb.Message.getFieldWithDefault(msg, 13, 0),
|
|
12107
12688
|
partNumber: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
12108
12689
|
extInfoList: jspb.Message.toObjectList(msg.getExtInfoList(),
|
|
12109
12690
|
proto.com.lansweeper.dp.outbound.v1.OtModuleExtInfo.toObject, includeInstance),
|
|
@@ -12162,6 +12743,18 @@ proto.com.lansweeper.dp.outbound.v1.OtModule.deserializeBinaryFromReader = funct
|
|
|
12162
12743
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
12163
12744
|
msg.setIsMainModule(value);
|
|
12164
12745
|
break;
|
|
12746
|
+
case 11:
|
|
12747
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
12748
|
+
msg.setTotalBusCount(value);
|
|
12749
|
+
break;
|
|
12750
|
+
case 12:
|
|
12751
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
12752
|
+
msg.setTotalBusSize(value);
|
|
12753
|
+
break;
|
|
12754
|
+
case 13:
|
|
12755
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
12756
|
+
msg.setMaxBusLevel(value);
|
|
12757
|
+
break;
|
|
12165
12758
|
case 4:
|
|
12166
12759
|
var value = /** @type {string} */ (reader.readString());
|
|
12167
12760
|
msg.setPartNumber(value);
|
|
@@ -12244,6 +12837,27 @@ proto.com.lansweeper.dp.outbound.v1.OtModule.serializeBinaryToWriter = function(
|
|
|
12244
12837
|
f
|
|
12245
12838
|
);
|
|
12246
12839
|
}
|
|
12840
|
+
f = message.getTotalBusCount();
|
|
12841
|
+
if (f !== 0) {
|
|
12842
|
+
writer.writeInt32(
|
|
12843
|
+
11,
|
|
12844
|
+
f
|
|
12845
|
+
);
|
|
12846
|
+
}
|
|
12847
|
+
f = message.getTotalBusSize();
|
|
12848
|
+
if (f !== 0) {
|
|
12849
|
+
writer.writeInt32(
|
|
12850
|
+
12,
|
|
12851
|
+
f
|
|
12852
|
+
);
|
|
12853
|
+
}
|
|
12854
|
+
f = message.getMaxBusLevel();
|
|
12855
|
+
if (f !== 0) {
|
|
12856
|
+
writer.writeInt32(
|
|
12857
|
+
13,
|
|
12858
|
+
f
|
|
12859
|
+
);
|
|
12860
|
+
}
|
|
12247
12861
|
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
12248
12862
|
if (f != null) {
|
|
12249
12863
|
writer.writeString(
|
|
@@ -12391,6 +13005,60 @@ proto.com.lansweeper.dp.outbound.v1.OtModule.prototype.setIsMainModule = functio
|
|
|
12391
13005
|
};
|
|
12392
13006
|
|
|
12393
13007
|
|
|
13008
|
+
/**
|
|
13009
|
+
* optional int32 total_bus_count = 11;
|
|
13010
|
+
* @return {number}
|
|
13011
|
+
*/
|
|
13012
|
+
proto.com.lansweeper.dp.outbound.v1.OtModule.prototype.getTotalBusCount = function() {
|
|
13013
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 11, 0));
|
|
13014
|
+
};
|
|
13015
|
+
|
|
13016
|
+
|
|
13017
|
+
/**
|
|
13018
|
+
* @param {number} value
|
|
13019
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.OtModule} returns this
|
|
13020
|
+
*/
|
|
13021
|
+
proto.com.lansweeper.dp.outbound.v1.OtModule.prototype.setTotalBusCount = function(value) {
|
|
13022
|
+
return jspb.Message.setProto3IntField(this, 11, value);
|
|
13023
|
+
};
|
|
13024
|
+
|
|
13025
|
+
|
|
13026
|
+
/**
|
|
13027
|
+
* optional int32 total_bus_size = 12;
|
|
13028
|
+
* @return {number}
|
|
13029
|
+
*/
|
|
13030
|
+
proto.com.lansweeper.dp.outbound.v1.OtModule.prototype.getTotalBusSize = function() {
|
|
13031
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
13032
|
+
};
|
|
13033
|
+
|
|
13034
|
+
|
|
13035
|
+
/**
|
|
13036
|
+
* @param {number} value
|
|
13037
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.OtModule} returns this
|
|
13038
|
+
*/
|
|
13039
|
+
proto.com.lansweeper.dp.outbound.v1.OtModule.prototype.setTotalBusSize = function(value) {
|
|
13040
|
+
return jspb.Message.setProto3IntField(this, 12, value);
|
|
13041
|
+
};
|
|
13042
|
+
|
|
13043
|
+
|
|
13044
|
+
/**
|
|
13045
|
+
* optional int32 max_bus_level = 13;
|
|
13046
|
+
* @return {number}
|
|
13047
|
+
*/
|
|
13048
|
+
proto.com.lansweeper.dp.outbound.v1.OtModule.prototype.getMaxBusLevel = function() {
|
|
13049
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
|
|
13050
|
+
};
|
|
13051
|
+
|
|
13052
|
+
|
|
13053
|
+
/**
|
|
13054
|
+
* @param {number} value
|
|
13055
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.OtModule} returns this
|
|
13056
|
+
*/
|
|
13057
|
+
proto.com.lansweeper.dp.outbound.v1.OtModule.prototype.setMaxBusLevel = function(value) {
|
|
13058
|
+
return jspb.Message.setProto3IntField(this, 13, value);
|
|
13059
|
+
};
|
|
13060
|
+
|
|
13061
|
+
|
|
12394
13062
|
/**
|
|
12395
13063
|
* optional string part_number = 4;
|
|
12396
13064
|
* @return {string}
|