Commit c7be4965 authored by Muhammad Hamza's avatar Muhammad Hamza
Browse files

add components folder

parent dbbd7d64
Loading
Loading
Loading
Loading
+87 −0
Original line number Original line Diff line number Diff line
components:
  parameters:
    Version:
      name: Version
      description: >
        Version of the API requested to use when responding to this request.
      in: header
      required: true
      schema:
        type: string
    
    Accept:
      name: Accept
      description: >
        Content-Types that are acceptable for the response. Reference: IETF RFC 7231.
      in: header
      required: true
      schema:
        type: string
    
    Authorization:
      name: Authorization
      description: >
        The authorization token for the request. Reference: IETF RFC 7235.
      in: header
      required: false
      schema:
        type: string

    ContentType:
      name: Content-Type
      description: |
        The MIME type of the body of the request. Reference: IETF RFC 7231
      in: header
      required: true
      schema:
        type: string

    Range:
      name: Range
      description: |
        Requested range of bytes from a file.
      required: false
      in: header
      schema:
        type: string

    all_fields_vnfm:
      name: all_fields
      description: >
        Include all complex attributes in the response. See clause 5.3 of ETSI
        GS NFV-SOL 013 [8] for details. The VNFM shall support this parameter.
      in: query
      required: false
      schema:
        type: string

    fields_vnfm:
      name: fields
      description: >
        Complex attributes to be included into the response. See clause 5.3 of ETSI
        GS NFV-SOL 013 [8] for details. The VNFM should support this parameter.
      in: query
      required: false
      schema:
        type: string

    exclude_fields_vnfm:
      name: exclude_fields
      description: >
        Complex attributes to be excluded from the response. See clause 5.3 of ETSI
        GS NFV-SOL 013 [8] for details. The VNFM should support this parameter.
      in: query
      required: false
      schema:
        type: string

    nextpage_opaque_marker_vnfm:
      name: nextpage_opaque_marker
      description: >
        Marker to obtain the next page of a paged response. Shall be supported by the VNFM
        if the VNFM supports alternative 2 (paging) according to clause 5.4.2.1 of ETSI
        GS NFV-SOL 013 [8] for this resource.
      in: query
      required: false
      schema:
        type: string
 No newline at end of file