NFVManoConfigurationAndInformationManagement.yaml 154 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
openapi: 3.0.2
info:
  version: 1.0.0-impl:etsi.org:ETSI_NFV_OpenAPI:1
  title: SOL009 - NFV-MANO Configuration and Information Management Interface
  description: >
    SOL009 - NFV-MANO Configuration and Information Management Interface

    IMPORTANT: Please note that this file might be not aligned to the current
    version of the ETSI Group Specification it refers to and has not been
    approved by the ETSI NFV ISG. In case of discrepancies the published ETSI
    Group Specification takes precedence.
    Please report bugs to https://forge.etsi.org/bugzilla/buglist.cgi?component=Nfv-Openapis
  license:
    name: ETSI Forge copyright notice
    url: https://forge.etsi.org/etsi-forge-copyright-notice.txt
  contact:
    name: NFV-SOL WG
externalDocs:
Giacomo Bernini's avatar
Giacomo Bernini committed
19
20
  description: ETSI GS NFV-SOL 009 V3.3.1
  url: https://www.etsi.org/deliver/etsi_gs/NFV-SOL/001_099/009/03.03.01_60/gs_NFV-SOL009v030301p.pdf
21
22
23
24
25
26
27
28
29
30

servers:
  - url: http://0.0.0.0/nfvmanocim/v1
    description: >
      API HTTP Server
  - url: https://0.0.0.0/nfvmanocim/v1
    description: >
      API HTTPS Server

paths:
31
32
  /api_versions:
    $ref: ../endpoints/SOL009_endpoints.yaml#/endpoints/api_versions
33
34
35
36
37
38
39
40
41
42

  /mano_entity:
    get:
      description: >
        Retrives information about an NFV-MANO functional entity 
        by reading the NFV-MANO entity resource.
        This method shall follow the provisions specified in the 
        tables 5.5.3.3.2-1 and 5.5.3.3.2-2 for URI query parameters, 
        request and response data structures, and response codes.       
      parameters:
43
44
45
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
46
47
48
49
      responses:
        "200":
          $ref: "#/components/responses/mano_entity.get.200"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
50
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
51
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
52
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
53
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
54
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
55
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
56
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
57
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
58
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
59
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
60
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
61
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
62
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
63
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
64
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
65
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
66
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
67
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
68
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
69
70
71
72
73
74
75
76
77
78
    patch:
      description: >
        Modifies the NFV-MANO entity resource.
        Changes to the various configuration and information 
        attributes are applied to the NFV-MANO functional entity, 
        and are reflected in the representation of this resource.
        This method shall follow the provisions specified in the 
        tables 5.5.3.3.4-1 and 5.5.3.3.4-2 for URI query parameters, 
        request and response data structures, and response codes.
      parameters:
79
80
81
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
82
83
84
85
86
87
88
89
90
91
      requestBody:
        $ref: "#/components/requestBodies/ModifyManoEntityRequest"
      responses:
        "200": 
          $ref: "#/components/responses/mano_entity.patch.200"
        "409": 
          $ref: "#/components/responses/mano_entity.patch.409"
        "412":
          $ref: "#/components/responses/mano_entity.patch.412"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
92
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
93
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
94
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
95
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
96
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
97
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
98
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
99
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
100
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
101
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
102
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
103
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
104
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
105
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
106
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
107
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
108
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
109
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
110
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
111
112
113
114
115
116
117
118
119
120
121

  /mano_entity/change_state:
    post:
      description: >
        Requests to change the state of the NFV-MANO functional 
        entity application.

        This method shall follow the provisions specified in the tables 
        5.5.7.3.1-1 and 5.5.7.3.1-2 for URI query parameters, request and 
        response data structures, and response codes.
      parameters:
122
123
124
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
125
126
127
128
129
130
131
132
      requestBody:
        $ref: "#/components/requestBodies/ChangeManoEntityStateRequest"
      responses:
        "202": 
          $ref: "#/components/responses/mano_entity-change_state.post.202"
        "409": 
          $ref: "#/components/responses/mano_entity-change_state.post.409"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
133
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
134
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
135
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
136
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
137
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
138
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
139
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
140
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
141
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
142
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
143
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
144
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
145
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
146
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
147
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
148
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
149
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
150
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
151
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
152
153
154
155
156
157
158
159
160
161
162

  /mano_entity/mano_interfaces:
    get:
      description: >
        Queries information about multiple NFV-MANO service interfaces of 
        the NFV-MANO functional entity.
        This method shall follow the provisions specified in the tables 
        5.5.10.3.2-1 and 5.5.10.3.2-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
        - $ref: "#/components/parameters/filter.ManoServiceInterface"
163
164
165
        - $ref: "../components/SOL009_params.yaml#/components/parameters/all_fields"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/fields"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/exclude_fields"
166
        - $ref: "#/components/parameters/exclude_default.ManoServiceInterface"
167
168
169
170
        - $ref: "../components/SOL009_params.yaml#/components/parameters/nextpage_opaque_marker"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
171
172
173
174
175
176
      responses:
        "200": 
          $ref: "#/components/responses/mano_entity-mano_interfaces.get.200"
        "400": 
          $ref: "#/components/responses/mano_entity-mano_interfaces.get.400"
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
177
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
178
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
179
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
180
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
181
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
182
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
183
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
184
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
185
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
186
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
187
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
188
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
189
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
190
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
191
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
192
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
193
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
194
  /mano_entity/mano_interfaces/{manoServiceInterfaceId}:
Giacomo Bernini's avatar
Giacomo Bernini committed
195
196
    parameters:
      - $ref: "#/components/parameters/manoServiceInterfaceId"
197
198
199
200
201
202
203
204
205
206
    get:
      description: >
        retrieves information about an NFV-MANO service interface of the 
        producer NFV-MANO functional entity by reading an "Individual 
        NFV-MANO service interface" resource.

        This method shall follow the provisions specified in the tables 
        5.5.11.3.2-1 and 5.5.11.3.2-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
207
208
209
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
210
211
212
213
      responses:
        "200": 
          $ref: "#/components/responses/mano_entity-mano_interface.get.200"
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
214
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
215
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
216
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
217
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
218
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
219
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
220
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
221
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
222
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
223
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
224
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
225
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
226
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
227
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
228
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
229
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
230
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
231
232
233
234
235
236
237
238
239
240
241
242
243
    patch:
      description: >
        Modifies an "Individual NFV-MANO service interface" resource.

        Changes to the configurable parameters of the corresponding 
        NFV-MANO service interface are applied to the information managed 
        by the producer NFV-MANO functional entity and reflected in the 
        representation of this resource.

        This method shall follow the provisions specified in the tables 
        5.5.11.3.4-1 and 5.5.11.3.4-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
244
245
246
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
247
248
249
250
251
252
253
254
255
256
      requestBody:
        $ref: "#/components/requestBodies/ModifyManoEnityInterfaceRequest"
      responses:
        "200": 
          $ref: "#/components/responses/mano_entity-mano_interface.patch.200"
        "409": 
          $ref: "#/components/responses/mano_entity-mano_interface.patch.409"
        "412": 
          $ref: "#/components/responses/mano_entity-mano_interface.patch.412"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
257
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
258
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
259
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
260
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
261
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
262
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
263
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
264
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
265
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
266
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
267
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
268
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
269
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
270
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
271
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
272
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
273
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
274
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
275
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
276
277

  /mano_entity/mano_interfaces/{manoServiceInterfaceId}/change_state:
Giacomo Bernini's avatar
Giacomo Bernini committed
278
279
    parameters:
      - $ref: "#/components/parameters/manoServiceInterfaceId"
280
281
282
283
284
285
286
287
288
    post:
      description: >
        Requests to change the state of the NFV-MANO service interface 
        produced by the NFV-MANO functional entity.

        This method shall follow the provisions specified in the tables 
        5.5.12.3.1-1 and 5.5.12.3.1-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
289
290
291
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
292
293
294
295
296
297
298
299
      requestBody:
        $ref: "#/components/requestBodies/ChangeManoEntityInterfaceStateRequest"
      responses:
        "202": 
          $ref: "#/components/responses/mano_entity-mano_interface-change_state.post.202"
        "409": 
          $ref: "#/components/responses/mano_entity-mano_interface-change_state.post.409"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
300
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
301
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
302
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
303
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
304
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
305
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
306
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
307
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
308
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
309
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
310
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
311
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
312
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
313
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
314
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
315
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
316
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
317
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
318
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
319
320
321
322
323
324
325
326
327
328

  /subscriptions:
    post:
      description: >
        Creates a new subscription.

        This method shall follow the provisions specified in the tables 
        5.5.4.3.1-1 and 5.5.4.3.1-2 for URI query parameters, request and 
        response data structures, and response codes.
      parameters:
329
330
331
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
332
      requestBody:
333
        $ref: "#/components/requestBodies/CimSubscriptionRequest"
334
335
336
337
338
339
      responses:
        "201": 
          $ref: "#/components/responses/subscriptions.post.201"
        "303": 
          $ref: "#/components/responses/subscriptions.post.303"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
340
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
341
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
342
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
343
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
344
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
345
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
346
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
347
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
348
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
349
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
350
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
351
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
352
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
353
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
354
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
355
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
356
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
357
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
358
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
359
360
361
362
363
364
365
366
367
368
369
    get:
      description: >
        queries the list of active subscriptions of the API consumer that 
        invokes the method. It can be used, e.g., for resynchronization 
        after error situations.

        This method shall follow the provisions specified in the tables 
        5.5.4.3.2-1 and 5.5.4.3.2-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
        - $ref: "#/components/parameters/filter.CimSubscription"
370
371
372
373
        - $ref: "../components/SOL009_params.yaml#/components/parameters/nextpage_opaque_marker"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
374
375
376
377
378
379
      responses:
        "200": 
          $ref: "#/components/responses/subscriptions.get.200"
        "400": 
          $ref: "#/components/responses/subscriptions.get.400"
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
380
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
381
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
382
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
383
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
384
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
385
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
386
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
387
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
388
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
389
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
390
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
391
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
392
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
393
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
394
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
395
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
396
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
397
398

  /subscriptions/{subscriptionId}:
Giacomo Bernini's avatar
Giacomo Bernini committed
399
400
    parameters:
      - $ref: "#/components/parameters/subscriptionId"
401
402
403
404
405
406
407
408
409
    get:
      description: >
        Retrieves information about a subscription by reading an "Individual 
        subscription" resource.

        This method shall follow the provisions specified in the tables 
        5.5.5.3.2-1 and 5.5.5.3.2-2 for URI query parameters, request and 
        response data structures, and response codes.
      parameters:
410
411
412
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
413
414
415
416
      responses:
        "200": 
          $ref: "#/components/responses/subscription.get.200"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
417
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
418
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
419
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
420
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
421
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
422
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
423
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
424
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
425
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
426
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
427
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
428
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
429
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
430
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
431
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
432
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
433
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
434
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
435
          $ref: ../components/SOL009_resp.yaml#/components/responses/504              
436
437
438
439
440
441
442
443
    delete:
      description: >
        Terminates an individual subscription.

        This method shall follow the provisions specified in the tables 
        5.5.5.3.5-1 and 5.5.5.3.5-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
444
445
446
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
447
448
449
450
      responses:
        "204": 
          $ref: "#/components/responses/subscription.delete.204"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
451
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
452
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
453
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
454
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
455
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
456
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
457
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
458
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
459
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
460
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
461
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
462
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
463
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
464
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
465
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
466
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
467
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
468
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
469
          $ref: ../components/SOL009_resp.yaml#/components/responses/504  
470
471
472
473
474
475
476
477
478
479
480
481

  /change_state_ops:
    get:
      description: >
        The API consumer can use the GET method to query status information 
        about multiple change state operation occurrences.

        This method shall follow the provisions specified in the tables 
        5.5.8.3.2-1 and 5.5.8.3.2-2 for URI query parameters, request and 
        response data structures, and response codes.
      parameters:
        - $ref: "#/components/parameters/filter.ChangeStateOpOcc"
482
483
484
        - $ref: "../components/SOL009_params.yaml#/components/parameters/all_fields"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/fields"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/exclude_fields"
485
        - $ref: "#/components/parameters/exclude_default.ChangeStateOpOcc"
486
487
488
489
        - $ref: "../components/SOL009_params.yaml#/components/parameters/nextpage_opaque_marker"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
490
491
492
493
494
495
      responses:
        "200": 
          $ref: "#/components/responses/change_state_ops.get.200"
        "400": 
          $ref: "#/components/responses/change_state_ops.get.400"
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
496
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
497
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
498
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
499
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
500
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
501
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
502
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
503
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
504
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
505
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
506
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
507
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
508
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
509
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
510
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
511
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
512
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
513
514

  /change_state_ops/{changeStateOpOccId}:
Giacomo Bernini's avatar
Giacomo Bernini committed
515
516
    parameters:
      - $ref: "#/components/parameters/changeStateOpOccId"
517
518
519
520
521
522
523
524
525
526
    get:
      description: >
        The API consumer can use the GET method to retrieve status 
        information about a change state operation occurrence by reading 
        an "Individual change state operation occurrence" resource.

        This method shall follow the provisions specified in the tables 
        5.5.9.3.2-1 and 5.5.9.3.2-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
527
528
529
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
530
531
532
533
      responses:
        "200": 
          $ref: "#/components/responses/change_state_op.get.200"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
534
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
535
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
536
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
537
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
538
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
539
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
540
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
541
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
542
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
543
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
544
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
545
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
546
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
547
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
548
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
549
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
550
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
551
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
552
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
553
554
555
556
557
558
559
560
561
562
563
564

  /peer_entities:
    post:
      description: >
        Creates in the producer NFV-MANO functional entity a new peer 
        entity resource which contains configuration and information 
        with regards to the peer functional entity.

        This method shall follow the provisions specified in the tables 
        5.5.13.3.1-1 and 5.5.13.3.1-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
565
566
567
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
568
569
570
571
572
573
      requestBody:
        $ref: "#/components/requestBodies/CreatePeerEntityRequest"
      responses:
        "201": 
          $ref: "#/components/responses/peer_entities.post.201"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
574
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
575
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
576
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
577
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
578
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
579
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
580
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
581
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
582
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
583
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
584
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
585
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
586
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
587
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
588
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
589
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
590
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
591
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
592
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
593
594
595
596
597
598
599
600
601
602
    get:
      description: >
        Queries information and configuration in the producer NFV-MANO 
        functional entity with regards to multiple peer entities.

        This method shall follow the provisions specified in the tables 
        5.5.13.3.2-1 and 5.5.13.3.2-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
        - $ref: "#/components/parameters/filter.PeerEntity"
603
604
605
        - $ref: "../components/SOL009_params.yaml#/components/parameters/all_fields"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/fields"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/exclude_fields"
606
        - $ref: "#/components/parameters/exclude_default.PeerEntity"
607
608
609
610
        - $ref: "../components/SOL009_params.yaml#/components/parameters/nextpage_opaque_marker"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
611
612
613
614
615
616
      responses:
        "200": 
          $ref: "#/components/responses/peer_entities.get.200"
        "400": 
          $ref: "#/components/responses/peer_entities.get.400"
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
617
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
618
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
619
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
620
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
621
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
622
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
623
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
624
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
625
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
626
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
627
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
628
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
629
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
630
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
631
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
632
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
633
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
634
635
  
  /peer_entities/{peerEntityId}:
Giacomo Bernini's avatar
Giacomo Bernini committed
636
637
    parameters:
      - $ref: "#/components/parameters/peerEntityId"
638
639
640
641
642
643
644
645
646
647
    get:
      description: >
        Retrieves information and configuration hold in the producer NFV-MANO 
        functional entity with regards to a peer entity by reading an individual 
        peer entity resource.

        This method shall follow the provisions specified in the tables 
        5.5.14.3.2-1 and 5.5.14.3.2-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
648
649
650
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
651
652
653
654
      responses:
        "200": 
          $ref: "#/components/responses/peer_entitie.get.200"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
655
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
656
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
657
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
658
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
659
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
660
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
661
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
662
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
663
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
664
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
665
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
666
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
667
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
668
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
669
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
670
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
671
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
672
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
673
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
    patch:
      description: >
        Modifies configuration and information of the producer NFV-MANO 
        functional entity with regards to a peer functional entity by 
        updating the corresponding "Individual peer entity" resource.

        Changes to the configurable parameters of the corresponding peer 
        entity are applied to the information managed by the producer 
        NFV-MANO functional entity and reflected in the representation 
        of this resource.

        This method shall follow the provisions specified in the tables 
        5.5.14.3.4-1 and 5.5.14.3.4-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
689
690
691
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
692
693
694
695
696
697
698
699
700
701
      requestBody:
        $ref: "#/components/requestBodies/ModifyPeerEntityRequest"
      responses:
        "200": 
          $ref: "#/components/responses/peer_entitie.patch.200"
        "409": 
          $ref: "#/components/responses/peer_entitie.patch.409"
        "412": 
          $ref: "#/components/responses/peer_entitie.patch.412"
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
702
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
703
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
704
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
705
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
706
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
707
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
708
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
709
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
710
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
711
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
712
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
713
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
714
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
715
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
716
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
717
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
718
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
    delete:
      description: >
        Ddeletes an individual peer entity resource. By deleting such 
        a resource in the producer NFV-MANO functional entity representing 
        a peer NFV-MANO entity, the configuration and information with 
        regards to such peer entity is deleted. Consequently, the peering 
        relationship between the producer NFV-MANO functional entity and 
        the peer entity is terminated, i.e., the producer NFV-MANO functional 
        entity does not have the necessary information to communicate/interact 
        with the peer entity.

        This method shall follow the provisions specified in the tables 
        5.5.14.3.5-1 and 5.5.14.3.5-2 for URI query parameters, request 
        and response data structures, and response codes.
      parameters:
734
735
736
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
737
738
739
740
741
742
743
744
      responses:
        "204": 
          $ref: "#/components/responses/peer_entitie.delete.204"
        "409": 
          $ref: "#/components/responses/peer_entitie.delete.409"
        "412": 
          $ref: "#/components/responses/peer_entitie.delete.412"
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
745
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
746
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
747
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
748
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
749
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
750
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
751
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
752
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
753
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
754
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
755
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
756
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
757
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
758
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
759
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
760
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
761
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785

components:
  schemas:   
    ManoEntity:
      description: >
        This type represents an NFV-MANO functional entity.
      type: object
      required:
        - id
        - type
        - name
        - description
        - provider
        - softwareVersion
        - manoConfigurableParams
        - manoApplicationState
        - _links
      properties:
        id:
          description: >
            Identifier of the NFV-MANO functional entity. The identifier shall be set during 
            the initial deployment of the NFV-MANO functional entity and its value allocated 
            based on network operator policies. The value of this identifier shall be unique 
            at least in the scope of the NFV-MANO deployment.
786
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Identifier"
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
        type:
          description: >
            Type of NFV-MANO functional entity.
          $ref: "#/components/schemas/ManoEntityEnumType"
        name:
          description: >
            Human-readable name of the NFV-MANO functional entity.
            
            This attribute can be modified with the PATCH method.
          type: string
        description:
          description: >
            Human-readable description of the NFV-MANO functional entity.
            
            This attribute can be modified with the PATCH method.
          type: string
        provider:
          description: >
            Information about the provider of the NFV-MANO functional entity. 
            It typically includes the name of the provider.
          type: string
        softwareVersion:
          description: >
            The version of the software of the NFV-MANO functional entity.
811
            $ref: "../components/SOL009_schemas.yaml#/components/schemas/Version"
812
813
814
815
816
817
818
819
820
821
        manoEntityComponents:
          description: >
            The deployed NFV-MANO functional entity components which realize the 
            NFV-MANO functional entity. 

            NOTE:	It is optional for the API producer to support the "manoEntityComponents" 
            attribute.
          type: array
          items: 
            $ref: "#/components/schemas/ManoEntityComponent"
822
            minItems: 0
823
824
825
826
827
828
829
        manoServices:
          description: >
            Information about the NFV-MANO services provided by the NFV-MANO 
            functional entity.
          type: array
          items: 
            $ref: "#/components/schemas/ManoService"
830
            minItems: 1
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
        manoConfigurableParams:
          description: >
            Information and current values of the configurable parameters.

            This attribute can be modified with the PATCH method.
          $ref: "#/components/schemas/ManoConfigurableParams"
        manoApplicationState:
          description: >
            Information and current values of the NFV-MANO functional entity’s application state. 
          type: object
          required:
            - operationalState
            - administrativeState
            - usageState
          properties:
            operationalState:
              description: >
                The operational state of the NFV-MANO functional entity application.
Giacomo Bernini's avatar
Fix    
Giacomo Bernini committed
849
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/OperationalStateEnumType"
850
851
852
            administrativeState:
              description: >
                The administrative state of the NFV-MANO functional entity application.
Giacomo Bernini's avatar
Fix    
Giacomo Bernini committed
853
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/AdministrativeStateEnumType"
854
855
856
857
858
859
860
861
862
863
864
865
866
867
            usageState:
              description: >
                The usage state of the NFV-MANO functional entity application.
              $ref: "#/components/schemas/UsageStateEnumType"
        nfvoSpecificInfo:
          description: >
            The information specific to an NFVO entity.

            NOTE: It shall be present when "type" attribute is "NFVO", and it 
            shall be absent in any other case.

            NOTE: The information about the NFV-MANO services offered by a 
            specific type of NFV-MANO functional entity is specified by the 
            manoServices attribute.
868
          $ref: "#/components/schemas/NfvoSpecificInfo"
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
        vnfmSpecificInfo:
          description: >
            The information specific to a VNFM entity.

            NOTE: It shall be present when "type" attribute is "VNFM", and 
            it shall be absent in any other case.
            NOTE: The information about the NFV-MANO services offered by a 
            specific type of NFV-MANO functional entity is specified by the 
            manoServices attribute.
          $ref: "#/components/schemas/VnfmSpecificInfo"
        vimSpecificInfo:
          description: >
            The information specific to an VIM entity.

            NOTE: It shall be present when "type" attribute is "VIM", and 
            it shall be absent in any other case.
            NOTE: The information about the NFV-MANO services offered by a 
            specific type of NFV-MANO functional entity is specified by the 
            manoServices attribute.
          $ref: "#/components/schemas/VimSpecificInfo"
        _links:
          description: >
            Links to resources related to this resource.
          type: object
          required:
            - self
            - manoServiceInterfaces
            - peerEntities
            - changeState
            - changeStateOpOccs
          properties:
            self:
              description: URI of this resource.
902
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Link"
903
904
            manoServiceInterfaces:
              description: Link to the "NFV-MANO service interfaces" resource.
905
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Link"
906
907
            peerEntities:
              description: Link to "Peer entities" resource.
908
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Link"
909
910
            changeState:
              description: Link to the "Change state" task resource.
911
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Link"
912
913
            changeStateOpOccs:
              description: Link to the "Change state operation occurrences" resource.
914
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Link"        
915
916
917

    ManoConfigModificationRequest:
      description: >
918
919
920
921
922
923
924
925
926
927
928
929
930
931
        This type represents attribute modifications for configuration parameters 
        of an NFV-MANO functional entity. 
      type: object
      properties:
        name:
          description: >
            New value of the "name" attribute in "ManoEntity".
          type: string
        description:
          description: >
            New value of the "description" attribute in "ManoEntity".
          type: string
        clockSyncs:
          description: >
932
933
934
935
936
            Modifications of the "clockSyncs" attribute in the "ManoEntityConfigurableParams".
            If present, these modifications shall be applied according to the rules of JSON Merge PATCH
            (see IETF RFC 7396).
          type: object
          additionalProperties:
937
938
939
940
941
            $ref: "#/components/schemas/ClockSyncInfo"
        defaultLogCompileBySizeValue:
          description: >
            New value of the "defaultLogCompileBySizeValue" attribute in the 
            "ManoEntityConfigurableParams".
942
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/UnsignedInt"
943
944
945
946
        defaultLogCompileByTimerValue:
          description: >
            New value of the "defaultLogCompileByTimerValue" attribute in the 
            "ManoEntityConfigurableParams".
947
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/UnsignedInt"
948
949
950
951
952
953
954
955
956
957
958
        manoServiceModifications:
          description: >
            New content of certain entries in the "manoServices" attribute array 
            in the "ManoEntity", as defined below this table.
          type: array
          items:
            type: object
            properties:
              id:
                description: >
                  Identifier of the NFV-MANO service to modify.
959
                $ref: "../components/SOL009_schemas.yaml#/components/schemas/IdentifierInManoEntity"
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
              name:
                description: >
                  New value for the "name" attribute in the "ManoService". 
                  
                  NOTE:	At least one of these attributes shall be provided if requesting 
                  a modification of the NFV-MANO service identified by "id".
                type: string
              description:
                description: >
                  New value for the "description" attribute in the "ManoService".
                  
                  NOTE:	At least one of these attributes shall be provided if requesting 
                  a modification of the NFV-MANO service identified by "id".
                type: string
            required:
              - id
976
977
978

    ManoConfigModifications:
      description: >
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
        This type represents attribute modifications that were performed on the 
        "NFV-MANO entity" resource of the producer NFV-MANO functional entity. 
        The attributes that can be included consist of those requested to be 
        modified explicitly in the "ManoConfigModificationRequest" data structure. 
      type: object
      properties:
        name: 
          description: >
            If present, this attribute signals modifications of the "name" 
            attribute in "ManoEntity", as defined in clause 5.6.2.3
          type: string
        description: 
          description: >
            If present, this attribute signals modifications of the "description" 
            attribute in "ManoEntity", as defined in clause 5.6.2.3.
          type: string
995
        clockSyncs:
996
          description: >
997
998
999
1000
            If present, this attribute signals modifications of the "clockSyncs" attribute in
            "ManoEntityConfigurableParams", as defined in clause 5.6.2.3.
          type: object
          additionalProperties:
For faster browsing, not all history is shown. View entire blame