@lansweeper/data-platform-outbound-grpc 0.4.0 → 0.4.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.
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +48 -0
- package/gen-proto/outbound_pb.js +386 -2
- package/generated-go/outbound.pb.go +8122 -8033
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +11 -2
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfo$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfo$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfo.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfoOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +11 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterface.java +984 -6
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.java +116 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2620 -2613
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SpecHardwareInfo.java +386 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SpecHardwareInfoOrBuilder.java +58 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.38-sources.jar → outbound-model-0.4.0-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.38.jar → outbound-model-0.4.0.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +11 -2
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.38-sources.jar → outbound-service-0.4.0-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.38.jar → outbound-service-0.4.0.jar} +0 -0
|
@@ -4069,6 +4069,16 @@ export class SpecHardwareInfo extends jspb.Message {
|
|
|
4069
4069
|
getModelNumber(): string | undefined;
|
|
4070
4070
|
setModelNumber(value: string): SpecHardwareInfo;
|
|
4071
4071
|
|
|
4072
|
+
hasWakeupTime(): boolean;
|
|
4073
|
+
clearWakeupTime(): void;
|
|
4074
|
+
getWakeupTime(): string | undefined;
|
|
4075
|
+
setWakeupTime(value: string): SpecHardwareInfo;
|
|
4076
|
+
|
|
4077
|
+
hasMachineHardwareName(): boolean;
|
|
4078
|
+
clearMachineHardwareName(): void;
|
|
4079
|
+
getMachineHardwareName(): string | undefined;
|
|
4080
|
+
setMachineHardwareName(value: string): SpecHardwareInfo;
|
|
4081
|
+
|
|
4072
4082
|
serializeBinary(): Uint8Array;
|
|
4073
4083
|
toObject(includeInstance?: boolean): SpecHardwareInfo.AsObject;
|
|
4074
4084
|
static toObject(includeInstance: boolean, msg: SpecHardwareInfo): SpecHardwareInfo.AsObject;
|
|
@@ -4091,6 +4101,8 @@ export namespace SpecHardwareInfo {
|
|
|
4091
4101
|
bootRomVersion?: string,
|
|
4092
4102
|
smcVersionSystem?: string,
|
|
4093
4103
|
modelNumber?: string,
|
|
4104
|
+
wakeupTime?: string,
|
|
4105
|
+
machineHardwareName?: string,
|
|
4094
4106
|
}
|
|
4095
4107
|
}
|
|
4096
4108
|
|
|
@@ -5029,6 +5041,36 @@ export class NetworkInterface extends jspb.Message {
|
|
|
5029
5041
|
getIpv6DhcpEnabled(): boolean | undefined;
|
|
5030
5042
|
setIpv6DhcpEnabled(value: boolean): NetworkInterface;
|
|
5031
5043
|
|
|
5044
|
+
hasState(): boolean;
|
|
5045
|
+
clearState(): void;
|
|
5046
|
+
getState(): string | undefined;
|
|
5047
|
+
setState(value: string): NetworkInterface;
|
|
5048
|
+
|
|
5049
|
+
hasLinkEncap(): boolean;
|
|
5050
|
+
clearLinkEncap(): void;
|
|
5051
|
+
getLinkEncap(): string | undefined;
|
|
5052
|
+
setLinkEncap(value: string): NetworkInterface;
|
|
5053
|
+
|
|
5054
|
+
hasBroadcast(): boolean;
|
|
5055
|
+
clearBroadcast(): void;
|
|
5056
|
+
getBroadcast(): string | undefined;
|
|
5057
|
+
setBroadcast(value: string): NetworkInterface;
|
|
5058
|
+
|
|
5059
|
+
hasScope(): boolean;
|
|
5060
|
+
clearScope(): void;
|
|
5061
|
+
getScope(): string | undefined;
|
|
5062
|
+
setScope(value: string): NetworkInterface;
|
|
5063
|
+
|
|
5064
|
+
hasQDisc(): boolean;
|
|
5065
|
+
clearQDisc(): void;
|
|
5066
|
+
getQDisc(): string | undefined;
|
|
5067
|
+
setQDisc(value: string): NetworkInterface;
|
|
5068
|
+
|
|
5069
|
+
hasGroup(): boolean;
|
|
5070
|
+
clearGroup(): void;
|
|
5071
|
+
getGroup(): string | undefined;
|
|
5072
|
+
setGroup(value: string): NetworkInterface;
|
|
5073
|
+
|
|
5032
5074
|
serializeBinary(): Uint8Array;
|
|
5033
5075
|
toObject(includeInstance?: boolean): NetworkInterface.AsObject;
|
|
5034
5076
|
static toObject(includeInstance: boolean, msg: NetworkInterface): NetworkInterface.AsObject;
|
|
@@ -5074,6 +5116,12 @@ export namespace NetworkInterface {
|
|
|
5074
5116
|
domainName?: string,
|
|
5075
5117
|
ipv4DhcpEnabled?: boolean,
|
|
5076
5118
|
ipv6DhcpEnabled?: boolean,
|
|
5119
|
+
state?: string,
|
|
5120
|
+
linkEncap?: string,
|
|
5121
|
+
broadcast?: string,
|
|
5122
|
+
scope?: string,
|
|
5123
|
+
qDisc?: string,
|
|
5124
|
+
group?: string,
|
|
5077
5125
|
}
|
|
5078
5126
|
}
|
|
5079
5127
|
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -37819,7 +37819,9 @@ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.toObject = function(include
|
|
|
37819
37819
|
busSpeed: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
37820
37820
|
bootRomVersion: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
37821
37821
|
smcVersionSystem: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
37822
|
-
modelNumber: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
37822
|
+
modelNumber: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
37823
|
+
wakeupTime: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
37824
|
+
machineHardwareName: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
37823
37825
|
};
|
|
37824
37826
|
|
|
37825
37827
|
if (includeInstance) {
|
|
@@ -37896,6 +37898,14 @@ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.deserializeBinaryFromReader
|
|
|
37896
37898
|
var value = /** @type {string} */ (reader.readString());
|
|
37897
37899
|
msg.setModelNumber(value);
|
|
37898
37900
|
break;
|
|
37901
|
+
case 11:
|
|
37902
|
+
var value = /** @type {string} */ (reader.readString());
|
|
37903
|
+
msg.setWakeupTime(value);
|
|
37904
|
+
break;
|
|
37905
|
+
case 12:
|
|
37906
|
+
var value = /** @type {string} */ (reader.readString());
|
|
37907
|
+
msg.setMachineHardwareName(value);
|
|
37908
|
+
break;
|
|
37899
37909
|
default:
|
|
37900
37910
|
reader.skipField();
|
|
37901
37911
|
break;
|
|
@@ -37995,6 +38005,20 @@ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.serializeBinaryToWriter = f
|
|
|
37995
38005
|
f
|
|
37996
38006
|
);
|
|
37997
38007
|
}
|
|
38008
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
|
38009
|
+
if (f != null) {
|
|
38010
|
+
writer.writeString(
|
|
38011
|
+
11,
|
|
38012
|
+
f
|
|
38013
|
+
);
|
|
38014
|
+
}
|
|
38015
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 12));
|
|
38016
|
+
if (f != null) {
|
|
38017
|
+
writer.writeString(
|
|
38018
|
+
12,
|
|
38019
|
+
f
|
|
38020
|
+
);
|
|
38021
|
+
}
|
|
37998
38022
|
};
|
|
37999
38023
|
|
|
38000
38024
|
|
|
@@ -38358,6 +38382,78 @@ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.hasModelNumber =
|
|
|
38358
38382
|
};
|
|
38359
38383
|
|
|
38360
38384
|
|
|
38385
|
+
/**
|
|
38386
|
+
* optional string wakeup_time = 11;
|
|
38387
|
+
* @return {string}
|
|
38388
|
+
*/
|
|
38389
|
+
proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.getWakeupTime = function() {
|
|
38390
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
38391
|
+
};
|
|
38392
|
+
|
|
38393
|
+
|
|
38394
|
+
/**
|
|
38395
|
+
* @param {string} value
|
|
38396
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo} returns this
|
|
38397
|
+
*/
|
|
38398
|
+
proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.setWakeupTime = function(value) {
|
|
38399
|
+
return jspb.Message.setField(this, 11, value);
|
|
38400
|
+
};
|
|
38401
|
+
|
|
38402
|
+
|
|
38403
|
+
/**
|
|
38404
|
+
* Clears the field making it undefined.
|
|
38405
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo} returns this
|
|
38406
|
+
*/
|
|
38407
|
+
proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.clearWakeupTime = function() {
|
|
38408
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
38409
|
+
};
|
|
38410
|
+
|
|
38411
|
+
|
|
38412
|
+
/**
|
|
38413
|
+
* Returns whether this field is set.
|
|
38414
|
+
* @return {boolean}
|
|
38415
|
+
*/
|
|
38416
|
+
proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.hasWakeupTime = function() {
|
|
38417
|
+
return jspb.Message.getField(this, 11) != null;
|
|
38418
|
+
};
|
|
38419
|
+
|
|
38420
|
+
|
|
38421
|
+
/**
|
|
38422
|
+
* optional string machine_hardware_name = 12;
|
|
38423
|
+
* @return {string}
|
|
38424
|
+
*/
|
|
38425
|
+
proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.getMachineHardwareName = function() {
|
|
38426
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
38427
|
+
};
|
|
38428
|
+
|
|
38429
|
+
|
|
38430
|
+
/**
|
|
38431
|
+
* @param {string} value
|
|
38432
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo} returns this
|
|
38433
|
+
*/
|
|
38434
|
+
proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.setMachineHardwareName = function(value) {
|
|
38435
|
+
return jspb.Message.setField(this, 12, value);
|
|
38436
|
+
};
|
|
38437
|
+
|
|
38438
|
+
|
|
38439
|
+
/**
|
|
38440
|
+
* Clears the field making it undefined.
|
|
38441
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo} returns this
|
|
38442
|
+
*/
|
|
38443
|
+
proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.clearMachineHardwareName = function() {
|
|
38444
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
38445
|
+
};
|
|
38446
|
+
|
|
38447
|
+
|
|
38448
|
+
/**
|
|
38449
|
+
* Returns whether this field is set.
|
|
38450
|
+
* @return {boolean}
|
|
38451
|
+
*/
|
|
38452
|
+
proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.hasMachineHardwareName = function() {
|
|
38453
|
+
return jspb.Message.getField(this, 12) != null;
|
|
38454
|
+
};
|
|
38455
|
+
|
|
38456
|
+
|
|
38361
38457
|
|
|
38362
38458
|
/**
|
|
38363
38459
|
* Oneof group definitions for this message. Each group defines the field
|
|
@@ -44340,7 +44436,13 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.toObject = function(include
|
|
|
44340
44436
|
networkSignature: jspb.Message.getFieldWithDefault(msg, 26, ""),
|
|
44341
44437
|
domainName: jspb.Message.getFieldWithDefault(msg, 33, ""),
|
|
44342
44438
|
ipv4DhcpEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 34, false),
|
|
44343
|
-
ipv6DhcpEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 35, false)
|
|
44439
|
+
ipv6DhcpEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 35, false),
|
|
44440
|
+
state: jspb.Message.getFieldWithDefault(msg, 36, ""),
|
|
44441
|
+
linkEncap: jspb.Message.getFieldWithDefault(msg, 37, ""),
|
|
44442
|
+
broadcast: jspb.Message.getFieldWithDefault(msg, 38, ""),
|
|
44443
|
+
scope: jspb.Message.getFieldWithDefault(msg, 39, ""),
|
|
44444
|
+
qDisc: jspb.Message.getFieldWithDefault(msg, 40, ""),
|
|
44445
|
+
group: jspb.Message.getFieldWithDefault(msg, 41, "")
|
|
44344
44446
|
};
|
|
44345
44447
|
|
|
44346
44448
|
if (includeInstance) {
|
|
@@ -44512,6 +44614,30 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.deserializeBinaryFromReader
|
|
|
44512
44614
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
44513
44615
|
msg.setIpv6DhcpEnabled(value);
|
|
44514
44616
|
break;
|
|
44617
|
+
case 36:
|
|
44618
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44619
|
+
msg.setState(value);
|
|
44620
|
+
break;
|
|
44621
|
+
case 37:
|
|
44622
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44623
|
+
msg.setLinkEncap(value);
|
|
44624
|
+
break;
|
|
44625
|
+
case 38:
|
|
44626
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44627
|
+
msg.setBroadcast(value);
|
|
44628
|
+
break;
|
|
44629
|
+
case 39:
|
|
44630
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44631
|
+
msg.setScope(value);
|
|
44632
|
+
break;
|
|
44633
|
+
case 40:
|
|
44634
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44635
|
+
msg.setQDisc(value);
|
|
44636
|
+
break;
|
|
44637
|
+
case 41:
|
|
44638
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44639
|
+
msg.setGroup(value);
|
|
44640
|
+
break;
|
|
44515
44641
|
default:
|
|
44516
44642
|
reader.skipField();
|
|
44517
44643
|
break;
|
|
@@ -44775,6 +44901,48 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.serializeBinaryToWriter = f
|
|
|
44775
44901
|
f
|
|
44776
44902
|
);
|
|
44777
44903
|
}
|
|
44904
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 36));
|
|
44905
|
+
if (f != null) {
|
|
44906
|
+
writer.writeString(
|
|
44907
|
+
36,
|
|
44908
|
+
f
|
|
44909
|
+
);
|
|
44910
|
+
}
|
|
44911
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 37));
|
|
44912
|
+
if (f != null) {
|
|
44913
|
+
writer.writeString(
|
|
44914
|
+
37,
|
|
44915
|
+
f
|
|
44916
|
+
);
|
|
44917
|
+
}
|
|
44918
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 38));
|
|
44919
|
+
if (f != null) {
|
|
44920
|
+
writer.writeString(
|
|
44921
|
+
38,
|
|
44922
|
+
f
|
|
44923
|
+
);
|
|
44924
|
+
}
|
|
44925
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 39));
|
|
44926
|
+
if (f != null) {
|
|
44927
|
+
writer.writeString(
|
|
44928
|
+
39,
|
|
44929
|
+
f
|
|
44930
|
+
);
|
|
44931
|
+
}
|
|
44932
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 40));
|
|
44933
|
+
if (f != null) {
|
|
44934
|
+
writer.writeString(
|
|
44935
|
+
40,
|
|
44936
|
+
f
|
|
44937
|
+
);
|
|
44938
|
+
}
|
|
44939
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 41));
|
|
44940
|
+
if (f != null) {
|
|
44941
|
+
writer.writeString(
|
|
44942
|
+
41,
|
|
44943
|
+
f
|
|
44944
|
+
);
|
|
44945
|
+
}
|
|
44778
44946
|
};
|
|
44779
44947
|
|
|
44780
44948
|
|
|
@@ -45919,6 +46087,222 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasIpv6DhcpEnable
|
|
|
45919
46087
|
};
|
|
45920
46088
|
|
|
45921
46089
|
|
|
46090
|
+
/**
|
|
46091
|
+
* optional string state = 36;
|
|
46092
|
+
* @return {string}
|
|
46093
|
+
*/
|
|
46094
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getState = function() {
|
|
46095
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 36, ""));
|
|
46096
|
+
};
|
|
46097
|
+
|
|
46098
|
+
|
|
46099
|
+
/**
|
|
46100
|
+
* @param {string} value
|
|
46101
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46102
|
+
*/
|
|
46103
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setState = function(value) {
|
|
46104
|
+
return jspb.Message.setField(this, 36, value);
|
|
46105
|
+
};
|
|
46106
|
+
|
|
46107
|
+
|
|
46108
|
+
/**
|
|
46109
|
+
* Clears the field making it undefined.
|
|
46110
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46111
|
+
*/
|
|
46112
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearState = function() {
|
|
46113
|
+
return jspb.Message.setField(this, 36, undefined);
|
|
46114
|
+
};
|
|
46115
|
+
|
|
46116
|
+
|
|
46117
|
+
/**
|
|
46118
|
+
* Returns whether this field is set.
|
|
46119
|
+
* @return {boolean}
|
|
46120
|
+
*/
|
|
46121
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasState = function() {
|
|
46122
|
+
return jspb.Message.getField(this, 36) != null;
|
|
46123
|
+
};
|
|
46124
|
+
|
|
46125
|
+
|
|
46126
|
+
/**
|
|
46127
|
+
* optional string link_encap = 37;
|
|
46128
|
+
* @return {string}
|
|
46129
|
+
*/
|
|
46130
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getLinkEncap = function() {
|
|
46131
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 37, ""));
|
|
46132
|
+
};
|
|
46133
|
+
|
|
46134
|
+
|
|
46135
|
+
/**
|
|
46136
|
+
* @param {string} value
|
|
46137
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46138
|
+
*/
|
|
46139
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setLinkEncap = function(value) {
|
|
46140
|
+
return jspb.Message.setField(this, 37, value);
|
|
46141
|
+
};
|
|
46142
|
+
|
|
46143
|
+
|
|
46144
|
+
/**
|
|
46145
|
+
* Clears the field making it undefined.
|
|
46146
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46147
|
+
*/
|
|
46148
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearLinkEncap = function() {
|
|
46149
|
+
return jspb.Message.setField(this, 37, undefined);
|
|
46150
|
+
};
|
|
46151
|
+
|
|
46152
|
+
|
|
46153
|
+
/**
|
|
46154
|
+
* Returns whether this field is set.
|
|
46155
|
+
* @return {boolean}
|
|
46156
|
+
*/
|
|
46157
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasLinkEncap = function() {
|
|
46158
|
+
return jspb.Message.getField(this, 37) != null;
|
|
46159
|
+
};
|
|
46160
|
+
|
|
46161
|
+
|
|
46162
|
+
/**
|
|
46163
|
+
* optional string broadcast = 38;
|
|
46164
|
+
* @return {string}
|
|
46165
|
+
*/
|
|
46166
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getBroadcast = function() {
|
|
46167
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 38, ""));
|
|
46168
|
+
};
|
|
46169
|
+
|
|
46170
|
+
|
|
46171
|
+
/**
|
|
46172
|
+
* @param {string} value
|
|
46173
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46174
|
+
*/
|
|
46175
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setBroadcast = function(value) {
|
|
46176
|
+
return jspb.Message.setField(this, 38, value);
|
|
46177
|
+
};
|
|
46178
|
+
|
|
46179
|
+
|
|
46180
|
+
/**
|
|
46181
|
+
* Clears the field making it undefined.
|
|
46182
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46183
|
+
*/
|
|
46184
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearBroadcast = function() {
|
|
46185
|
+
return jspb.Message.setField(this, 38, undefined);
|
|
46186
|
+
};
|
|
46187
|
+
|
|
46188
|
+
|
|
46189
|
+
/**
|
|
46190
|
+
* Returns whether this field is set.
|
|
46191
|
+
* @return {boolean}
|
|
46192
|
+
*/
|
|
46193
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasBroadcast = function() {
|
|
46194
|
+
return jspb.Message.getField(this, 38) != null;
|
|
46195
|
+
};
|
|
46196
|
+
|
|
46197
|
+
|
|
46198
|
+
/**
|
|
46199
|
+
* optional string scope = 39;
|
|
46200
|
+
* @return {string}
|
|
46201
|
+
*/
|
|
46202
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getScope = function() {
|
|
46203
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 39, ""));
|
|
46204
|
+
};
|
|
46205
|
+
|
|
46206
|
+
|
|
46207
|
+
/**
|
|
46208
|
+
* @param {string} value
|
|
46209
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46210
|
+
*/
|
|
46211
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setScope = function(value) {
|
|
46212
|
+
return jspb.Message.setField(this, 39, value);
|
|
46213
|
+
};
|
|
46214
|
+
|
|
46215
|
+
|
|
46216
|
+
/**
|
|
46217
|
+
* Clears the field making it undefined.
|
|
46218
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46219
|
+
*/
|
|
46220
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearScope = function() {
|
|
46221
|
+
return jspb.Message.setField(this, 39, undefined);
|
|
46222
|
+
};
|
|
46223
|
+
|
|
46224
|
+
|
|
46225
|
+
/**
|
|
46226
|
+
* Returns whether this field is set.
|
|
46227
|
+
* @return {boolean}
|
|
46228
|
+
*/
|
|
46229
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasScope = function() {
|
|
46230
|
+
return jspb.Message.getField(this, 39) != null;
|
|
46231
|
+
};
|
|
46232
|
+
|
|
46233
|
+
|
|
46234
|
+
/**
|
|
46235
|
+
* optional string q_disc = 40;
|
|
46236
|
+
* @return {string}
|
|
46237
|
+
*/
|
|
46238
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getQDisc = function() {
|
|
46239
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 40, ""));
|
|
46240
|
+
};
|
|
46241
|
+
|
|
46242
|
+
|
|
46243
|
+
/**
|
|
46244
|
+
* @param {string} value
|
|
46245
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46246
|
+
*/
|
|
46247
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setQDisc = function(value) {
|
|
46248
|
+
return jspb.Message.setField(this, 40, value);
|
|
46249
|
+
};
|
|
46250
|
+
|
|
46251
|
+
|
|
46252
|
+
/**
|
|
46253
|
+
* Clears the field making it undefined.
|
|
46254
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46255
|
+
*/
|
|
46256
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearQDisc = function() {
|
|
46257
|
+
return jspb.Message.setField(this, 40, undefined);
|
|
46258
|
+
};
|
|
46259
|
+
|
|
46260
|
+
|
|
46261
|
+
/**
|
|
46262
|
+
* Returns whether this field is set.
|
|
46263
|
+
* @return {boolean}
|
|
46264
|
+
*/
|
|
46265
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasQDisc = function() {
|
|
46266
|
+
return jspb.Message.getField(this, 40) != null;
|
|
46267
|
+
};
|
|
46268
|
+
|
|
46269
|
+
|
|
46270
|
+
/**
|
|
46271
|
+
* optional string group = 41;
|
|
46272
|
+
* @return {string}
|
|
46273
|
+
*/
|
|
46274
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getGroup = function() {
|
|
46275
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 41, ""));
|
|
46276
|
+
};
|
|
46277
|
+
|
|
46278
|
+
|
|
46279
|
+
/**
|
|
46280
|
+
* @param {string} value
|
|
46281
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46282
|
+
*/
|
|
46283
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setGroup = function(value) {
|
|
46284
|
+
return jspb.Message.setField(this, 41, value);
|
|
46285
|
+
};
|
|
46286
|
+
|
|
46287
|
+
|
|
46288
|
+
/**
|
|
46289
|
+
* Clears the field making it undefined.
|
|
46290
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
46291
|
+
*/
|
|
46292
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearGroup = function() {
|
|
46293
|
+
return jspb.Message.setField(this, 41, undefined);
|
|
46294
|
+
};
|
|
46295
|
+
|
|
46296
|
+
|
|
46297
|
+
/**
|
|
46298
|
+
* Returns whether this field is set.
|
|
46299
|
+
* @return {boolean}
|
|
46300
|
+
*/
|
|
46301
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasGroup = function() {
|
|
46302
|
+
return jspb.Message.getField(this, 41) != null;
|
|
46303
|
+
};
|
|
46304
|
+
|
|
46305
|
+
|
|
45922
46306
|
|
|
45923
46307
|
|
|
45924
46308
|
|