@lansweeper/data-platform-outbound-grpc 0.1.117 → 0.1.118

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.
@@ -60,6 +60,7 @@ goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ComputerMacCamera', null,
60
60
  goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ComputerMacCardReader', null, global);
61
61
  goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ComputerMacDiagnostics', null, global);
62
62
  goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ComputerMacEthernet', null, global);
63
+ goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController', null, global);
63
64
  goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ComputerMacInstallHistory', null, global);
64
65
  goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ComputerMacNetworkLocation', null, global);
65
66
  goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ComputerMacOsFramework', null, global);
@@ -1296,6 +1297,27 @@ if (goog.DEBUG && !COMPILED) {
1296
1297
  */
1297
1298
  proto.com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo.displayName = 'proto.com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo';
1298
1299
  }
1300
+ /**
1301
+ * Generated by JsPbCodeGenerator.
1302
+ * @param {Array=} opt_data Optional initial data array, typically from a
1303
+ * server response, or constructed directly in Javascript. The array is used
1304
+ * in place and becomes part of the constructed object. It is not cloned.
1305
+ * If no data is provided, the constructed object will be empty, but still
1306
+ * valid.
1307
+ * @extends {jspb.Message}
1308
+ * @constructor
1309
+ */
1310
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController = function(opt_data) {
1311
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1312
+ };
1313
+ goog.inherits(proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController, jspb.Message);
1314
+ if (goog.DEBUG && !COMPILED) {
1315
+ /**
1316
+ * @public
1317
+ * @override
1318
+ */
1319
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.displayName = 'proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController';
1320
+ }
1299
1321
  /**
1300
1322
  * Generated by JsPbCodeGenerator.
1301
1323
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -9235,6 +9257,7 @@ proto.com.lansweeper.dp.outbound.v1.Computer.toObject = function(includeInstance
9235
9257
  proto.com.lansweeper.dp.outbound.v1.ComputerMacCamera.toObject, includeInstance),
9236
9258
  macCardReaderList: jspb.Message.toObjectList(msg.getMacCardReaderList(),
9237
9259
  proto.com.lansweeper.dp.outbound.v1.ComputerMacCardReader.toObject, includeInstance),
9260
+ macHardwareController: (f = msg.getMacHardwareController()) && proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.toObject(includeInstance, f),
9238
9261
  macDiagnosticList: jspb.Message.toObjectList(msg.getMacDiagnosticList(),
9239
9262
  proto.com.lansweeper.dp.outbound.v1.ComputerMacDiagnostics.toObject, includeInstance),
9240
9263
  macEthernet: (f = msg.getMacEthernet()) && proto.com.lansweeper.dp.outbound.v1.ComputerMacEthernet.toObject(includeInstance, f),
@@ -9531,6 +9554,11 @@ proto.com.lansweeper.dp.outbound.v1.Computer.deserializeBinaryFromReader = funct
9531
9554
  reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ComputerMacCardReader.deserializeBinaryFromReader);
9532
9555
  msg.addMacCardReader(value);
9533
9556
  break;
9557
+ case 40:
9558
+ var value = new proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController;
9559
+ reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.deserializeBinaryFromReader);
9560
+ msg.setMacHardwareController(value);
9561
+ break;
9534
9562
  case 41:
9535
9563
  var value = new proto.com.lansweeper.dp.outbound.v1.ComputerMacDiagnostics;
9536
9564
  reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ComputerMacDiagnostics.deserializeBinaryFromReader);
@@ -10062,6 +10090,14 @@ proto.com.lansweeper.dp.outbound.v1.Computer.serializeBinaryToWriter = function(
10062
10090
  proto.com.lansweeper.dp.outbound.v1.ComputerMacCardReader.serializeBinaryToWriter
10063
10091
  );
10064
10092
  }
10093
+ f = message.getMacHardwareController();
10094
+ if (f != null) {
10095
+ writer.writeMessage(
10096
+ 40,
10097
+ f,
10098
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.serializeBinaryToWriter
10099
+ );
10100
+ }
10065
10101
  f = message.getMacDiagnosticList();
10066
10102
  if (f.length > 0) {
10067
10103
  writer.writeRepeatedMessage(
@@ -11847,6 +11883,43 @@ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.clearMacCardReaderList =
11847
11883
  };
11848
11884
 
11849
11885
 
11886
+ /**
11887
+ * optional ComputerMacHardwareController mac_hardware_controller = 40;
11888
+ * @return {?proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController}
11889
+ */
11890
+ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.getMacHardwareController = function() {
11891
+ return /** @type{?proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} */ (
11892
+ jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController, 40));
11893
+ };
11894
+
11895
+
11896
+ /**
11897
+ * @param {?proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController|undefined} value
11898
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Computer} returns this
11899
+ */
11900
+ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.setMacHardwareController = function(value) {
11901
+ return jspb.Message.setWrapperField(this, 40, value);
11902
+ };
11903
+
11904
+
11905
+ /**
11906
+ * Clears the message field making it undefined.
11907
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Computer} returns this
11908
+ */
11909
+ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.clearMacHardwareController = function() {
11910
+ return this.setMacHardwareController(undefined);
11911
+ };
11912
+
11913
+
11914
+ /**
11915
+ * Returns whether this field is set.
11916
+ * @return {boolean}
11917
+ */
11918
+ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.hasMacHardwareController = function() {
11919
+ return jspb.Message.getField(this, 40) != null;
11920
+ };
11921
+
11922
+
11850
11923
  /**
11851
11924
  * repeated ComputerMacDiagnostics mac_diagnostic = 41;
11852
11925
  * @return {!Array<!proto.com.lansweeper.dp.outbound.v1.ComputerMacDiagnostics>}
@@ -27293,6 +27366,682 @@ proto.com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo.prototype.hasOsRele
27293
27366
 
27294
27367
 
27295
27368
 
27369
+ if (jspb.Message.GENERATE_TO_OBJECT) {
27370
+ /**
27371
+ * Creates an object representation of this proto.
27372
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
27373
+ * Optional fields that are not set will be set to undefined.
27374
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
27375
+ * For the list of reserved names please see:
27376
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
27377
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
27378
+ * JSPB instance for transitional soy proto support:
27379
+ * http://goto/soy-param-migration
27380
+ * @return {!Object}
27381
+ */
27382
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.toObject = function(opt_includeInstance) {
27383
+ return proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.toObject(opt_includeInstance, this);
27384
+ };
27385
+
27386
+
27387
+ /**
27388
+ * Static version of the {@see toObject} method.
27389
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
27390
+ * the JSPB instance for transitional soy proto support:
27391
+ * http://goto/soy-param-migration
27392
+ * @param {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} msg The msg instance to transform.
27393
+ * @return {!Object}
27394
+ * @suppress {unusedLocalVariables} f is only used for nested messages
27395
+ */
27396
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.toObject = function(includeInstance, msg) {
27397
+ var f, obj = {
27398
+ bootUuid: jspb.Message.getFieldWithDefault(msg, 1, ""),
27399
+ firmwareVersion: jspb.Message.getFieldWithDefault(msg, 2, ""),
27400
+ extraBootPolicies: jspb.Message.getFieldWithDefault(msg, 3, ""),
27401
+ modelIdentifier: jspb.Message.getFieldWithDefault(msg, 4, ""),
27402
+ bootArgsFilteringEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
27403
+ kernelCtrrEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 6, false),
27404
+ deviceMdmOperations: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
27405
+ userMdmOperations: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
27406
+ otherKernelExtensions: jspb.Message.getBooleanFieldWithDefault(msg, 9, false),
27407
+ systemIntegrityProtection: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
27408
+ signedSystemVolume: jspb.Message.getBooleanFieldWithDefault(msg, 11, false),
27409
+ secureBoot: jspb.Message.getFieldWithDefault(msg, 12, "")
27410
+ };
27411
+
27412
+ if (includeInstance) {
27413
+ obj.$jspbMessageInstance = msg;
27414
+ }
27415
+ return obj;
27416
+ };
27417
+ }
27418
+
27419
+
27420
+ /**
27421
+ * Deserializes binary data (in protobuf wire format).
27422
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
27423
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController}
27424
+ */
27425
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.deserializeBinary = function(bytes) {
27426
+ var reader = new jspb.BinaryReader(bytes);
27427
+ var msg = new proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController;
27428
+ return proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.deserializeBinaryFromReader(msg, reader);
27429
+ };
27430
+
27431
+
27432
+ /**
27433
+ * Deserializes binary data (in protobuf wire format) from the
27434
+ * given reader into the given message object.
27435
+ * @param {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} msg The message object to deserialize into.
27436
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
27437
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController}
27438
+ */
27439
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.deserializeBinaryFromReader = function(msg, reader) {
27440
+ while (reader.nextField()) {
27441
+ if (reader.isEndGroup()) {
27442
+ break;
27443
+ }
27444
+ var field = reader.getFieldNumber();
27445
+ switch (field) {
27446
+ case 1:
27447
+ var value = /** @type {string} */ (reader.readString());
27448
+ msg.setBootUuid(value);
27449
+ break;
27450
+ case 2:
27451
+ var value = /** @type {string} */ (reader.readString());
27452
+ msg.setFirmwareVersion(value);
27453
+ break;
27454
+ case 3:
27455
+ var value = /** @type {string} */ (reader.readString());
27456
+ msg.setExtraBootPolicies(value);
27457
+ break;
27458
+ case 4:
27459
+ var value = /** @type {string} */ (reader.readString());
27460
+ msg.setModelIdentifier(value);
27461
+ break;
27462
+ case 5:
27463
+ var value = /** @type {boolean} */ (reader.readBool());
27464
+ msg.setBootArgsFilteringEnabled(value);
27465
+ break;
27466
+ case 6:
27467
+ var value = /** @type {boolean} */ (reader.readBool());
27468
+ msg.setKernelCtrrEnabled(value);
27469
+ break;
27470
+ case 7:
27471
+ var value = /** @type {boolean} */ (reader.readBool());
27472
+ msg.setDeviceMdmOperations(value);
27473
+ break;
27474
+ case 8:
27475
+ var value = /** @type {boolean} */ (reader.readBool());
27476
+ msg.setUserMdmOperations(value);
27477
+ break;
27478
+ case 9:
27479
+ var value = /** @type {boolean} */ (reader.readBool());
27480
+ msg.setOtherKernelExtensions(value);
27481
+ break;
27482
+ case 10:
27483
+ var value = /** @type {boolean} */ (reader.readBool());
27484
+ msg.setSystemIntegrityProtection(value);
27485
+ break;
27486
+ case 11:
27487
+ var value = /** @type {boolean} */ (reader.readBool());
27488
+ msg.setSignedSystemVolume(value);
27489
+ break;
27490
+ case 12:
27491
+ var value = /** @type {string} */ (reader.readString());
27492
+ msg.setSecureBoot(value);
27493
+ break;
27494
+ default:
27495
+ reader.skipField();
27496
+ break;
27497
+ }
27498
+ }
27499
+ return msg;
27500
+ };
27501
+
27502
+
27503
+ /**
27504
+ * Serializes the message to binary data (in protobuf wire format).
27505
+ * @return {!Uint8Array}
27506
+ */
27507
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.serializeBinary = function() {
27508
+ var writer = new jspb.BinaryWriter();
27509
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.serializeBinaryToWriter(this, writer);
27510
+ return writer.getResultBuffer();
27511
+ };
27512
+
27513
+
27514
+ /**
27515
+ * Serializes the given message to binary data (in protobuf wire
27516
+ * format), writing to the given BinaryWriter.
27517
+ * @param {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} message
27518
+ * @param {!jspb.BinaryWriter} writer
27519
+ * @suppress {unusedLocalVariables} f is only used for nested messages
27520
+ */
27521
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.serializeBinaryToWriter = function(message, writer) {
27522
+ var f = undefined;
27523
+ f = /** @type {string} */ (jspb.Message.getField(message, 1));
27524
+ if (f != null) {
27525
+ writer.writeString(
27526
+ 1,
27527
+ f
27528
+ );
27529
+ }
27530
+ f = /** @type {string} */ (jspb.Message.getField(message, 2));
27531
+ if (f != null) {
27532
+ writer.writeString(
27533
+ 2,
27534
+ f
27535
+ );
27536
+ }
27537
+ f = /** @type {string} */ (jspb.Message.getField(message, 3));
27538
+ if (f != null) {
27539
+ writer.writeString(
27540
+ 3,
27541
+ f
27542
+ );
27543
+ }
27544
+ f = /** @type {string} */ (jspb.Message.getField(message, 4));
27545
+ if (f != null) {
27546
+ writer.writeString(
27547
+ 4,
27548
+ f
27549
+ );
27550
+ }
27551
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 5));
27552
+ if (f != null) {
27553
+ writer.writeBool(
27554
+ 5,
27555
+ f
27556
+ );
27557
+ }
27558
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 6));
27559
+ if (f != null) {
27560
+ writer.writeBool(
27561
+ 6,
27562
+ f
27563
+ );
27564
+ }
27565
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 7));
27566
+ if (f != null) {
27567
+ writer.writeBool(
27568
+ 7,
27569
+ f
27570
+ );
27571
+ }
27572
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 8));
27573
+ if (f != null) {
27574
+ writer.writeBool(
27575
+ 8,
27576
+ f
27577
+ );
27578
+ }
27579
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 9));
27580
+ if (f != null) {
27581
+ writer.writeBool(
27582
+ 9,
27583
+ f
27584
+ );
27585
+ }
27586
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 10));
27587
+ if (f != null) {
27588
+ writer.writeBool(
27589
+ 10,
27590
+ f
27591
+ );
27592
+ }
27593
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 11));
27594
+ if (f != null) {
27595
+ writer.writeBool(
27596
+ 11,
27597
+ f
27598
+ );
27599
+ }
27600
+ f = /** @type {string} */ (jspb.Message.getField(message, 12));
27601
+ if (f != null) {
27602
+ writer.writeString(
27603
+ 12,
27604
+ f
27605
+ );
27606
+ }
27607
+ };
27608
+
27609
+
27610
+ /**
27611
+ * optional string boot_uuid = 1;
27612
+ * @return {string}
27613
+ */
27614
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getBootUuid = function() {
27615
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
27616
+ };
27617
+
27618
+
27619
+ /**
27620
+ * @param {string} value
27621
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27622
+ */
27623
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setBootUuid = function(value) {
27624
+ return jspb.Message.setField(this, 1, value);
27625
+ };
27626
+
27627
+
27628
+ /**
27629
+ * Clears the field making it undefined.
27630
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27631
+ */
27632
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearBootUuid = function() {
27633
+ return jspb.Message.setField(this, 1, undefined);
27634
+ };
27635
+
27636
+
27637
+ /**
27638
+ * Returns whether this field is set.
27639
+ * @return {boolean}
27640
+ */
27641
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasBootUuid = function() {
27642
+ return jspb.Message.getField(this, 1) != null;
27643
+ };
27644
+
27645
+
27646
+ /**
27647
+ * optional string firmware_version = 2;
27648
+ * @return {string}
27649
+ */
27650
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getFirmwareVersion = function() {
27651
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
27652
+ };
27653
+
27654
+
27655
+ /**
27656
+ * @param {string} value
27657
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27658
+ */
27659
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setFirmwareVersion = function(value) {
27660
+ return jspb.Message.setField(this, 2, value);
27661
+ };
27662
+
27663
+
27664
+ /**
27665
+ * Clears the field making it undefined.
27666
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27667
+ */
27668
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearFirmwareVersion = function() {
27669
+ return jspb.Message.setField(this, 2, undefined);
27670
+ };
27671
+
27672
+
27673
+ /**
27674
+ * Returns whether this field is set.
27675
+ * @return {boolean}
27676
+ */
27677
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasFirmwareVersion = function() {
27678
+ return jspb.Message.getField(this, 2) != null;
27679
+ };
27680
+
27681
+
27682
+ /**
27683
+ * optional string extra_boot_policies = 3;
27684
+ * @return {string}
27685
+ */
27686
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getExtraBootPolicies = function() {
27687
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
27688
+ };
27689
+
27690
+
27691
+ /**
27692
+ * @param {string} value
27693
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27694
+ */
27695
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setExtraBootPolicies = function(value) {
27696
+ return jspb.Message.setField(this, 3, value);
27697
+ };
27698
+
27699
+
27700
+ /**
27701
+ * Clears the field making it undefined.
27702
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27703
+ */
27704
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearExtraBootPolicies = function() {
27705
+ return jspb.Message.setField(this, 3, undefined);
27706
+ };
27707
+
27708
+
27709
+ /**
27710
+ * Returns whether this field is set.
27711
+ * @return {boolean}
27712
+ */
27713
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasExtraBootPolicies = function() {
27714
+ return jspb.Message.getField(this, 3) != null;
27715
+ };
27716
+
27717
+
27718
+ /**
27719
+ * optional string model_identifier = 4;
27720
+ * @return {string}
27721
+ */
27722
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getModelIdentifier = function() {
27723
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
27724
+ };
27725
+
27726
+
27727
+ /**
27728
+ * @param {string} value
27729
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27730
+ */
27731
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setModelIdentifier = function(value) {
27732
+ return jspb.Message.setField(this, 4, value);
27733
+ };
27734
+
27735
+
27736
+ /**
27737
+ * Clears the field making it undefined.
27738
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27739
+ */
27740
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearModelIdentifier = function() {
27741
+ return jspb.Message.setField(this, 4, undefined);
27742
+ };
27743
+
27744
+
27745
+ /**
27746
+ * Returns whether this field is set.
27747
+ * @return {boolean}
27748
+ */
27749
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasModelIdentifier = function() {
27750
+ return jspb.Message.getField(this, 4) != null;
27751
+ };
27752
+
27753
+
27754
+ /**
27755
+ * optional bool boot_args_filtering_enabled = 5;
27756
+ * @return {boolean}
27757
+ */
27758
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getBootArgsFilteringEnabled = function() {
27759
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
27760
+ };
27761
+
27762
+
27763
+ /**
27764
+ * @param {boolean} value
27765
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27766
+ */
27767
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setBootArgsFilteringEnabled = function(value) {
27768
+ return jspb.Message.setField(this, 5, value);
27769
+ };
27770
+
27771
+
27772
+ /**
27773
+ * Clears the field making it undefined.
27774
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27775
+ */
27776
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearBootArgsFilteringEnabled = function() {
27777
+ return jspb.Message.setField(this, 5, undefined);
27778
+ };
27779
+
27780
+
27781
+ /**
27782
+ * Returns whether this field is set.
27783
+ * @return {boolean}
27784
+ */
27785
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasBootArgsFilteringEnabled = function() {
27786
+ return jspb.Message.getField(this, 5) != null;
27787
+ };
27788
+
27789
+
27790
+ /**
27791
+ * optional bool kernel_ctrr_enabled = 6;
27792
+ * @return {boolean}
27793
+ */
27794
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getKernelCtrrEnabled = function() {
27795
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 6, false));
27796
+ };
27797
+
27798
+
27799
+ /**
27800
+ * @param {boolean} value
27801
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27802
+ */
27803
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setKernelCtrrEnabled = function(value) {
27804
+ return jspb.Message.setField(this, 6, value);
27805
+ };
27806
+
27807
+
27808
+ /**
27809
+ * Clears the field making it undefined.
27810
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27811
+ */
27812
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearKernelCtrrEnabled = function() {
27813
+ return jspb.Message.setField(this, 6, undefined);
27814
+ };
27815
+
27816
+
27817
+ /**
27818
+ * Returns whether this field is set.
27819
+ * @return {boolean}
27820
+ */
27821
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasKernelCtrrEnabled = function() {
27822
+ return jspb.Message.getField(this, 6) != null;
27823
+ };
27824
+
27825
+
27826
+ /**
27827
+ * optional bool device_mdm_operations = 7;
27828
+ * @return {boolean}
27829
+ */
27830
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getDeviceMdmOperations = function() {
27831
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 7, false));
27832
+ };
27833
+
27834
+
27835
+ /**
27836
+ * @param {boolean} value
27837
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27838
+ */
27839
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setDeviceMdmOperations = function(value) {
27840
+ return jspb.Message.setField(this, 7, value);
27841
+ };
27842
+
27843
+
27844
+ /**
27845
+ * Clears the field making it undefined.
27846
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27847
+ */
27848
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearDeviceMdmOperations = function() {
27849
+ return jspb.Message.setField(this, 7, undefined);
27850
+ };
27851
+
27852
+
27853
+ /**
27854
+ * Returns whether this field is set.
27855
+ * @return {boolean}
27856
+ */
27857
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasDeviceMdmOperations = function() {
27858
+ return jspb.Message.getField(this, 7) != null;
27859
+ };
27860
+
27861
+
27862
+ /**
27863
+ * optional bool user_mdm_operations = 8;
27864
+ * @return {boolean}
27865
+ */
27866
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getUserMdmOperations = function() {
27867
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 8, false));
27868
+ };
27869
+
27870
+
27871
+ /**
27872
+ * @param {boolean} value
27873
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27874
+ */
27875
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setUserMdmOperations = function(value) {
27876
+ return jspb.Message.setField(this, 8, value);
27877
+ };
27878
+
27879
+
27880
+ /**
27881
+ * Clears the field making it undefined.
27882
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27883
+ */
27884
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearUserMdmOperations = function() {
27885
+ return jspb.Message.setField(this, 8, undefined);
27886
+ };
27887
+
27888
+
27889
+ /**
27890
+ * Returns whether this field is set.
27891
+ * @return {boolean}
27892
+ */
27893
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasUserMdmOperations = function() {
27894
+ return jspb.Message.getField(this, 8) != null;
27895
+ };
27896
+
27897
+
27898
+ /**
27899
+ * optional bool other_kernel_extensions = 9;
27900
+ * @return {boolean}
27901
+ */
27902
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getOtherKernelExtensions = function() {
27903
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 9, false));
27904
+ };
27905
+
27906
+
27907
+ /**
27908
+ * @param {boolean} value
27909
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27910
+ */
27911
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setOtherKernelExtensions = function(value) {
27912
+ return jspb.Message.setField(this, 9, value);
27913
+ };
27914
+
27915
+
27916
+ /**
27917
+ * Clears the field making it undefined.
27918
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27919
+ */
27920
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearOtherKernelExtensions = function() {
27921
+ return jspb.Message.setField(this, 9, undefined);
27922
+ };
27923
+
27924
+
27925
+ /**
27926
+ * Returns whether this field is set.
27927
+ * @return {boolean}
27928
+ */
27929
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasOtherKernelExtensions = function() {
27930
+ return jspb.Message.getField(this, 9) != null;
27931
+ };
27932
+
27933
+
27934
+ /**
27935
+ * optional bool system_integrity_protection = 10;
27936
+ * @return {boolean}
27937
+ */
27938
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getSystemIntegrityProtection = function() {
27939
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 10, false));
27940
+ };
27941
+
27942
+
27943
+ /**
27944
+ * @param {boolean} value
27945
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27946
+ */
27947
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setSystemIntegrityProtection = function(value) {
27948
+ return jspb.Message.setField(this, 10, value);
27949
+ };
27950
+
27951
+
27952
+ /**
27953
+ * Clears the field making it undefined.
27954
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27955
+ */
27956
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearSystemIntegrityProtection = function() {
27957
+ return jspb.Message.setField(this, 10, undefined);
27958
+ };
27959
+
27960
+
27961
+ /**
27962
+ * Returns whether this field is set.
27963
+ * @return {boolean}
27964
+ */
27965
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasSystemIntegrityProtection = function() {
27966
+ return jspb.Message.getField(this, 10) != null;
27967
+ };
27968
+
27969
+
27970
+ /**
27971
+ * optional bool signed_system_volume = 11;
27972
+ * @return {boolean}
27973
+ */
27974
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getSignedSystemVolume = function() {
27975
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 11, false));
27976
+ };
27977
+
27978
+
27979
+ /**
27980
+ * @param {boolean} value
27981
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27982
+ */
27983
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setSignedSystemVolume = function(value) {
27984
+ return jspb.Message.setField(this, 11, value);
27985
+ };
27986
+
27987
+
27988
+ /**
27989
+ * Clears the field making it undefined.
27990
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
27991
+ */
27992
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearSignedSystemVolume = function() {
27993
+ return jspb.Message.setField(this, 11, undefined);
27994
+ };
27995
+
27996
+
27997
+ /**
27998
+ * Returns whether this field is set.
27999
+ * @return {boolean}
28000
+ */
28001
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasSignedSystemVolume = function() {
28002
+ return jspb.Message.getField(this, 11) != null;
28003
+ };
28004
+
28005
+
28006
+ /**
28007
+ * optional string secure_boot = 12;
28008
+ * @return {string}
28009
+ */
28010
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.getSecureBoot = function() {
28011
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
28012
+ };
28013
+
28014
+
28015
+ /**
28016
+ * @param {string} value
28017
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
28018
+ */
28019
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.setSecureBoot = function(value) {
28020
+ return jspb.Message.setField(this, 12, value);
28021
+ };
28022
+
28023
+
28024
+ /**
28025
+ * Clears the field making it undefined.
28026
+ * @return {!proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController} returns this
28027
+ */
28028
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.clearSecureBoot = function() {
28029
+ return jspb.Message.setField(this, 12, undefined);
28030
+ };
28031
+
28032
+
28033
+ /**
28034
+ * Returns whether this field is set.
28035
+ * @return {boolean}
28036
+ */
28037
+ proto.com.lansweeper.dp.outbound.v1.ComputerMacHardwareController.prototype.hasSecureBoot = function() {
28038
+ return jspb.Message.getField(this, 12) != null;
28039
+ };
28040
+
28041
+
28042
+
28043
+
28044
+
27296
28045
  if (jspb.Message.GENERATE_TO_OBJECT) {
27297
28046
  /**
27298
28047
  * Creates an object representation of this proto.