@lansweeper/discovery-sensor-proto 2.66.5 → 2.68.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.
- package/gen-proto/discovery_sections_mac_pb.d.ts +12 -0
- package/gen-proto/discovery_sections_mac_pb.js +103 -1
- package/gen-proto/discovery_sections_windows_pb.d.ts +12 -0
- package/gen-proto/discovery_sections_windows_pb.js +104 -2
- package/gen-proto/image.json +1 -1
- package/package.json +2 -2
- package/proto/discovery_sections_mac.proto +2 -0
- package/proto/discovery_sections_windows.proto +4 -2
|
@@ -1186,6 +1186,16 @@ export class MacOsInfo extends jspb.Message {
|
|
|
1186
1186
|
getDomain(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
1187
1187
|
setDomain(value?: google_protobuf_wrappers_pb.StringValue): MacOsInfo;
|
|
1188
1188
|
|
|
1189
|
+
hasDnsName(): boolean;
|
|
1190
|
+
clearDnsName(): void;
|
|
1191
|
+
getDnsName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
1192
|
+
setDnsName(value?: google_protobuf_wrappers_pb.StringValue): MacOsInfo;
|
|
1193
|
+
|
|
1194
|
+
hasFqdn(): boolean;
|
|
1195
|
+
clearFqdn(): void;
|
|
1196
|
+
getFqdn(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
1197
|
+
setFqdn(value?: google_protobuf_wrappers_pb.StringValue): MacOsInfo;
|
|
1198
|
+
|
|
1189
1199
|
serializeBinary(): Uint8Array;
|
|
1190
1200
|
toObject(includeInstance?: boolean): MacOsInfo.AsObject;
|
|
1191
1201
|
static toObject(includeInstance: boolean, msg: MacOsInfo): MacOsInfo.AsObject;
|
|
@@ -1209,6 +1219,8 @@ export namespace MacOsInfo {
|
|
|
1209
1219
|
sixtyFourBitKernelAndExts?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1210
1220
|
systemIntegrity?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1211
1221
|
domain?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1222
|
+
dnsName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1223
|
+
fqdn?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
1212
1224
|
}
|
|
1213
1225
|
}
|
|
1214
1226
|
|
|
@@ -11137,7 +11137,9 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.toObject = function(inclu
|
|
|
11137
11137
|
secureVirtualMemory: (f = msg.getSecureVirtualMemory()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
11138
11138
|
sixtyFourBitKernelAndExts: (f = msg.getSixtyFourBitKernelAndExts()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
11139
11139
|
systemIntegrity: (f = msg.getSystemIntegrity()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
11140
|
-
domain: (f = msg.getDomain()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
11140
|
+
domain: (f = msg.getDomain()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
11141
|
+
dnsName: (f = msg.getDnsName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
11142
|
+
fqdn: (f = msg.getFqdn()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
11141
11143
|
};
|
|
11142
11144
|
|
|
11143
11145
|
if (includeInstance) {
|
|
@@ -11229,6 +11231,16 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.deserializeBinaryFromRead
|
|
|
11229
11231
|
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
11230
11232
|
msg.setDomain(value);
|
|
11231
11233
|
break;
|
|
11234
|
+
case 12:
|
|
11235
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
11236
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
11237
|
+
msg.setDnsName(value);
|
|
11238
|
+
break;
|
|
11239
|
+
case 13:
|
|
11240
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
11241
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
11242
|
+
msg.setFqdn(value);
|
|
11243
|
+
break;
|
|
11232
11244
|
default:
|
|
11233
11245
|
reader.skipField();
|
|
11234
11246
|
break;
|
|
@@ -11346,6 +11358,22 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.serializeBinaryToWriter =
|
|
|
11346
11358
|
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
11347
11359
|
);
|
|
11348
11360
|
}
|
|
11361
|
+
f = message.getDnsName();
|
|
11362
|
+
if (f != null) {
|
|
11363
|
+
writer.writeMessage(
|
|
11364
|
+
12,
|
|
11365
|
+
f,
|
|
11366
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
11367
|
+
);
|
|
11368
|
+
}
|
|
11369
|
+
f = message.getFqdn();
|
|
11370
|
+
if (f != null) {
|
|
11371
|
+
writer.writeMessage(
|
|
11372
|
+
13,
|
|
11373
|
+
f,
|
|
11374
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
11375
|
+
);
|
|
11376
|
+
}
|
|
11349
11377
|
};
|
|
11350
11378
|
|
|
11351
11379
|
|
|
@@ -11756,6 +11784,80 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.hasDomain = fun
|
|
|
11756
11784
|
};
|
|
11757
11785
|
|
|
11758
11786
|
|
|
11787
|
+
/**
|
|
11788
|
+
* optional google.protobuf.StringValue dns_name = 12;
|
|
11789
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
11790
|
+
*/
|
|
11791
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.getDnsName = function() {
|
|
11792
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
11793
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 12));
|
|
11794
|
+
};
|
|
11795
|
+
|
|
11796
|
+
|
|
11797
|
+
/**
|
|
11798
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
11799
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo} returns this
|
|
11800
|
+
*/
|
|
11801
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.setDnsName = function(value) {
|
|
11802
|
+
return jspb.Message.setWrapperField(this, 12, value);
|
|
11803
|
+
};
|
|
11804
|
+
|
|
11805
|
+
|
|
11806
|
+
/**
|
|
11807
|
+
* Clears the message field making it undefined.
|
|
11808
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo} returns this
|
|
11809
|
+
*/
|
|
11810
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.clearDnsName = function() {
|
|
11811
|
+
return this.setDnsName(undefined);
|
|
11812
|
+
};
|
|
11813
|
+
|
|
11814
|
+
|
|
11815
|
+
/**
|
|
11816
|
+
* Returns whether this field is set.
|
|
11817
|
+
* @return {boolean}
|
|
11818
|
+
*/
|
|
11819
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.hasDnsName = function() {
|
|
11820
|
+
return jspb.Message.getField(this, 12) != null;
|
|
11821
|
+
};
|
|
11822
|
+
|
|
11823
|
+
|
|
11824
|
+
/**
|
|
11825
|
+
* optional google.protobuf.StringValue fqdn = 13;
|
|
11826
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
11827
|
+
*/
|
|
11828
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.getFqdn = function() {
|
|
11829
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
11830
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 13));
|
|
11831
|
+
};
|
|
11832
|
+
|
|
11833
|
+
|
|
11834
|
+
/**
|
|
11835
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
11836
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo} returns this
|
|
11837
|
+
*/
|
|
11838
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.setFqdn = function(value) {
|
|
11839
|
+
return jspb.Message.setWrapperField(this, 13, value);
|
|
11840
|
+
};
|
|
11841
|
+
|
|
11842
|
+
|
|
11843
|
+
/**
|
|
11844
|
+
* Clears the message field making it undefined.
|
|
11845
|
+
* @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo} returns this
|
|
11846
|
+
*/
|
|
11847
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.clearFqdn = function() {
|
|
11848
|
+
return this.setFqdn(undefined);
|
|
11849
|
+
};
|
|
11850
|
+
|
|
11851
|
+
|
|
11852
|
+
/**
|
|
11853
|
+
* Returns whether this field is set.
|
|
11854
|
+
* @return {boolean}
|
|
11855
|
+
*/
|
|
11856
|
+
proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.hasFqdn = function() {
|
|
11857
|
+
return jspb.Message.getField(this, 13) != null;
|
|
11858
|
+
};
|
|
11859
|
+
|
|
11860
|
+
|
|
11759
11861
|
|
|
11760
11862
|
|
|
11761
11863
|
|
|
@@ -5127,6 +5127,11 @@ export class HyperVMemory extends jspb.Message {
|
|
|
5127
5127
|
getInstanceId(): string;
|
|
5128
5128
|
setInstanceId(value: string): HyperVMemory;
|
|
5129
5129
|
|
|
5130
|
+
hasVirtualQuantity(): boolean;
|
|
5131
|
+
clearVirtualQuantity(): void;
|
|
5132
|
+
getVirtualQuantity(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
5133
|
+
setVirtualQuantity(value?: google_protobuf_wrappers_pb.UInt64Value): HyperVMemory;
|
|
5134
|
+
|
|
5130
5135
|
serializeBinary(): Uint8Array;
|
|
5131
5136
|
toObject(includeInstance?: boolean): HyperVMemory.AsObject;
|
|
5132
5137
|
static toObject(includeInstance: boolean, msg: HyperVMemory): HyperVMemory.AsObject;
|
|
@@ -5141,6 +5146,7 @@ export namespace HyperVMemory {
|
|
|
5141
5146
|
export type AsObject = {
|
|
5142
5147
|
address: string,
|
|
5143
5148
|
instanceId: string,
|
|
5149
|
+
virtualQuantity?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
5144
5150
|
}
|
|
5145
5151
|
}
|
|
5146
5152
|
|
|
@@ -5178,6 +5184,11 @@ export class HyperVEthernet extends jspb.Message {
|
|
|
5178
5184
|
getInstanceId(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5179
5185
|
setInstanceId(value?: google_protobuf_wrappers_pb.StringValue): HyperVEthernet;
|
|
5180
5186
|
|
|
5187
|
+
hasAddress(): boolean;
|
|
5188
|
+
clearAddress(): void;
|
|
5189
|
+
getAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5190
|
+
setAddress(value?: google_protobuf_wrappers_pb.StringValue): HyperVEthernet;
|
|
5191
|
+
|
|
5181
5192
|
serializeBinary(): Uint8Array;
|
|
5182
5193
|
toObject(includeInstance?: boolean): HyperVEthernet.AsObject;
|
|
5183
5194
|
static toObject(includeInstance: boolean, msg: HyperVEthernet): HyperVEthernet.AsObject;
|
|
@@ -5192,6 +5203,7 @@ export namespace HyperVEthernet {
|
|
|
5192
5203
|
export type AsObject = {
|
|
5193
5204
|
virtualQuantity?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
5194
5205
|
instanceId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5206
|
+
address?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5195
5207
|
}
|
|
5196
5208
|
}
|
|
5197
5209
|
|
|
@@ -44431,7 +44431,8 @@ proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory.prototype.toObject
|
|
|
44431
44431
|
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory.toObject = function(includeInstance, msg) {
|
|
44432
44432
|
var f, obj = {
|
|
44433
44433
|
address: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
44434
|
-
instanceId: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
44434
|
+
instanceId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
44435
|
+
virtualQuantity: (f = msg.getVirtualQuantity()) && google_protobuf_wrappers_pb.UInt64Value.toObject(includeInstance, f)
|
|
44435
44436
|
};
|
|
44436
44437
|
|
|
44437
44438
|
if (includeInstance) {
|
|
@@ -44476,6 +44477,11 @@ proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory.deserializeBinaryF
|
|
|
44476
44477
|
var value = /** @type {string} */ (reader.readString());
|
|
44477
44478
|
msg.setInstanceId(value);
|
|
44478
44479
|
break;
|
|
44480
|
+
case 3:
|
|
44481
|
+
var value = new google_protobuf_wrappers_pb.UInt64Value;
|
|
44482
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.UInt64Value.deserializeBinaryFromReader);
|
|
44483
|
+
msg.setVirtualQuantity(value);
|
|
44484
|
+
break;
|
|
44479
44485
|
default:
|
|
44480
44486
|
reader.skipField();
|
|
44481
44487
|
break;
|
|
@@ -44519,6 +44525,14 @@ proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory.serializeBinaryToW
|
|
|
44519
44525
|
f
|
|
44520
44526
|
);
|
|
44521
44527
|
}
|
|
44528
|
+
f = message.getVirtualQuantity();
|
|
44529
|
+
if (f != null) {
|
|
44530
|
+
writer.writeMessage(
|
|
44531
|
+
3,
|
|
44532
|
+
f,
|
|
44533
|
+
google_protobuf_wrappers_pb.UInt64Value.serializeBinaryToWriter
|
|
44534
|
+
);
|
|
44535
|
+
}
|
|
44522
44536
|
};
|
|
44523
44537
|
|
|
44524
44538
|
|
|
@@ -44558,6 +44572,43 @@ proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory.prototype.setInsta
|
|
|
44558
44572
|
};
|
|
44559
44573
|
|
|
44560
44574
|
|
|
44575
|
+
/**
|
|
44576
|
+
* optional google.protobuf.UInt64Value virtual_quantity = 3;
|
|
44577
|
+
* @return {?proto.google.protobuf.UInt64Value}
|
|
44578
|
+
*/
|
|
44579
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory.prototype.getVirtualQuantity = function() {
|
|
44580
|
+
return /** @type{?proto.google.protobuf.UInt64Value} */ (
|
|
44581
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.UInt64Value, 3));
|
|
44582
|
+
};
|
|
44583
|
+
|
|
44584
|
+
|
|
44585
|
+
/**
|
|
44586
|
+
* @param {?proto.google.protobuf.UInt64Value|undefined} value
|
|
44587
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory} returns this
|
|
44588
|
+
*/
|
|
44589
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory.prototype.setVirtualQuantity = function(value) {
|
|
44590
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
44591
|
+
};
|
|
44592
|
+
|
|
44593
|
+
|
|
44594
|
+
/**
|
|
44595
|
+
* Clears the message field making it undefined.
|
|
44596
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory} returns this
|
|
44597
|
+
*/
|
|
44598
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory.prototype.clearVirtualQuantity = function() {
|
|
44599
|
+
return this.setVirtualQuantity(undefined);
|
|
44600
|
+
};
|
|
44601
|
+
|
|
44602
|
+
|
|
44603
|
+
/**
|
|
44604
|
+
* Returns whether this field is set.
|
|
44605
|
+
* @return {boolean}
|
|
44606
|
+
*/
|
|
44607
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVMemory.prototype.hasVirtualQuantity = function() {
|
|
44608
|
+
return jspb.Message.getField(this, 3) != null;
|
|
44609
|
+
};
|
|
44610
|
+
|
|
44611
|
+
|
|
44561
44612
|
|
|
44562
44613
|
/**
|
|
44563
44614
|
* List of repeated fields within this message type.
|
|
@@ -44751,7 +44802,8 @@ proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet.prototype.toObje
|
|
|
44751
44802
|
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet.toObject = function(includeInstance, msg) {
|
|
44752
44803
|
var f, obj = {
|
|
44753
44804
|
virtualQuantity: (f = msg.getVirtualQuantity()) && google_protobuf_wrappers_pb.UInt64Value.toObject(includeInstance, f),
|
|
44754
|
-
instanceId: (f = msg.getInstanceId()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
44805
|
+
instanceId: (f = msg.getInstanceId()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
44806
|
+
address: (f = msg.getAddress()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
44755
44807
|
};
|
|
44756
44808
|
|
|
44757
44809
|
if (includeInstance) {
|
|
@@ -44798,6 +44850,11 @@ proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet.deserializeBinar
|
|
|
44798
44850
|
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
44799
44851
|
msg.setInstanceId(value);
|
|
44800
44852
|
break;
|
|
44853
|
+
case 3:
|
|
44854
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
44855
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
44856
|
+
msg.setAddress(value);
|
|
44857
|
+
break;
|
|
44801
44858
|
default:
|
|
44802
44859
|
reader.skipField();
|
|
44803
44860
|
break;
|
|
@@ -44843,6 +44900,14 @@ proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet.serializeBinaryT
|
|
|
44843
44900
|
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
44844
44901
|
);
|
|
44845
44902
|
}
|
|
44903
|
+
f = message.getAddress();
|
|
44904
|
+
if (f != null) {
|
|
44905
|
+
writer.writeMessage(
|
|
44906
|
+
3,
|
|
44907
|
+
f,
|
|
44908
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
44909
|
+
);
|
|
44910
|
+
}
|
|
44846
44911
|
};
|
|
44847
44912
|
|
|
44848
44913
|
|
|
@@ -44920,6 +44985,43 @@ proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet.prototype.hasIns
|
|
|
44920
44985
|
};
|
|
44921
44986
|
|
|
44922
44987
|
|
|
44988
|
+
/**
|
|
44989
|
+
* optional google.protobuf.StringValue address = 3;
|
|
44990
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
44991
|
+
*/
|
|
44992
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet.prototype.getAddress = function() {
|
|
44993
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
44994
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 3));
|
|
44995
|
+
};
|
|
44996
|
+
|
|
44997
|
+
|
|
44998
|
+
/**
|
|
44999
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
45000
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet} returns this
|
|
45001
|
+
*/
|
|
45002
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet.prototype.setAddress = function(value) {
|
|
45003
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
45004
|
+
};
|
|
45005
|
+
|
|
45006
|
+
|
|
45007
|
+
/**
|
|
45008
|
+
* Clears the message field making it undefined.
|
|
45009
|
+
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet} returns this
|
|
45010
|
+
*/
|
|
45011
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet.prototype.clearAddress = function() {
|
|
45012
|
+
return this.setAddress(undefined);
|
|
45013
|
+
};
|
|
45014
|
+
|
|
45015
|
+
|
|
45016
|
+
/**
|
|
45017
|
+
* Returns whether this field is set.
|
|
45018
|
+
* @return {boolean}
|
|
45019
|
+
*/
|
|
45020
|
+
proto.com.lansweeper.discovery.sensor.windows.v1.HyperVEthernet.prototype.hasAddress = function() {
|
|
45021
|
+
return jspb.Message.getField(this, 3) != null;
|
|
45022
|
+
};
|
|
45023
|
+
|
|
45024
|
+
|
|
44923
45025
|
|
|
44924
45026
|
/**
|
|
44925
45027
|
* List of repeated fields within this message type.
|