@lansweeper/data-platform-outbound-grpc 0.1.12 → 0.1.13
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_grpc_pb.d.ts +17 -0
- package/gen-proto/outbound_grpc_pb.js +34 -0
- package/gen-proto/outbound_pb.d.ts +108 -63
- package/gen-proto/outbound_pb.js +976 -534
- package/generated-go/outbound.pb.go +1343 -1215
- package/generated-go/outbound_grpc.pb.go +41 -2
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +46 -16
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -20,6 +20,8 @@ goog.object.extend(proto, google_protobuf_timestamp_pb);
|
|
|
20
20
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.Asset', null, global);
|
|
21
21
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.AssetType', null, global);
|
|
22
22
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.CatalogBrand', null, global);
|
|
23
|
+
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest', null, global);
|
|
24
|
+
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse', null, global);
|
|
23
25
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.CatalogModel', null, global);
|
|
24
26
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.CatalogMonitor', null, global);
|
|
25
27
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.CatalogOs', null, global);
|
|
@@ -128,6 +130,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
128
130
|
*/
|
|
129
131
|
proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.displayName = 'proto.com.lansweeper.dp.outbound.v1.ListEntityResponse';
|
|
130
132
|
}
|
|
133
|
+
/**
|
|
134
|
+
* Generated by JsPbCodeGenerator.
|
|
135
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
136
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
137
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
138
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
139
|
+
* valid.
|
|
140
|
+
* @extends {jspb.Message}
|
|
141
|
+
* @constructor
|
|
142
|
+
*/
|
|
143
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest = function(opt_data) {
|
|
144
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.repeatedFields_, null);
|
|
145
|
+
};
|
|
146
|
+
goog.inherits(proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest, jspb.Message);
|
|
147
|
+
if (goog.DEBUG && !COMPILED) {
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
* @override
|
|
151
|
+
*/
|
|
152
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.displayName = 'proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest';
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* Generated by JsPbCodeGenerator.
|
|
156
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
157
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
158
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
159
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
160
|
+
* valid.
|
|
161
|
+
* @extends {jspb.Message}
|
|
162
|
+
* @constructor
|
|
163
|
+
*/
|
|
164
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse = function(opt_data) {
|
|
165
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.repeatedFields_, null);
|
|
166
|
+
};
|
|
167
|
+
goog.inherits(proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse, jspb.Message);
|
|
168
|
+
if (goog.DEBUG && !COMPILED) {
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
* @override
|
|
172
|
+
*/
|
|
173
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.displayName = 'proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse';
|
|
174
|
+
}
|
|
131
175
|
/**
|
|
132
176
|
* Generated by JsPbCodeGenerator.
|
|
133
177
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -1276,77 +1320,859 @@ proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.serializeBinaryToWriter =
|
|
|
1276
1320
|
|
|
1277
1321
|
|
|
1278
1322
|
/**
|
|
1279
|
-
* optional Entity entity = 1;
|
|
1280
|
-
* @return {?proto.com.lansweeper.dp.outbound.v1.Entity}
|
|
1323
|
+
* optional Entity entity = 1;
|
|
1324
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.Entity}
|
|
1325
|
+
*/
|
|
1326
|
+
proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.prototype.getEntity = function() {
|
|
1327
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.Entity} */ (
|
|
1328
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.Entity, 1));
|
|
1329
|
+
};
|
|
1330
|
+
|
|
1331
|
+
|
|
1332
|
+
/**
|
|
1333
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.Entity|undefined} value
|
|
1334
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ListEntityResponse} returns this
|
|
1335
|
+
*/
|
|
1336
|
+
proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.prototype.setEntity = function(value) {
|
|
1337
|
+
return jspb.Message.setWrapperField(this, 1, value);
|
|
1338
|
+
};
|
|
1339
|
+
|
|
1340
|
+
|
|
1341
|
+
/**
|
|
1342
|
+
* Clears the message field making it undefined.
|
|
1343
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ListEntityResponse} returns this
|
|
1344
|
+
*/
|
|
1345
|
+
proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.prototype.clearEntity = function() {
|
|
1346
|
+
return this.setEntity(undefined);
|
|
1347
|
+
};
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
/**
|
|
1351
|
+
* Returns whether this field is set.
|
|
1352
|
+
* @return {boolean}
|
|
1353
|
+
*/
|
|
1354
|
+
proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.prototype.hasEntity = function() {
|
|
1355
|
+
return jspb.Message.getField(this, 1) != null;
|
|
1356
|
+
};
|
|
1357
|
+
|
|
1358
|
+
|
|
1359
|
+
/**
|
|
1360
|
+
* repeated Entity related = 2;
|
|
1361
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.Entity>}
|
|
1362
|
+
*/
|
|
1363
|
+
proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.prototype.getRelatedList = function() {
|
|
1364
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.Entity>} */ (
|
|
1365
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.Entity, 2));
|
|
1366
|
+
};
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
/**
|
|
1370
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.Entity>} value
|
|
1371
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ListEntityResponse} returns this
|
|
1372
|
+
*/
|
|
1373
|
+
proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.prototype.setRelatedList = function(value) {
|
|
1374
|
+
return jspb.Message.setRepeatedWrapperField(this, 2, value);
|
|
1375
|
+
};
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
/**
|
|
1379
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.Entity=} opt_value
|
|
1380
|
+
* @param {number=} opt_index
|
|
1381
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Entity}
|
|
1382
|
+
*/
|
|
1383
|
+
proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.prototype.addRelated = function(opt_value, opt_index) {
|
|
1384
|
+
return jspb.Message.addToRepeatedWrapperField(this, 2, opt_value, proto.com.lansweeper.dp.outbound.v1.Entity, opt_index);
|
|
1385
|
+
};
|
|
1386
|
+
|
|
1387
|
+
|
|
1388
|
+
/**
|
|
1389
|
+
* Clears the list making it empty but non-null.
|
|
1390
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ListEntityResponse} returns this
|
|
1391
|
+
*/
|
|
1392
|
+
proto.com.lansweeper.dp.outbound.v1.ListEntityResponse.prototype.clearRelatedList = function() {
|
|
1393
|
+
return this.setRelatedList([]);
|
|
1394
|
+
};
|
|
1395
|
+
|
|
1396
|
+
|
|
1397
|
+
|
|
1398
|
+
/**
|
|
1399
|
+
* List of repeated fields within this message type.
|
|
1400
|
+
* @private {!Array<number>}
|
|
1401
|
+
* @const
|
|
1402
|
+
*/
|
|
1403
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.repeatedFields_ = [1,2,3,4,5];
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
|
|
1407
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
1408
|
+
/**
|
|
1409
|
+
* Creates an object representation of this proto.
|
|
1410
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
1411
|
+
* Optional fields that are not set will be set to undefined.
|
|
1412
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
1413
|
+
* For the list of reserved names please see:
|
|
1414
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
1415
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
1416
|
+
* JSPB instance for transitional soy proto support:
|
|
1417
|
+
* http://goto/soy-param-migration
|
|
1418
|
+
* @return {!Object}
|
|
1419
|
+
*/
|
|
1420
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.toObject = function(opt_includeInstance) {
|
|
1421
|
+
return proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.toObject(opt_includeInstance, this);
|
|
1422
|
+
};
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
/**
|
|
1426
|
+
* Static version of the {@see toObject} method.
|
|
1427
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
1428
|
+
* the JSPB instance for transitional soy proto support:
|
|
1429
|
+
* http://goto/soy-param-migration
|
|
1430
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} msg The msg instance to transform.
|
|
1431
|
+
* @return {!Object}
|
|
1432
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1433
|
+
*/
|
|
1434
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.toObject = function(includeInstance, msg) {
|
|
1435
|
+
var f, obj = {
|
|
1436
|
+
brandIdList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
1437
|
+
modelIdList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
1438
|
+
osIdList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
1439
|
+
swIdList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
1440
|
+
monitorIdList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
1441
|
+
onlyRequested: jspb.Message.getBooleanFieldWithDefault(msg, 10, false)
|
|
1442
|
+
};
|
|
1443
|
+
|
|
1444
|
+
if (includeInstance) {
|
|
1445
|
+
obj.$jspbMessageInstance = msg;
|
|
1446
|
+
}
|
|
1447
|
+
return obj;
|
|
1448
|
+
};
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
|
|
1452
|
+
/**
|
|
1453
|
+
* Deserializes binary data (in protobuf wire format).
|
|
1454
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
1455
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest}
|
|
1456
|
+
*/
|
|
1457
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.deserializeBinary = function(bytes) {
|
|
1458
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
1459
|
+
var msg = new proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest;
|
|
1460
|
+
return proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.deserializeBinaryFromReader(msg, reader);
|
|
1461
|
+
};
|
|
1462
|
+
|
|
1463
|
+
|
|
1464
|
+
/**
|
|
1465
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
1466
|
+
* given reader into the given message object.
|
|
1467
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} msg The message object to deserialize into.
|
|
1468
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
1469
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest}
|
|
1470
|
+
*/
|
|
1471
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
1472
|
+
while (reader.nextField()) {
|
|
1473
|
+
if (reader.isEndGroup()) {
|
|
1474
|
+
break;
|
|
1475
|
+
}
|
|
1476
|
+
var field = reader.getFieldNumber();
|
|
1477
|
+
switch (field) {
|
|
1478
|
+
case 1:
|
|
1479
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt64() : [reader.readInt64()]);
|
|
1480
|
+
for (var i = 0; i < values.length; i++) {
|
|
1481
|
+
msg.addBrandId(values[i]);
|
|
1482
|
+
}
|
|
1483
|
+
break;
|
|
1484
|
+
case 2:
|
|
1485
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt64() : [reader.readInt64()]);
|
|
1486
|
+
for (var i = 0; i < values.length; i++) {
|
|
1487
|
+
msg.addModelId(values[i]);
|
|
1488
|
+
}
|
|
1489
|
+
break;
|
|
1490
|
+
case 3:
|
|
1491
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt64() : [reader.readInt64()]);
|
|
1492
|
+
for (var i = 0; i < values.length; i++) {
|
|
1493
|
+
msg.addOsId(values[i]);
|
|
1494
|
+
}
|
|
1495
|
+
break;
|
|
1496
|
+
case 4:
|
|
1497
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt64() : [reader.readInt64()]);
|
|
1498
|
+
for (var i = 0; i < values.length; i++) {
|
|
1499
|
+
msg.addSwId(values[i]);
|
|
1500
|
+
}
|
|
1501
|
+
break;
|
|
1502
|
+
case 5:
|
|
1503
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt64() : [reader.readInt64()]);
|
|
1504
|
+
for (var i = 0; i < values.length; i++) {
|
|
1505
|
+
msg.addMonitorId(values[i]);
|
|
1506
|
+
}
|
|
1507
|
+
break;
|
|
1508
|
+
case 10:
|
|
1509
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
1510
|
+
msg.setOnlyRequested(value);
|
|
1511
|
+
break;
|
|
1512
|
+
default:
|
|
1513
|
+
reader.skipField();
|
|
1514
|
+
break;
|
|
1515
|
+
}
|
|
1516
|
+
}
|
|
1517
|
+
return msg;
|
|
1518
|
+
};
|
|
1519
|
+
|
|
1520
|
+
|
|
1521
|
+
/**
|
|
1522
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
1523
|
+
* @return {!Uint8Array}
|
|
1524
|
+
*/
|
|
1525
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.serializeBinary = function() {
|
|
1526
|
+
var writer = new jspb.BinaryWriter();
|
|
1527
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.serializeBinaryToWriter(this, writer);
|
|
1528
|
+
return writer.getResultBuffer();
|
|
1529
|
+
};
|
|
1530
|
+
|
|
1531
|
+
|
|
1532
|
+
/**
|
|
1533
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
1534
|
+
* format), writing to the given BinaryWriter.
|
|
1535
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} message
|
|
1536
|
+
* @param {!jspb.BinaryWriter} writer
|
|
1537
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1538
|
+
*/
|
|
1539
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.serializeBinaryToWriter = function(message, writer) {
|
|
1540
|
+
var f = undefined;
|
|
1541
|
+
f = message.getBrandIdList();
|
|
1542
|
+
if (f.length > 0) {
|
|
1543
|
+
writer.writePackedInt64(
|
|
1544
|
+
1,
|
|
1545
|
+
f
|
|
1546
|
+
);
|
|
1547
|
+
}
|
|
1548
|
+
f = message.getModelIdList();
|
|
1549
|
+
if (f.length > 0) {
|
|
1550
|
+
writer.writePackedInt64(
|
|
1551
|
+
2,
|
|
1552
|
+
f
|
|
1553
|
+
);
|
|
1554
|
+
}
|
|
1555
|
+
f = message.getOsIdList();
|
|
1556
|
+
if (f.length > 0) {
|
|
1557
|
+
writer.writePackedInt64(
|
|
1558
|
+
3,
|
|
1559
|
+
f
|
|
1560
|
+
);
|
|
1561
|
+
}
|
|
1562
|
+
f = message.getSwIdList();
|
|
1563
|
+
if (f.length > 0) {
|
|
1564
|
+
writer.writePackedInt64(
|
|
1565
|
+
4,
|
|
1566
|
+
f
|
|
1567
|
+
);
|
|
1568
|
+
}
|
|
1569
|
+
f = message.getMonitorIdList();
|
|
1570
|
+
if (f.length > 0) {
|
|
1571
|
+
writer.writePackedInt64(
|
|
1572
|
+
5,
|
|
1573
|
+
f
|
|
1574
|
+
);
|
|
1575
|
+
}
|
|
1576
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 10));
|
|
1577
|
+
if (f != null) {
|
|
1578
|
+
writer.writeBool(
|
|
1579
|
+
10,
|
|
1580
|
+
f
|
|
1581
|
+
);
|
|
1582
|
+
}
|
|
1583
|
+
};
|
|
1584
|
+
|
|
1585
|
+
|
|
1586
|
+
/**
|
|
1587
|
+
* repeated int64 brand_id = 1;
|
|
1588
|
+
* @return {!Array<number>}
|
|
1589
|
+
*/
|
|
1590
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.getBrandIdList = function() {
|
|
1591
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 1));
|
|
1592
|
+
};
|
|
1593
|
+
|
|
1594
|
+
|
|
1595
|
+
/**
|
|
1596
|
+
* @param {!Array<number>} value
|
|
1597
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1598
|
+
*/
|
|
1599
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.setBrandIdList = function(value) {
|
|
1600
|
+
return jspb.Message.setField(this, 1, value || []);
|
|
1601
|
+
};
|
|
1602
|
+
|
|
1603
|
+
|
|
1604
|
+
/**
|
|
1605
|
+
* @param {number} value
|
|
1606
|
+
* @param {number=} opt_index
|
|
1607
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1608
|
+
*/
|
|
1609
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.addBrandId = function(value, opt_index) {
|
|
1610
|
+
return jspb.Message.addToRepeatedField(this, 1, value, opt_index);
|
|
1611
|
+
};
|
|
1612
|
+
|
|
1613
|
+
|
|
1614
|
+
/**
|
|
1615
|
+
* Clears the list making it empty but non-null.
|
|
1616
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1617
|
+
*/
|
|
1618
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.clearBrandIdList = function() {
|
|
1619
|
+
return this.setBrandIdList([]);
|
|
1620
|
+
};
|
|
1621
|
+
|
|
1622
|
+
|
|
1623
|
+
/**
|
|
1624
|
+
* repeated int64 model_id = 2;
|
|
1625
|
+
* @return {!Array<number>}
|
|
1626
|
+
*/
|
|
1627
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.getModelIdList = function() {
|
|
1628
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 2));
|
|
1629
|
+
};
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
/**
|
|
1633
|
+
* @param {!Array<number>} value
|
|
1634
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1635
|
+
*/
|
|
1636
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.setModelIdList = function(value) {
|
|
1637
|
+
return jspb.Message.setField(this, 2, value || []);
|
|
1638
|
+
};
|
|
1639
|
+
|
|
1640
|
+
|
|
1641
|
+
/**
|
|
1642
|
+
* @param {number} value
|
|
1643
|
+
* @param {number=} opt_index
|
|
1644
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1645
|
+
*/
|
|
1646
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.addModelId = function(value, opt_index) {
|
|
1647
|
+
return jspb.Message.addToRepeatedField(this, 2, value, opt_index);
|
|
1648
|
+
};
|
|
1649
|
+
|
|
1650
|
+
|
|
1651
|
+
/**
|
|
1652
|
+
* Clears the list making it empty but non-null.
|
|
1653
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1654
|
+
*/
|
|
1655
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.clearModelIdList = function() {
|
|
1656
|
+
return this.setModelIdList([]);
|
|
1657
|
+
};
|
|
1658
|
+
|
|
1659
|
+
|
|
1660
|
+
/**
|
|
1661
|
+
* repeated int64 os_id = 3;
|
|
1662
|
+
* @return {!Array<number>}
|
|
1663
|
+
*/
|
|
1664
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.getOsIdList = function() {
|
|
1665
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 3));
|
|
1666
|
+
};
|
|
1667
|
+
|
|
1668
|
+
|
|
1669
|
+
/**
|
|
1670
|
+
* @param {!Array<number>} value
|
|
1671
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1672
|
+
*/
|
|
1673
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.setOsIdList = function(value) {
|
|
1674
|
+
return jspb.Message.setField(this, 3, value || []);
|
|
1675
|
+
};
|
|
1676
|
+
|
|
1677
|
+
|
|
1678
|
+
/**
|
|
1679
|
+
* @param {number} value
|
|
1680
|
+
* @param {number=} opt_index
|
|
1681
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1682
|
+
*/
|
|
1683
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.addOsId = function(value, opt_index) {
|
|
1684
|
+
return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
|
|
1685
|
+
};
|
|
1686
|
+
|
|
1687
|
+
|
|
1688
|
+
/**
|
|
1689
|
+
* Clears the list making it empty but non-null.
|
|
1690
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1691
|
+
*/
|
|
1692
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.clearOsIdList = function() {
|
|
1693
|
+
return this.setOsIdList([]);
|
|
1694
|
+
};
|
|
1695
|
+
|
|
1696
|
+
|
|
1697
|
+
/**
|
|
1698
|
+
* repeated int64 sw_id = 4;
|
|
1699
|
+
* @return {!Array<number>}
|
|
1700
|
+
*/
|
|
1701
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.getSwIdList = function() {
|
|
1702
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 4));
|
|
1703
|
+
};
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
/**
|
|
1707
|
+
* @param {!Array<number>} value
|
|
1708
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1709
|
+
*/
|
|
1710
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.setSwIdList = function(value) {
|
|
1711
|
+
return jspb.Message.setField(this, 4, value || []);
|
|
1712
|
+
};
|
|
1713
|
+
|
|
1714
|
+
|
|
1715
|
+
/**
|
|
1716
|
+
* @param {number} value
|
|
1717
|
+
* @param {number=} opt_index
|
|
1718
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1719
|
+
*/
|
|
1720
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.addSwId = function(value, opt_index) {
|
|
1721
|
+
return jspb.Message.addToRepeatedField(this, 4, value, opt_index);
|
|
1722
|
+
};
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
/**
|
|
1726
|
+
* Clears the list making it empty but non-null.
|
|
1727
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1728
|
+
*/
|
|
1729
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.clearSwIdList = function() {
|
|
1730
|
+
return this.setSwIdList([]);
|
|
1731
|
+
};
|
|
1732
|
+
|
|
1733
|
+
|
|
1734
|
+
/**
|
|
1735
|
+
* repeated int64 monitor_id = 5;
|
|
1736
|
+
* @return {!Array<number>}
|
|
1737
|
+
*/
|
|
1738
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.getMonitorIdList = function() {
|
|
1739
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 5));
|
|
1740
|
+
};
|
|
1741
|
+
|
|
1742
|
+
|
|
1743
|
+
/**
|
|
1744
|
+
* @param {!Array<number>} value
|
|
1745
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1746
|
+
*/
|
|
1747
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.setMonitorIdList = function(value) {
|
|
1748
|
+
return jspb.Message.setField(this, 5, value || []);
|
|
1749
|
+
};
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
/**
|
|
1753
|
+
* @param {number} value
|
|
1754
|
+
* @param {number=} opt_index
|
|
1755
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1756
|
+
*/
|
|
1757
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.addMonitorId = function(value, opt_index) {
|
|
1758
|
+
return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
|
|
1759
|
+
};
|
|
1760
|
+
|
|
1761
|
+
|
|
1762
|
+
/**
|
|
1763
|
+
* Clears the list making it empty but non-null.
|
|
1764
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1765
|
+
*/
|
|
1766
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.clearMonitorIdList = function() {
|
|
1767
|
+
return this.setMonitorIdList([]);
|
|
1768
|
+
};
|
|
1769
|
+
|
|
1770
|
+
|
|
1771
|
+
/**
|
|
1772
|
+
* optional bool only_requested = 10;
|
|
1773
|
+
* @return {boolean}
|
|
1774
|
+
*/
|
|
1775
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.getOnlyRequested = function() {
|
|
1776
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 10, false));
|
|
1777
|
+
};
|
|
1778
|
+
|
|
1779
|
+
|
|
1780
|
+
/**
|
|
1781
|
+
* @param {boolean} value
|
|
1782
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1783
|
+
*/
|
|
1784
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.setOnlyRequested = function(value) {
|
|
1785
|
+
return jspb.Message.setField(this, 10, value);
|
|
1786
|
+
};
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
/**
|
|
1790
|
+
* Clears the field making it undefined.
|
|
1791
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest} returns this
|
|
1792
|
+
*/
|
|
1793
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.clearOnlyRequested = function() {
|
|
1794
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
1795
|
+
};
|
|
1796
|
+
|
|
1797
|
+
|
|
1798
|
+
/**
|
|
1799
|
+
* Returns whether this field is set.
|
|
1800
|
+
* @return {boolean}
|
|
1801
|
+
*/
|
|
1802
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupRequest.prototype.hasOnlyRequested = function() {
|
|
1803
|
+
return jspb.Message.getField(this, 10) != null;
|
|
1804
|
+
};
|
|
1805
|
+
|
|
1806
|
+
|
|
1807
|
+
|
|
1808
|
+
/**
|
|
1809
|
+
* List of repeated fields within this message type.
|
|
1810
|
+
* @private {!Array<number>}
|
|
1811
|
+
* @const
|
|
1812
|
+
*/
|
|
1813
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.repeatedFields_ = [1,2,3,4,5];
|
|
1814
|
+
|
|
1815
|
+
|
|
1816
|
+
|
|
1817
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
1818
|
+
/**
|
|
1819
|
+
* Creates an object representation of this proto.
|
|
1820
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
1821
|
+
* Optional fields that are not set will be set to undefined.
|
|
1822
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
1823
|
+
* For the list of reserved names please see:
|
|
1824
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
1825
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
1826
|
+
* JSPB instance for transitional soy proto support:
|
|
1827
|
+
* http://goto/soy-param-migration
|
|
1828
|
+
* @return {!Object}
|
|
1829
|
+
*/
|
|
1830
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.toObject = function(opt_includeInstance) {
|
|
1831
|
+
return proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.toObject(opt_includeInstance, this);
|
|
1832
|
+
};
|
|
1833
|
+
|
|
1834
|
+
|
|
1835
|
+
/**
|
|
1836
|
+
* Static version of the {@see toObject} method.
|
|
1837
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
1838
|
+
* the JSPB instance for transitional soy proto support:
|
|
1839
|
+
* http://goto/soy-param-migration
|
|
1840
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} msg The msg instance to transform.
|
|
1841
|
+
* @return {!Object}
|
|
1842
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1843
|
+
*/
|
|
1844
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.toObject = function(includeInstance, msg) {
|
|
1845
|
+
var f, obj = {
|
|
1846
|
+
brandList: jspb.Message.toObjectList(msg.getBrandList(),
|
|
1847
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogBrand.toObject, includeInstance),
|
|
1848
|
+
modelList: jspb.Message.toObjectList(msg.getModelList(),
|
|
1849
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogModel.toObject, includeInstance),
|
|
1850
|
+
osList: jspb.Message.toObjectList(msg.getOsList(),
|
|
1851
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogOs.toObject, includeInstance),
|
|
1852
|
+
swList: jspb.Message.toObjectList(msg.getSwList(),
|
|
1853
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogSoftware.toObject, includeInstance),
|
|
1854
|
+
monitorList: jspb.Message.toObjectList(msg.getMonitorList(),
|
|
1855
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogMonitor.toObject, includeInstance)
|
|
1856
|
+
};
|
|
1857
|
+
|
|
1858
|
+
if (includeInstance) {
|
|
1859
|
+
obj.$jspbMessageInstance = msg;
|
|
1860
|
+
}
|
|
1861
|
+
return obj;
|
|
1862
|
+
};
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
|
|
1866
|
+
/**
|
|
1867
|
+
* Deserializes binary data (in protobuf wire format).
|
|
1868
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
1869
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse}
|
|
1870
|
+
*/
|
|
1871
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.deserializeBinary = function(bytes) {
|
|
1872
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
1873
|
+
var msg = new proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse;
|
|
1874
|
+
return proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.deserializeBinaryFromReader(msg, reader);
|
|
1875
|
+
};
|
|
1876
|
+
|
|
1877
|
+
|
|
1878
|
+
/**
|
|
1879
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
1880
|
+
* given reader into the given message object.
|
|
1881
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} msg The message object to deserialize into.
|
|
1882
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
1883
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse}
|
|
1884
|
+
*/
|
|
1885
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
1886
|
+
while (reader.nextField()) {
|
|
1887
|
+
if (reader.isEndGroup()) {
|
|
1888
|
+
break;
|
|
1889
|
+
}
|
|
1890
|
+
var field = reader.getFieldNumber();
|
|
1891
|
+
switch (field) {
|
|
1892
|
+
case 1:
|
|
1893
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogBrand;
|
|
1894
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogBrand.deserializeBinaryFromReader);
|
|
1895
|
+
msg.addBrand(value);
|
|
1896
|
+
break;
|
|
1897
|
+
case 2:
|
|
1898
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogModel;
|
|
1899
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogModel.deserializeBinaryFromReader);
|
|
1900
|
+
msg.addModel(value);
|
|
1901
|
+
break;
|
|
1902
|
+
case 3:
|
|
1903
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogOs;
|
|
1904
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogOs.deserializeBinaryFromReader);
|
|
1905
|
+
msg.addOs(value);
|
|
1906
|
+
break;
|
|
1907
|
+
case 4:
|
|
1908
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogSoftware;
|
|
1909
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogSoftware.deserializeBinaryFromReader);
|
|
1910
|
+
msg.addSw(value);
|
|
1911
|
+
break;
|
|
1912
|
+
case 5:
|
|
1913
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogMonitor;
|
|
1914
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogMonitor.deserializeBinaryFromReader);
|
|
1915
|
+
msg.addMonitor(value);
|
|
1916
|
+
break;
|
|
1917
|
+
default:
|
|
1918
|
+
reader.skipField();
|
|
1919
|
+
break;
|
|
1920
|
+
}
|
|
1921
|
+
}
|
|
1922
|
+
return msg;
|
|
1923
|
+
};
|
|
1924
|
+
|
|
1925
|
+
|
|
1926
|
+
/**
|
|
1927
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
1928
|
+
* @return {!Uint8Array}
|
|
1929
|
+
*/
|
|
1930
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.serializeBinary = function() {
|
|
1931
|
+
var writer = new jspb.BinaryWriter();
|
|
1932
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.serializeBinaryToWriter(this, writer);
|
|
1933
|
+
return writer.getResultBuffer();
|
|
1934
|
+
};
|
|
1935
|
+
|
|
1936
|
+
|
|
1937
|
+
/**
|
|
1938
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
1939
|
+
* format), writing to the given BinaryWriter.
|
|
1940
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} message
|
|
1941
|
+
* @param {!jspb.BinaryWriter} writer
|
|
1942
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1943
|
+
*/
|
|
1944
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.serializeBinaryToWriter = function(message, writer) {
|
|
1945
|
+
var f = undefined;
|
|
1946
|
+
f = message.getBrandList();
|
|
1947
|
+
if (f.length > 0) {
|
|
1948
|
+
writer.writeRepeatedMessage(
|
|
1949
|
+
1,
|
|
1950
|
+
f,
|
|
1951
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogBrand.serializeBinaryToWriter
|
|
1952
|
+
);
|
|
1953
|
+
}
|
|
1954
|
+
f = message.getModelList();
|
|
1955
|
+
if (f.length > 0) {
|
|
1956
|
+
writer.writeRepeatedMessage(
|
|
1957
|
+
2,
|
|
1958
|
+
f,
|
|
1959
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogModel.serializeBinaryToWriter
|
|
1960
|
+
);
|
|
1961
|
+
}
|
|
1962
|
+
f = message.getOsList();
|
|
1963
|
+
if (f.length > 0) {
|
|
1964
|
+
writer.writeRepeatedMessage(
|
|
1965
|
+
3,
|
|
1966
|
+
f,
|
|
1967
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogOs.serializeBinaryToWriter
|
|
1968
|
+
);
|
|
1969
|
+
}
|
|
1970
|
+
f = message.getSwList();
|
|
1971
|
+
if (f.length > 0) {
|
|
1972
|
+
writer.writeRepeatedMessage(
|
|
1973
|
+
4,
|
|
1974
|
+
f,
|
|
1975
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogSoftware.serializeBinaryToWriter
|
|
1976
|
+
);
|
|
1977
|
+
}
|
|
1978
|
+
f = message.getMonitorList();
|
|
1979
|
+
if (f.length > 0) {
|
|
1980
|
+
writer.writeRepeatedMessage(
|
|
1981
|
+
5,
|
|
1982
|
+
f,
|
|
1983
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogMonitor.serializeBinaryToWriter
|
|
1984
|
+
);
|
|
1985
|
+
}
|
|
1986
|
+
};
|
|
1987
|
+
|
|
1988
|
+
|
|
1989
|
+
/**
|
|
1990
|
+
* repeated CatalogBrand brand = 1;
|
|
1991
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogBrand>}
|
|
1992
|
+
*/
|
|
1993
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.getBrandList = function() {
|
|
1994
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogBrand>} */ (
|
|
1995
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogBrand, 1));
|
|
1996
|
+
};
|
|
1997
|
+
|
|
1998
|
+
|
|
1999
|
+
/**
|
|
2000
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogBrand>} value
|
|
2001
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
2002
|
+
*/
|
|
2003
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.setBrandList = function(value) {
|
|
2004
|
+
return jspb.Message.setRepeatedWrapperField(this, 1, value);
|
|
2005
|
+
};
|
|
2006
|
+
|
|
2007
|
+
|
|
2008
|
+
/**
|
|
2009
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogBrand=} opt_value
|
|
2010
|
+
* @param {number=} opt_index
|
|
2011
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogBrand}
|
|
2012
|
+
*/
|
|
2013
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.addBrand = function(opt_value, opt_index) {
|
|
2014
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.com.lansweeper.dp.outbound.v1.CatalogBrand, opt_index);
|
|
2015
|
+
};
|
|
2016
|
+
|
|
2017
|
+
|
|
2018
|
+
/**
|
|
2019
|
+
* Clears the list making it empty but non-null.
|
|
2020
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
2021
|
+
*/
|
|
2022
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.clearBrandList = function() {
|
|
2023
|
+
return this.setBrandList([]);
|
|
2024
|
+
};
|
|
2025
|
+
|
|
2026
|
+
|
|
2027
|
+
/**
|
|
2028
|
+
* repeated CatalogModel model = 2;
|
|
2029
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogModel>}
|
|
2030
|
+
*/
|
|
2031
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.getModelList = function() {
|
|
2032
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogModel>} */ (
|
|
2033
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogModel, 2));
|
|
2034
|
+
};
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
/**
|
|
2038
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogModel>} value
|
|
2039
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
2040
|
+
*/
|
|
2041
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.setModelList = function(value) {
|
|
2042
|
+
return jspb.Message.setRepeatedWrapperField(this, 2, value);
|
|
2043
|
+
};
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
/**
|
|
2047
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogModel=} opt_value
|
|
2048
|
+
* @param {number=} opt_index
|
|
2049
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogModel}
|
|
2050
|
+
*/
|
|
2051
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.addModel = function(opt_value, opt_index) {
|
|
2052
|
+
return jspb.Message.addToRepeatedWrapperField(this, 2, opt_value, proto.com.lansweeper.dp.outbound.v1.CatalogModel, opt_index);
|
|
2053
|
+
};
|
|
2054
|
+
|
|
2055
|
+
|
|
2056
|
+
/**
|
|
2057
|
+
* Clears the list making it empty but non-null.
|
|
2058
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
2059
|
+
*/
|
|
2060
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.clearModelList = function() {
|
|
2061
|
+
return this.setModelList([]);
|
|
2062
|
+
};
|
|
2063
|
+
|
|
2064
|
+
|
|
2065
|
+
/**
|
|
2066
|
+
* repeated CatalogOs os = 3;
|
|
2067
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogOs>}
|
|
2068
|
+
*/
|
|
2069
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.getOsList = function() {
|
|
2070
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogOs>} */ (
|
|
2071
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogOs, 3));
|
|
2072
|
+
};
|
|
2073
|
+
|
|
2074
|
+
|
|
2075
|
+
/**
|
|
2076
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogOs>} value
|
|
2077
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
2078
|
+
*/
|
|
2079
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.setOsList = function(value) {
|
|
2080
|
+
return jspb.Message.setRepeatedWrapperField(this, 3, value);
|
|
2081
|
+
};
|
|
2082
|
+
|
|
2083
|
+
|
|
2084
|
+
/**
|
|
2085
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogOs=} opt_value
|
|
2086
|
+
* @param {number=} opt_index
|
|
2087
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogOs}
|
|
1281
2088
|
*/
|
|
1282
|
-
proto.com.lansweeper.dp.outbound.v1.
|
|
1283
|
-
return
|
|
1284
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.Entity, 1));
|
|
2089
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.addOs = function(opt_value, opt_index) {
|
|
2090
|
+
return jspb.Message.addToRepeatedWrapperField(this, 3, opt_value, proto.com.lansweeper.dp.outbound.v1.CatalogOs, opt_index);
|
|
1285
2091
|
};
|
|
1286
2092
|
|
|
1287
2093
|
|
|
1288
2094
|
/**
|
|
1289
|
-
*
|
|
1290
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.
|
|
2095
|
+
* Clears the list making it empty but non-null.
|
|
2096
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
2097
|
+
*/
|
|
2098
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.clearOsList = function() {
|
|
2099
|
+
return this.setOsList([]);
|
|
2100
|
+
};
|
|
2101
|
+
|
|
2102
|
+
|
|
2103
|
+
/**
|
|
2104
|
+
* repeated CatalogSoftware sw = 4;
|
|
2105
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogSoftware>}
|
|
2106
|
+
*/
|
|
2107
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.getSwList = function() {
|
|
2108
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogSoftware>} */ (
|
|
2109
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogSoftware, 4));
|
|
2110
|
+
};
|
|
2111
|
+
|
|
2112
|
+
|
|
2113
|
+
/**
|
|
2114
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogSoftware>} value
|
|
2115
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
1291
2116
|
*/
|
|
1292
|
-
proto.com.lansweeper.dp.outbound.v1.
|
|
1293
|
-
return jspb.Message.
|
|
2117
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.setSwList = function(value) {
|
|
2118
|
+
return jspb.Message.setRepeatedWrapperField(this, 4, value);
|
|
1294
2119
|
};
|
|
1295
2120
|
|
|
1296
2121
|
|
|
1297
2122
|
/**
|
|
1298
|
-
*
|
|
1299
|
-
* @
|
|
2123
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogSoftware=} opt_value
|
|
2124
|
+
* @param {number=} opt_index
|
|
2125
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogSoftware}
|
|
1300
2126
|
*/
|
|
1301
|
-
proto.com.lansweeper.dp.outbound.v1.
|
|
1302
|
-
return this.
|
|
2127
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.addSw = function(opt_value, opt_index) {
|
|
2128
|
+
return jspb.Message.addToRepeatedWrapperField(this, 4, opt_value, proto.com.lansweeper.dp.outbound.v1.CatalogSoftware, opt_index);
|
|
1303
2129
|
};
|
|
1304
2130
|
|
|
1305
2131
|
|
|
1306
2132
|
/**
|
|
1307
|
-
*
|
|
1308
|
-
* @return {
|
|
2133
|
+
* Clears the list making it empty but non-null.
|
|
2134
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
1309
2135
|
*/
|
|
1310
|
-
proto.com.lansweeper.dp.outbound.v1.
|
|
1311
|
-
return
|
|
2136
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.clearSwList = function() {
|
|
2137
|
+
return this.setSwList([]);
|
|
1312
2138
|
};
|
|
1313
2139
|
|
|
1314
2140
|
|
|
1315
2141
|
/**
|
|
1316
|
-
* repeated
|
|
1317
|
-
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.
|
|
2142
|
+
* repeated CatalogMonitor monitor = 5;
|
|
2143
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogMonitor>}
|
|
1318
2144
|
*/
|
|
1319
|
-
proto.com.lansweeper.dp.outbound.v1.
|
|
1320
|
-
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.
|
|
1321
|
-
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.
|
|
2145
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.getMonitorList = function() {
|
|
2146
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogMonitor>} */ (
|
|
2147
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogMonitor, 5));
|
|
1322
2148
|
};
|
|
1323
2149
|
|
|
1324
2150
|
|
|
1325
2151
|
/**
|
|
1326
|
-
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.
|
|
1327
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.
|
|
2152
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.CatalogMonitor>} value
|
|
2153
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
1328
2154
|
*/
|
|
1329
|
-
proto.com.lansweeper.dp.outbound.v1.
|
|
1330
|
-
return jspb.Message.setRepeatedWrapperField(this,
|
|
2155
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.setMonitorList = function(value) {
|
|
2156
|
+
return jspb.Message.setRepeatedWrapperField(this, 5, value);
|
|
1331
2157
|
};
|
|
1332
2158
|
|
|
1333
2159
|
|
|
1334
2160
|
/**
|
|
1335
|
-
* @param {!proto.com.lansweeper.dp.outbound.v1.
|
|
2161
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.CatalogMonitor=} opt_value
|
|
1336
2162
|
* @param {number=} opt_index
|
|
1337
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.
|
|
2163
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogMonitor}
|
|
1338
2164
|
*/
|
|
1339
|
-
proto.com.lansweeper.dp.outbound.v1.
|
|
1340
|
-
return jspb.Message.addToRepeatedWrapperField(this,
|
|
2165
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.addMonitor = function(opt_value, opt_index) {
|
|
2166
|
+
return jspb.Message.addToRepeatedWrapperField(this, 5, opt_value, proto.com.lansweeper.dp.outbound.v1.CatalogMonitor, opt_index);
|
|
1341
2167
|
};
|
|
1342
2168
|
|
|
1343
2169
|
|
|
1344
2170
|
/**
|
|
1345
2171
|
* Clears the list making it empty but non-null.
|
|
1346
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.
|
|
2172
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse} returns this
|
|
1347
2173
|
*/
|
|
1348
|
-
proto.com.lansweeper.dp.outbound.v1.
|
|
1349
|
-
return this.
|
|
2174
|
+
proto.com.lansweeper.dp.outbound.v1.CatalogLookupResponse.prototype.clearMonitorList = function() {
|
|
2175
|
+
return this.setMonitorList([]);
|
|
1350
2176
|
};
|
|
1351
2177
|
|
|
1352
2178
|
|
|
@@ -3179,9 +4005,6 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.toObject = function(includeInst
|
|
|
3179
4005
|
familyName: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
3180
4006
|
cpe: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
3181
4007
|
rank: jspb.Message.getFieldWithDefault(msg, 20, 0),
|
|
3182
|
-
catalogBrand: (f = msg.getCatalogBrand()) && proto.com.lansweeper.dp.outbound.v1.CatalogBrand.toObject(includeInstance, f),
|
|
3183
|
-
catalogModel: (f = msg.getCatalogModel()) && proto.com.lansweeper.dp.outbound.v1.CatalogModel.toObject(includeInstance, f),
|
|
3184
|
-
catalogFamily: (f = msg.getCatalogFamily()) && proto.com.lansweeper.dp.outbound.v1.CatalogModel.toObject(includeInstance, f),
|
|
3185
4008
|
raw: (f = msg.getRaw()) && proto.com.lansweeper.dp.outbound.v1.RawHardwareInfo.toObject(includeInstance, f)
|
|
3186
4009
|
};
|
|
3187
4010
|
|
|
@@ -3267,21 +4090,6 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.deserializeBinaryFromReader = f
|
|
|
3267
4090
|
var value = /** @type {number} */ (reader.readInt32());
|
|
3268
4091
|
msg.setRank(value);
|
|
3269
4092
|
break;
|
|
3270
|
-
case 22:
|
|
3271
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogBrand;
|
|
3272
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogBrand.deserializeBinaryFromReader);
|
|
3273
|
-
msg.setCatalogBrand(value);
|
|
3274
|
-
break;
|
|
3275
|
-
case 23:
|
|
3276
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogModel;
|
|
3277
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogModel.deserializeBinaryFromReader);
|
|
3278
|
-
msg.setCatalogModel(value);
|
|
3279
|
-
break;
|
|
3280
|
-
case 25:
|
|
3281
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogModel;
|
|
3282
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogModel.deserializeBinaryFromReader);
|
|
3283
|
-
msg.setCatalogFamily(value);
|
|
3284
|
-
break;
|
|
3285
4093
|
case 24:
|
|
3286
4094
|
var value = new proto.com.lansweeper.dp.outbound.v1.RawHardwareInfo;
|
|
3287
4095
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.RawHardwareInfo.deserializeBinaryFromReader);
|
|
@@ -3400,30 +4208,6 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.serializeBinaryToWriter = funct
|
|
|
3400
4208
|
f
|
|
3401
4209
|
);
|
|
3402
4210
|
}
|
|
3403
|
-
f = message.getCatalogBrand();
|
|
3404
|
-
if (f != null) {
|
|
3405
|
-
writer.writeMessage(
|
|
3406
|
-
22,
|
|
3407
|
-
f,
|
|
3408
|
-
proto.com.lansweeper.dp.outbound.v1.CatalogBrand.serializeBinaryToWriter
|
|
3409
|
-
);
|
|
3410
|
-
}
|
|
3411
|
-
f = message.getCatalogModel();
|
|
3412
|
-
if (f != null) {
|
|
3413
|
-
writer.writeMessage(
|
|
3414
|
-
23,
|
|
3415
|
-
f,
|
|
3416
|
-
proto.com.lansweeper.dp.outbound.v1.CatalogModel.serializeBinaryToWriter
|
|
3417
|
-
);
|
|
3418
|
-
}
|
|
3419
|
-
f = message.getCatalogFamily();
|
|
3420
|
-
if (f != null) {
|
|
3421
|
-
writer.writeMessage(
|
|
3422
|
-
25,
|
|
3423
|
-
f,
|
|
3424
|
-
proto.com.lansweeper.dp.outbound.v1.CatalogModel.serializeBinaryToWriter
|
|
3425
|
-
);
|
|
3426
|
-
}
|
|
3427
4211
|
f = message.getRaw();
|
|
3428
4212
|
if (f != null) {
|
|
3429
4213
|
writer.writeMessage(
|
|
@@ -3867,117 +4651,6 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasRank = function()
|
|
|
3867
4651
|
};
|
|
3868
4652
|
|
|
3869
4653
|
|
|
3870
|
-
/**
|
|
3871
|
-
* optional CatalogBrand catalog_brand = 22;
|
|
3872
|
-
* @return {?proto.com.lansweeper.dp.outbound.v1.CatalogBrand}
|
|
3873
|
-
*/
|
|
3874
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.getCatalogBrand = function() {
|
|
3875
|
-
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CatalogBrand} */ (
|
|
3876
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogBrand, 22));
|
|
3877
|
-
};
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
/**
|
|
3881
|
-
* @param {?proto.com.lansweeper.dp.outbound.v1.CatalogBrand|undefined} value
|
|
3882
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
3883
|
-
*/
|
|
3884
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.setCatalogBrand = function(value) {
|
|
3885
|
-
return jspb.Message.setWrapperField(this, 22, value);
|
|
3886
|
-
};
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
/**
|
|
3890
|
-
* Clears the message field making it undefined.
|
|
3891
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
3892
|
-
*/
|
|
3893
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.clearCatalogBrand = function() {
|
|
3894
|
-
return this.setCatalogBrand(undefined);
|
|
3895
|
-
};
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
/**
|
|
3899
|
-
* Returns whether this field is set.
|
|
3900
|
-
* @return {boolean}
|
|
3901
|
-
*/
|
|
3902
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasCatalogBrand = function() {
|
|
3903
|
-
return jspb.Message.getField(this, 22) != null;
|
|
3904
|
-
};
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
/**
|
|
3908
|
-
* optional CatalogModel catalog_model = 23;
|
|
3909
|
-
* @return {?proto.com.lansweeper.dp.outbound.v1.CatalogModel}
|
|
3910
|
-
*/
|
|
3911
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.getCatalogModel = function() {
|
|
3912
|
-
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CatalogModel} */ (
|
|
3913
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogModel, 23));
|
|
3914
|
-
};
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
/**
|
|
3918
|
-
* @param {?proto.com.lansweeper.dp.outbound.v1.CatalogModel|undefined} value
|
|
3919
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
3920
|
-
*/
|
|
3921
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.setCatalogModel = function(value) {
|
|
3922
|
-
return jspb.Message.setWrapperField(this, 23, value);
|
|
3923
|
-
};
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
/**
|
|
3927
|
-
* Clears the message field making it undefined.
|
|
3928
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
3929
|
-
*/
|
|
3930
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.clearCatalogModel = function() {
|
|
3931
|
-
return this.setCatalogModel(undefined);
|
|
3932
|
-
};
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
/**
|
|
3936
|
-
* Returns whether this field is set.
|
|
3937
|
-
* @return {boolean}
|
|
3938
|
-
*/
|
|
3939
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasCatalogModel = function() {
|
|
3940
|
-
return jspb.Message.getField(this, 23) != null;
|
|
3941
|
-
};
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
/**
|
|
3945
|
-
* optional CatalogModel catalog_family = 25;
|
|
3946
|
-
* @return {?proto.com.lansweeper.dp.outbound.v1.CatalogModel}
|
|
3947
|
-
*/
|
|
3948
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.getCatalogFamily = function() {
|
|
3949
|
-
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CatalogModel} */ (
|
|
3950
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogModel, 25));
|
|
3951
|
-
};
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
/**
|
|
3955
|
-
* @param {?proto.com.lansweeper.dp.outbound.v1.CatalogModel|undefined} value
|
|
3956
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
3957
|
-
*/
|
|
3958
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.setCatalogFamily = function(value) {
|
|
3959
|
-
return jspb.Message.setWrapperField(this, 25, value);
|
|
3960
|
-
};
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
/**
|
|
3964
|
-
* Clears the message field making it undefined.
|
|
3965
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
|
|
3966
|
-
*/
|
|
3967
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.clearCatalogFamily = function() {
|
|
3968
|
-
return this.setCatalogFamily(undefined);
|
|
3969
|
-
};
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
/**
|
|
3973
|
-
* Returns whether this field is set.
|
|
3974
|
-
* @return {boolean}
|
|
3975
|
-
*/
|
|
3976
|
-
proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasCatalogFamily = function() {
|
|
3977
|
-
return jspb.Message.getField(this, 25) != null;
|
|
3978
|
-
};
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
4654
|
/**
|
|
3982
4655
|
* optional RawHardwareInfo raw = 24;
|
|
3983
4656
|
* @return {?proto.com.lansweeper.dp.outbound.v1.RawHardwareInfo}
|
|
@@ -4373,8 +5046,6 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.toObject = function(incl
|
|
|
4373
5046
|
cpe: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
4374
5047
|
fwCpe: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
4375
5048
|
rank: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
|
4376
|
-
catalogBrand: (f = msg.getCatalogBrand()) && proto.com.lansweeper.dp.outbound.v1.CatalogBrand.toObject(includeInstance, f),
|
|
4377
|
-
catalogOs: (f = msg.getCatalogOs()) && proto.com.lansweeper.dp.outbound.v1.CatalogOs.toObject(includeInstance, f),
|
|
4378
5049
|
windows: (f = msg.getWindows()) && proto.com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo.toObject(includeInstance, f)
|
|
4379
5050
|
};
|
|
4380
5051
|
|
|
@@ -4448,16 +5119,6 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.deserializeBinaryFromRea
|
|
|
4448
5119
|
var value = /** @type {number} */ (reader.readInt32());
|
|
4449
5120
|
msg.setRank(value);
|
|
4450
5121
|
break;
|
|
4451
|
-
case 9:
|
|
4452
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogBrand;
|
|
4453
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogBrand.deserializeBinaryFromReader);
|
|
4454
|
-
msg.setCatalogBrand(value);
|
|
4455
|
-
break;
|
|
4456
|
-
case 10:
|
|
4457
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogOs;
|
|
4458
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogOs.deserializeBinaryFromReader);
|
|
4459
|
-
msg.setCatalogOs(value);
|
|
4460
|
-
break;
|
|
4461
5122
|
case 32:
|
|
4462
5123
|
var value = new proto.com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo;
|
|
4463
5124
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo.deserializeBinaryFromReader);
|
|
@@ -4555,22 +5216,6 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.serializeBinaryToWriter
|
|
|
4555
5216
|
f
|
|
4556
5217
|
);
|
|
4557
5218
|
}
|
|
4558
|
-
f = message.getCatalogBrand();
|
|
4559
|
-
if (f != null) {
|
|
4560
|
-
writer.writeMessage(
|
|
4561
|
-
9,
|
|
4562
|
-
f,
|
|
4563
|
-
proto.com.lansweeper.dp.outbound.v1.CatalogBrand.serializeBinaryToWriter
|
|
4564
|
-
);
|
|
4565
|
-
}
|
|
4566
|
-
f = message.getCatalogOs();
|
|
4567
|
-
if (f != null) {
|
|
4568
|
-
writer.writeMessage(
|
|
4569
|
-
10,
|
|
4570
|
-
f,
|
|
4571
|
-
proto.com.lansweeper.dp.outbound.v1.CatalogOs.serializeBinaryToWriter
|
|
4572
|
-
);
|
|
4573
|
-
}
|
|
4574
5219
|
f = message.getWindows();
|
|
4575
5220
|
if (f != null) {
|
|
4576
5221
|
writer.writeMessage(
|
|
@@ -4906,80 +5551,6 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.prototype.hasRank = func
|
|
|
4906
5551
|
};
|
|
4907
5552
|
|
|
4908
5553
|
|
|
4909
|
-
/**
|
|
4910
|
-
* optional CatalogBrand catalog_brand = 9;
|
|
4911
|
-
* @return {?proto.com.lansweeper.dp.outbound.v1.CatalogBrand}
|
|
4912
|
-
*/
|
|
4913
|
-
proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.prototype.getCatalogBrand = function() {
|
|
4914
|
-
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CatalogBrand} */ (
|
|
4915
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogBrand, 9));
|
|
4916
|
-
};
|
|
4917
|
-
|
|
4918
|
-
|
|
4919
|
-
/**
|
|
4920
|
-
* @param {?proto.com.lansweeper.dp.outbound.v1.CatalogBrand|undefined} value
|
|
4921
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo} returns this
|
|
4922
|
-
*/
|
|
4923
|
-
proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.prototype.setCatalogBrand = function(value) {
|
|
4924
|
-
return jspb.Message.setWrapperField(this, 9, value);
|
|
4925
|
-
};
|
|
4926
|
-
|
|
4927
|
-
|
|
4928
|
-
/**
|
|
4929
|
-
* Clears the message field making it undefined.
|
|
4930
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo} returns this
|
|
4931
|
-
*/
|
|
4932
|
-
proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.prototype.clearCatalogBrand = function() {
|
|
4933
|
-
return this.setCatalogBrand(undefined);
|
|
4934
|
-
};
|
|
4935
|
-
|
|
4936
|
-
|
|
4937
|
-
/**
|
|
4938
|
-
* Returns whether this field is set.
|
|
4939
|
-
* @return {boolean}
|
|
4940
|
-
*/
|
|
4941
|
-
proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.prototype.hasCatalogBrand = function() {
|
|
4942
|
-
return jspb.Message.getField(this, 9) != null;
|
|
4943
|
-
};
|
|
4944
|
-
|
|
4945
|
-
|
|
4946
|
-
/**
|
|
4947
|
-
* optional CatalogOs catalog_os = 10;
|
|
4948
|
-
* @return {?proto.com.lansweeper.dp.outbound.v1.CatalogOs}
|
|
4949
|
-
*/
|
|
4950
|
-
proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.prototype.getCatalogOs = function() {
|
|
4951
|
-
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CatalogOs} */ (
|
|
4952
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogOs, 10));
|
|
4953
|
-
};
|
|
4954
|
-
|
|
4955
|
-
|
|
4956
|
-
/**
|
|
4957
|
-
* @param {?proto.com.lansweeper.dp.outbound.v1.CatalogOs|undefined} value
|
|
4958
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo} returns this
|
|
4959
|
-
*/
|
|
4960
|
-
proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.prototype.setCatalogOs = function(value) {
|
|
4961
|
-
return jspb.Message.setWrapperField(this, 10, value);
|
|
4962
|
-
};
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
/**
|
|
4966
|
-
* Clears the message field making it undefined.
|
|
4967
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo} returns this
|
|
4968
|
-
*/
|
|
4969
|
-
proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.prototype.clearCatalogOs = function() {
|
|
4970
|
-
return this.setCatalogOs(undefined);
|
|
4971
|
-
};
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
/**
|
|
4975
|
-
* Returns whether this field is set.
|
|
4976
|
-
* @return {boolean}
|
|
4977
|
-
*/
|
|
4978
|
-
proto.com.lansweeper.dp.outbound.v1.OperatingSystemInfo.prototype.hasCatalogOs = function() {
|
|
4979
|
-
return jspb.Message.getField(this, 10) != null;
|
|
4980
|
-
};
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
5554
|
/**
|
|
4984
5555
|
* optional WindowsRawOperatingSystemInfo windows = 32;
|
|
4985
5556
|
* @return {?proto.com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo}
|
|
@@ -5865,11 +6436,12 @@ proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.toObject = function(opt_in
|
|
|
5865
6436
|
*/
|
|
5866
6437
|
proto.com.lansweeper.dp.outbound.v1.Monitor.toObject = function(includeInstance, msg) {
|
|
5867
6438
|
var f, obj = {
|
|
5868
|
-
|
|
5869
|
-
|
|
6439
|
+
id: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
6440
|
+
makeId: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
6441
|
+
makeName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
6442
|
+
modelName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
6443
|
+
serialNumber: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
5870
6444
|
manufacturerDate: (f = msg.getManufacturerDate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
5871
|
-
catalogBrand: (f = msg.getCatalogBrand()) && proto.com.lansweeper.dp.outbound.v1.CatalogBrand.toObject(includeInstance, f),
|
|
5872
|
-
catalogMonitor: (f = msg.getCatalogMonitor()) && proto.com.lansweeper.dp.outbound.v1.CatalogMonitor.toObject(includeInstance, f),
|
|
5873
6445
|
windows: (f = msg.getWindows()) && proto.com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo.toObject(includeInstance, f)
|
|
5874
6446
|
};
|
|
5875
6447
|
|
|
@@ -5908,28 +6480,30 @@ proto.com.lansweeper.dp.outbound.v1.Monitor.deserializeBinaryFromReader = functi
|
|
|
5908
6480
|
var field = reader.getFieldNumber();
|
|
5909
6481
|
switch (field) {
|
|
5910
6482
|
case 1:
|
|
6483
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6484
|
+
msg.setId(value);
|
|
6485
|
+
break;
|
|
6486
|
+
case 2:
|
|
6487
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6488
|
+
msg.setMakeId(value);
|
|
6489
|
+
break;
|
|
6490
|
+
case 3:
|
|
6491
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6492
|
+
msg.setMakeName(value);
|
|
6493
|
+
break;
|
|
6494
|
+
case 4:
|
|
5911
6495
|
var value = /** @type {string} */ (reader.readString());
|
|
5912
|
-
msg.
|
|
6496
|
+
msg.setModelName(value);
|
|
5913
6497
|
break;
|
|
5914
|
-
case
|
|
6498
|
+
case 5:
|
|
5915
6499
|
var value = /** @type {string} */ (reader.readString());
|
|
5916
6500
|
msg.setSerialNumber(value);
|
|
5917
6501
|
break;
|
|
5918
|
-
case
|
|
6502
|
+
case 6:
|
|
5919
6503
|
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
5920
6504
|
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
5921
6505
|
msg.setManufacturerDate(value);
|
|
5922
6506
|
break;
|
|
5923
|
-
case 10:
|
|
5924
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogBrand;
|
|
5925
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogBrand.deserializeBinaryFromReader);
|
|
5926
|
-
msg.setCatalogBrand(value);
|
|
5927
|
-
break;
|
|
5928
|
-
case 11:
|
|
5929
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogMonitor;
|
|
5930
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogMonitor.deserializeBinaryFromReader);
|
|
5931
|
-
msg.setCatalogMonitor(value);
|
|
5932
|
-
break;
|
|
5933
6507
|
case 20:
|
|
5934
6508
|
var value = new proto.com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo;
|
|
5935
6509
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo.deserializeBinaryFromReader);
|
|
@@ -5964,42 +6538,47 @@ proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.serializeBinary = function
|
|
|
5964
6538
|
*/
|
|
5965
6539
|
proto.com.lansweeper.dp.outbound.v1.Monitor.serializeBinaryToWriter = function(message, writer) {
|
|
5966
6540
|
var f = undefined;
|
|
5967
|
-
f =
|
|
5968
|
-
if (f
|
|
5969
|
-
writer.
|
|
6541
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
6542
|
+
if (f != null) {
|
|
6543
|
+
writer.writeInt64(
|
|
5970
6544
|
1,
|
|
5971
6545
|
f
|
|
5972
6546
|
);
|
|
5973
6547
|
}
|
|
5974
|
-
f = /** @type {
|
|
6548
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
|
5975
6549
|
if (f != null) {
|
|
5976
|
-
writer.
|
|
6550
|
+
writer.writeInt64(
|
|
5977
6551
|
2,
|
|
5978
6552
|
f
|
|
5979
6553
|
);
|
|
5980
6554
|
}
|
|
5981
|
-
f = message.
|
|
5982
|
-
if (f
|
|
5983
|
-
writer.
|
|
6555
|
+
f = message.getMakeName();
|
|
6556
|
+
if (f.length > 0) {
|
|
6557
|
+
writer.writeString(
|
|
5984
6558
|
3,
|
|
5985
|
-
f
|
|
5986
|
-
|
|
6559
|
+
f
|
|
6560
|
+
);
|
|
6561
|
+
}
|
|
6562
|
+
f = message.getModelName();
|
|
6563
|
+
if (f.length > 0) {
|
|
6564
|
+
writer.writeString(
|
|
6565
|
+
4,
|
|
6566
|
+
f
|
|
5987
6567
|
);
|
|
5988
6568
|
}
|
|
5989
|
-
f =
|
|
6569
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
5990
6570
|
if (f != null) {
|
|
5991
|
-
writer.
|
|
5992
|
-
|
|
5993
|
-
f
|
|
5994
|
-
proto.com.lansweeper.dp.outbound.v1.CatalogBrand.serializeBinaryToWriter
|
|
6571
|
+
writer.writeString(
|
|
6572
|
+
5,
|
|
6573
|
+
f
|
|
5995
6574
|
);
|
|
5996
6575
|
}
|
|
5997
|
-
f = message.
|
|
6576
|
+
f = message.getManufacturerDate();
|
|
5998
6577
|
if (f != null) {
|
|
5999
6578
|
writer.writeMessage(
|
|
6000
|
-
|
|
6579
|
+
6,
|
|
6001
6580
|
f,
|
|
6002
|
-
|
|
6581
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
6003
6582
|
);
|
|
6004
6583
|
}
|
|
6005
6584
|
f = message.getWindows();
|
|
@@ -6014,37 +6593,55 @@ proto.com.lansweeper.dp.outbound.v1.Monitor.serializeBinaryToWriter = function(m
|
|
|
6014
6593
|
|
|
6015
6594
|
|
|
6016
6595
|
/**
|
|
6017
|
-
* optional
|
|
6018
|
-
* @return {
|
|
6596
|
+
* optional int64 id = 1;
|
|
6597
|
+
* @return {number}
|
|
6019
6598
|
*/
|
|
6020
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6021
|
-
return /** @type {
|
|
6599
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.getId = function() {
|
|
6600
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
6022
6601
|
};
|
|
6023
6602
|
|
|
6024
6603
|
|
|
6025
6604
|
/**
|
|
6026
|
-
* @param {
|
|
6605
|
+
* @param {number} value
|
|
6027
6606
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6028
6607
|
*/
|
|
6029
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6030
|
-
return jspb.Message.
|
|
6608
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.setId = function(value) {
|
|
6609
|
+
return jspb.Message.setField(this, 1, value);
|
|
6031
6610
|
};
|
|
6032
6611
|
|
|
6033
6612
|
|
|
6034
6613
|
/**
|
|
6035
|
-
*
|
|
6036
|
-
* @return {
|
|
6614
|
+
* Clears the field making it undefined.
|
|
6615
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6037
6616
|
*/
|
|
6038
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6039
|
-
return
|
|
6617
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.clearId = function() {
|
|
6618
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
6040
6619
|
};
|
|
6041
6620
|
|
|
6042
6621
|
|
|
6043
6622
|
/**
|
|
6044
|
-
*
|
|
6623
|
+
* Returns whether this field is set.
|
|
6624
|
+
* @return {boolean}
|
|
6625
|
+
*/
|
|
6626
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.hasId = function() {
|
|
6627
|
+
return jspb.Message.getField(this, 1) != null;
|
|
6628
|
+
};
|
|
6629
|
+
|
|
6630
|
+
|
|
6631
|
+
/**
|
|
6632
|
+
* optional int64 make_id = 2;
|
|
6633
|
+
* @return {number}
|
|
6634
|
+
*/
|
|
6635
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.getMakeId = function() {
|
|
6636
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
6637
|
+
};
|
|
6638
|
+
|
|
6639
|
+
|
|
6640
|
+
/**
|
|
6641
|
+
* @param {number} value
|
|
6045
6642
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6046
6643
|
*/
|
|
6047
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6644
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.setMakeId = function(value) {
|
|
6048
6645
|
return jspb.Message.setField(this, 2, value);
|
|
6049
6646
|
};
|
|
6050
6647
|
|
|
@@ -6053,7 +6650,7 @@ proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.setSerialNumber = function
|
|
|
6053
6650
|
* Clears the field making it undefined.
|
|
6054
6651
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6055
6652
|
*/
|
|
6056
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6653
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.clearMakeId = function() {
|
|
6057
6654
|
return jspb.Message.setField(this, 2, undefined);
|
|
6058
6655
|
};
|
|
6059
6656
|
|
|
@@ -6062,73 +6659,71 @@ proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.clearSerialNumber = functi
|
|
|
6062
6659
|
* Returns whether this field is set.
|
|
6063
6660
|
* @return {boolean}
|
|
6064
6661
|
*/
|
|
6065
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6662
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.hasMakeId = function() {
|
|
6066
6663
|
return jspb.Message.getField(this, 2) != null;
|
|
6067
6664
|
};
|
|
6068
6665
|
|
|
6069
6666
|
|
|
6070
6667
|
/**
|
|
6071
|
-
* optional
|
|
6072
|
-
* @return {
|
|
6668
|
+
* optional string make_name = 3;
|
|
6669
|
+
* @return {string}
|
|
6073
6670
|
*/
|
|
6074
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6075
|
-
return /** @type{
|
|
6076
|
-
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 3));
|
|
6671
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.getMakeName = function() {
|
|
6672
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
6077
6673
|
};
|
|
6078
6674
|
|
|
6079
6675
|
|
|
6080
6676
|
/**
|
|
6081
|
-
* @param {
|
|
6677
|
+
* @param {string} value
|
|
6082
6678
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6083
|
-
*/
|
|
6084
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6085
|
-
return jspb.Message.
|
|
6679
|
+
*/
|
|
6680
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.setMakeName = function(value) {
|
|
6681
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
6086
6682
|
};
|
|
6087
6683
|
|
|
6088
6684
|
|
|
6089
6685
|
/**
|
|
6090
|
-
*
|
|
6091
|
-
* @return {
|
|
6686
|
+
* optional string model_name = 4;
|
|
6687
|
+
* @return {string}
|
|
6092
6688
|
*/
|
|
6093
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6094
|
-
return
|
|
6689
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.getModelName = function() {
|
|
6690
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
6095
6691
|
};
|
|
6096
6692
|
|
|
6097
6693
|
|
|
6098
6694
|
/**
|
|
6099
|
-
*
|
|
6100
|
-
* @return {
|
|
6695
|
+
* @param {string} value
|
|
6696
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6101
6697
|
*/
|
|
6102
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6103
|
-
return jspb.Message.
|
|
6698
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.setModelName = function(value) {
|
|
6699
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
6104
6700
|
};
|
|
6105
6701
|
|
|
6106
6702
|
|
|
6107
6703
|
/**
|
|
6108
|
-
* optional
|
|
6109
|
-
* @return {
|
|
6704
|
+
* optional string serial_number = 5;
|
|
6705
|
+
* @return {string}
|
|
6110
6706
|
*/
|
|
6111
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6112
|
-
return /** @type{
|
|
6113
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogBrand, 10));
|
|
6707
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.getSerialNumber = function() {
|
|
6708
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
6114
6709
|
};
|
|
6115
6710
|
|
|
6116
6711
|
|
|
6117
6712
|
/**
|
|
6118
|
-
* @param {
|
|
6713
|
+
* @param {string} value
|
|
6119
6714
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6120
|
-
*/
|
|
6121
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6122
|
-
return jspb.Message.
|
|
6715
|
+
*/
|
|
6716
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.setSerialNumber = function(value) {
|
|
6717
|
+
return jspb.Message.setField(this, 5, value);
|
|
6123
6718
|
};
|
|
6124
6719
|
|
|
6125
6720
|
|
|
6126
6721
|
/**
|
|
6127
|
-
* Clears the
|
|
6722
|
+
* Clears the field making it undefined.
|
|
6128
6723
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6129
6724
|
*/
|
|
6130
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6131
|
-
return
|
|
6725
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.clearSerialNumber = function() {
|
|
6726
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
6132
6727
|
};
|
|
6133
6728
|
|
|
6134
6729
|
|
|
@@ -6136,27 +6731,27 @@ proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.clearCatalogBrand = functi
|
|
|
6136
6731
|
* Returns whether this field is set.
|
|
6137
6732
|
* @return {boolean}
|
|
6138
6733
|
*/
|
|
6139
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6140
|
-
return jspb.Message.getField(this,
|
|
6734
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.hasSerialNumber = function() {
|
|
6735
|
+
return jspb.Message.getField(this, 5) != null;
|
|
6141
6736
|
};
|
|
6142
6737
|
|
|
6143
6738
|
|
|
6144
6739
|
/**
|
|
6145
|
-
* optional
|
|
6146
|
-
* @return {?proto.
|
|
6740
|
+
* optional google.protobuf.Timestamp manufacturer_date = 6;
|
|
6741
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
6147
6742
|
*/
|
|
6148
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6149
|
-
return /** @type{?proto.
|
|
6150
|
-
jspb.Message.getWrapperField(this,
|
|
6743
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.getManufacturerDate = function() {
|
|
6744
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
6745
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
6151
6746
|
};
|
|
6152
6747
|
|
|
6153
6748
|
|
|
6154
6749
|
/**
|
|
6155
|
-
* @param {?proto.
|
|
6750
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
6156
6751
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6157
6752
|
*/
|
|
6158
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6159
|
-
return jspb.Message.setWrapperField(this,
|
|
6753
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.setManufacturerDate = function(value) {
|
|
6754
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
6160
6755
|
};
|
|
6161
6756
|
|
|
6162
6757
|
|
|
@@ -6164,8 +6759,8 @@ proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.setCatalogMonitor = functi
|
|
|
6164
6759
|
* Clears the message field making it undefined.
|
|
6165
6760
|
* @return {!proto.com.lansweeper.dp.outbound.v1.Monitor} returns this
|
|
6166
6761
|
*/
|
|
6167
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6168
|
-
return this.
|
|
6762
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.clearManufacturerDate = function() {
|
|
6763
|
+
return this.setManufacturerDate(undefined);
|
|
6169
6764
|
};
|
|
6170
6765
|
|
|
6171
6766
|
|
|
@@ -6173,8 +6768,8 @@ proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.clearCatalogMonitor = func
|
|
|
6173
6768
|
* Returns whether this field is set.
|
|
6174
6769
|
* @return {boolean}
|
|
6175
6770
|
*/
|
|
6176
|
-
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.
|
|
6177
|
-
return jspb.Message.getField(this,
|
|
6771
|
+
proto.com.lansweeper.dp.outbound.v1.Monitor.prototype.hasManufacturerDate = function() {
|
|
6772
|
+
return jspb.Message.getField(this, 6) != null;
|
|
6178
6773
|
};
|
|
6179
6774
|
|
|
6180
6775
|
|
|
@@ -6944,9 +7539,6 @@ proto.com.lansweeper.dp.outbound.v1.Software.toObject = function(includeInstance
|
|
|
6944
7539
|
arch: jspb.Message.getFieldWithDefault(msg, 20, ""),
|
|
6945
7540
|
lang: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
6946
7541
|
cpe: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
6947
|
-
catalogBrand: (f = msg.getCatalogBrand()) && proto.com.lansweeper.dp.outbound.v1.CatalogBrand.toObject(includeInstance, f),
|
|
6948
|
-
catalogSoftware: (f = msg.getCatalogSoftware()) && proto.com.lansweeper.dp.outbound.v1.CatalogSoftware.toObject(includeInstance, f),
|
|
6949
|
-
catalogLatest: (f = msg.getCatalogLatest()) && proto.com.lansweeper.dp.outbound.v1.CatalogSoftware.toObject(includeInstance, f),
|
|
6950
7542
|
raw: (f = msg.getRaw()) && proto.com.lansweeper.dp.outbound.v1.RawSoftware.toObject(includeInstance, f),
|
|
6951
7543
|
rawHash: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
6952
7544
|
nreHash: jspb.Message.getFieldWithDefault(msg, 19, "")
|
|
@@ -7054,21 +7646,6 @@ proto.com.lansweeper.dp.outbound.v1.Software.deserializeBinaryFromReader = funct
|
|
|
7054
7646
|
var value = /** @type {string} */ (reader.readString());
|
|
7055
7647
|
msg.setCpe(value);
|
|
7056
7648
|
break;
|
|
7057
|
-
case 22:
|
|
7058
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogBrand;
|
|
7059
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogBrand.deserializeBinaryFromReader);
|
|
7060
|
-
msg.setCatalogBrand(value);
|
|
7061
|
-
break;
|
|
7062
|
-
case 16:
|
|
7063
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogSoftware;
|
|
7064
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogSoftware.deserializeBinaryFromReader);
|
|
7065
|
-
msg.setCatalogSoftware(value);
|
|
7066
|
-
break;
|
|
7067
|
-
case 23:
|
|
7068
|
-
var value = new proto.com.lansweeper.dp.outbound.v1.CatalogSoftware;
|
|
7069
|
-
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CatalogSoftware.deserializeBinaryFromReader);
|
|
7070
|
-
msg.setCatalogLatest(value);
|
|
7071
|
-
break;
|
|
7072
7649
|
case 17:
|
|
7073
7650
|
var value = new proto.com.lansweeper.dp.outbound.v1.RawSoftware;
|
|
7074
7651
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.RawSoftware.deserializeBinaryFromReader);
|
|
@@ -7230,30 +7807,6 @@ proto.com.lansweeper.dp.outbound.v1.Software.serializeBinaryToWriter = function(
|
|
|
7230
7807
|
f
|
|
7231
7808
|
);
|
|
7232
7809
|
}
|
|
7233
|
-
f = message.getCatalogBrand();
|
|
7234
|
-
if (f != null) {
|
|
7235
|
-
writer.writeMessage(
|
|
7236
|
-
22,
|
|
7237
|
-
f,
|
|
7238
|
-
proto.com.lansweeper.dp.outbound.v1.CatalogBrand.serializeBinaryToWriter
|
|
7239
|
-
);
|
|
7240
|
-
}
|
|
7241
|
-
f = message.getCatalogSoftware();
|
|
7242
|
-
if (f != null) {
|
|
7243
|
-
writer.writeMessage(
|
|
7244
|
-
16,
|
|
7245
|
-
f,
|
|
7246
|
-
proto.com.lansweeper.dp.outbound.v1.CatalogSoftware.serializeBinaryToWriter
|
|
7247
|
-
);
|
|
7248
|
-
}
|
|
7249
|
-
f = message.getCatalogLatest();
|
|
7250
|
-
if (f != null) {
|
|
7251
|
-
writer.writeMessage(
|
|
7252
|
-
23,
|
|
7253
|
-
f,
|
|
7254
|
-
proto.com.lansweeper.dp.outbound.v1.CatalogSoftware.serializeBinaryToWriter
|
|
7255
|
-
);
|
|
7256
|
-
}
|
|
7257
7810
|
f = message.getRaw();
|
|
7258
7811
|
if (f != null) {
|
|
7259
7812
|
writer.writeMessage(
|
|
@@ -7891,117 +8444,6 @@ proto.com.lansweeper.dp.outbound.v1.Software.prototype.hasCpe = function() {
|
|
|
7891
8444
|
};
|
|
7892
8445
|
|
|
7893
8446
|
|
|
7894
|
-
/**
|
|
7895
|
-
* optional CatalogBrand catalog_brand = 22;
|
|
7896
|
-
* @return {?proto.com.lansweeper.dp.outbound.v1.CatalogBrand}
|
|
7897
|
-
*/
|
|
7898
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.getCatalogBrand = function() {
|
|
7899
|
-
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CatalogBrand} */ (
|
|
7900
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogBrand, 22));
|
|
7901
|
-
};
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
|
-
/**
|
|
7905
|
-
* @param {?proto.com.lansweeper.dp.outbound.v1.CatalogBrand|undefined} value
|
|
7906
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.Software} returns this
|
|
7907
|
-
*/
|
|
7908
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.setCatalogBrand = function(value) {
|
|
7909
|
-
return jspb.Message.setWrapperField(this, 22, value);
|
|
7910
|
-
};
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
/**
|
|
7914
|
-
* Clears the message field making it undefined.
|
|
7915
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.Software} returns this
|
|
7916
|
-
*/
|
|
7917
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.clearCatalogBrand = function() {
|
|
7918
|
-
return this.setCatalogBrand(undefined);
|
|
7919
|
-
};
|
|
7920
|
-
|
|
7921
|
-
|
|
7922
|
-
/**
|
|
7923
|
-
* Returns whether this field is set.
|
|
7924
|
-
* @return {boolean}
|
|
7925
|
-
*/
|
|
7926
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.hasCatalogBrand = function() {
|
|
7927
|
-
return jspb.Message.getField(this, 22) != null;
|
|
7928
|
-
};
|
|
7929
|
-
|
|
7930
|
-
|
|
7931
|
-
/**
|
|
7932
|
-
* optional CatalogSoftware catalog_software = 16;
|
|
7933
|
-
* @return {?proto.com.lansweeper.dp.outbound.v1.CatalogSoftware}
|
|
7934
|
-
*/
|
|
7935
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.getCatalogSoftware = function() {
|
|
7936
|
-
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CatalogSoftware} */ (
|
|
7937
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogSoftware, 16));
|
|
7938
|
-
};
|
|
7939
|
-
|
|
7940
|
-
|
|
7941
|
-
/**
|
|
7942
|
-
* @param {?proto.com.lansweeper.dp.outbound.v1.CatalogSoftware|undefined} value
|
|
7943
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.Software} returns this
|
|
7944
|
-
*/
|
|
7945
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.setCatalogSoftware = function(value) {
|
|
7946
|
-
return jspb.Message.setWrapperField(this, 16, value);
|
|
7947
|
-
};
|
|
7948
|
-
|
|
7949
|
-
|
|
7950
|
-
/**
|
|
7951
|
-
* Clears the message field making it undefined.
|
|
7952
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.Software} returns this
|
|
7953
|
-
*/
|
|
7954
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.clearCatalogSoftware = function() {
|
|
7955
|
-
return this.setCatalogSoftware(undefined);
|
|
7956
|
-
};
|
|
7957
|
-
|
|
7958
|
-
|
|
7959
|
-
/**
|
|
7960
|
-
* Returns whether this field is set.
|
|
7961
|
-
* @return {boolean}
|
|
7962
|
-
*/
|
|
7963
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.hasCatalogSoftware = function() {
|
|
7964
|
-
return jspb.Message.getField(this, 16) != null;
|
|
7965
|
-
};
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
/**
|
|
7969
|
-
* optional CatalogSoftware catalog_latest = 23;
|
|
7970
|
-
* @return {?proto.com.lansweeper.dp.outbound.v1.CatalogSoftware}
|
|
7971
|
-
*/
|
|
7972
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.getCatalogLatest = function() {
|
|
7973
|
-
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CatalogSoftware} */ (
|
|
7974
|
-
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CatalogSoftware, 23));
|
|
7975
|
-
};
|
|
7976
|
-
|
|
7977
|
-
|
|
7978
|
-
/**
|
|
7979
|
-
* @param {?proto.com.lansweeper.dp.outbound.v1.CatalogSoftware|undefined} value
|
|
7980
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.Software} returns this
|
|
7981
|
-
*/
|
|
7982
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.setCatalogLatest = function(value) {
|
|
7983
|
-
return jspb.Message.setWrapperField(this, 23, value);
|
|
7984
|
-
};
|
|
7985
|
-
|
|
7986
|
-
|
|
7987
|
-
/**
|
|
7988
|
-
* Clears the message field making it undefined.
|
|
7989
|
-
* @return {!proto.com.lansweeper.dp.outbound.v1.Software} returns this
|
|
7990
|
-
*/
|
|
7991
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.clearCatalogLatest = function() {
|
|
7992
|
-
return this.setCatalogLatest(undefined);
|
|
7993
|
-
};
|
|
7994
|
-
|
|
7995
|
-
|
|
7996
|
-
/**
|
|
7997
|
-
* Returns whether this field is set.
|
|
7998
|
-
* @return {boolean}
|
|
7999
|
-
*/
|
|
8000
|
-
proto.com.lansweeper.dp.outbound.v1.Software.prototype.hasCatalogLatest = function() {
|
|
8001
|
-
return jspb.Message.getField(this, 23) != null;
|
|
8002
|
-
};
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
8447
|
/**
|
|
8006
8448
|
* optional RawSoftware raw = 17;
|
|
8007
8449
|
* @return {?proto.com.lansweeper.dp.outbound.v1.RawSoftware}
|