Newer
Older
title: ETSI GS MEC 012 - Radio Network Information API
version: 2.1.1
description: The ETSI MEC ISG MEC012 Radio Network Information API described using OpenAPI.
name: BSD-3-Clause
url: 'https://forge.etsi.org/legal-matters'
description: ETSI GS MEC 012 Radio Network Information API, V2.1.1
url: 'http://www.etsi.org/deliver/etsi_gs/MEC/001_099/012/02.01.01_60/gs_mec012v020101p.pdf'
servers:
/queries/rab_info:
summary: 'Retrieve information on Radio Access Bearers'
description: 'Queries information about the Radio Access Bearers'
operationId: rab_infoGET
parameters:
- $ref: '#/components/parameters/Query.AppInsId'
- $ref: '#/components/parameters/Query.CellId'
- $ref: '#/components/parameters/Query.UeIpv4Address'
- $ref: '#/components/parameters/Query.UeIpv6Address'
- $ref: '#/components/parameters/Query.NatedIpAddress'
- $ref: '#/components/parameters/Query.GtpTeid'
- $ref: '#/components/parameters/Query.ErabId'
- $ref: '#/components/parameters/Query.Qci'
- $ref: '#/components/parameters/Query.ErabMbrDl'
- $ref: '#/components/parameters/Query.ErabMbrUl'
- $ref: '#/components/parameters/Query.ErabGbrDl'
- $ref: '#/components/parameters/Query.ErabGbrUl'
responses:
'200':
description: Successful response to rab_info request
schema:
type: object
properties:
rabInfo:
$ref: '#/components/schemas/RabInfo'
$ref: '#/components/responses/429'
x-swagger-router-controller: "queries"
/queries/plmn_info:
summary: 'Retrieve information on the underlying Mobile Network that the MEC application is associated to'
description: 'Queries information about the Mobile Network'
operationId: plmn_infoGET
parameters:
- $ref: '#/components/parameters/Query.AppInsIdArr'
description: Successful response to plmn_info request
content:
schema:
type: "object"
properties:
plmnInfo:
type: "array"
items:
$ref: '#/components/schemas/PlmnInfo'
$ref: '#/components/responses/429'
x-swagger-router-controller: "queries"
/queries/s1_bearer_info:
summary: 'Retrieve S1-U bearer information related to specific UE(s)'
description: 'Queries information about the S1 bearer(s)'
operationId: s1_bearer_infoGET
parameters:
- $ref: '#/components/parameters/Query.TempUeId'
- $ref: '#/components/parameters/Query.UeIpv4Address'
- $ref: '#/components/parameters/Query.UeIpv6Address'
- $ref: '#/components/parameters/Query.NatedIpAddress'
- $ref: '#/components/parameters/Query.GtpTeid'
- $ref: '#/components/parameters/Query.CellId'
- $ref: '#/components/parameters/Query.ErabIdArr'
responses:
'200':
description: Successful response to s1_bearer_info request
schema:
type: "object"
required:
- "s1BearerInfo"
properties:
s1BearerInfo:
$ref: '#/components/schemas/S1BearerInfo'
$ref: '#/components/responses/429'
x-swagger-router-controller: "queries"
/queries/layer2_meas:
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
summary: 'Retrieve information on layer 2 measurements'
description: 'Queries information about the layer 2 measurements.'
operationId: layer2_meas_infoGET
parameters:
- $ref: '#/components/parameters/Query.AppInsId'
- $ref: '#/components/parameters/Query.CellId'
- $ref: '#/components/parameters/Query.UeIpv4Address'
- $ref: '#/components/parameters/Query.UeIpv6Address'
- $ref: '#/components/parameters/Query.NatedIpAddress'
- $ref: '#/components/parameters/Query.GtpTeid'
- $ref: '#/components/parameters/Query.DlGbrPrbUsageCell'
- $ref: '#/components/parameters/Query.UlGbrPrbUsageCell'
- $ref: '#/components/parameters/Query.DlNonGbrPrbUsageCell'
- $ref: '#/components/parameters/Query.UlNonGbrPrbUsageCell'
- $ref: '#/components/parameters/Query.DlTotalPrbUsageCell'
- $ref: '#/components/parameters/Query.UlTotalPrbUsageCell'
- $ref: '#/components/parameters/Query.ReceivedDedicatedPreamblesCell'
- $ref: '#/components/parameters/Query.ReceivedRandomPreamblesLowRangeCell'
- $ref: '#/components/parameters/Query.ReceivedRandomPreamblesHighRangeCell'
- $ref: '#/components/parameters/Query.NumberOfActiveUeDlGbrCell'
- $ref: '#/components/parameters/Query.NumberOfActiveUeUlGbrCell'
- $ref: '#/components/parameters/Query.NumberOfActiveUeDlNonGbrCell'
- $ref: '#/components/parameters/Query.NumberOfActiveUeUlNonGbrCell'
- $ref: '#/components/parameters/Query.DlGbrPdrCell'
- $ref: '#/components/parameters/Query.UlGbrPdrCell'
- $ref: '#/components/parameters/Query.DlNonGbrPdrCell'
- $ref: '#/components/parameters/Query.UlNonGbrPdrCell'
- $ref: '#/components/parameters/Query.DlGbrDelayUe'
- $ref: '#/components/parameters/Query.UlGbrDelayUe'
- $ref: '#/components/parameters/Query.DlNonGbrDelayUe'
- $ref: '#/components/parameters/Query.UlNonGbrDelayUe'
- $ref: '#/components/parameters/Query.DlGbrPdrUe'
- $ref: '#/components/parameters/Query.UlGbrPdrUe'
- $ref: '#/components/parameters/Query.DlNonGbrPdrUe'
- $ref: '#/components/parameters/Query.UlNonGbrPdrUe'
- $ref: '#/components/parameters/Query.DlGbrThroughputUe'
- $ref: '#/components/parameters/Query.UlGbrThroughputUe'
- $ref: '#/components/parameters/Query.DlNonGbrThroughputUe'
- $ref: '#/components/parameters/Query.UlNonGbrThroughputUe'
- $ref: '#/components/parameters/Query.DlGbrDataVolumeUe'
- $ref: '#/components/parameters/Query.UlGbrDataVolumeUe'
- $ref: '#/components/parameters/Query.DlNonGbrDataVolumeUe'
- $ref: '#/components/parameters/Query.UlNonGbrDataVolumeUe'
description: Successful response to layer2 measurements info request
content:
schema:
type: "object"
required:
- "l2Meas"
properties:
l2Meas:
$ref: '#/components/schemas/L2Meas'
Loading full blame...