-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathTS29558_Eecs_EESRegistration.yaml
529 lines (511 loc) · 18.5 KB
/
TS29558_Eecs_EESRegistration.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
openapi: 3.0.0
info:
title: ECS EES Registration_API
description: |
API for EES Registration.
© 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
version: 1.1.0-alpha.5
externalDocs:
description: >
3GPP TS 29.558 V18.4.0 Enabling Edge Applications;
Application Programming Interface (API) specification; Stage 3
url: https://www.3gpp.org/ftp/Specs/archive/29_series/29.558/
security:
- {}
- oAuth2ClientCredentials: []
servers:
- url: '{apiRoot}/eecs-eesregistration/v1'
variables:
apiRoot:
default: https://example.com
description: apiRoot as defined in clause 7.5 of 3GPP TS 29.558.
paths:
/registrations:
post:
summary: Create a new EES Registration
operationId: CreateEESRegistration
tags:
- EES Registrations (Collection)
description: Registers a new EES at the Edge Configuration Server.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/EESRegistration'
responses:
'201':
description: EES information is registered successfully at ECS.
content:
application/json:
schema:
$ref: '#/components/schemas/EESRegistration'
headers:
Location:
description: 'Contains the URI of the newly created resource'
required: true
schema:
type: string
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29122_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29122_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29122_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
/registrations/{registrationId}:
get:
summary: Get an Individual EES Registration
operationId: GetIndEESReg
tags:
- Individual EES Registration (Document)
description: Retrieve an Individual EES registration resource.
parameters:
- name: registrationId
in: path
description: Registration Id.
required: true
schema:
type: string
responses:
'200':
description: OK (The EES registration information at the Edge Configuration Server).
content:
application/json:
schema:
$ref: '#/components/schemas/EESRegistration'
'307':
$ref: 'TS29122_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29122_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'406':
$ref: 'TS29122_CommonData.yaml#/components/responses/406'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
put:
summary: Update an Individual EES Registration
operationId: UpdateIndEESReg
tags:
- Individual EES Registration (Document)
description: Fully replace an existing EES Registration resource.
parameters:
- name: registrationId
in: path
description: EES Registration Id.
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/EESRegistration'
responses:
'200':
description: OK (The EES registration information is updated successfully).
content:
application/json:
schema:
$ref: '#/components/schemas/EESRegistration'
'204':
description: >
No Content. The individual EES registration information is updated successfully.
'307':
$ref: 'TS29122_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29122_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29122_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29122_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29122_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
patch:
summary: Modify an Individual EES Registration
operationId: ModifyIndEESReg
tags:
- Individual EES Registration (Document)
description: Partially update an existing EES Registration resource.
parameters:
- name: registrationId
in: path
description: EES registration Id.
required: true
schema:
type: string
requestBody:
description: Partial update an existing EES registration resource.
required: true
content:
application/merge-patch+json:
schema:
$ref: '#/components/schemas/EESRegistrationPatch'
responses:
'200':
description: >
The Individual EES registration is successfully modified and
the updated registration information is returned in the response.
content:
application/json:
schema:
$ref: '#/components/schemas/EESRegistration'
'204':
description: >
No Content. The individual EES registration information is updated successfully.
'307':
$ref: 'TS29122_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29122_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29122_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29122_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29122_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
delete:
summary: Delete an Individual EES Registration
operationId: DeleteIndEESReg
tags:
- Individual EES Registration (Document)
description: Delete an existing EES registration at ECS.
parameters:
- name: registrationId
in: path
description: Registration Id.
required: true
schema:
type: string
responses:
'204':
description: The individual EES registration is deleted.
'307':
$ref: 'TS29122_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29122_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
components:
securitySchemes:
oAuth2ClientCredentials:
type: oauth2
flows:
clientCredentials:
tokenUrl: '{tokenUrl}'
scopes: {}
schemas:
EESRegistration:
type: object
description: Represents an EES registration information.
properties:
eesProf:
$ref: '#/components/schemas/EESProfile'
expTime:
$ref: 'TS29122_CommonData.yaml#/components/schemas/DateTime'
suppFeat:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- eesProf
EESProfile:
type: object
description: Represents the EES profile information.
properties:
eesId:
type: string
description: Identifier of the EES.
endPt:
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EndPoint'
easIds:
type: array
items:
type: string
minItems: 1
description: Application identifiers of EASs that are registered with EES.
easBdlInfos:
type: object
additionalProperties:
type: array
items:
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EASBundleInfo'
minItems: 1
minProperties: 1
description: >
The key used in this map for each entry is the EAS ID of the concerned EAS.
Within each EASBundleInfo encoded map entry of this attribute, the "mainEasId" attribute
shall not be present.
ednInfoSets:
$ref: '#/components/schemas/EDNInfo'
easInstInfo:
type: object
additionalProperties:
$ref: '#/components/schemas/EASInstantiationInfo'
minProperties: 1
description: >
Represents the EAS instantiation information for the EAS(s) registered at the EES.
The key of the map shall be the EAS ID to which the provided instantiation information
within the map value relates.
provId:
type: string
description: Identifier of the ECSP that provides the EES provider.
svcArea:
$ref: '#/components/schemas/ServiceArea'
appLocs:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Dnai'
minItems: 1
description: List of DNAI(s) associated with the EES.
svcContSupp:
type: array
items:
$ref: '#/components/schemas/ACRScenario'
minItems: 1
description: The ACR scenarios supported by the EES for service continuity.
svcContSuppExt1:
type: array
items:
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EASBundleInfo'
minItems: 1
description: >
Represents the information related to the EES ability to handle bundled EAS ACRs.
This attribute may be present only when the "svcContSupp" attribute is also present.
When this attribute is present, it indicates that the EES (identified by the "eesId"
attribute) is able to handle bundled EAS ACRs and contains the information of the EAS
bundle(s) for which the EES is able to handle bundled EAS ACRs.
eecRegConf:
type: boolean
description: >
Set to true if the EEC is required to register to the EES to use edge service.
Set to false if the EEC is not required to register to use edge services. Default
Value is false if omitted.
required:
- eesId
- endPt
- eecRegConf
EESRegistrationPatch:
type: object
description: Represents partial update request of individual EES registration information.
properties:
eesProf:
$ref: '#/components/schemas/EESProfile'
expTime:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTimeRm'
ServiceArea:
type: object
description: Represents a service area information of the EdgeApp entity.
properties:
topServAr:
$ref: '#/components/schemas/TopologicalServiceArea'
geoServAr:
$ref: '#/components/schemas/GeographicalServiceArea'
TopologicalServiceArea:
type: object
description: Represents topological service area information.
properties:
ecgis:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ecgi'
minItems: 1
description: A list of E-UTRA cell identities.
ncgis:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ncgi'
minItems: 1
description: A list of NR cell identities.
tais:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Tai'
minItems: 1
description: A list of tracking area identities.
plmnIds:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PlmnIdNid'
minItems: 1
description: A list of serving network identities.
GeographicalServiceArea:
type: object
description: Represents geographical service area information.
properties:
geoArs:
type: array
items:
$ref: 'TS29572_Nlmf_Location.yaml#/components/schemas/GeographicArea'
minItems: 1
description: A list of geographic area information.
civicAddrs:
type: array
items:
$ref: 'TS29572_Nlmf_Location.yaml#/components/schemas/CivicAddress'
minItems: 1
description: A list of civic address information.
EASInstantiationInfo:
type: object
description: Represents the EAS instantiation information.
properties:
easId:
type: string
description: Identifier of the EAS.
status:
$ref: '#/components/schemas/InstantiationStatus'
instCrit:
$ref: '#/components/schemas/InstantiationCriteria'
required:
- easId
- status
InstantiationCriteria:
type: object
description: Represents the instantiation criteria for an EAS.
properties:
instantiationTime:
$ref: 'TS29122_CommonData.yaml#/components/schemas/DateTime'
instWindows:
type: array
items:
$ref: 'TS29122_CommonData.yaml#/components/schemas/TimeWindow'
minItems: 1
description: A list time windows at which the EAS is instantiated.
scheds:
type: array
items:
$ref: 'TS29122_CpProvisioning.yaml#/components/schemas/ScheduledCommunicationTime'
minItems: 1
description: Represents the EAS instantiation schedule.
oneOf:
- required: [instantiationTime]
- required: [instWindows]
- required: [scheds]
EDNInfo:
type: object
description: Represents EDN related information.
properties:
dnn:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Dnn'
dnais:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Dnai'
minItems: 1
required:
- dnn
ACRScenario:
anyOf:
- type: string
enum:
- EEC_INITIATED
- EEC_EXECUTED_VIA_SOURCE_EES
- EEC_EXECUTED_VIA_TARGET_EES
- SOURCE_EAS_DECIDED
- SOURCE_EES_EXECUTED
- EEL_MANAGED_ACR
- type: string
description: >
This string provides forward-compatibility with future
extensions to the enumeration but is not used to encode
content defined in the present version of this API.
description: |
Represents the ACR scenarios supported by EES.
Possible values are:
- EEC_INITIATED: Represents the EEC initiated ACR scenario.
- EEC_EXECUTED_VIA_SOURCE_EES: Represents the EEC ACR scenario executed via the S-EES.
- EEC_EXECUTED_VIA_TARGET_EES: Represents the EEC ACR scenario executed via the T-EES.
- SOURCE_EAS_DECIDED: Represents the EEC ACR scenario where the S-EAS decides to perform
ACR.
- SOURCE_EES_EXECUTED: Represents the EEC ACR scenario where S-EES executes the ACR.
- EEL_MANAGED_ACR: Represents the EEC ACR scenario where the ACR is managed by the
Edge Enabler Layer.
InstantiationStatus:
anyOf:
- type: string
enum:
- INSTANTIATED
- INSTANTIABLE
- type: string
description: >
This string provides forward-compatibility with future
extensions to the enumeration but is not used to encode
content defined in the present version of this API.
description: |
Represents the instantiation status information of an EAS.
Possible values are:
- INSTANTIATED: Indicates that the EAS status is instantiated.
- INSTANTIABLE: Indicates that the EAS status is instantiable but not yet instantiated.