@lansweeper/discovery-sensor-proto 2.60.0 → 2.61.1
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.
|
@@ -7904,6 +7904,41 @@ export class UsbDeviceInfo extends jspb.Message {
|
|
|
7904
7904
|
getManufacturer(): string;
|
|
7905
7905
|
setManufacturer(value: string): UsbDeviceInfo;
|
|
7906
7906
|
|
|
7907
|
+
hasPnpDeviceId(): boolean;
|
|
7908
|
+
clearPnpDeviceId(): void;
|
|
7909
|
+
getPnpDeviceId(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
7910
|
+
setPnpDeviceId(value?: google_protobuf_wrappers_pb.StringValue): UsbDeviceInfo;
|
|
7911
|
+
|
|
7912
|
+
hasPnpClass(): boolean;
|
|
7913
|
+
clearPnpClass(): void;
|
|
7914
|
+
getPnpClass(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
7915
|
+
setPnpClass(value?: google_protobuf_wrappers_pb.StringValue): UsbDeviceInfo;
|
|
7916
|
+
|
|
7917
|
+
hasStatus(): boolean;
|
|
7918
|
+
clearStatus(): void;
|
|
7919
|
+
getStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
7920
|
+
setStatus(value?: google_protobuf_wrappers_pb.StringValue): UsbDeviceInfo;
|
|
7921
|
+
|
|
7922
|
+
hasService(): boolean;
|
|
7923
|
+
clearService(): void;
|
|
7924
|
+
getService(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
7925
|
+
setService(value?: google_protobuf_wrappers_pb.StringValue): UsbDeviceInfo;
|
|
7926
|
+
|
|
7927
|
+
hasCaption(): boolean;
|
|
7928
|
+
clearCaption(): void;
|
|
7929
|
+
getCaption(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
7930
|
+
setCaption(value?: google_protobuf_wrappers_pb.StringValue): UsbDeviceInfo;
|
|
7931
|
+
|
|
7932
|
+
hasDescription(): boolean;
|
|
7933
|
+
clearDescription(): void;
|
|
7934
|
+
getDescription(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
7935
|
+
setDescription(value?: google_protobuf_wrappers_pb.StringValue): UsbDeviceInfo;
|
|
7936
|
+
|
|
7937
|
+
hasPresent(): boolean;
|
|
7938
|
+
clearPresent(): void;
|
|
7939
|
+
getPresent(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
7940
|
+
setPresent(value?: google_protobuf_wrappers_pb.BoolValue): UsbDeviceInfo;
|
|
7941
|
+
|
|
7907
7942
|
serializeBinary(): Uint8Array;
|
|
7908
7943
|
toObject(includeInstance?: boolean): UsbDeviceInfo.AsObject;
|
|
7909
7944
|
static toObject(includeInstance: boolean, msg: UsbDeviceInfo): UsbDeviceInfo.AsObject;
|
|
@@ -7919,6 +7954,13 @@ export namespace UsbDeviceInfo {
|
|
|
7919
7954
|
deviceKey: string,
|
|
7920
7955
|
deviceValue: string,
|
|
7921
7956
|
manufacturer: string,
|
|
7957
|
+
pnpDeviceId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
7958
|
+
pnpClass?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
7959
|
+
status?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
7960
|
+
service?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
7961
|
+
caption?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
7962
|
+
description?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
7963
|
+
present?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
7922
7964
|
}
|
|
7923
7965
|
}
|
|
7924
7966
|
|
|
@@ -66003,7 +66003,14 @@ proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.toObject = functi
|
|
|
66003
66003
|
var f, obj = {
|
|
66004
66004
|
deviceKey: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
66005
66005
|
deviceValue: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
66006
|
-
manufacturer: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
66006
|
+
manufacturer: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
66007
|
+
pnpDeviceId: (f = msg.getPnpDeviceId()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
66008
|
+
pnpClass: (f = msg.getPnpClass()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
66009
|
+
status: (f = msg.getStatus()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
66010
|
+
service: (f = msg.getService()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
66011
|
+
caption: (f = msg.getCaption()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
66012
|
+
description: (f = msg.getDescription()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
66013
|
+
present: (f = msg.getPresent()) && google_protobuf_wrappers_pb.BoolValue.toObject(includeInstance, f)
|
|
66007
66014
|
};
|
|
66008
66015
|
|
|
66009
66016
|
if (includeInstance) {
|
|
@@ -66052,6 +66059,41 @@ proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.deserializeBinary
|
|
|
66052
66059
|
var value = /** @type {string} */ (reader.readString());
|
|
66053
66060
|
msg.setManufacturer(value);
|
|
66054
66061
|
break;
|
|
66062
|
+
case 4:
|
|
66063
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
66064
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
66065
|
+
msg.setPnpDeviceId(value);
|
|
66066
|
+
break;
|
|
66067
|
+
case 5:
|
|
66068
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
66069
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
66070
|
+
msg.setPnpClass(value);
|
|
66071
|
+
break;
|
|
66072
|
+
case 6:
|
|
66073
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
66074
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
66075
|
+
msg.setStatus(value);
|
|
66076
|
+
break;
|
|
66077
|
+
case 7:
|
|
66078
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
66079
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
66080
|
+
msg.setService(value);
|
|
66081
|
+
break;
|
|
66082
|
+
case 8:
|
|
66083
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
66084
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
66085
|
+
msg.setCaption(value);
|
|
66086
|
+
break;
|
|
66087
|
+
case 9:
|
|
66088
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
66089
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
66090
|
+
msg.setDescription(value);
|
|
66091
|
+
break;
|
|
66092
|
+
case 10:
|
|
66093
|
+
var value = new google_protobuf_wrappers_pb.BoolValue;
|
|
66094
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.BoolValue.deserializeBinaryFromReader);
|
|
66095
|
+
msg.setPresent(value);
|
|
66096
|
+
break;
|
|
66055
66097
|
default:
|
|
66056
66098
|
reader.skipField();
|
|
66057
66099
|
break;
|
|
@@ -66102,6 +66144,62 @@ proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.serializeBinaryTo
|
|
|
66102
66144
|
f
|
|
66103
66145
|
);
|
|
66104
66146
|
}
|
|
66147
|
+
f = message.getPnpDeviceId();
|
|
66148
|
+
if (f != null) {
|
|
66149
|
+
writer.writeMessage(
|
|
66150
|
+
4,
|
|
66151
|
+
f,
|
|
66152
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
66153
|
+
);
|
|
66154
|
+
}
|
|
66155
|
+
f = message.getPnpClass();
|
|
66156
|
+
if (f != null) {
|
|
66157
|
+
writer.writeMessage(
|
|
66158
|
+
5,
|
|
66159
|
+
f,
|
|
66160
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
66161
|
+
);
|
|
66162
|
+
}
|
|
66163
|
+
f = message.getStatus();
|
|
66164
|
+
if (f != null) {
|
|
66165
|
+
writer.writeMessage(
|
|
66166
|
+
6,
|
|
66167
|
+
f,
|
|
66168
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
66169
|
+
);
|
|
66170
|
+
}
|
|
66171
|
+
f = message.getService();
|
|
66172
|
+
if (f != null) {
|
|
66173
|
+
writer.writeMessage(
|
|
66174
|
+
7,
|
|
66175
|
+
f,
|
|
66176
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
66177
|
+
);
|
|
66178
|
+
}
|
|
66179
|
+
f = message.getCaption();
|
|
66180
|
+
if (f != null) {
|
|
66181
|
+
writer.writeMessage(
|
|
66182
|
+
8,
|
|
66183
|
+
f,
|
|
66184
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
66185
|
+
);
|
|
66186
|
+
}
|
|
66187
|
+
f = message.getDescription();
|
|
66188
|
+
if (f != null) {
|
|
66189
|
+
writer.writeMessage(
|
|
66190
|
+
9,
|
|
66191
|
+
f,
|
|
66192
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
66193
|
+
);
|
|
66194
|
+
}
|
|
66195
|
+
f = message.getPresent();
|
|
66196
|
+
if (f != null) {
|
|
66197
|
+
writer.writeMessage(
|
|
66198
|
+
10,
|
|
66199
|
+
f,
|
|
66200
|
+
google_protobuf_wrappers_pb.BoolValue.serializeBinaryToWriter
|
|
66201
|
+
);
|
|
66202
|
+
}
|
|
66105
66203
|
};
|
|
66106
66204
|
|
|
66107
66205
|
|
|
@@ -66159,6 +66257,265 @@ proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.setManu
|
|
|
66159
66257
|
};
|
|
66160
66258
|
|
|
66161
66259
|
|
|
66260
|
+
/**
|
|
66261
|
+
* optional google.protobuf.StringValue pnp_device_id = 4;
|
|
66262
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
66263
|
+
*/
|
|
66264
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.getPnpDeviceId = function() {
|
|
66265
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
66266
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 4));
|
|
66267
|
+
};
|
|
66268
|
+
|
|
66269
|
+
|
|
66270
|
+
/**
|
|
66271
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
66272
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66273
|
+
*/
|
|
66274
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.setPnpDeviceId = function(value) {
|
|
66275
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
66276
|
+
};
|
|
66277
|
+
|
|
66278
|
+
|
|
66279
|
+
/**
|
|
66280
|
+
* Clears the message field making it undefined.
|
|
66281
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66282
|
+
*/
|
|
66283
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.clearPnpDeviceId = function() {
|
|
66284
|
+
return this.setPnpDeviceId(undefined);
|
|
66285
|
+
};
|
|
66286
|
+
|
|
66287
|
+
|
|
66288
|
+
/**
|
|
66289
|
+
* Returns whether this field is set.
|
|
66290
|
+
* @return {boolean}
|
|
66291
|
+
*/
|
|
66292
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.hasPnpDeviceId = function() {
|
|
66293
|
+
return jspb.Message.getField(this, 4) != null;
|
|
66294
|
+
};
|
|
66295
|
+
|
|
66296
|
+
|
|
66297
|
+
/**
|
|
66298
|
+
* optional google.protobuf.StringValue pnp_class = 5;
|
|
66299
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
66300
|
+
*/
|
|
66301
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.getPnpClass = function() {
|
|
66302
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
66303
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 5));
|
|
66304
|
+
};
|
|
66305
|
+
|
|
66306
|
+
|
|
66307
|
+
/**
|
|
66308
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
66309
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66310
|
+
*/
|
|
66311
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.setPnpClass = function(value) {
|
|
66312
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
66313
|
+
};
|
|
66314
|
+
|
|
66315
|
+
|
|
66316
|
+
/**
|
|
66317
|
+
* Clears the message field making it undefined.
|
|
66318
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66319
|
+
*/
|
|
66320
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.clearPnpClass = function() {
|
|
66321
|
+
return this.setPnpClass(undefined);
|
|
66322
|
+
};
|
|
66323
|
+
|
|
66324
|
+
|
|
66325
|
+
/**
|
|
66326
|
+
* Returns whether this field is set.
|
|
66327
|
+
* @return {boolean}
|
|
66328
|
+
*/
|
|
66329
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.hasPnpClass = function() {
|
|
66330
|
+
return jspb.Message.getField(this, 5) != null;
|
|
66331
|
+
};
|
|
66332
|
+
|
|
66333
|
+
|
|
66334
|
+
/**
|
|
66335
|
+
* optional google.protobuf.StringValue status = 6;
|
|
66336
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
66337
|
+
*/
|
|
66338
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.getStatus = function() {
|
|
66339
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
66340
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 6));
|
|
66341
|
+
};
|
|
66342
|
+
|
|
66343
|
+
|
|
66344
|
+
/**
|
|
66345
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
66346
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66347
|
+
*/
|
|
66348
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.setStatus = function(value) {
|
|
66349
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
66350
|
+
};
|
|
66351
|
+
|
|
66352
|
+
|
|
66353
|
+
/**
|
|
66354
|
+
* Clears the message field making it undefined.
|
|
66355
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66356
|
+
*/
|
|
66357
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.clearStatus = function() {
|
|
66358
|
+
return this.setStatus(undefined);
|
|
66359
|
+
};
|
|
66360
|
+
|
|
66361
|
+
|
|
66362
|
+
/**
|
|
66363
|
+
* Returns whether this field is set.
|
|
66364
|
+
* @return {boolean}
|
|
66365
|
+
*/
|
|
66366
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.hasStatus = function() {
|
|
66367
|
+
return jspb.Message.getField(this, 6) != null;
|
|
66368
|
+
};
|
|
66369
|
+
|
|
66370
|
+
|
|
66371
|
+
/**
|
|
66372
|
+
* optional google.protobuf.StringValue service = 7;
|
|
66373
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
66374
|
+
*/
|
|
66375
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.getService = function() {
|
|
66376
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
66377
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 7));
|
|
66378
|
+
};
|
|
66379
|
+
|
|
66380
|
+
|
|
66381
|
+
/**
|
|
66382
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
66383
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66384
|
+
*/
|
|
66385
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.setService = function(value) {
|
|
66386
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
66387
|
+
};
|
|
66388
|
+
|
|
66389
|
+
|
|
66390
|
+
/**
|
|
66391
|
+
* Clears the message field making it undefined.
|
|
66392
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66393
|
+
*/
|
|
66394
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.clearService = function() {
|
|
66395
|
+
return this.setService(undefined);
|
|
66396
|
+
};
|
|
66397
|
+
|
|
66398
|
+
|
|
66399
|
+
/**
|
|
66400
|
+
* Returns whether this field is set.
|
|
66401
|
+
* @return {boolean}
|
|
66402
|
+
*/
|
|
66403
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.hasService = function() {
|
|
66404
|
+
return jspb.Message.getField(this, 7) != null;
|
|
66405
|
+
};
|
|
66406
|
+
|
|
66407
|
+
|
|
66408
|
+
/**
|
|
66409
|
+
* optional google.protobuf.StringValue caption = 8;
|
|
66410
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
66411
|
+
*/
|
|
66412
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.getCaption = function() {
|
|
66413
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
66414
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 8));
|
|
66415
|
+
};
|
|
66416
|
+
|
|
66417
|
+
|
|
66418
|
+
/**
|
|
66419
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
66420
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66421
|
+
*/
|
|
66422
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.setCaption = function(value) {
|
|
66423
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
66424
|
+
};
|
|
66425
|
+
|
|
66426
|
+
|
|
66427
|
+
/**
|
|
66428
|
+
* Clears the message field making it undefined.
|
|
66429
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66430
|
+
*/
|
|
66431
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.clearCaption = function() {
|
|
66432
|
+
return this.setCaption(undefined);
|
|
66433
|
+
};
|
|
66434
|
+
|
|
66435
|
+
|
|
66436
|
+
/**
|
|
66437
|
+
* Returns whether this field is set.
|
|
66438
|
+
* @return {boolean}
|
|
66439
|
+
*/
|
|
66440
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.hasCaption = function() {
|
|
66441
|
+
return jspb.Message.getField(this, 8) != null;
|
|
66442
|
+
};
|
|
66443
|
+
|
|
66444
|
+
|
|
66445
|
+
/**
|
|
66446
|
+
* optional google.protobuf.StringValue description = 9;
|
|
66447
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
66448
|
+
*/
|
|
66449
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.getDescription = function() {
|
|
66450
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
66451
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 9));
|
|
66452
|
+
};
|
|
66453
|
+
|
|
66454
|
+
|
|
66455
|
+
/**
|
|
66456
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
66457
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66458
|
+
*/
|
|
66459
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.setDescription = function(value) {
|
|
66460
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
66461
|
+
};
|
|
66462
|
+
|
|
66463
|
+
|
|
66464
|
+
/**
|
|
66465
|
+
* Clears the message field making it undefined.
|
|
66466
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66467
|
+
*/
|
|
66468
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.clearDescription = function() {
|
|
66469
|
+
return this.setDescription(undefined);
|
|
66470
|
+
};
|
|
66471
|
+
|
|
66472
|
+
|
|
66473
|
+
/**
|
|
66474
|
+
* Returns whether this field is set.
|
|
66475
|
+
* @return {boolean}
|
|
66476
|
+
*/
|
|
66477
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.hasDescription = function() {
|
|
66478
|
+
return jspb.Message.getField(this, 9) != null;
|
|
66479
|
+
};
|
|
66480
|
+
|
|
66481
|
+
|
|
66482
|
+
/**
|
|
66483
|
+
* optional google.protobuf.BoolValue present = 10;
|
|
66484
|
+
* @return {?proto.google.protobuf.BoolValue}
|
|
66485
|
+
*/
|
|
66486
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.getPresent = function() {
|
|
66487
|
+
return /** @type{?proto.google.protobuf.BoolValue} */ (
|
|
66488
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.BoolValue, 10));
|
|
66489
|
+
};
|
|
66490
|
+
|
|
66491
|
+
|
|
66492
|
+
/**
|
|
66493
|
+
* @param {?proto.google.protobuf.BoolValue|undefined} value
|
|
66494
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66495
|
+
*/
|
|
66496
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.setPresent = function(value) {
|
|
66497
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
66498
|
+
};
|
|
66499
|
+
|
|
66500
|
+
|
|
66501
|
+
/**
|
|
66502
|
+
* Clears the message field making it undefined.
|
|
66503
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo} returns this
|
|
66504
|
+
*/
|
|
66505
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.clearPresent = function() {
|
|
66506
|
+
return this.setPresent(undefined);
|
|
66507
|
+
};
|
|
66508
|
+
|
|
66509
|
+
|
|
66510
|
+
/**
|
|
66511
|
+
* Returns whether this field is set.
|
|
66512
|
+
* @return {boolean}
|
|
66513
|
+
*/
|
|
66514
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.UsbDeviceInfo.prototype.hasPresent = function() {
|
|
66515
|
+
return jspb.Message.getField(this, 10) != null;
|
|
66516
|
+
};
|
|
66517
|
+
|
|
66518
|
+
|
|
66162
66519
|
|
|
66163
66520
|
/**
|
|
66164
66521
|
* List of repeated fields within this message type.
|