@lansweeper/data-platform-outbound-grpc 0.3.10 → 0.3.11
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 +24 -0
- package/gen-proto/outbound_pb.js +192 -0
- package/generated-go/outbound.pb.go +6122 -6073
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +7 -1
- 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/outbound.proto +7 -1
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterface.java +634 -119
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.java +66 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +1980 -1976
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.9-sources.jar → outbound-model-0.3.10-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.9.jar → outbound-model-0.3.10.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +7 -1
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.9-sources.jar → outbound-service-0.3.10-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.9.jar → outbound-service-0.3.10.jar} +0 -0
|
@@ -4201,6 +4201,26 @@ export class NetworkInterface extends jspb.Message {
|
|
|
4201
4201
|
getDatabasePath(): string | undefined;
|
|
4202
4202
|
setDatabasePath(value: string): NetworkInterface;
|
|
4203
4203
|
|
|
4204
|
+
hasModelVersion(): boolean;
|
|
4205
|
+
clearModelVersion(): void;
|
|
4206
|
+
getModelVersion(): number | undefined;
|
|
4207
|
+
setModelVersion(value: number): NetworkInterface;
|
|
4208
|
+
|
|
4209
|
+
hasNetConnectionId(): boolean;
|
|
4210
|
+
clearNetConnectionId(): void;
|
|
4211
|
+
getNetConnectionId(): string | undefined;
|
|
4212
|
+
setNetConnectionId(value: string): NetworkInterface;
|
|
4213
|
+
|
|
4214
|
+
hasManufacturer(): boolean;
|
|
4215
|
+
clearManufacturer(): void;
|
|
4216
|
+
getManufacturer(): string | undefined;
|
|
4217
|
+
setManufacturer(value: string): NetworkInterface;
|
|
4218
|
+
|
|
4219
|
+
hasNetEnabled(): boolean;
|
|
4220
|
+
clearNetEnabled(): void;
|
|
4221
|
+
getNetEnabled(): boolean | undefined;
|
|
4222
|
+
setNetEnabled(value: boolean): NetworkInterface;
|
|
4223
|
+
|
|
4204
4224
|
hasSnmpIndex(): boolean;
|
|
4205
4225
|
clearSnmpIndex(): void;
|
|
4206
4226
|
getSnmpIndex(): number | undefined;
|
|
@@ -4286,6 +4306,10 @@ export namespace NetworkInterface {
|
|
|
4286
4306
|
dnsDomainSuffixSearchOrder?: string,
|
|
4287
4307
|
serviceName?: string,
|
|
4288
4308
|
databasePath?: string,
|
|
4309
|
+
modelVersion?: number,
|
|
4310
|
+
netConnectionId?: string,
|
|
4311
|
+
manufacturer?: string,
|
|
4312
|
+
netEnabled?: boolean,
|
|
4289
4313
|
snmpIndex?: number,
|
|
4290
4314
|
description?: string,
|
|
4291
4315
|
alias?: string,
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -37050,6 +37050,10 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.toObject = function(include
|
|
|
37050
37050
|
dnsDomainSuffixSearchOrder: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
37051
37051
|
serviceName: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
37052
37052
|
databasePath: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
37053
|
+
modelVersion: jspb.Message.getFieldWithDefault(msg, 28, 0),
|
|
37054
|
+
netConnectionId: jspb.Message.getFieldWithDefault(msg, 29, ""),
|
|
37055
|
+
manufacturer: jspb.Message.getFieldWithDefault(msg, 30, ""),
|
|
37056
|
+
netEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 31, false),
|
|
37053
37057
|
snmpIndex: jspb.Message.getFieldWithDefault(msg, 27, 0),
|
|
37054
37058
|
description: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
37055
37059
|
alias: jspb.Message.getFieldWithDefault(msg, 17, ""),
|
|
@@ -37159,6 +37163,22 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.deserializeBinaryFromReader
|
|
|
37159
37163
|
var value = /** @type {string} */ (reader.readString());
|
|
37160
37164
|
msg.setDatabasePath(value);
|
|
37161
37165
|
break;
|
|
37166
|
+
case 28:
|
|
37167
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
37168
|
+
msg.setModelVersion(value);
|
|
37169
|
+
break;
|
|
37170
|
+
case 29:
|
|
37171
|
+
var value = /** @type {string} */ (reader.readString());
|
|
37172
|
+
msg.setNetConnectionId(value);
|
|
37173
|
+
break;
|
|
37174
|
+
case 30:
|
|
37175
|
+
var value = /** @type {string} */ (reader.readString());
|
|
37176
|
+
msg.setManufacturer(value);
|
|
37177
|
+
break;
|
|
37178
|
+
case 31:
|
|
37179
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
37180
|
+
msg.setNetEnabled(value);
|
|
37181
|
+
break;
|
|
37162
37182
|
case 27:
|
|
37163
37183
|
var value = /** @type {number} */ (reader.readInt32());
|
|
37164
37184
|
msg.setSnmpIndex(value);
|
|
@@ -37344,6 +37364,34 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.serializeBinaryToWriter = f
|
|
|
37344
37364
|
f
|
|
37345
37365
|
);
|
|
37346
37366
|
}
|
|
37367
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 28));
|
|
37368
|
+
if (f != null) {
|
|
37369
|
+
writer.writeInt32(
|
|
37370
|
+
28,
|
|
37371
|
+
f
|
|
37372
|
+
);
|
|
37373
|
+
}
|
|
37374
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 29));
|
|
37375
|
+
if (f != null) {
|
|
37376
|
+
writer.writeString(
|
|
37377
|
+
29,
|
|
37378
|
+
f
|
|
37379
|
+
);
|
|
37380
|
+
}
|
|
37381
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 30));
|
|
37382
|
+
if (f != null) {
|
|
37383
|
+
writer.writeString(
|
|
37384
|
+
30,
|
|
37385
|
+
f
|
|
37386
|
+
);
|
|
37387
|
+
}
|
|
37388
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 31));
|
|
37389
|
+
if (f != null) {
|
|
37390
|
+
writer.writeBool(
|
|
37391
|
+
31,
|
|
37392
|
+
f
|
|
37393
|
+
);
|
|
37394
|
+
}
|
|
37347
37395
|
f = /** @type {number} */ (jspb.Message.getField(message, 27));
|
|
37348
37396
|
if (f != null) {
|
|
37349
37397
|
writer.writeInt32(
|
|
@@ -37922,6 +37970,150 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasDatabasePath =
|
|
|
37922
37970
|
};
|
|
37923
37971
|
|
|
37924
37972
|
|
|
37973
|
+
/**
|
|
37974
|
+
* optional int32 model_version = 28;
|
|
37975
|
+
* @return {number}
|
|
37976
|
+
*/
|
|
37977
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getModelVersion = function() {
|
|
37978
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 28, 0));
|
|
37979
|
+
};
|
|
37980
|
+
|
|
37981
|
+
|
|
37982
|
+
/**
|
|
37983
|
+
* @param {number} value
|
|
37984
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
37985
|
+
*/
|
|
37986
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setModelVersion = function(value) {
|
|
37987
|
+
return jspb.Message.setField(this, 28, value);
|
|
37988
|
+
};
|
|
37989
|
+
|
|
37990
|
+
|
|
37991
|
+
/**
|
|
37992
|
+
* Clears the field making it undefined.
|
|
37993
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
37994
|
+
*/
|
|
37995
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearModelVersion = function() {
|
|
37996
|
+
return jspb.Message.setField(this, 28, undefined);
|
|
37997
|
+
};
|
|
37998
|
+
|
|
37999
|
+
|
|
38000
|
+
/**
|
|
38001
|
+
* Returns whether this field is set.
|
|
38002
|
+
* @return {boolean}
|
|
38003
|
+
*/
|
|
38004
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasModelVersion = function() {
|
|
38005
|
+
return jspb.Message.getField(this, 28) != null;
|
|
38006
|
+
};
|
|
38007
|
+
|
|
38008
|
+
|
|
38009
|
+
/**
|
|
38010
|
+
* optional string net_connection_id = 29;
|
|
38011
|
+
* @return {string}
|
|
38012
|
+
*/
|
|
38013
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getNetConnectionId = function() {
|
|
38014
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 29, ""));
|
|
38015
|
+
};
|
|
38016
|
+
|
|
38017
|
+
|
|
38018
|
+
/**
|
|
38019
|
+
* @param {string} value
|
|
38020
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
38021
|
+
*/
|
|
38022
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setNetConnectionId = function(value) {
|
|
38023
|
+
return jspb.Message.setField(this, 29, value);
|
|
38024
|
+
};
|
|
38025
|
+
|
|
38026
|
+
|
|
38027
|
+
/**
|
|
38028
|
+
* Clears the field making it undefined.
|
|
38029
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
38030
|
+
*/
|
|
38031
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearNetConnectionId = function() {
|
|
38032
|
+
return jspb.Message.setField(this, 29, undefined);
|
|
38033
|
+
};
|
|
38034
|
+
|
|
38035
|
+
|
|
38036
|
+
/**
|
|
38037
|
+
* Returns whether this field is set.
|
|
38038
|
+
* @return {boolean}
|
|
38039
|
+
*/
|
|
38040
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasNetConnectionId = function() {
|
|
38041
|
+
return jspb.Message.getField(this, 29) != null;
|
|
38042
|
+
};
|
|
38043
|
+
|
|
38044
|
+
|
|
38045
|
+
/**
|
|
38046
|
+
* optional string manufacturer = 30;
|
|
38047
|
+
* @return {string}
|
|
38048
|
+
*/
|
|
38049
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getManufacturer = function() {
|
|
38050
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 30, ""));
|
|
38051
|
+
};
|
|
38052
|
+
|
|
38053
|
+
|
|
38054
|
+
/**
|
|
38055
|
+
* @param {string} value
|
|
38056
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
38057
|
+
*/
|
|
38058
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setManufacturer = function(value) {
|
|
38059
|
+
return jspb.Message.setField(this, 30, value);
|
|
38060
|
+
};
|
|
38061
|
+
|
|
38062
|
+
|
|
38063
|
+
/**
|
|
38064
|
+
* Clears the field making it undefined.
|
|
38065
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
38066
|
+
*/
|
|
38067
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearManufacturer = function() {
|
|
38068
|
+
return jspb.Message.setField(this, 30, undefined);
|
|
38069
|
+
};
|
|
38070
|
+
|
|
38071
|
+
|
|
38072
|
+
/**
|
|
38073
|
+
* Returns whether this field is set.
|
|
38074
|
+
* @return {boolean}
|
|
38075
|
+
*/
|
|
38076
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasManufacturer = function() {
|
|
38077
|
+
return jspb.Message.getField(this, 30) != null;
|
|
38078
|
+
};
|
|
38079
|
+
|
|
38080
|
+
|
|
38081
|
+
/**
|
|
38082
|
+
* optional bool net_enabled = 31;
|
|
38083
|
+
* @return {boolean}
|
|
38084
|
+
*/
|
|
38085
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getNetEnabled = function() {
|
|
38086
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 31, false));
|
|
38087
|
+
};
|
|
38088
|
+
|
|
38089
|
+
|
|
38090
|
+
/**
|
|
38091
|
+
* @param {boolean} value
|
|
38092
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
38093
|
+
*/
|
|
38094
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setNetEnabled = function(value) {
|
|
38095
|
+
return jspb.Message.setField(this, 31, value);
|
|
38096
|
+
};
|
|
38097
|
+
|
|
38098
|
+
|
|
38099
|
+
/**
|
|
38100
|
+
* Clears the field making it undefined.
|
|
38101
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
|
|
38102
|
+
*/
|
|
38103
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearNetEnabled = function() {
|
|
38104
|
+
return jspb.Message.setField(this, 31, undefined);
|
|
38105
|
+
};
|
|
38106
|
+
|
|
38107
|
+
|
|
38108
|
+
/**
|
|
38109
|
+
* Returns whether this field is set.
|
|
38110
|
+
* @return {boolean}
|
|
38111
|
+
*/
|
|
38112
|
+
proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasNetEnabled = function() {
|
|
38113
|
+
return jspb.Message.getField(this, 31) != null;
|
|
38114
|
+
};
|
|
38115
|
+
|
|
38116
|
+
|
|
37925
38117
|
/**
|
|
37926
38118
|
* optional int32 snmp_index = 27;
|
|
37927
38119
|
* @return {number}
|