NFVManoLogManagement.yaml 80.3 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
openapi: 3.0.2
info:
  version: 1.0.0-impl:etsi.org:ETSI_NFV_OpenAPI:1
  title: SOL009 - NFV-MANO Log Management interface
  description: >
    SOL009 - NFV-MANO Log Management interface

    IMPORTANT: Please note that this file might be not aligned to the current version of the ETSI Group Specification
     it refers to. 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&list_id=61&product=NFV&resolution=
  license:
    name: ETSI Forge copyright notice
    url: https://forge.etsi.org/etsi-forge-copyright-notice.txt
externalDocs:
Giacomo Bernini's avatar
Giacomo Bernini committed
16
17
  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
18
19
20
21
22
23
24
25
26
27

security:
  - OauthSecurity:
      - all
servers:
  - url: http://127.0.0.1/nfvmanologm/v1
  - url: https://127.0.0.1/nfvmanologm/v1

paths:
  "/api_versions":
28
      $ref: '../endpoints/SOL009_endpoints.yaml#/endpoints/api_versions'
Giacomo Bernini's avatar
upd    
Giacomo Bernini committed
29

30
31
32
33
34
35
36
37
38
39
40
  "/log_jobs":
    description: >-
      This resource represents logging jobs. The API consumer can use this resource to create and query logging jobs.
    post:
      description: >-
        The POST method creates a logging job.
        This method shall follow the provisions specified in the tables 8.5.3.3.1-1 and 8.5.3.3.1-2 for URI query
        parameters, request and response data structures, and response codes.
        As the result of successfully executing this method, a new "Individual logging job" resource as defined in
        clause 9.5.4 shall have been created.
      parameters:
41
42
43
44
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/ContentType"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
45
46
47
48
      requestBody:
        $ref: "#/components/requestBodies/CreateLoggingJobRequest"
      responses:
        "201":
49
          $ref: '#/components/responses/LoggingJob.Post'
50
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
51
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
52
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
53
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
54
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
55
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
56
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
57
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
58
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
59
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
60
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
61
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
62
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
63
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
64
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
65
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
66
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
67
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
68
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
69
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
70
71
72
73
74
75
    get:
      description: >-
        The API consumer can use this method to retrieve information about logging jobs.
        This method shall follow the provisions specified in the tables 8.5.3.3.2-1 and 8.5.3.3.2-2 for
        URI query parameters, request and response data structures, and response codes.
      parameters:
76
77
78
79
80
81
82
83
84
        - $ref: "../components/SOL009_params.yaml#/components/parameters/filter"
        - $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"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/exclude_default"
        - $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"
85
86
      responses:
        "200":
87
          $ref: '#/components/responses/LoggingJobs.Get'
88
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
89
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
90
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
91
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
92
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
93
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
94
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
95
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
96
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
97
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
98
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
99
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
100
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
101
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
102
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
103
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
104
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
105
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
106
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
107
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
108
109
110
111
112

  "/log_jobs/{logJobId}":
    description: >-
      This resource represents an individual logging job. The API consumer can use this resource to delete
      and read the underlying logging job.
Giacomo Bernini's avatar
Giacomo Bernini committed
113
114
    parameters:
      - $ref: "#/components/parameters/logJobId"
115
116
117
118
119
120
    get:
      description: >-
        The API consumer can use this method for reading an individual logging job.
        This method shall follow the provisions specified in the tables 8.5.4.3.2-1 and 8.5.4.3.2-2 for
        URI query parameters, request and response data structures, and response codes.
      parameters:
121
122
123
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
124
125
126

      responses:
        "200":
127
          $ref: '#/components/responses/LoggingJob.Get'
128
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
129
          $ref: ../components/SOL009_resp.yaml#/components/responses/400
130
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
131
          $ref: ../components/SOL009_resp.yaml#/components/responses/401
132
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
133
          $ref: ../components/SOL009_resp.yaml#/components/responses/403
134
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
135
          $ref: ../components/SOL009_resp.yaml#/components/responses/404
136
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
137
          $ref: ../components/SOL009_resp.yaml#/components/responses/405
138
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
139
          $ref: ../components/SOL009_resp.yaml#/components/responses/406
140
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
141
          $ref: ../components/SOL009_resp.yaml#/components/responses/422
142
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
143
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
144
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
145
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
146
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
147
          $ref: ../components/SOL009_resp.yaml#/components/responses/504
148
149
150
151
152
153
154
155
156

    delete:
      description: >-
        This method terminates an individual logging job.
        This method shall follow the provisions specified in the tables 8.5.4.3.5-1 and 8.5.4.3.5-2 for URI
        query parameters, request and response data structures, and response codes.
        As the result of successfully executing this method, the "Individual logging job" resource shall not
        exist any longer
      parameters:
157
158
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
159
160
      responses:
        "204":
161
          $ref: '#/components/responses/LoggingJob.Delete'
162
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
163
          $ref: '../components/SOL009_resp.yaml#/components/responses/400'
164
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
165
          $ref: '../components/SOL009_resp.yaml#/components/responses/401'
166
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
167
          $ref: '../components/SOL009_resp.yaml#/components/responses/403'
168
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
169
          $ref: '../components/SOL009_resp.yaml#/components/responses/404'
170
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
171
          $ref: '../components/SOL009_resp.yaml#/components/responses/405'
172
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
173
          $ref: '../components/SOL009_resp.yaml#/components/responses/406'
174
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
175
          $ref: '../components/SOL009_resp.yaml#/components/responses/422'
176
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
177
          $ref: '../components/SOL009_resp.yaml#/components/responses/500'
178
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
179
          $ref: '../components/SOL009_resp.yaml#/components/responses/503'
180
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
181
          $ref: '../components/SOL009_resp.yaml#/components/responses/504'
182
183
184
185
186
187
188
189

  "/log_jobs/{logJobId}/log_reports/{logReportId}":
    description: >-
      This resource represents an individual log report. The API consumer can use this resource to read
      information about a log report.
      The log report provides metadata information about a log and location information of the log file
      from where it can be obtained.
      NOTE:	The present document does not specify the mechanism how to retrieve the log files.
Giacomo Bernini's avatar
Giacomo Bernini committed
190
191
    parameters:
      - $ref: "#/components/parameters/logJobId"
Giacomo Bernini's avatar
Giacomo Bernini committed
192
      - $ref: "#/components/parameters/logReportId"
193
194
195
196
197
198
    get:
      description: >-
        The API consumer can use this method for reading an individual log report.
        This method shall follow the provisions specified in the tables 8.5.5.3.2-1 and
        8.5.5.3.2-2 for URI query parameters, request and response data structures, and response codes.
      parameters:
199
200
201
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
202
203
      responses:
        "200":
204
          $ref: '#/components/responses/LogReport.Get.200'
205
        "202":
206
          $ref: '#/components/responses/LogReport.Get.202'
207
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
208
          $ref: '../components/SOL009_resp.yaml#/components/responses/400'
209
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
210
          $ref: '../components/SOL009_resp.yaml#/components/responses/401'
211
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
212
          $ref: '../components/SOL009_resp.yaml#/components/responses/403'
213
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
214
          $ref: '../components/SOL009_resp.yaml#/components/responses/404'
215
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
216
          $ref: '../components/SOL009_resp.yaml#/components/responses/405'
217
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
218
          $ref: '../components/SOL009_resp.yaml#/components/responses/406'
219
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
220
          $ref: '../components/SOL009_resp.yaml#/components/responses/422'
221
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
222
          $ref: '../components/SOL009_resp.yaml#/components/responses/500'
223
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
224
          $ref: '../components/SOL009_resp.yaml#/components/responses/503'
225
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
226
          $ref: '../components/SOL009_resp.yaml#/components/responses/504'
227
228
229
230
231
232
233
234
235
236
237

  "/log_jobs/{logJobId}/compile_log":
    description: >-
      This resource represents the "Compile log" operation. The API consumer can use this resource to request
      compiling the logged data, collected via a logging job, into a file and creating the associated log report.
      As the result of successfully processing this request, a new "Individual log report" resource shall be created.
      Two modes of operation, synchronous or asynchronous, can take place depending on whether the NFV-MANO functional
      entity can compile the log data and create the log report immediately. In the synchronous case, which is
      indicated by responding with "201 Created", the resource shall be created before the "201 Created" response
      is returned. In the asynchronous case, which is indicated by responding with "202 Accepted", the resource may
      be created after the response is returned.
Giacomo Bernini's avatar
Giacomo Bernini committed
238
239
    parameters:
      - $ref: "#/components/parameters/logJobId"
240
241
242
243
244
245
    post:
      description: >-
        The POST method requests to compile the logged data into a file and create an associated log report.
        This method shall follow the provisions specified in the tables 8.5.6.3.1-1 and 8.5.6.3.1-2 for URI
        query parameters, request and response data structures, and response codes.
      parameters:
246
247
248
249
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/ContentType"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
250
251
252
253
      requestBody:
        $ref: "#/components/requestBodies/CompileLogRequest"
      responses:
        "200":
254
          $ref: '#/components/responses/LogReportCompiled.Post.200'
255
        "202":
256
          $ref: '#/components/responses/LogReportCompiled.Post.202'
257
        "303":
258
          $ref: '#/components/responses/LogReportCompiled.Post.303'
259
        "422":
260
          $ref: '#/components/responses/LogReportCompiled.Post.422'
261
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
262
          $ref: '../components/SOL009_resp.yaml#/components/responses/400'
263
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
264
          $ref: '../components/SOL009_resp.yaml#/components/responses/401'
265
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
266
          $ref: '../components/SOL009_resp.yaml#/components/responses/403'
267
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
268
          $ref: '../components/SOL009_resp.yaml#/components/responses/404'
269
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
270
          $ref: '../components/SOL009_resp.yaml#/components/responses/405'
271
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
272
          $ref: '../components/SOL009_resp.yaml#/components/responses/406'
273
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
274
          $ref: '../components/SOL009_resp.yaml#/components/responses/500'
275
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
276
          $ref: '../components/SOL009_resp.yaml#/components/responses/503'
277
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
278
          $ref: '../components/SOL009_resp.yaml#/components/responses/504'
279
280

  "/subscriptions":
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
    description: >-
      This resource represents subscriptions. The client can use this resource to subscribe to notifications
      related to NFV-MANO performance management and to query its subscriptions.
    post:
      description: >-
        The POST method creates a new subscription.
        This method shall follow the provisions specified in the tables 8.5.7.3.1-1 and 8.5.7.3.1-2 for URI query
         parameters, request and response data structures, and response codes.
        As the result of successfully executing this method, a new "Individual subscription" resource as defined in
        clause 8.5.8 shall have been created. This method shall not trigger any notification.
        Creation of two "Individual subscription" resources with the same callbackURI and the same filter can result
        in performance degradation and will provide duplicates of notifications to the API consumer, and might make
        sense only in very rare use cases. Consequently, the NFV-MANO functional entity may either allow creating a
        new "Individual subscription" resource if another "Individual subscription" resource with the same filter
        and callbackUri already exists (in which case it shall return the "201 Created" response code), or may decide
        to not create a duplicate "Individual subscription" resource (in which case it shall return a "303 See Other"
        response code referencing the existing "Individual subscription" resource with the same filter and callbackUri).
      parameters:
299
300
301
302
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/ContentType"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
303
304
305
306
      requestBody:
        $ref: '#/components/requestBodies/LogmSubscriptionRequest'
      responses:
        "201":
307
          $ref: '#/components/responses/subscriptions.post.201'
308
        "303":
309
          $ref: '#/components/responses/subscriptions.post.303'
310
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
311
          $ref: '../components/SOL009_resp.yaml#/components/responses/422'
312
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
313
          $ref: '../components/SOL009_resp.yaml#/components/responses/400'
314
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
315
          $ref: '../components/SOL009_resp.yaml#/components/responses/401'
316
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
317
          $ref: '../components/SOL009_resp.yaml#/components/responses/403'
318
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
319
          $ref: '../components/SOL009_resp.yaml#/components/responses/404'
320
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
321
          $ref: '../components/SOL009_resp.yaml#/components/responses/405'
322
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
323
          $ref: '../components/SOL009_resp.yaml#/components/responses/406'
324
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
325
          $ref: '../components/SOL009_resp.yaml#/components/responses/500'
326
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
327
          $ref: '../components/SOL009_resp.yaml#/components/responses/503'
328
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
329
          $ref: '../components/SOL009_resp.yaml#/components/responses/504'
330
331
332
      callbacks:
        LogReportAvailableNotification:
          $ref: '#/components/callbacks/LogReportAvailableNotification'
333
334
335
336
337
338
339
340
    get:
      description: >-
        The API consumer can use this method to query the list of active subscriptions to log management
        notifications subscribed by the API consumer.
        This method shall follow the provisions specified in the tables 8.5.7.3.2-1 and 8.5.7.3.2-2 for URI
        query parameters, request and response data structures, and response codes.

      parameters:
341
342
343
344
345
        - $ref: "../components/SOL009_params.yaml#/components/parameters/filter"
        - $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"
346
347
      responses:
        "200":
348
          $ref: '#/components/responses/subscriptions.get.200'
349
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
350
          $ref: '../components/SOL009_resp.yaml#/components/responses/400'
351
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
352
          $ref: '../components/SOL009_resp.yaml#/components/responses/401'
353
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
354
          $ref: '../components/SOL009_resp.yaml#/components/responses/403'
355
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
356
          $ref: '../components/SOL009_resp.yaml#/components/responses/404'
357
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
358
          $ref: '../components/SOL009_resp.yaml#/components/responses/405'
359
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
360
          $ref: '../components/SOL009_resp.yaml#/components/responses/406'
361
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
362
          $ref: '../components/SOL009_resp.yaml#/components/responses/500'
363
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
364
          $ref: '../components/SOL009_resp.yaml#/components/responses/503'
365
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
366
          $ref: '../components/SOL009_resp.yaml#/components/responses/504'
367
368

  "/subscriptions/{subscriptionId}":
369
370
371
372
373
374
375
376
377
378
379
380
381
    description: >-
      This resource represents an individual subscription for notifications about log management related events.
      The API consumer can use this resource to read and to terminate a subscription to notifications related
      o NFV-MANO log management.
    parameters:
      - $ref: "#/components/parameters/subscriptionId"
    get:
      description: >-
        The API consumer can use this method for reading an individual subscription about log management
        notifications subscribed by the API consumer.
        This method shall follow the provisions specified in the tables 8.5.8.3.2-1 and 8.5.8.3.2-2 for
        URI query parameters, request and response data structures, and response codes.
      parameters:
382
383
384
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Accept"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
385
386
      responses:
        "200":
387
          $ref: '#/components/responses/subscription.get.200'
388
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
389
          $ref: '../components/SOL009_resp.yaml#/components/responses/400'
390
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
391
          $ref: '../components/SOL009_resp.yaml#/components/responses/401'
392
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
393
          $ref: '../components/SOL009_resp.yaml#/components/responses/403'
394
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
395
          $ref: '../components/SOL009_resp.yaml#/components/responses/404'
396
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
397
          $ref: '../components/SOL009_resp.yaml#/components/responses/405'
398
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
399
          $ref: '../components/SOL009_resp.yaml#/components/responses/406'
400
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
401
          $ref: '../components/SOL009_resp.yaml#/components/responses/500'
402
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
403
          $ref: '../components/SOL009_resp.yaml#/components/responses/503'
404
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
405
          $ref: '../components/SOL009_resp.yaml#/components/responses/504'
406

407
408
409
410
411
412
413
414
415
416
417
    delete:
      description: >-
        This method terminates an individual subscription.
        This method shall follow the provisions specified in the tables 8.5.8.3.5-1 and 8.5.8.3.5-2 for
        URI query parameters, request and response data structures, and response codes.
        As the result of successfully executing this method, the "Individual subscription" resource shall not exist any
        longer. This means that no notifications for that subscription shall be sent to the
        formerly-subscribed API consumer.
        NOTE:	Due to race conditions, some notifications might still be received by the formerly-subscribed
        API consumer for a certain time period after the deletion.
      parameters:
418
419
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Version"
        - $ref: "../components/SOL009_params.yaml#/components/parameters/Authorization"
420
421
      responses:
        "204":
422
          $ref: '#/components/responses/subscription.delete.204'
423
        "400":
Giacomo Bernini's avatar
Giacomo Bernini committed
424
          $ref: '../components/SOL009_resp.yaml#/components/responses/400'
425
        "401":
Giacomo Bernini's avatar
Giacomo Bernini committed
426
          $ref: '../components/SOL009_resp.yaml#/components/responses/401'
427
        "403":
Giacomo Bernini's avatar
Giacomo Bernini committed
428
          $ref: '../components/SOL009_resp.yaml#/components/responses/403'
429
        "404":
Giacomo Bernini's avatar
Giacomo Bernini committed
430
          $ref: '../components/SOL009_resp.yaml#/components/responses/404'
431
        "405":
Giacomo Bernini's avatar
Giacomo Bernini committed
432
          $ref: '../components/SOL009_resp.yaml#/components/responses/405'
433
        "406":
Giacomo Bernini's avatar
Giacomo Bernini committed
434
          $ref: '../components/SOL009_resp.yaml#/components/responses/406'
435
        "422":
Giacomo Bernini's avatar
Giacomo Bernini committed
436
          $ref: '../components/SOL009_resp.yaml#/components/responses/422'
437
        "500":
Giacomo Bernini's avatar
Giacomo Bernini committed
438
          $ref: '../components/SOL009_resp.yaml#/components/responses/500'
439
        "503":
Giacomo Bernini's avatar
Giacomo Bernini committed
440
          $ref: '../components/SOL009_resp.yaml#/components/responses/503'
441
        "504":
Giacomo Bernini's avatar
Giacomo Bernini committed
442
          $ref: '../components/SOL009_resp.yaml#/components/responses/504'
443
444
445
446
447
448
449
450
451
452

components:
  parameters:
    logJobId:
      name: logJobId
      in: path
      description: >-
        Identifier of the logging job.
      required: true
      schema:
453
        $ref: '../components/SOL009_schemas.yaml#/components/schemas/Identifier'
Giacomo Bernini's avatar
Giacomo Bernini committed
454
455
    logReportId:
      name: logReportId
Giacomo Bernini's avatar
Giacomo Bernini committed
456
457
458
459
460
      in: path
      description: >-
        Identifier of the report.
      required: true
      schema:
461
        $ref: '../components/SOL009_schemas.yaml#/components/schemas/Identifier'
462
463
464
465
466
467
468
    subscriptionId:
      name: subscriptionId
      in: path
      description: >-
        Identifier of the subscription
      required: true
      schema:
469
        $ref: '../components/SOL009_schemas.yaml#/components/schemas/Identifier'
470
471

  requestBodies:
472
473
474
475
476
477
478
    LogmSubscriptionRequest:
      description: >-
        Details of the subscription to be created
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/LogmSubscriptionRequest"
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
    CreateLoggingJobRequest:
      description: >-
        This type represents a request to create a logging job. It shall comply with the provisions
        defined in table 8.6.2.5-1.
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/CreateLoggingJobRequest"
      required: true
    CompileLogRequest:
      description: >-
        Log compilation request.
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/CompileLogRequest"
      required: true
496
497
498
499
500
501
502
    LogReportAvailableNotification:
      description: >-
        Notification about the availability of a log report.
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/LogReportAvailableNotification"
503
504

  responses:
505
    subscription.delete.204:
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
      description: >-
        Shall be returned when the "Individual subscription" resource has been deleted successfully.
        The response body shall be empty.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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

527
    subscription.get.200:
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
      description: >-
        Shall be returned when the subscription has been read successfully.
        The response body shall contain a representation of the "Individual subscription" resource,
        as defined in clause 8.6.2.3.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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/LogmSubscription"

554
    subscriptions.get.200:
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
      description: >-
        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, i.e. zero or more representations of log management
        subscriptions as defined in clause 8.6.2.3.
        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 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:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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:
            type: array
            items:
              $ref: "#/components/schemas/LogmSubscription"

589
    subscriptions.post.201:
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
      description: >-
        Shall be returned when the subscription has been created successfully.
        A representation of the created "Individual subscription" resource shall be returned in the response body,
        as defined in clause 8.6.2.3.
        The HTTP response shall include a "Location" HTTP header that contains the resource URI of the created
        "Individual subscription" resource.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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
        Location:
          description: >
            URI of the "Individual log report" resource just created
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/LogmSubscription"

623
    subscriptions.post.303:
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
      description: >-
        Shall be returned when a subscription with the same callbackURI and the same filter already exists and the
        policy of the NFV-MANO functional entity is to not create redundant subscriptions.
        The HTTP response shall include a "Location" HTTP header that contains the resource URI of the existing
        "Individual subscription" resource.
        The response body shall be empty.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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
        Location:
          description: >
            URI of the "Individual log report" resource just created
          schema:
            type: string

653
    LogReportCompiled.Post.200:
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
      description: >-
        Shall be returned for a successful compilation of the log data and creation of the associated log report
        (synchronous mode).
        The response body shall contain a representation of the log report resource, as defined in clause 8.6.2.7.
        The HTTP response shall include a "Location" HTTP header that indicate the URI of the
        "Individual log report" resource just created
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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
        Location:
          description: >
            URI of the "Individual log report" resource just created
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/LogReport"

687
    LogReportCompiled.Post.202:
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
      description: >-
        Shall be returned when the request has been accepted for processing, and it is expected to take some
        time to compile the log file and create the associated log report (asynchronous mode).
        The response body shall be empty.
        The HTTP response shall include a "Location" HTTP header that indicates the URI of the
        "Individual log report" resource that will be created once the log file compilation is completed.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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
        Location:
          description: >
            The URI of the "Individual log report" resource that will be created once the log file
            compilation is completed.
          schema:
            type: string

718
    LogReportCompiled.Post.303:
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
      description: >-
        Shall be returned when a log data compilation and report creation is already ongoing, or a log report has just been
        created, for the specified logging job at the time of processing the request.
        The response body shall be empty.
        The HTTP response shall include a "Location" HTTP header that contains the resource URI of the log report
        resource just created, or to be created by the ongoing compilation and report creation.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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
        Location:
          description: >
            The URI of the log report resource just created, or to be created by the ongoing compilation
            and report creation
          schema:
            type: string

749
    LogReportCompiled.Post.422:
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
      description: >-
        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 task resource, the response code 422 shall also be returned if the
        "objectInstanceId" value provided in the payload body of the request does not correspond to an object
        instance for which log data is being collected by the logging job represented by this resource.
        The response body shall contain a ProblemDetails structure, in which the "detail" attribute should
        convey more information about the error.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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:
778
            $ref: '../components/SOL009_schemas.yaml#/components/schemas/ProblemDetails'
779

780
    LogReport.Get.200:
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
      description: >-
        Shall be returned when information of an individual log report has been read successfully.
        The response body shall contain a representation of the "Individual log report" resource, as
        defined in clause 8.6.2.7.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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/LogReport"

807
    LogReport.Get.202:
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
      description: >-
        Shall be returned if the creation of the log report is ongoing and no log report is available yet
        (applicable in asynchronous mode of the "Compile log task" resource).
        The response body shall be empty.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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

830
    LoggingJob.Get:
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
      description: >-
        Shall be returned when information about an individual logging job has been read successfully.
        The response body shall contain a representation of the "Individual logging job" resource,
        as defined in clause 8.6.2.6.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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/LoggingJob"

857
    LoggingJob.Delete:
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
      description: >-
        Shall be returned when the logging job 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.
          schema:
            type: string
        Version:
          description: >-
            Version of the API used in the response.
          schema:
            type: string

875
    LoggingJob.Post:
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
      description: >-
        The response body contains the Application Context as it was created
        by the MEC system
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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/LoggingJob"
900

901
    LoggingJobs.Get:
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
      description: >-
        Shall be returned when information about zero or more logging jobs has been queried successfully.

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

        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:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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:
            type: array
            items:
              $ref: "#/components/schemas/LoggingJob"
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

    LogReportAvailableNotification.Post:
      description: >-
        Shall be returned when the notification has been delivered successfully.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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

    LogReportNotification.Get:
      description: >-
        Shall be returned to indicate that the notification endpoint has been tested successfully.
        The response body shall be empty.
      headers:
        Content-Type:
          description: The MIME type of the body of the response.
          schema:
            type: string
        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
982
  schemas:
983
984
985
986
987
988
989
990
991
992
993
994
    LogmSubscription:
      description: >-
        This type represents a subscription. It shall comply with the provisions defined in table 8.6.2.3-1.
      type: object
      required:
        - id
        - callbackUri
        - _links
      properties:
        id:
          description: >-
            Identifier that identifies the subscription.
995
          $ref: '../components/SOL009_schemas.yaml#/components/schemas/Identifier'
996
997
998
999
1000
        filter:
          description: >-
            Filter settings for this subscription, to define the subset of all notifications this subscription
            relates to. A particular notification is sent to the subscriber if the filter matches,
            or if there is no filter
For faster browsing, not all history is shown. View entire blame