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
  contact:
    name: NFV-SOL WG
Gergely Csatari's avatar
Gergely Csatari committed
15
  license:
16
    name: ETSI Forge copyright notice
Gergely Csatari's avatar
Gergely Csatari committed
17
    url: https://forge.etsi.org/etsi-forge-copyright-notice.txt
Giacomo Bernini's avatar
Giacomo Bernini committed
18
  version: "1.3.1-impl:etsi.org:ETSI_NFV_OpenAPI:1"
Gergely Csatari's avatar
Gergely Csatari committed
19

20
externalDocs:
21
22
  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
23

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


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

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

74
75
76
  ###############################################################################
  # VNF indicators related to a VNF instance                                    #
  ###############################################################################
77
  /indicators/{vnfInstanceId}:
78
    #SOL003 location: 8.4.3
Gergely Csatari's avatar
Gergely Csatari committed
79
    parameters:
80
      - $ref: '#/components/parameters/VnfInstanceId'
Gergely Csatari's avatar
Gergely Csatari committed
81
    get:
82
      description: |
83
        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
84
      parameters:
85
86
87
88
89
90
        - $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
91
92
      responses:
        200:
93
          $ref: '#/components/responses/VnfInstanceIndicators.Get.200'
Gergely Csatari's avatar
Gergely Csatari committed
94
        400:
95
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
96
        401:
97
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
98
        403:
99
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
100
        404:
101
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
102
        405:
103
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
104
        406:
105
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
106
        422:
107
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
108
        500:
109
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
110
        503:
111
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
112
        504:
113
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
114

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

155
156
157
  ###############################################################################
  # Subscriptions                                                              #
  ###############################################################################
158
159
160
161
162
163
  /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
164
    post:
165
      description: |
166
        The POST method creates a new subscription. See clause 8.4.5.3.1.
167
168
      requestBody:
        $ref: '#/components/requestBodies/VnfIndicatorSubscriptionRequest'
Gergely Csatari's avatar
Gergely Csatari committed
169
170
      responses:
        201:
171
          $ref: '#/components/responses/Subscriptions.Post.201'
172
        303:
173
174
175
176
177
178
179
180
181
182
183
184
          #          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
185
        400:
186
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/400
Gergely Csatari's avatar
Gergely Csatari committed
187
        401:
188
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/401
Gergely Csatari's avatar
Gergely Csatari committed
189
        403:
190
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/403
191
        404:
192
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/404
Gergely Csatari's avatar
Gergely Csatari committed
193
        405:
194
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/405
Gergely Csatari's avatar
Gergely Csatari committed
195
        406:
196
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/406
197
        422:
198
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/422
Gergely Csatari's avatar
Gergely Csatari committed
199
        500:
200
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/500
Gergely Csatari's avatar
Gergely Csatari committed
201
        503:
202
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/503
203
        504:
204
          $ref: ../../responses/SOL002SOL003_resp.yaml#/components/responses/504
205

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

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

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