Commit 52747d00 authored by Giacomo Bernini's avatar Giacomo Bernini
Browse files

fixed API version endpoint and notification ednpoints

parent 930f6d8c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ servers:
      API HTTPS Server

paths:
  /URI-is-provided-by-the-client-when-creating-the-subscription-ConfigurationAndInformationNotification:
  /URI_is_provided_by_the_client_when_creating_the_subscription-ConfigurationAndInformationNotification:
    description: >
      This resource represents a notification endpoint. The API producer can use this 
      resource to send notifications related to NFV-MANO configuration and information 
+3 −3
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ servers:
  - url: https://127.0.0.1/callback/v1

paths:
  /URI-is-provided-by-the-client-when-creating-the-subscription-AlarmNotification:
  /URI_is_provided_by_the_client_when_creating_the_subscription-AlarmNotification:
    post:
      description: >
        The POST method notifies an NFV-MANO functional entity alarm or that the
@@ -77,7 +77,7 @@ paths:
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
        "503":
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
  /URI-is-provided-by-the-client-when-creating-the-subscription-AlarmClearedNotification:
  /URI_is_provided_by_the_client_when_creating_the_subscription-AlarmClearedNotification:
    post:
      description: >
        The POST method notifies an NFV-MANO functional entity alarm or that the
@@ -130,7 +130,7 @@ paths:
          $ref: ../components/SOL009_resp.yaml#/components/responses/500
        "503":
          $ref: ../components/SOL009_resp.yaml#/components/responses/503
  /URI-is-provided-by-the-client-when-creating-the-subscription-AlarmListRebuiltNotification:
  /URI_is_provided_by_the_client_when_creating_the_subscription-AlarmListRebuiltNotification:
    post:
      description: >
        The POST method notifies an NFV-MANO functional entity alarm or that the
+2 −2
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ info:
    name: ETSI Forge copyright notice
    url: https://forge.etsi.org/etsi-forge-copyright-notice.txt
externalDocs:
  description: ETSI GS NFV-SOL 009 V3.3.1
  description: ETSI GS NFV-SOL 009 V3.5.1
  url: https://www.etsi.org/deliver/etsi_gs/NFV-SOL/001_099/009/03.05.01_60/gs_NFV-SOL009v030501p.pdf

security:
@@ -25,7 +25,7 @@ servers:
  - url: https://127.0.0.1/callback/v1

paths:
  /URI-is-provided-by-the-client-when-creating-the-subscription-AlarmNotification:
  /URI_is_provided_by_the_client_when_creating_the_subscription-AlarmNotification:
    description: >-
      This resource represents a notification endpoint for NFV-MANO log management.
      The API producer can use this resource to send notifications related to log management events to a
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ servers:
      API HTTPS Server

paths:
  /URI-is-provided-by-the-client-when-creating-the-subscription-PerformanceInformationNotification:
  /URI_is_provided_by_the_client_when_creating_the_subscription-PerformanceInformationNotification:
    description: >
      This resource represents a notification endpoint for NFV-MANO performance management. 
      The API producer can use this resource to send notifications related to performance 
+29 −4
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@ endpoints:
        schema:
          type: string
    get:
      summary: Retrieve API version information
      description: >
        The GET method reads API version information. This method shall follow the provisions specified in
        table 4.6.3.3.3.2-1 for request and response data structures, and response codes. URI query parameters are not
@@ -65,8 +64,6 @@ endpoints:
          $ref: '../components/SOL009_resp.yaml#/components/responses/403'
        404:
          $ref: '../components/SOL009_resp.yaml#/components/responses/404'
        405:
          $ref: '../components/SOL009_resp.yaml#/components/responses/405'
        406:
          $ref: '../components/SOL009_resp.yaml#/components/responses/406'
        413:
@@ -85,3 +82,31 @@ endpoints:
          $ref: '../components/SOL009_resp.yaml#/components/responses/503'
        504:
          $ref: '../components/SOL009_resp.yaml#/components/responses/504'
    post:
      description: >
        This method is not supported. When this method is requested on this resource, the API producer shall return a "405
        Method Not Allowed" response as defined in SOL013 clause 6.4.
      responses:
        405:
          $ref: ../responses/SOL002SOL003_resp.yaml#/components/responses/405
    put:
      description: >
        This method is not supported. When this method is requested on this resource, the API producer shall return a "405
        Method Not Allowed" response as defined in SOL013 clause 6.4.
      responses:
        405:
          $ref: ../responses/SOL002SOL003_resp.yaml#/components/responses/405
    patch:
      description: >
        This method is not supported. When this method is requested on this resource, the API producer shall return a "405
        Method Not Allowed" response as defined in SOL013 clause 6.4.
      responses:
        405:
          $ref: ../responses/SOL002SOL003_resp.yaml#/components/responses/405
    delete:
      description: >
        This method is not supported. When this method is requested on this resource, the API producer shall return a "405
        Method Not Allowed" response as defined in SOL013 clause 6.4.
      responses:
        405:
          $ref: ../responses/SOL002SOL003_resp.yaml#/components/responses/405
 No newline at end of file