VNFIndicator.yaml 28.6 KB
Newer Older
1
openapi: 3.0.2
Gergely Csatari's avatar
Gergely Csatari committed
2
3

info:
4
  title: SOL003 - VNF Indicator interface
5
  description: |
6
    SOL003 - VNF Indicator interface
7

8
    IMPORTANT: Please note that this file might be not aligned to the current
9
10
    version of the ETSI Group Specification it refers to. In case of
    discrepancies the published ETSI Group Specification takes precedence.
11

12
    Please report bugs to https://forge.etsi.org/rep/nfv/SOL002-SOL003/issues
13

14
15
  contact:
    name: NFV-SOL WG
Gergely Csatari's avatar
Gergely Csatari committed
16
  license:
17
    name: ETSI Forge copyright notice
Gergely Csatari's avatar
Gergely Csatari committed
18
    url: https://forge.etsi.org/etsi-forge-copyright-notice.txt
19
  version: "1.3.1-impl:etsi.org:ETSI_NFV_OpenAPI:1"
Gergely Csatari's avatar
Gergely Csatari committed
20

21
externalDocs:
22
23
  description: ETSI GS NFV-SOL 003 V3.6.1
  url: https://www.etsi.org/deliver/etsi_gs/NFV-SOL/001_099/003/03.06.01_60/gs_NFV-SOL003v030601p.pdf
24

25
26
27
servers:
  - url: http://127.0.0.1/vnfind/v1
  - url: https://127.0.0.1/vnfind/v1
Gergely Csatari's avatar
Gergely Csatari committed
28
29
30


paths:
31
32
33
  ###############################################################################
  # API Versions                                                                #
  ###############################################################################
34
35
  /api_versions:
    $ref: ../../endpoints/SOL002SOL003_endpoints.yaml#/endpoints/api-versions
36

37
38
39
  ###############################################################################
  # VNF indicators                                                              #
  ###############################################################################
40
  /indicators:
41
    #SOL003 location: 8.4.2
Gergely Csatari's avatar
Gergely Csatari committed
42
    get:
43
      description: |
44
        The GET method queries multiple VNF indicators. See clause 8.4.2.3.2.
Gergely Csatari's avatar
Gergely Csatari committed
45
      parameters:
46
47
48
49
50
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Accept
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Authorization
        - $ref: '#/components/parameters/filter_vnf_indicators'
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/nextpage_opaque_marker_vnfm
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Version
Gergely Csatari's avatar
Gergely Csatari committed
51
52
      responses:
        200:
53
          $ref: '#/components/responses/Indicators.Get.200'
Gergely Csatari's avatar
Gergely Csatari committed
54
        400:
55
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
56
        401:
57
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
58
        403:
59
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
60
        404:
61
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
62
        405:
63
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
64
        406:
65
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
66
        422:
67
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
68
        500:
69
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
70
        503:
71
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
72
        504:
73
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
74

75
76
77
  ###############################################################################
  # VNF indicators related to a VNF instance                                    #
  ###############################################################################
78
  /indicators/{vnfInstanceId}:
79
    #SOL003 location: 8.4.3
Gergely Csatari's avatar
Gergely Csatari committed
80
    parameters:
81
      - $ref: '#/components/parameters/VnfInstanceId'
Gergely Csatari's avatar
Gergely Csatari committed
82
    get:
83
      description: |
84
        The GET method queries multiple VNF indicators related to a VNF instance. See clause 8.4.3.3.2.
Gergely Csatari's avatar
Gergely Csatari committed
85
      parameters:
86
87
88
89
90
91
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Accept
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/ContentType
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Authorization
        - $ref: '#/components/parameters/filter_vnf_indicators_related_to_vnf_instance'
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/nextpage_opaque_marker_vnfm
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Version
Gergely Csatari's avatar
Gergely Csatari committed
92
93
      responses:
        200:
94
          $ref: '#/components/responses/VnfInstanceIndicators.Get.200'
Gergely Csatari's avatar
Gergely Csatari committed
95
        400:
96
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
97
        401:
98
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
99
        403:
100
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
101
        404:
102
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
103
        405:
104
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
105
        406:
106
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
107
        422:
108
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
109
        500:
110
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
111
        503:
112
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
113
        504:
114
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
115

116
117
118
  ###############################################################################
  # Individual VNF indicator                                                    #
  ###############################################################################
119
  /indicators/{vnfInstanceId}/{indicatorId}:
120
    #SOL003 location: 8.4.4
Gergely Csatari's avatar
Gergely Csatari committed
121
    parameters:
122
123
      - $ref: '#/components/parameters/IndicatorId'
      - $ref: '#/components/parameters/VnfInstanceId'
Gergely Csatari's avatar
Gergely Csatari committed
124
    get:
125
      description: |
126
        The GET method reads a VNF indicator. See clause 8.4.4.3.2.
Gergely Csatari's avatar
Gergely Csatari committed
127
      parameters:
128
129
130
131
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Accept
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/ContentType
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Authorization
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Version
Gergely Csatari's avatar
Gergely Csatari committed
132
133
      responses:
        200:
134
          $ref: '#/components/responses/VnfInstanceIndividualIndicator.Get.200'
Gergely Csatari's avatar
Gergely Csatari committed
135
        400:
136
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
137
        401:
138
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
139
        403:
140
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
141
        404:
142
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
143
        405:
144
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
145
        406:
146
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
147
        422:
148
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
149
        500:
150
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
151
        503:
152
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
153
        504:
154
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
155

156
157
158
  ###############################################################################
  # Subscriptions                                                              #
  ###############################################################################
159
160
  /subscriptions:
    parameters:
161
162
163
164
      - $ref: ../../components/SOL003_params.yaml#/components/parameters/Accept
      - $ref: ../../components/SOL003_params.yaml#/components/parameters/ContentType
      - $ref: ../../components/SOL003_params.yaml#/components/parameters/Authorization
      - $ref: ../../components/SOL003_params.yaml#/components/parameters/Version
Gergely Csatari's avatar
Gergely Csatari committed
165
    post:
166
      description: |
167
        The POST method creates a new subscription. See clause 8.4.5.3.1.
168
169
      requestBody:
        $ref: '#/components/requestBodies/VnfIndicatorSubscriptionRequest'
Gergely Csatari's avatar
Gergely Csatari committed
170
171
      responses:
        201:
172
          $ref: '#/components/responses/Subscriptions.Post.201'
173
        303:
174
          $ref: '#/components/responses/Subscriptions.Post.303'
Gergely Csatari's avatar
Gergely Csatari committed
175
        400:
176
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
177
        401:
178
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
179
        403:
180
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
181
        404:
182
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
183
        405:
184
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
185
        406:
186
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
187
        422:
188
          $ref: '#/components/responses/Subscriptions.Post.422'
Gergely Csatari's avatar
Gergely Csatari committed
189
        500:
190
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
191
        503:
192
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
193
        504:
194
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
195

Gergely Csatari's avatar
Gergely Csatari committed
196
    get:
197
      description: |
198
199
        The GET method queries the list of active subscriptions of the functional block that invokes the method.
        It can be used e.g. for resynchronization after error situations. See clause 8.4.5.3.2.
Gergely Csatari's avatar
Gergely Csatari committed
200
      parameters:
201
202
        - $ref: '#/components/parameters/filter_subscriptions'
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/nextpage_opaque_marker_vnfm
Gergely Csatari's avatar
Gergely Csatari committed
203
204
      responses:
        200:
205
          $ref: '#/components/responses/Subscriptions.Get.200'
Gergely Csatari's avatar
Gergely Csatari committed
206
        400:
207
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
208
        401:
209
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
210
        403:
211
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
212
        404:
213
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
214
        405:
215
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
216
        406:
217
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
218
        422:
219
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
220
        500:
221
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
222
        503:
223
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
224
        504:
225
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
226

227
228
229
  ###############################################################################
  # Individual subscription                                                     #
  ###############################################################################
230
  /indicators/subscriptions/{subscriptionId}:
231
    #SOL003 location: 8.4.6
Gergely Csatari's avatar
Gergely Csatari committed
232
    parameters:
233
      - $ref: '#/components/parameters/SubscriptionId'
234
235
236
      - $ref: ../../components/SOL003_params.yaml#/components/parameters/ContentType
      - $ref: ../../components/SOL003_params.yaml#/components/parameters/Authorization
      - $ref: ../../components/SOL003_params.yaml#/components/parameters/Version
Gergely Csatari's avatar
Gergely Csatari committed
237
    get:
238
      description: |
239
        The GET method reads an individual subscription. See clause 8.4.6.3.2.
Gergely Csatari's avatar
Gergely Csatari committed
240
      parameters:
241
        - $ref: ../../components/SOL003_params.yaml#/components/parameters/Accept
Gergely Csatari's avatar
Gergely Csatari committed
242
243
      responses:
        200:
244
          $ref: '#/components/responses/IndividualSubscription.Get.200'
Gergely Csatari's avatar
Gergely Csatari committed
245
        400:
246
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
247
        401:
248
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
249
        403:
250
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
251
        404:
252
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
253
        405:
254
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
255
        406:
256
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
257
        422:
258
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
259
        500:
260
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
261
        503:
262
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
263
        504:
264
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
265

Gergely Csatari's avatar
Gergely Csatari committed
266
    delete:
267
      description: |
268
        The DELETE method terminates an individual subscription. See clause 8.4.6.3.5.
Gergely Csatari's avatar
Gergely Csatari committed
269
270
      responses:
        204:
271
          $ref: '#/components/responses/IndividualSubscription.Delete.204'
Gergely Csatari's avatar
Gergely Csatari committed
272
        400:
273
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
274
        401:
275
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
276
        403:
277
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
278
        404:
279
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
280
        405:
281
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
282
        406:
283
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
284
        422:
285
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
286
        500:
287
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
288
        503:
289
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
290
        504:
291
292
293
294
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504

components:
  parameters:
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
    filter_vnf_indicators:
      name: filter
      description: >
        Attribute-based filtering expression according to clause 5.2 of ETSI
        GS NFV-SOL 013 [8].
        The VNFM shall support receiving this parameter as part of the URI query string.
        The NFVO may supply this parameter.
        All attribute names that appear in the VnfIndicator data type and in data types
        referenced from it shall be supported by the VNFM in the filter expression.
      in: query
      required: false
      schema:
        type: string

    filter_vnf_indicators_related_to_vnf_instance:
      name: filter
      description: >
        Attribute-based filtering expression according to clause 5.2 of ETSI
        GS NFV-SOL 013 [8].
        The VNFM shall support receiving this parameter as part of the URI query string.
        The NFVO may supply this parameter.
        All attribute names that appear in the VnfIndicator data type and in data types
        referenced from it shall be supported by the VNFM in the filter expression.
      in: query
      required: false
      schema:
        type: string

    filter_subscriptions:
      name: filter
      description: >
        Attribute-based filtering expression according to clause 5.2 of ETSI
        GS NFV-SOL 013 [8].
        The VNFM shall support receiving this parameter as part of the URI query string.
        The NFVO may supply this parameter.
        All attribute names that appear in the VnfIndicatorSubscription data type and in
        data types referenced from it shall be supported by the VNFM in the filter
        expression.
      in: query
      required: false
      schema:
        type: string

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
530
531
532
533
534
535
    VnfInstanceId:
      name: vnfInstanceId
      in: path
      description: |
        Identifier of the VNF instance to which the VNF indicator applies.
        This identifier can be retrieved from the resource referenced by the
        "Location" HTTP header in the response to a POST request creating a
        new "Individual VNF instance" resource. It can also be retrieved from the "id"
        attribute in the payload body of that response.
      required: true
      style: simple
      explode: false
      schema:
        type: string

    IndicatorId:
      name: indicatorId
      in: path
      description: |
        Identifier of the VNF indicator.
        This identifier can be retrieved from the resource referenced by the
        payload body in the response to a POST request creating a new "Individual VNF
        instance" resource.
      required: true
      style: simple
      explode: false
      schema:
        type: string

    SubscriptionId:
      name: subscriptionId
      in: path
      description: |
        Identifier of this subscription.
        This identifier can be retrieved from the resource referenced by the
        "Location" HTTP header in the response to a POST request creating a
        new "Individual subscription" resource. It can also be retrieved from the "id"
        attribute in the payload body of that response.
      required: true
      style: simple
      explode: false
      schema:
        type: string

  requestBodies:
    VnfIndicatorSubscriptionRequest:
      description: Details of the subscription to be created.
      content:
        application/json:
          schema:
            $ref: ../../definitions/SOL002SOL003VNFIndicator_def.yaml#/definitions/VnfIndicatorSubscriptionRequest
      required: true

  responses:
    Indicators.Get.200:
      description: |
        200 OK

        Shall be returned when information about zero or more VNF indicators has been queried successfully.
        The response body shall contain in an array the representations of all VNF indicators that match
        the attribute filter, i.e. zero or more representations of VNF indicators as defined in clause 8.5.2.2.
        If the "filter" URI parameter was supplied in the request, the data in the response body shall have
        been transformed according to the rules specified in clause 5.2.2 of ETSI GS NFV-SOL 013.
        If the VNFM supports alternative 2 (paging) according to clause 5.4.2.1 of ETSI GS NFV-SOL 013
        for this resource, inclusion of the Link HTTP header in this response shall follow the provisions
        in clause 5.4.2.3 of ETSI GS NFV-SOL 013.
      headers:
        WWW-Authenticate:
          description: |
            Challenge if the corresponding HTTP request has not provided authorization, or error details if the
            corresponding HTTP request has provided an invalid authorization token.
          style: simple
          explode: false
          schema:
            type: string
        Version:
          description: The used API version.
          style: simple
          explode: false
          schema:
            type: string
        Link:
          description: |
            Reference to other resources. Used for paging in the present document, see clause 4.7.2.1.
          style: simple
          explode: false
          schema:
            type: string
      content:
        application/json:
          schema:
            type: array
            items:
              $ref: ../../definitions/SOL002SOL003VNFIndicator_def.yaml#/definitions/VnfIndicator
    
    VnfInstanceIndicators.Get.200:
      description: |
        200 OK

        Shall be returned when information about zero or more VNF indicators has been queried successfully.
        The response body shall contain in an array the representations of all VNF indicators that are related
        to the particular VNF instance and that match the attribute filter, i.e. zero or more representations
        of VNF indicators as defined in clause 8.5.2.2.
        If the "filter" URI parameter was supplied in the request, the data in the response body shall have been
        transformed according to the rules specified in clause 5.2.2 of ETSI GS NFV-SOL 013.
        If the VNFM supports alternative 2 (paging) according to clause 5.4.2.1 of ETSI GS NFV-SOL 013
        for this resource, inclusion of the Link HTTP header in this response shall follow the provisions
        in clause 5.4.2.3 of ETSI GS NFV-SOL 013.
      headers:
        WWW-Authenticate:
          description: |
            Challenge if the corresponding HTTP request has not provided authorization, or error details if the
            corresponding HTTP request has provided an invalid authorization token.
          style: simple
          explode: false
          schema:
            type: string
        Version:
          description: The used API version.
          style: simple
          explode: false
          schema:
            type: string
        Link:
          description: |
            Reference to other resources. Used for paging in the present document, see clause 4.7.2.1.
          style: simple
          explode: false
          schema:
            type: string
      content:
        application/json:
          schema:
            type: array
            items:
              $ref: ../../definitions/SOL002SOL003VNFIndicator_def.yaml#/definitions/VnfIndicator
    
    VnfInstanceIndividualIndicator.Get.200:
      description: |
        200 OK
        Shall be returned when the VNF indicator has been read successfully.
        The response body shall contain the representation of the VNF indicator.
      headers:
        WWW-Authenticate:
          description: |
            Challenge if the corresponding HTTP request has not provided authorization, or error details if the
            corresponding HTTP request has provided an invalid authorization token.
          style: simple
          explode: false
          schema:
            type: string
        Version:
          description: The used API version.
          style: simple
          explode: false
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: ../../definitions/SOL002SOL003VNFIndicator_def.yaml#/definitions/VnfIndicator
    
    Subscriptions.Post.201:
      description: |
        201 CREATED

        Shall be returned when the subscription has been created successfully.
        The response body shall contain a representation of the created "Individual subscription" resource.
        The HTTP response shall include a "Location" HTTP header that points to the created resource.
      headers:
        Location:
          description: |
            The resource URI of the created subscription resource.
          style: simple
          explode: false
          schema:
            type: string
            format: url
        WWW-Authenticate:
          description: |
            Challenge if the corresponding HTTP request has not provided authorization, or error details if the
            corresponding HTTP request has provided an invalid authorization token.
          style: simple
          explode: false
          schema:
            type: string
        Version:
          description: The used API version.
          style: simple
          explode: false
          schema:
            type: string
      content:
        application/json:
          schema:
            type: array
            items:
              $ref: ../../definitions/SOL002SOL003VNFIndicator_def.yaml#/definitions/VnfIndicatorSubscription
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610

    Subscriptions.Post.303:
      description: |
        303 See Other

        Shall be returned when a subscription with
        the same callback URI and the same filter
        already exists and the policy of the VNFM
        is to not create redundant subscriptions.
        The HTTP response shall include a
        "Location" HTTP header that contains the
        resource URI of the existing "Individual
        subscription" resource.
        The response body shall be empty
      headers:
        Location:
          description: |
            The resource URI of the created subscription resource.
          style: simple
          explode: false
          schema:
            type: string
            format: url
        WWW-Authenticate:
          description: |
            Challenge if the corresponding HTTP request has not provided authorization, or error details if the
            corresponding HTTP request has provided an invalid authorization token.
          style: simple
          explode: false
          schema:
            type: string
        Version:
          description: The used API version.
          style: simple
          explode: false
          schema:
            type: string

    Subscriptions.Post.422:
      description: |
        422 Unprocessable Entity

        Shall be returned when a subscription with
        the same callback URI and the same filter
        already exists and the policy of the VNFM
        is to not create redundant subscriptions.
        The HTTP response shall include a
        "Location" HTTP header that contains the
        resource URI of the existing "Individual
        subscription" resource.
        The response body shall be empty
      headers:
        WWW-Authenticate:
          description: |
            Challenge if the corresponding HTTP request has not provided authorization, or error details if the
            corresponding HTTP request has provided an invalid authorization token.
          style: simple
          explode: false
          schema:
            type: string
        Version:
          description: The used API version.
          style: simple
          explode: false
          schema:
            type: string
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
            maximum: 1
            minimum: 1
      content:
        application/json:
          schema:
Giacomo Bernini's avatar
fix    
Giacomo Bernini committed
611
            $ref: "../../definitions/SOL002SOL003_def.yaml#/definitions/ProblemDetails"
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
    Subscriptions.Get.200:
      description: |
        200 OK

        Shall be returned when the list of subscriptions has been queried successfully.
        The response body shall contain in an array the representations of all active
        subscriptions of the functional block that invokes the method which match the attribute filter,
        i.e. zero or more representations of VNF indicator subscriptions as defined in clause 8.5.2.4.
        If the "filter" URI parameter was supplied in the request, the data in the response body shall
        have been transformed according to the rules specified in clause 5.2.2 of ETSI GS NFV-SOL 013.
        If the VNFM supports alternative 2 (paging) according to clause 5.4.2.1 of ETSI GS NFV-SOL 013
        for this resource, inclusion of the Link HTTP header in this response shall follow the provisions
        in clause 5.4.2.3 of ETSI GS NFV-SOL 013.
      headers:
        Location:
          description: |
            The resource URI of the created subscription resource.
          style: simple
          explode: false
          schema:
            type: string
            format: url
        WWW-Authenticate:
          description: |
            Challenge if the corresponding HTTP request has not provided authorization, or error details if the
            corresponding HTTP request has provided an invalid authorization token.
          style: simple
          explode: false
          schema:
            type: string
        Version:
          description: The used API version.
          style: simple
          explode: false
          schema:
            type: string
        Link:
          description: |
            Reference to other resources. Used for paging in the present document, see clause 4.7.2.1.
          style: simple
          explode: false
          schema:
            type: string
      content:
        application/json:
          schema:
            type: array
            items:
              $ref: ../../definitions/SOL002SOL003VNFIndicator_def.yaml#/definitions/VnfIndicatorSubscription
    
    IndividualSubscription.Get.200:
      description: |
        200 OK

        Shall be returned when information about an individual subscription has been read successfully.
        The response body shall contain a representation of the "Individual subscription" resource.
      headers:
        WWW-Authenticate:
          description: |
            Challenge if the corresponding HTTP request has not provided authorization, or error details if the
            corresponding HTTP request has provided an invalid authorization token.
          style: simple
          explode: false
          schema:
            type: string
        Version:
          description: The used API version.
          style: simple
          explode: false
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: ../../definitions/SOL002SOL003VNFIndicator_def.yaml#/definitions/VnfIndicatorSubscription
    
    IndividualSubscription.Delete.204:
      description: |
        204 NO CONTENT

        Shall be returned when the "Individual subscription" resource has been deleted successfully.
        The response body shall be empty.
      headers:
        WWW-Authenticate:
          description: |
            Challenge if the corresponding HTTP request has not provided authorization, or error details if the
            corresponding HTTP request has provided an invalid authorization token.
          style: simple
          explode: false
          schema:
            type: string
        Version:
          description: The used API version.
          style: simple
          explode: false
          schema:
            type: string