Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aggregation-manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OZG-Cloud
app
aggregation-manager
Commits
0f848afe
Commit
0f848afe
authored
1 month ago
by
Felix Reichenbach
Browse files
Options
Downloads
Patches
Plain Diff
OZG-7908 adjust structure of payload
parent
432ade3b
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!17
Ozg 7908 aggregation manager server grpc interface
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
aggregation-manager-interface/src/main/protobuf/aggregationdata.model.proto
+13
-7
13 additions, 7 deletions
...r-interface/src/main/protobuf/aggregationdata.model.proto
with
13 additions
and
7 deletions
aggregation-manager-interface/src/main/protobuf/aggregationdata.model.proto
+
13
−
7
View file @
0f848afe
...
@@ -41,24 +41,30 @@ message GrpcAggregationData {
...
@@ -41,24 +41,30 @@ message GrpcAggregationData {
string
status
=
2
;
string
status
=
2
;
string
eingangDatum
=
3
;
string
eingangDatum
=
3
;
string
vorgangName
=
4
;
string
vorgangName
=
4
;
Grpc
Payload
payload
=
5
;
Grpc
Object
payload
=
5
;
}
}
message
Grpc
Payload
{
message
Grpc
Object
{
repeated
GrpcProperty
properties
=
1
;
repeated
GrpcProperty
properties
=
1
;
}
}
message
GrpcProperty
{
message
GrpcProperty
{
string
key
=
1
;
string
key
=
1
;
GrpcElement
value
=
2
;
}
message
GrpcElement
{
oneof
value
{
oneof
value
{
string
stringValue
=
2
;
bool
boolValue
=
1
;
GrpcPayload
nestedPayload
=
3
;
int64
longValue
=
2
;
GrpcValueList
valueList
=
4
;
string
stringValue
=
3
;
GrpcElementList
listValue
=
4
;
GrpcObject
objectValue
=
5
;
}
}
}
}
message
Grpc
Value
List
{
message
Grpc
Element
List
{
repeated
string
value
s
=
1
;
repeated
GrpcElement
element
s
=
1
;
}
}
message
GrpcSendAggregationDataResponse
{}
message
GrpcSendAggregationDataResponse
{}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment