@lansweeper/discovery-sensor-proto 2.78.0 → 2.79.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -136,6 +136,21 @@ export class WindowsBasicInfo extends jspb.Message {
136
136
  getCsdVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
137
137
  setCsdVersion(value?: google_protobuf_wrappers_pb.StringValue): WindowsBasicInfo;
138
138
 
139
+ hasUserDisplayName(): boolean;
140
+ clearUserDisplayName(): void;
141
+ getUserDisplayName(): google_protobuf_wrappers_pb.StringValue | undefined;
142
+ setUserDisplayName(value?: google_protobuf_wrappers_pb.StringValue): WindowsBasicInfo;
143
+
144
+ hasUserFirstName(): boolean;
145
+ clearUserFirstName(): void;
146
+ getUserFirstName(): google_protobuf_wrappers_pb.StringValue | undefined;
147
+ setUserFirstName(value?: google_protobuf_wrappers_pb.StringValue): WindowsBasicInfo;
148
+
149
+ hasUserLastName(): boolean;
150
+ clearUserLastName(): void;
151
+ getUserLastName(): google_protobuf_wrappers_pb.StringValue | undefined;
152
+ setUserLastName(value?: google_protobuf_wrappers_pb.StringValue): WindowsBasicInfo;
153
+
139
154
  serializeBinary(): Uint8Array;
140
155
  toObject(includeInstance?: boolean): WindowsBasicInfo.AsObject;
141
156
  static toObject(includeInstance: boolean, msg: WindowsBasicInfo): WindowsBasicInfo.AsObject;
@@ -173,6 +188,9 @@ export namespace WindowsBasicInfo {
173
188
  windowsOtherTypeDescription?: google_protobuf_wrappers_pb.StringValue.AsObject,
174
189
  uptime?: google_protobuf_wrappers_pb.StringValue.AsObject,
175
190
  csdVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
191
+ userDisplayName?: google_protobuf_wrappers_pb.StringValue.AsObject,
192
+ userFirstName?: google_protobuf_wrappers_pb.StringValue.AsObject,
193
+ userLastName?: google_protobuf_wrappers_pb.StringValue.AsObject,
176
194
  }
177
195
  }
178
196
 
@@ -4489,7 +4489,10 @@ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.toObject = fun
4489
4489
  isAzureAdJoined: (f = msg.getIsAzureAdJoined()) && google_protobuf_wrappers_pb.BoolValue.toObject(includeInstance, f),
4490
4490
  windowsOtherTypeDescription: (f = msg.getWindowsOtherTypeDescription()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
4491
4491
  uptime: (f = msg.getUptime()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
4492
- csdVersion: (f = msg.getCsdVersion()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
4492
+ csdVersion: (f = msg.getCsdVersion()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
4493
+ userDisplayName: (f = msg.getUserDisplayName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
4494
+ userFirstName: (f = msg.getUserFirstName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
4495
+ userLastName: (f = msg.getUserLastName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
4493
4496
  };
4494
4497
 
4495
4498
  if (includeInstance) {
@@ -4650,6 +4653,21 @@ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.deserializeBin
4650
4653
  reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
4651
4654
  msg.setCsdVersion(value);
4652
4655
  break;
4656
+ case 26:
4657
+ var value = new google_protobuf_wrappers_pb.StringValue;
4658
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
4659
+ msg.setUserDisplayName(value);
4660
+ break;
4661
+ case 27:
4662
+ var value = new google_protobuf_wrappers_pb.StringValue;
4663
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
4664
+ msg.setUserFirstName(value);
4665
+ break;
4666
+ case 28:
4667
+ var value = new google_protobuf_wrappers_pb.StringValue;
4668
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
4669
+ msg.setUserLastName(value);
4670
+ break;
4653
4671
  default:
4654
4672
  reader.skipField();
4655
4673
  break;
@@ -4878,6 +4896,30 @@ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.serializeBinar
4878
4896
  google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
4879
4897
  );
4880
4898
  }
4899
+ f = message.getUserDisplayName();
4900
+ if (f != null) {
4901
+ writer.writeMessage(
4902
+ 26,
4903
+ f,
4904
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
4905
+ );
4906
+ }
4907
+ f = message.getUserFirstName();
4908
+ if (f != null) {
4909
+ writer.writeMessage(
4910
+ 27,
4911
+ f,
4912
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
4913
+ );
4914
+ }
4915
+ f = message.getUserLastName();
4916
+ if (f != null) {
4917
+ writer.writeMessage(
4918
+ 28,
4919
+ f,
4920
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
4921
+ );
4922
+ }
4881
4923
  };
4882
4924
 
4883
4925
 
@@ -5805,6 +5847,117 @@ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.hasC
5805
5847
  };
5806
5848
 
5807
5849
 
5850
+ /**
5851
+ * optional google.protobuf.StringValue user_display_name = 26;
5852
+ * @return {?proto.google.protobuf.StringValue}
5853
+ */
5854
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.getUserDisplayName = function() {
5855
+ return /** @type{?proto.google.protobuf.StringValue} */ (
5856
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 26));
5857
+ };
5858
+
5859
+
5860
+ /**
5861
+ * @param {?proto.google.protobuf.StringValue|undefined} value
5862
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo} returns this
5863
+ */
5864
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.setUserDisplayName = function(value) {
5865
+ return jspb.Message.setWrapperField(this, 26, value);
5866
+ };
5867
+
5868
+
5869
+ /**
5870
+ * Clears the message field making it undefined.
5871
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo} returns this
5872
+ */
5873
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.clearUserDisplayName = function() {
5874
+ return this.setUserDisplayName(undefined);
5875
+ };
5876
+
5877
+
5878
+ /**
5879
+ * Returns whether this field is set.
5880
+ * @return {boolean}
5881
+ */
5882
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.hasUserDisplayName = function() {
5883
+ return jspb.Message.getField(this, 26) != null;
5884
+ };
5885
+
5886
+
5887
+ /**
5888
+ * optional google.protobuf.StringValue user_first_name = 27;
5889
+ * @return {?proto.google.protobuf.StringValue}
5890
+ */
5891
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.getUserFirstName = function() {
5892
+ return /** @type{?proto.google.protobuf.StringValue} */ (
5893
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 27));
5894
+ };
5895
+
5896
+
5897
+ /**
5898
+ * @param {?proto.google.protobuf.StringValue|undefined} value
5899
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo} returns this
5900
+ */
5901
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.setUserFirstName = function(value) {
5902
+ return jspb.Message.setWrapperField(this, 27, value);
5903
+ };
5904
+
5905
+
5906
+ /**
5907
+ * Clears the message field making it undefined.
5908
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo} returns this
5909
+ */
5910
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.clearUserFirstName = function() {
5911
+ return this.setUserFirstName(undefined);
5912
+ };
5913
+
5914
+
5915
+ /**
5916
+ * Returns whether this field is set.
5917
+ * @return {boolean}
5918
+ */
5919
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.hasUserFirstName = function() {
5920
+ return jspb.Message.getField(this, 27) != null;
5921
+ };
5922
+
5923
+
5924
+ /**
5925
+ * optional google.protobuf.StringValue user_last_name = 28;
5926
+ * @return {?proto.google.protobuf.StringValue}
5927
+ */
5928
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.getUserLastName = function() {
5929
+ return /** @type{?proto.google.protobuf.StringValue} */ (
5930
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 28));
5931
+ };
5932
+
5933
+
5934
+ /**
5935
+ * @param {?proto.google.protobuf.StringValue|undefined} value
5936
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo} returns this
5937
+ */
5938
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.setUserLastName = function(value) {
5939
+ return jspb.Message.setWrapperField(this, 28, value);
5940
+ };
5941
+
5942
+
5943
+ /**
5944
+ * Clears the message field making it undefined.
5945
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo} returns this
5946
+ */
5947
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.clearUserLastName = function() {
5948
+ return this.setUserLastName(undefined);
5949
+ };
5950
+
5951
+
5952
+ /**
5953
+ * Returns whether this field is set.
5954
+ * @return {boolean}
5955
+ */
5956
+ proto.com.lansweeper.discovery.sensor.windows.v1.WindowsBasicInfo.prototype.hasUserLastName = function() {
5957
+ return jspb.Message.getField(this, 28) != null;
5958
+ };
5959
+
5960
+
5808
5961
 
5809
5962
  /**
5810
5963
  * List of repeated fields within this message type.