Commit d11cf9ca authored by Yuya Kuno's avatar Yuya Kuno
Browse files

Edit IntentManagement.yaml

parent d1984b31
Loading
Loading
Loading
Loading
Loading
+17 −17
Original line number Diff line number Diff line
openapi: 3.0.2
info:
  version: 1.0.0-impl:etsi.org:ETSI_NFV_OpenAPI:1
  version: "1.0.0-impl:etsi.org:ETSI_NFV_OpenAPI:1"
  title: ETSI GS NFV-SOL 021 Intent Management Service API
  description: |
    SOL021 - Intent management service API
@@ -27,15 +27,15 @@ paths:
              $ref: ../components/SOL021_params.yaml#/components/schemas/Intent
        required: true
      responses:
        '201':
        "201":
          description: Successful creation of the NFV intent object instance.
          content:
            application/json:
              schema:
                $ref: ../components/SOL021_params.yaml#/components/schemas/Intent
        '400':
        "400":
          $ref: ../responses/SOL021_resp.yaml#/responses/400
        '404':
        "404":
          $ref: ../responses/SOL021_resp.yaml#/responses/404
    get:
      description: The GET method queries information about multiple NFV intents.
@@ -46,7 +46,7 @@ paths:
        - $ref: ../components/SOL021_params.yaml#/components/parameters/ExcludeFields
        - $ref: ../components/SOL021_params.yaml#/components/parameters/NextPage
      responses:
        '200':
        "200":
          description: Successful query of the intents.
          content:
            application/json:
@@ -54,9 +54,9 @@ paths:
                type: array
                items:
                  $ref: ../components/SOL021_params.yaml#/components/schemas/Intent
        '400':
        "400":
          $ref: ../responses/SOL021_resp.yaml#/responses/400
        '404':
        "404":
          $ref: ../responses/SOL021_resp.yaml#/responses/404
  "/intents/{intentId}":
    parameters:
@@ -64,15 +64,15 @@ paths:
    get:
      description: The GET method queries information about an NFV intent.
      responses:
        '200':
        "200":
          description: Successful query of the individual intent.
          content:
            application/json:
              schema:
                $ref: ../components/SOL021_params.yaml#/components/schemas/Intent
        '400':
        "400":
          $ref: ../responses/SOL021_resp.yaml#/responses/400
        '404':
        "404":
          $ref: ../responses/SOL021_resp.yaml#/responses/404
    patch:
      description: The PATCH method modifies an intent.
@@ -84,24 +84,24 @@ paths:
              $ref: ../components/SOL021_params.yaml#/components/schemas/IntentModifications
        required: true
      responses:
        '200':
        "200":
          description: Successful modifications of the individual intent.
          content:
            application/json:
              schema:
                $ref: ../components/SOL021_params.yaml#/components/schemas/Intent
        '400':
        "400":
          $ref: ../responses/SOL021_resp.yaml#/responses/400
        '404':
        "404":
          $ref: ../responses/SOL021_resp.yaml#/responses/404
        '412':
        "412":
          $ref: ../responses/SOL021_resp.yaml#/responses/412
        '422':
        "422":
          $ref: ../responses/SOL021_resp.yaml#/responses/422
    delete:
      description: The DELETE method deletes an individual intent.
      responses:
        '204':
        "204":
          description: Successful deletion of the intent.
        '404':
        "404":
          $ref: ../responses/SOL021_resp.yaml#/responses/404