diff options
author | kjaniak <kornel.janiak@nokia.com> | 2018-11-14 15:42:03 +0100 |
---|---|---|
committer | kjaniak <kornel.janiak@nokia.com> | 2018-11-20 09:45:48 +0100 |
commit | 9e5c0ce3dd2b77567ca885c837f3474b1b166c90 (patch) | |
tree | 4c948b3593ecfd8d25ff936360b5213adf578ff3 /docs/sections/apis/ves-hv/MeasDataCollection.proto | |
parent | 782ed3f6bf033b2ce8b0ccbc1ff070124eeda341 (diff) |
Restore proto schemas in docs
Change-Id: I1f95122cf8ddd510873bf0d7d3e77231c91a400d
Issue-ID: DCAEGEN2-972
Signed-off-by: kjaniak <kornel.janiak@nokia.com>
Diffstat (limited to 'docs/sections/apis/ves-hv/MeasDataCollection.proto')
-rw-r--r-- | docs/sections/apis/ves-hv/MeasDataCollection.proto | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/sections/apis/ves-hv/MeasDataCollection.proto b/docs/sections/apis/ves-hv/MeasDataCollection.proto index 978cb28a..cd2adabb 100644 --- a/docs/sections/apis/ves-hv/MeasDataCollection.proto +++ b/docs/sections/apis/ves-hv/MeasDataCollection.proto @@ -41,16 +41,16 @@ message MeasInfo { oneof MeasInfoId { // measurement group identifier uint32 iMeasInfoId = 1; // identifier as integer (%%: more compact) - string measInfoId = 2; // identifier as string (more generic) + string sMeasInfoId = 2; // identifier as string (more generic) } oneof MeasTypes { // measurement identifiers associated with the measurement results IMeasTypes iMeasTypes = 3; // identifiers as integers (%%: more compact) - SMeasTypes measTypes = 4; // identifiers as strings (more generic) + SMeasTypes sMeasTypes = 4; // identifiers as strings (more generic) } // Needed only because GPB does not support repeated fields directly inside 'oneof' message IMeasTypes { repeated uint32 iMeasType = 1; } - message SMeasTypes { repeated string measType = 1; } + message SMeasTypes { repeated string sMeasType = 1; } string jobId = 5; repeated MeasValue measValues = 6; // performance measurements grouped by measurement object @@ -59,7 +59,7 @@ message MeasInfo message MeasValue { oneof MeasObjInstId { // monitored object LDN as per 3GPP TS 32.300 and 3GPP TS 32.432 - string measObjInstId = 1; // LDN itself + string sMeasObjInstId = 1; // LDN itself uint32 measObjInstIdListIdx = 2; // %%: index into measObjInstIdList (zero-based) } repeated MeasResult measResults = 3; |