Newer
Older
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
openapi: 3.0.1
info:
title: Generic NRM
version: 18.4.0
description: >-
OAS 3.0.1 definition of the Generic NRM
© 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
externalDocs:
description: 3GPP TS 28.623; Generic NRM
url: http://www.3gpp.org/ftp/Specs/archive/28_series/28.623/
paths: {}
components:
schemas:
#-------- Definition of types-----------------------------------------------------
RegistrationState:
type: string
enum:
- REGISTERED
- DEREGISTERED
VnfParameter:
type: object
properties:
vnfInstanceId:
type: string
vnfdId:
type: string
flavourId:
type: string
autoScalable:
type: boolean
PeeParameter:
type: object
properties:
siteIdentification:
type: string
siteDescription:
type: string
siteLatitude:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/Latitude'
siteLongitude:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/Longitude'
siteAltitude:
type: number
format: float
equipmentType:
type: string
environmentType:
type: string
powerInterface:
type: string
ThresholdInfo:
type: object
properties:
thresholdDirection:
type: string
enum:
- UP
- DOWN
- UP_AND_DOWN
thresholdValue:
oneOf:
- type: integer
- $ref: 'TS28623_ComDefs.yaml#/components/schemas/Float'
hysteresis:
oneOf:
- type: integer
minimum: 0
- type: number
format: float
minimum: 0
Operation:
type: object
properties:
name:
type: string
allowedNFTypes:
$ref: '#/components/schemas/NFType'
operationSemantics:
$ref: '#/components/schemas/OperationSemantics'
NFType:
type: string
description: ' NF name defined in TS 23.501 or TS 29.510'
enum:
- NRF
- UDM
- AMF
- SMF
- AUSF
- NEF
- PCF
- SMSF
- NSSF
- UDR
- LMF
- GMLC
- 5G_EIR
- SEPP
- UPF
- N3IWF
- AF
- UDSF
- DN
- BSF
- CHF
- NWDAF
- PCSCF
- CBCF
- HSS
- UCMF
- SOR_AF
- SPAF
- MME
- SCSAS
- SCEF
- SCP
- NSSAAF
- ICSCF
- SCSCF
- DRA
- IMS_AS
- AANF
- 5G_DDNMF
- NSACF
- MFAF
- EASDF
- DCCF
- MB_SMF
- TSCTSF
- ADRF
- GBA_BSF
- CEF
- MB_UPF
- NSWOF
- PKMF
- MNPF
- SMS_GMSC
- SMS_IWMSC
- MBSF
- MBSTF
- PANF
- TNGF
- W_AGF
- TWIF
- TSN_AF
OperationSemantics:
type: string
enum:
- REQUEST_RESPONSE
- SUBSCRIBE_NOTIFY
SAP:
type: object
properties:
host:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/HostAddr'
port:
type: integer
NFServiceType:
type: string
enum:
- Namf_Communication
- Namf_EventExposure
- Namf_MT
- Namf_Location
- Nsmf_PDUSession
- Nsmf_EventExposure
- Others
TransportProtocol:
anyOf:
- type: string
enum:
- TCP
- type: string
SupportedPerfMetricGroup:
type: object
properties:
performanceMetrics:
type: array
items:
type: string
granularityPeriods:
type: array
items:
type: integer
minimum: 1
reportingMethods:
type: array
items:
type: string
enum:
- FILE_BASED_LOC_SET_BY_PRODUCER
- FILE_BASED_LOC_SET_BY_CONSUMER
- STREAM_BASED
reportingPeriods:
type: array
items:
type: integer
Loading
Loading full blame…