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

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

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

paths:
  /api_versions:
    $ref: ../endpoints/SOL009_endpoints.yaml#/endpoints/api_versions
    
  /pm_jobs:
    post:
      description: >
        Creates a PM job.

        This method shall follow the provisions specified in the tables 
        6.5.3.3.1-1 and 6.5.3.3.1-2 for URI query parameters, request and 
        response data structures, and response codes.
      parameters:
43
44
45
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
46
47
48
49
50
51
      requestBody:
        $ref: "#/components/requestBodies/CreatePMJobRequest"
      responses:
        "201": 
          $ref: "#/components/responses/pm_jobs.post.201"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
52
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
53
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
54
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
55
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
56
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
57
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
58
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
59
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
60
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
61
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
62
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
63
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
64
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
65
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
66
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
67
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
68
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
69
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
70
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
71
72
73
74
75
    get:
      description: >
        The client can use this method to retrieve information about PM jobs.
      parameters:
        - $ref: "#/components/parameters/filter.PmJob"
76
77
78
        - $ref: "../components/SOL009_params.yaml#/components/parameters/all_fields"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/fields"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/exclude_fields"
79
        - $ref: "#/components/parameters/exclude_default.PmJob"
80
81
82
83
        - $ref: "../components/SOL009_params.yaml#/components/parameters/nextpage_opaque_marker"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
84
85
86
87
88
89
      responses:
        "200": 
          $ref: "#/components/responses/pm_jobs.get.200"
        "400": 
          $ref: "#/components/responses/pm_jobs.get.400"
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
90
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
91
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
92
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
93
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
94
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
95
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
96
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
97
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
98
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
99
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
100
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
101
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
102
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
103
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
104
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
105
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
106
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
107
108

  /pm_jobs/{pmJobId}:
Giacomo Bernini's avatar
Giacomo Bernini committed
109
110
    parameters:
      - $ref: "#/components/parameters/pmJobId"
111
112
113
114
    get:
      description: >
        The client can use this method for reading an individual PM job. 
      parameters:
115
116
117
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
118
119
120
121
      responses:
        "200": 
          $ref: "#/components/responses/pm_job.get.200"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
122
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
123
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
124
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
125
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
126
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
127
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
128
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
129
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
130
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
131
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
132
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
133
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
134
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
135
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
136
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
137
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
138
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
139
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
140
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
141
142
143
144
    delete:
      description: >
        This method terminates an individual PM job.
      parameters:
145
146
147
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
148
149
150
151
      responses:
        "204": 
          $ref: "#/components/responses/pm_job.delete.204"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
152
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
153
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
154
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
155
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
156
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
157
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
158
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
159
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
160
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
161
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
162
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
163
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
164
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
165
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
166
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
167
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
168
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
169
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
170
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
171
172
  
  /pm_jobs/{pmJobId}/reports/{reportId}:
Giacomo Bernini's avatar
Giacomo Bernini committed
173
174
175
    parameters:
      - $ref: "#/components/parameters/pmJobId"
      - $ref: "#/components/parameters/reportId"
176
177
178
179
180
    get:
      description: >
        The client can use this method for reading an individual 
        performance report. 
      parameters:
181
182
183
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
184
185
186
187
      responses:
        "200": 
          $ref: "#/components/responses/pm_job.report.get.200"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
188
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
189
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
190
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
191
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
192
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
193
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
194
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
195
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
196
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
197
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
198
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
199
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
200
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
201
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
202
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
203
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
204
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
205
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
206
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
207
208
209
210
211
212

  /thresholds:
    post:
      description: >
        The POST method can be used by the client to create a threshold.
      parameters:
213
214
215
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
216
217
218
219
220
221
      requestBody:
        $ref: "#/components/requestBodies/CreateThesholdRequest"
      responses:
        "201": 
          $ref: "#/components/responses/thresholds.post.201"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
222
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
223
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
224
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
225
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
226
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
227
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
228
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
229
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
230
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
231
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
232
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
233
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
234
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
235
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
236
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
237
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
238
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
239
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
240
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
241
242
243
244
245
    get:
      description: >
        The client can use this method to query information about thresholds.
      parameters:
        - $ref: "#/components/parameters/filter.Threshold"
246
247
248
249
        - $ref: "../components/SOL009_params.yaml#/components/parameters/nextpage_opaque_marker"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
250
251
252
253
254
255
      responses:
        "200": 
          $ref: "#/components/responses/thresholds.get.200"
        "400": 
          $ref: "#/components/responses/thresholds.get.400"
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
256
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
257
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
258
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
259
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
260
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
261
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
262
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
263
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
264
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
265
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
266
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
267
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
268
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
269
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
270
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
271
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
272
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
273
274
    
  /thresholds/{thresholdId}:
Giacomo Bernini's avatar
Giacomo Bernini committed
275
276
    parameters:
      - $ref: "#/components/parameters/thresholdId"
277
278
279
280
    get:
      description: >
        The client can use this method for reading an individual threshold 
      parameters:
281
282
283
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
284
285
286
287
      responses:
        "200": 
          $ref: "#/components/responses/threshold.get.200"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
288
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
289
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
290
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
291
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
292
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
293
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
294
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
295
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
296
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
297
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
298
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
299
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
300
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
301
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
302
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
303
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
304
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
305
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
306
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
307
308
309
310
    delete:
      description: >
        This method allows to delete a threshold.
      parameters:
311
312
313
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
314
315
316
317
      responses:
        "204": 
          $ref: "#/components/responses/threshold.delete.204"
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
318
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
319
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
320
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
321
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
322
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
323
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
324
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
325
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
326
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
327
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
328
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
329
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
330
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
331
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
332
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
333
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
334
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
335
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
336
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
337
338
339
340
341

components:
  schemas:
    CreatePmJobRequest:
      description: >
342
        This type represents a request to create a PM job. 
343
344
      type: object
      properties:
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
        objectType:
          description: >
            Type of measured object. The applicable measured object type for a measurement 
            is defined in clause 8.2 of ETSI GS NFV-IFA 031.
          type: string
        objectInstanceIds:
          description: >
            Identifiers of the measured object instance for which performance information 
            is requested to be collected. This attribute shall contain the identifier of 
            the instance of the measure object according to their type.
            See also definitions in clause 8.2 of ETSI GS NFV-IFA 031.
            If more than one identifier is provided, values shall all refer to measured 
            object instances of the same type, for which the same criteria is then applicable.
          type: array
          items:
360
            $ref: "../components/SOL009_schemas.yaml#/components/schemas/Identifier"
361
362
363
364
365
366
367
368
369
370
371
372
373
374
          minItems: 1
        subObjectInstanceIds:
          description: >
            Identifiers of the sub-object instances of the measured object instance for 
            which performance information is requested to be collected. 
            May be present if a sub-object is defined in clause 8.2 of ETSI GS NFV-IFA 031
            for the related measured object type.
            If this attribute is present, the cardinality of the "objectInstanceIds" 
            attribute shall be 1.
            If this attribute is absent and a sub-object is defined in clause 8.2 of 
            ETSI GS NFV-IFA 031 for the related measured object type, measurements will 
            be taken for all sub-object instances of the measured object instance.
          type: array
          items:
375
            $ref: "../components/SOL009_schemas.yaml#/components/schemas/IdentifierInManoEntity"
376
377
378
379
        criteria:
          description: >
            Criteria of the collection of performance information.
          $ref: "#/components/schemas/PmJobCriteria"
380
381
382
383
384
385
386
387
388
389
390
391
392
        callbackUri:
          description: >
            The URI of the endpoint to send the notification to.
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Uri"
        authentication:
          description: >
            Authentication parameters to configure the use of Authorization when
            sending notifications corresponding to this subscription, as defined
            in clause 8.3.4 of ETSI GS NFV-SOL 013.

            This attribute shall only be present if the subscriber requires
            authorization of notifications.
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/SubscriptionAuthentication"
393
      required:
394
395
396
        - objectType
        - objectInstanceIds
        - criteria
397
        - callbackUri
398
399
400

    PmJob:
      description: >
401
        This type represents a PM job. 
402
403
      type: object
      properties:
404
405
406
        id:
          description: >
            Identifier of this PM job.
407
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Identifier"
408
409
410
411
412
413
414
415
416
417
418
419
420
        objectType:
          description: >
            Type of measured object. The applicable measured object type for a measurement is 
            defined in clause 8.2 of ETSI GS NFV-IFA 031.
          type: string
        objectInstanceIds:
          description: >
            Identifiers of the measured object instance for which performance information 
            is collected. This attribute shall contain the identifier of the instance of 
            the measure object according to their type.
            See also definitions in clause 8.2 of ETSI GS NFV-IFA 031.
          type: array 
          items:
421
            $ref: "../components/SOL009_schemas.yaml#/components/schemas/Identifier"
422
423
424
425
426
427
428
429
430
431
432
433
434
435
          minItems: 1
        subObjectInstanceIds:
          description: >
            Identifiers of the sub-object instances of the measured object instance for 
            which performance information is requested to be collected. 
            May be present if a sub-object is defined in clause 8.2 of ETSI GS NFV-IFA 031
            for the related measured object type.
            If this attribute is present, the cardinality of the "objectInstanceIds" 
            attribute shall be 1.
            If this attribute is absent and a sub-object is defined in clause 8.2 of 
            ETSI GS NFV-IFA 031 for the related measured object type, measurements will 
            be taken for all sub-object instances of the measured object instance.
          type: array 
          items:
436
            $ref: "../components/SOL009_schemas.yaml#/components/schemas/IdentifierInManoEntity"
437
438
439
440
        criteria:
          description: >
            Criteria of the collection of performance information.
          $ref: "#/components/schemas/PmJobCriteria"
441
442
443
444
        callbackUri:
          description: >
            The URI of the endpoint to send the notification to.
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Uri"
445
446
447
448
449
450
451
452
453
454
        reports:
          description: >
            Information about available reports collected by this PM job.
          type: array 
          items:
            type: object 
            properties:
              href:
                description: >
                  The Uri where the report can be obtained.
455
                $ref: "../components/SOL009_schemas.yaml#/components/schemas/Uri"
456
457
458
              readyTime:
                description: >
                  The time when the report was made available.
459
                $ref: "../components/SOL009_schemas.yaml#/components/schemas/DateTime"
460
461
462
              expiryTime:
                description: >
                  The time when the report will expire.
463
                $ref: "../components/SOL009_schemas.yaml#/components/schemas/DateTime"
464
465
466
              fileSize:
                description: >
                  The size of the report file in bytes, if known.
467
                $ref: "../components/SOL009_schemas.yaml#/components/schemas/UnsignedInt"
468
469
470
471
472
473
474
475
476
477
478
            required:
              - href
              - readyTime
        _links:
          description: >
            Links for this resource.
          type: object
          properties:
            self:
              description: >
                  URI of this resource.
479
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Link"
480
481
482
483
484
485
486
            objects:
              description: >
                Links to resources representing the measured object instances for which 
                performance information is collected. Shall be present if the measured 
                object instance information is accessible as a resource.
              type: array
              items:
487
                $ref: "../components/SOL009_schemas.yaml#/components/schemas/Link"
488
489
          required:
            - self
490
      required:
491
492
493
494
495
        - id
        - objectType
        - objectInstanceIds
        - criteria
        - _links
496
        - callbackUri
497
498
499

    CreateThresholdRequest :
      description: >
500
        This type represents a request to create a threshold. 
501
502
      type: object
      properties:
503
504
505
506
507
508
509
510
511
512
513
        objectType:
          description: >
            Type of measured object. The applicable measured object type for a measurement 
            is defined in clause 8.2 of ETSI GS NFV-IFA 031.
          type: string
        objectInstanceId:
          description: >
            Identifier of the measured object instance associated with this threshold. 
            This attribute shall contain the identifier of the instance of the measure 
            object according to their type.
            See also definitions in clause 8.2 of ETSI GS NFV-IFA 031.
514
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Identifier"
515
516
517
518
519
520
521
522
523
524
525
        subjObjectInstanceIds:
          description: >
            Identifiers of the sub-object instances of the measured object instance 
            associated with this threshold. 
            May be present if a sub-object is defined in clause 8.2 of ETSI GS NFV-IFA 031
            for the related measured object type.
            If this attribute is absent and a sub-object is defined in clause 8.2 of ETSI 
            GS NFV-IFA 031 for the related measured object type, thresholds will be set 
            for all sub-object instances of the measured object instance.
          type: array
          items:
526
            $ref: "../components/SOL009_schemas.yaml#/components/schemas/IdentifierInManoEntity"
527
528
529
530
        criteria:
          description: >
            Criteria that define this threshold.
          $ref: "#/components/schemas/ThresholdCriteria"
531
532
533
534
535
536
537
538
539
540
541
542
543
        callbackUri:
          description: >
            The URI of the endpoint to send the notification to.
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Uri"
        authentication:
          description: >
            Authentication parameters to configure the use of Authorization when
            sending notifications corresponding to this subscription, as defined
            in clause 8.3.4 of ETSI GS NFV-SOL 013.

            This attribute shall only be present if the subscriber requires
            authorization of notifications.
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/SubscriptionAuthentication"
544
      required:
545
546
547
        - objectType
        - objectInstanceId
        - criteria
548
        - callbackUri
549
550
551
552
553
554

    Threshold:
      description: >

      type: object
      properties:
555
556
557
        id:
          description: >
            Identifier of this threshold resource.
558
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Identifier"
559
560
561
562
563
564
565
566
567
568
569
        objectType:
          description: 
            Type of measured object. The applicable measured object type for a measurement 
            is defined in clause 8.2 of ETSI GS NFV-IFA 031.
          type: string
        objectInstanceId:
          description: >
            Identifier of the measured object instance associated with the threshold. 
            This attribute shall contain the identifier of the instance of the measure 
            object according to their type.
            See also definitions in clause 8.2 of ETSI GS NFV-IFA 031.
570
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Identifier"
571
572
573
574
575
576
577
578
579
580
581
        subjObjectInstanceIds:
          description: >
            Identifiers of the sub-object instances of the measured object instance 
            associated with this threshold. 
            May be present if a sub-object is defined in clause 8.2 of ETSI GS NFV-IFA 031
            for the related measured object type.
            If this attribute is absent and a sub-object is defined in clause 8.2 of ETSI 
            GS NFV-IFA 031 for the related measured object type, thresholds are set for 
            all sub-object instances of the measured object instance.
          type: array 
          items:
582
            $ref: "../components/SOL009_schemas.yaml#/components/schemas/IdentifierInManoEntity"
583
584
585
586
        criteria:
          description: >
            Criteria that define this threshold.
          $ref: "#/components/schemas/ThresholdCriteria"
587
588
589
590
        callbackUri:
          description: >
            The URI of the endpoint to send the notification to.
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Uri"
591
592
593
594
595
596
597
598
        _links:
          description: >
            Links for this resource.
          type: object
          properties:
            self:
              description: >
                URI for this resource.
599
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Link"
600
601
602
603
604
            object:
              description: >
                Link to a resource representing the measured object instance for which performance 
                information is collected. Shall be present if the measured object instance information 
                is accessible as a resource.
605
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Link"
606
607
608
609
610
611
612
613
614
          required:
            - self
      required:
        - id
        - objectType
        - objectInstanceId
        - subjObjectInstanceIds
        - criteria
        - _links
615
        - callbackUri
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
    
    PerformanceReport:
      description: >
        This type defines the format of a performance report provided by the NFV-MANO functional 
        entity to the API consumer as a result of collecting performance information as part 
        of a PM job. 
      type: object
      properties:
        entries: 
          description: >
            List of performance information entries. Each performance report entry is for a given 
            metric of a given object (i.e. measured object instance) corresponding to the related 
            measured object types, but can include multiple collected values.
          type: array
          items:
            type: object
            properties:
              objectType:
                description: >
                  Type of measured object. The applicable measured object type for a measurement is 
                  defined in clause 8.2 of ETSI GS NFV-IFA 031.
                type: string
              objectInstanceId:
                description: >
                  The object instance (i.e. measured object instance) for which the performance metric 
                  is reported. This attribute shall contain the identifier of the instance of the 
                  measure object according to their type.
                  See also definitions in clause 8.2 of ETSI GS NFV-IFA 031.
644
                $ref: "../components/SOL009_schemas.yaml#/components/schemas/ManoManagedObjectReference"
645
646
647
648
649
              subObjectInstanceId:
                description: >
                  Identifier of the sub-object instance of the measured object instance for which the 
                  performance metric is reported. Shall be present if this is required in clause 8.2 
                  of ETSI GS NFV-IFA 031 [1] for the related measured object type.
650
                $ref: "../components/SOL009_schemas.yaml#/components/schemas/IdentifierInManoEntity"
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
              performanceMetric:
                description: >
                  Name of the metric collected. This attribute shall contain the related 
                  "Measurement Name" value as defined in clause 8.4 of ETSI GS NFV-IFA 031.
                type: string
              performanceValues:
                description: >
                  List of performance values with associated timestamp.
                type: array
                items:
                  type: object
                  properties:
                    timeStamp:
                      description: >
                        Time stamp indicating when the data was collected.
666
                      $ref: "../components/SOL009_schemas.yaml#/components/schemas/DateTime"
667
668
669
670
671
672
673
674
                    value:
                      description: >
                        Value of the metric collected. The type of this attribute shall correspond to 
                        the related "Measurement Unit" as defined in clause 8.4 of ETSI GS NFV-IFA 031.
                    context:
                      description: >
                        Measurement context information related to the measured value. The set of 
                        applicable keys is defined per measurement in clause 8.4 of ETSI GS NFV-IFA 031.
675
                      $ref: "../components/SOL009_schemas.yaml#/components/schemas/KeyValuePairs"
676
677
678
679
680
681
682
683
684
685
                  required:
                    - timeStamp
                    - value
                minItems: 1
            required:
              - objectType
              - objectInstanceId
              - performanceMetric
              - performanceValues
          minItems: 1
686
      required:
687
        - entries
688

689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
    PmJobModifications:
      description: >
        This type represents modifications to a PM job.
      type: object
      properties:
        callbackUri:
          description: >
            New value of the "callbackUri" attribute.The value "null" is not permitted.

            NOTE: At least one of the attributes defined in this type
            shall be present in request bodies.
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Uri"
        authentication:
          description: >
            New value of the "authentication" attribute, or "null" to remove the attribute.
            If present in a request body, these modifications shall be applied according
            to the rules of JSONMerge PATCH (see IETF RFC 7396).

            This attribute shall not be present in response bodies.

            NOTE: At least one of the attributes defined in this type
            shall be present in request bodies..
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/SubscriptionAuthentication"

    ThresholdModifications:
      description: >
        This type represents modifications to a threshold.
      type: object
      properties:
        callbackUri:
          description: >
            New value of the "callbackUri" attribute.The value "null" is not permitted.

            NOTE: At least one of the attributes defined in this type
            shall be present in request bodies.
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/Uri"
        authentication:
          description: >
            New value of the "authentication" attribute, or "null" to remove the attribute.
            If present in a request body, these modifications shall be applied according
            to the rules of JSONMerge PATCH (see IETF RFC 7396).

            This attribute shall not be present in response bodies.

            NOTE: At least one of the attributes defined in this type
            shall be present in request bodies..
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/SubscriptionAuthentication"

737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
    #----------

    PmJobCriteria:
      description: >
        This type represents collection criteria for PM jobs.
      type: object
      properties:
        performanceMetric: 
          description: >
            This defines the types of performance metrics for the specified measured 
            object(s). This attribute’s value shall contain the related "Measurement Name" 
            values as defined in clause 8.4 of ETSI GS NFV-IFA 031. 
            At least one of the two attributes (performance metric or group) shall be present.
          type: array
          items:
            type: string
        performanceMetricGroup:
          description: >
            Group of performance metrics.
            A metric group is a pre-defined list of metrics, known to the producer that it 
            can decompose to individual metrics. This attribute’s value shall contain the 
            related "Measurement Group" values as defined in clause 8.4 of ETSI GS 
            NFV-IFA 031.
            At least one of the two attributes (performance metric or group) shall be present.
          type: array
          items:
            type: string
        collectionPeriod:
          description: >
            Specifies the periodicity at which the producer will collect performance 
            information. The unit shall be seconds. 

            At the end of each reportingPeriod, the producer will inform the API consumer 
            about availability of the performance data collected for each completed 
            collection period during this reportingPeriod. The reportingPeriod should 
            be equal to or a multiple of the collectionPeriod. In the latter case, the 
            performance data for the collection periods within one reporting period 
            are reported together. 

            In particular when choosing short collection and reporting periods, the 
            number of PM jobs that can be supported depends on the capability of the 
            producing entity.
          type: integer
        reportingPeriod:
          description: >
            Specifies the periodicity at which the producer will report to the API consumer 
            about performance information. The unit shall be seconds.

            At the end of each reportingPeriod, the producer will inform the API consumer 
            about availability of the performance data collected for each completed 
            collection period during this reportingPeriod. The reportingPeriod should 
            be equal to or a multiple of the collectionPeriod. In the latter case, the 
            performance data for the collection periods within one reporting period 
            are reported together. 

            In particular when choosing short collection and reporting periods, the 
            number of PM jobs that can be supported depends on the capability of the 
            producing entity.
          type: integer
        reportingBoundary:
          description: >
            Identifies a time boundary after which the reporting will stop.
            The boundary shall allow a single reporting as well as periodic reporting up to 
            the boundary.
801
          $ref: "../components/SOL009_schemas.yaml#/components/schemas/DateTime"
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
      required:
        - collectionPeriod
        - reportingPeriod

    ThresholdCriteria:
      description: >
        This type represents criteria that define a threshold.
      type: object
      properties:
        performanceMetric:
          description: >
            Defines the performance metric associated with the threshold. 
            This attribute’s value shall contain the related "Measurement Name" values 
            as defined in clause 8.4 of ETSI GS NFV-IFA 031 
          type: string
        thresholdType:
          description: >
            Type of threshold. This attribute determines which other attributes are 
            present in the data structure.
            Permitted values:
              - SIMPLE: Single-valued static threshold
            
            In the present document, simple thresholds are defined. The definition 
            of additional threshold types is left for future specification.
          type: string
          enum:
            - SIMPLE
        simpleThresholdDetails:
          description: >
            Details of a simple threshold. Shall be present if thresholdType="SIMPLE".
          type: object
          properties:
            thresholdValue:
              description: >
                The threshold value. Shall be represented as a floating point number. 
837
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Number"
838
839
840
841
842
843
844
845
846
847
848
849
850
            hysteresis:
              description: >
                The hysteresis of the threshold. 
                Shall be represented as a non-negative floating point number.
                A notification with crossing direction "UP" will be generated if the 
                measured value reaches or exceeds "thresholdValue" + "hysteresis". 
                A notification with crossing direction "DOWN" will be generated if 
                the measured value reaches or undercuts "thresholdValue" - "hysteresis". 

                The hysteresis is defined to prevent storms of threshold crossing notifications.
                When processing a request to create a threshold, implementations should enforce 
                a suitable minimum value for this attribute (e.g. override the value or reject 
                the request). 
851
              $ref: "../components/SOL009_schemas.yaml#/components/schemas/Number"
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
          required: 
            - thresholdValue
            - hysteresis
      required:
        - performanceMetric
        - thresholdType

    #----------------
    # common types to SOL009
    #----------------

  responses:
    pm_jobs.post.201:
      description: >
        201 CREATED

        Shall be returned when the PM job has been created successfully.

        The response body shall contain a representation of the created 
        "Individual PM job" resource, as defined in clause 6.6.2.7.

        The HTTP response shall include a "Location" HTTP header that 
        points to the created "Individual PM job" 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.
          schema:
            type: string
        Version:
          description: >
            Version of the API used in the response.
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/PmJob"
892
893
894
895
896
897
898
899
900
901
902
903
904
905
    pm_jobs.post.422:
      description: >
        422 Unprocessable Entity

        Shall be returned upon the following error: The content type
        of the payload body is supported and the payload body of a request
        contains syntactically correct data but the data cannot be processed.

        The general cause for this error and its handling is specified in
        clause 6.4 of ETSI GS NFV-SOL 013, including rules for the presence
        of the response body.

        Specifically in case of this resource, the response code 422 shall also
        be returned if the API producer has tested the Notification endpoint as
906
        described in clause 6.5.10.3.2 and the test has failed.
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927

        In this case, the "detail" attribute in the "ProblemDetails" structure
        shall convey more information about the error.
      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.
          schema:
            type: string
        Version:
          description: >
            Version of the API used in the response.
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: "../components/SOL009_schemas.yaml#/components/schemas/ProblemDetails"

928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
    pm_jobs.get.200:
      description: >
        200 OK

        Shall be returned when information about zero or more PM jobs has 
        been queried successfully.

        The response body shall contain in an array the representations 
        of zero or more PM jobs, as defined in clause 6.6.2.7.

        If the "filter" URI parameter or one of the "all_fields", "fields" 
        (if supported), "exclude_fields" (if supported) or "exclude_default" 
        URI parameters was supplied in the request, the data in the response 
        body shall have been transformed according to the rules specified in 
        clauses 5.2.2 and 5.3.2 of ETSI GS NFV-SOL 013, respectively.

        If the NFV-MANO functional entity 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.
          schema:
            type: string
        Version:
          description: >
            Version of the API used in the response.
          schema:
            type: string
        Link:
          description: >
            Reference to other resources. Link HTTP header in this response 
            shall follow the provisions in clause 5.4.2.3 of ETSI GS NFV-SOL 013.
          schema:
            type: string
            minimum: 0
            maximum: 1
      content:
        application/json:
          schema:
            type: array
            items:
              $ref: "#/components/schemas/PmJob"
    pm_jobs.get.400:
      description: >
        400 BAD REQUEST

        Shall be returned upon the following errors: 
          - Invalid attribute-based filtering expression.
            The response body shall contain a ProblemDetails structure, in which 
            the "detail" attribute should convey more information about the error.
          - Invalid attribute selector.
            The response body shall contain a ProblemDetails structure, in which 
            the "detail" attribute should convey more information about the error.
          - Response too big.
            If the NFV-MANO functional entity supports alternative N°1 (error) 
            according to clause 5.4.2.1 of ETSI GS NFV-SOL 013 for this resource, 
            this error response shall follow the provisions in clause 5.4.2.2 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.
          schema:
            type: string
        Version:
          description: >
For faster browsing, not all history is shown. View entire blame