Commit 7e105b9e authored by Francesca Moscatelli's avatar Francesca Moscatelli
Browse files

VNF Pkg Management Interface migrated to OpenAPI 3.0.2

parent 0ac205bb
Loading
Loading
Loading
Loading
Loading
+1311 −1755

File changed.

Preview size limit exceeded, changes collapsed.

+62 −0
Original line number Diff line number Diff line
@@ -36,6 +36,19 @@ components:
      schema:
        type: string

    Range:
      name: Range
      in: header
      description: |
        The request may contain a "Range" HTTP header to obtain single range of bytes from the VNF package file.
        This can be used to continue an aborted transmission.
        If the NFVO does not support range requests, it should return the whole file with a 200 OK response instead.
      required: false
      style: simple
      explode: false
      schema:
        type: string

    filter:
      name: filter
      description: >
@@ -116,3 +129,52 @@ components:
      required: false
      schema:
        type: string

    include_signature:
      name: include_signature
      description: >
        If this parameter is provided, the NFVO shall include in the ZIP archive the security information
        as specified above.
        This URI query parameter is a flag, i.e. it shall have no value. The NFVO shall support this parameter.
      in: query
      required: false
      schema:
        type: string

    exclude_all_mano_artifacts:
      name: exclude_all_mano_artifacts
      in: query
      description: |
        Flag (i.e. parameter without value) that instructs the NFVO to exclude the set of additional MANO artifacts
        (i.e. those that are not images) from the response payload body. The NFVO shall support this parameter.
        The VNFM may supply this parameter.
      required: false
      style: form
      explode: true
      schema:
        type: string

    exclude_all_non_mano_artifacts:
      name: exclude_all_non_mano_artifacts
      in: query
      description: |
        Flag (i.e. parameter without value) that instructs the NFVO to exclude the set of non-MANO artifacts from the
        response payload body. The NFVO shall support this parameter. The VNFM may supply this parameter.
      required: false
      style: form
      explode: true
      schema:
        type: string

    select_non_mano_artifact_sets:
      name: select_non_mano_artifact_sets
      in: query
      description: |
        Comma-separated list of non-MANO artifact set identifiers for which the artifacts are to be included in the
        response body. The NFVO should support this parameter. If the NFVO does not support this parameter, it shall
        ignore it, i.e. provide a response as if no parameter was provided. The VNFM may supply this parameter.
      required: false
      style: form
      explode: true
      schema:
        type: string
 No newline at end of file