@lansweeper/data-platform-outbound-grpc 0.3.28 → 0.3.29
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 +6 -0
- package/gen-proto/outbound_pb.js +48 -0
- package/generated-go/outbound.pb.go +32 -21
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +1 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfo$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfo$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfo.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfoOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +1 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2727 -2727
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SourceInfo.java +261 -68
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SourceInfoOrBuilder.java +29 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.27-sources.jar → outbound-model-0.3.28-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.27.jar → outbound-model-0.3.28.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +1 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.27-sources.jar → outbound-service-0.3.28-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.27.jar → outbound-service-0.3.28.jar} +0 -0
|
@@ -2691,6 +2691,11 @@ export class SourceInfo extends jspb.Message {
|
|
|
2691
2691
|
getSourceType(): string;
|
|
2692
2692
|
setSourceType(value: string): SourceInfo;
|
|
2693
2693
|
|
|
2694
|
+
hasSensorId(): boolean;
|
|
2695
|
+
clearSensorId(): void;
|
|
2696
|
+
getSensorId(): string | undefined;
|
|
2697
|
+
setSensorId(value: string): SourceInfo;
|
|
2698
|
+
|
|
2694
2699
|
hasSourceAgent(): boolean;
|
|
2695
2700
|
clearSourceAgent(): void;
|
|
2696
2701
|
getSourceAgent(): string | undefined;
|
|
@@ -2736,6 +2741,7 @@ export namespace SourceInfo {
|
|
|
2736
2741
|
export type AsObject = {
|
|
2737
2742
|
sourceId: string,
|
|
2738
2743
|
sourceType: string,
|
|
2744
|
+
sensorId?: string,
|
|
2739
2745
|
sourceAgent?: string,
|
|
2740
2746
|
sourceName?: string,
|
|
2741
2747
|
sourceTag?: string,
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -27911,6 +27911,7 @@ proto.com.lansweeper.dp.outbound.v1.SourceInfo.toObject = function(includeInstan
|
|
|
27911
27911
|
var f, obj = {
|
|
27912
27912
|
sourceId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
27913
27913
|
sourceType: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
27914
|
+
sensorId: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
27914
27915
|
sourceAgent: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
27915
27916
|
sourceName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
27916
27917
|
sourceTag: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
@@ -27963,6 +27964,10 @@ proto.com.lansweeper.dp.outbound.v1.SourceInfo.deserializeBinaryFromReader = fun
|
|
|
27963
27964
|
var value = /** @type {string} */ (reader.readString());
|
|
27964
27965
|
msg.setSourceType(value);
|
|
27965
27966
|
break;
|
|
27967
|
+
case 10:
|
|
27968
|
+
var value = /** @type {string} */ (reader.readString());
|
|
27969
|
+
msg.setSensorId(value);
|
|
27970
|
+
break;
|
|
27966
27971
|
case 3:
|
|
27967
27972
|
var value = /** @type {string} */ (reader.readString());
|
|
27968
27973
|
msg.setSourceAgent(value);
|
|
@@ -28036,6 +28041,13 @@ proto.com.lansweeper.dp.outbound.v1.SourceInfo.serializeBinaryToWriter = functio
|
|
|
28036
28041
|
f
|
|
28037
28042
|
);
|
|
28038
28043
|
}
|
|
28044
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 10));
|
|
28045
|
+
if (f != null) {
|
|
28046
|
+
writer.writeString(
|
|
28047
|
+
10,
|
|
28048
|
+
f
|
|
28049
|
+
);
|
|
28050
|
+
}
|
|
28039
28051
|
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
28040
28052
|
if (f != null) {
|
|
28041
28053
|
writer.writeString(
|
|
@@ -28126,6 +28138,42 @@ proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.setSourceType = functio
|
|
|
28126
28138
|
};
|
|
28127
28139
|
|
|
28128
28140
|
|
|
28141
|
+
/**
|
|
28142
|
+
* optional string sensor_id = 10;
|
|
28143
|
+
* @return {string}
|
|
28144
|
+
*/
|
|
28145
|
+
proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.getSensorId = function() {
|
|
28146
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
28147
|
+
};
|
|
28148
|
+
|
|
28149
|
+
|
|
28150
|
+
/**
|
|
28151
|
+
* @param {string} value
|
|
28152
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SourceInfo} returns this
|
|
28153
|
+
*/
|
|
28154
|
+
proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.setSensorId = function(value) {
|
|
28155
|
+
return jspb.Message.setField(this, 10, value);
|
|
28156
|
+
};
|
|
28157
|
+
|
|
28158
|
+
|
|
28159
|
+
/**
|
|
28160
|
+
* Clears the field making it undefined.
|
|
28161
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SourceInfo} returns this
|
|
28162
|
+
*/
|
|
28163
|
+
proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.clearSensorId = function() {
|
|
28164
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
28165
|
+
};
|
|
28166
|
+
|
|
28167
|
+
|
|
28168
|
+
/**
|
|
28169
|
+
* Returns whether this field is set.
|
|
28170
|
+
* @return {boolean}
|
|
28171
|
+
*/
|
|
28172
|
+
proto.com.lansweeper.dp.outbound.v1.SourceInfo.prototype.hasSensorId = function() {
|
|
28173
|
+
return jspb.Message.getField(this, 10) != null;
|
|
28174
|
+
};
|
|
28175
|
+
|
|
28176
|
+
|
|
28129
28177
|
/**
|
|
28130
28178
|
* optional string source_agent = 3;
|
|
28131
28179
|
* @return {string}
|
|
@@ -5813,6 +5813,7 @@ type SourceInfo struct {
|
|
|
5813
5813
|
|
|
5814
5814
|
SourceId string `protobuf:"bytes,1,opt,name=source_id,json=sourceId,proto3" json:"source_id,omitempty"` // source id, like installation id of IT
|
|
5815
5815
|
SourceType string `protobuf:"bytes,2,opt,name=source_type,json=sourceType,proto3" json:"source_type,omitempty"` // source type like e.g. IT
|
|
5816
|
+
SensorId *string `protobuf:"bytes,10,opt,name=sensor_id,json=sensorId,proto3,oneof" json:"sensor_id,omitempty"` // sensor id of the source
|
|
5816
5817
|
SourceAgent *string `protobuf:"bytes,3,opt,name=source_agent,json=sourceAgent,proto3,oneof" json:"source_agent,omitempty"` // source agent name and version
|
|
5817
5818
|
SourceName *string `protobuf:"bytes,4,opt,name=source_name,json=sourceName,proto3,oneof" json:"source_name,omitempty"` // source name
|
|
5818
5819
|
SourceTag *string `protobuf:"bytes,8,opt,name=source_tag,json=sourceTag,proto3,oneof" json:"source_tag,omitempty"` // source tag
|
|
@@ -5868,6 +5869,13 @@ func (x *SourceInfo) GetSourceType() string {
|
|
|
5868
5869
|
return ""
|
|
5869
5870
|
}
|
|
5870
5871
|
|
|
5872
|
+
func (x *SourceInfo) GetSensorId() string {
|
|
5873
|
+
if x != nil && x.SensorId != nil {
|
|
5874
|
+
return *x.SensorId
|
|
5875
|
+
}
|
|
5876
|
+
return ""
|
|
5877
|
+
}
|
|
5878
|
+
|
|
5871
5879
|
func (x *SourceInfo) GetSourceAgent() string {
|
|
5872
5880
|
if x != nil && x.SourceAgent != nil {
|
|
5873
5881
|
return *x.SourceAgent
|
|
@@ -33489,31 +33497,34 @@ var file_outbound_proto_rawDesc = []byte{
|
|
|
33489
33497
|
0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x69, 0x7a, 0x65, 0x49, 0x6e, 0x42, 0x79, 0x74, 0x65, 0x12,
|
|
33490
33498
|
0x21, 0x0a, 0x0c, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
|
|
33491
33499
|
0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x75,
|
|
33492
|
-
0x6e, 0x74, 0x22,
|
|
33500
|
+
0x6e, 0x74, 0x22, 0xf1, 0x03, 0x0a, 0x0a, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x6e, 0x66,
|
|
33493
33501
|
0x6f, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
|
|
33494
33502
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1f,
|
|
33495
33503
|
0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
|
|
33496
33504
|
0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12,
|
|
33497
|
-
|
|
33498
|
-
|
|
33499
|
-
|
|
33500
|
-
|
|
33501
|
-
|
|
33502
|
-
|
|
33503
|
-
|
|
33504
|
-
|
|
33505
|
-
|
|
33506
|
-
|
|
33507
|
-
|
|
33508
|
-
|
|
33509
|
-
|
|
33510
|
-
|
|
33511
|
-
|
|
33512
|
-
|
|
33513
|
-
|
|
33514
|
-
|
|
33515
|
-
|
|
33516
|
-
0x64,
|
|
33505
|
+
0x20, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01,
|
|
33506
|
+
0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x49, 0x64, 0x88, 0x01,
|
|
33507
|
+
0x01, 0x12, 0x26, 0x0a, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x67, 0x65, 0x6e,
|
|
33508
|
+
0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63,
|
|
33509
|
+
0x65, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x6f, 0x75,
|
|
33510
|
+
0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02,
|
|
33511
|
+
0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
33512
|
+
0x22, 0x0a, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x08, 0x20,
|
|
33513
|
+
0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x09, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x61, 0x67,
|
|
33514
|
+
0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x06, 0x72, 0x61, 0x77, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20,
|
|
33515
|
+
0x01, 0x28, 0x09, 0x52, 0x05, 0x72, 0x61, 0x77, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x09, 0x65, 0x6e,
|
|
33516
|
+
0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52,
|
|
33517
|
+
0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x3b, 0x0a, 0x0b,
|
|
33518
|
+
0x6c, 0x61, 0x73, 0x74, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
|
|
33519
|
+
0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
33520
|
+
0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x6c,
|
|
33521
|
+
0x61, 0x73, 0x74, 0x53, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x12, 0x4f, 0x0a, 0x0b, 0x63, 0x72, 0x65,
|
|
33522
|
+
0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d,
|
|
33523
|
+
0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
33524
|
+
0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53,
|
|
33525
|
+
0x63, 0x61, 0x6e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x0b, 0x63,
|
|
33526
|
+
0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73,
|
|
33527
|
+
0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x73, 0x6f, 0x75,
|
|
33517
33528
|
0x72, 0x63, 0x65, 0x5f, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x6f,
|
|
33518
33529
|
0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x6f,
|
|
33519
33530
|
0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x61, 0x67, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x65, 0x6e, 0x74,
|
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -790,6 +790,7 @@ message IntuneApplication {
|
|
|
790
790
|
message SourceInfo {
|
|
791
791
|
string source_id = 1; // source id, like installation id of IT
|
|
792
792
|
string source_type = 2; // source type like e.g. IT
|
|
793
|
+
optional string sensor_id = 10; // sensor id of the source
|
|
793
794
|
optional string source_agent = 3; // source agent name and version
|
|
794
795
|
optional string source_name = 4; // source name
|
|
795
796
|
optional string source_tag = 8; // source tag
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -790,6 +790,7 @@ message IntuneApplication {
|
|
|
790
790
|
message SourceInfo {
|
|
791
791
|
string source_id = 1; // source id, like installation id of IT
|
|
792
792
|
string source_type = 2; // source type like e.g. IT
|
|
793
|
+
optional string sensor_id = 10; // sensor id of the source
|
|
793
794
|
optional string source_agent = 3; // source agent name and version
|
|
794
795
|
optional string source_name = 4; // source name
|
|
795
796
|
optional string source_tag = 8; // source tag
|