VNFIndicator.yaml 25.3 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.0-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.5.1
  url: https://www.etsi.org/deliver/etsi_gs/NFV-SOL/001_099/003/03.05.01_60/gs_NFV-SOL003v030501p.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/SOL002SOL003_params.yaml#/components/parameters/Accept
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/Authorization
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/filter
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/nextpage_opaque_marker
        - $ref: ../../components/SOL002SOL003_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/SOL002SOL003_params.yaml#/components/parameters/Accept
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/ContentType
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/Authorization
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/filter
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/nextpage_opaque_marker
        - $ref: ../../components/SOL002SOL003_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/SOL002SOL003_params.yaml#/components/parameters/Accept
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/ContentType
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/Authorization
        - $ref: ../../components/SOL002SOL003_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
161
162
163
164
  /subscriptions:
    parameters:
      - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/Accept
      - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/ContentType
      - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/Authorization
      - $ref: ../../components/SOL002SOL003_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
175
176
177
178
179
180
181
182
183
184
185
          #          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.
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/303
Gergely Csatari's avatar
Gergely Csatari committed
186
        400:
187
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
188
        401:
189
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
190
        403:
191
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
192
        404:
193
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
194
        405:
195
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
196
        406:
197
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
198
        422:
199
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
200
        500:
201
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
202
        503:
203
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
204
        504:
205
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
206

Gergely Csatari's avatar
Gergely Csatari committed
207
    get:
208
      description: |
209
210
        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
211
      parameters:
212
213
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/filter
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/nextpage_opaque_marker
Gergely Csatari's avatar
Gergely Csatari committed
214
215
      responses:
        200:
216
          $ref: '#/components/responses/Subscriptions.Get.200'
Gergely Csatari's avatar
Gergely Csatari committed
217
        400:
218
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
219
        401:
220
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
221
        403:
222
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
223
        404:
224
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
225
        405:
226
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
227
        406:
228
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
229
        422:
230
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
231
        500:
232
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
233
        503:
234
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
235
        504:
236
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
237

238
239
240
  ###############################################################################
  # Individual subscription                                                     #
  ###############################################################################
241
  /indicators/subscriptions/{subscriptionId}:
242
    #SOL003 location: 8.4.6
Gergely Csatari's avatar
Gergely Csatari committed
243
    parameters:
244
245
246
247
      - $ref: '#/components/parameters/SubscriptionId'
      - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/ContentType
      - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/Authorization
      - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/Version
Gergely Csatari's avatar
Gergely Csatari committed
248
    get:
249
      description: |
250
        The GET method reads an individual subscription. See clause 8.4.6.3.2.
Gergely Csatari's avatar
Gergely Csatari committed
251
      parameters:
252
        - $ref: ../../components/SOL002SOL003_params.yaml#/components/parameters/Accept
Gergely Csatari's avatar
Gergely Csatari committed
253
254
      responses:
        200:
255
          $ref: '#/components/responses/IndividualSubscription.Get.200'
Gergely Csatari's avatar
Gergely Csatari committed
256
        400:
257
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
258
        401:
259
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
260
        403:
261
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
262
        404:
263
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
264
        405:
265
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
266
        406:
267
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
268
        422:
269
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
270
        500:
271
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
272
        503:
273
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
274
        504:
275
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
276

Gergely Csatari's avatar
Gergely Csatari committed
277
    delete:
278
      description: |
279
        The DELETE method terminates an individual subscription. See clause 8.4.6.3.5.
Gergely Csatari's avatar
Gergely Csatari committed
280
281
      responses:
        204:
282
          $ref: '#/components/responses/IndividualSubscription.Delete.204'
Gergely Csatari's avatar
Gergely Csatari committed
283
        400:
284
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
285
        401:
286
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
287
        403:
288
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
289
        404:
290
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
291
        405:
292
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
293
        406:
294
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
295
        422:
296
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
297
        500:
298
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
299
        503:
300
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
301
        504:
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
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
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504

components:
  parameters:
    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
    
    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