Commit c7050a8c authored by bradburyr's avatar bradburyr
Browse files

Added operation to enumerate Provisioning Sessions.

parent a8df79cd
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
@@ -58,6 +58,28 @@ paths:
          $ref: 'TS29571_CommonData.yaml#/components/responses/503'
        default:
          $ref: 'TS29571_CommonData.yaml#/components/responses/default'
    get:
      operationId: enumerateProvisioningSessions
      summary: "Retrieve a list of Provisioning Session resource identifiers currently registered with the Media AF"
      responses:
        '200': # OK
          description: "Success"
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: 'TS26510_CommonData.yaml#/components/schemas/ResourceId'
        '400': # Bad Request: The syntax of the HTTP request is malformed in a way not covered by one of the following more specific client errors
          $ref: 'TS29571_CommonData.yaml#/components/responses/400'
        '413': # Payload Too Large: No request body allowed for this operation
          $ref: 'TS29571_CommonData.yaml#/components/responses/413'
        '500': # Internal Server Error
          $ref: 'TS29571_CommonData.yaml#/components/responses/500'
        '503': # Service Unavailable
          $ref: 'TS29571_CommonData.yaml#/components/responses/503'
        default:
          $ref: 'TS29571_CommonData.yaml#/components/responses/default'

  /provisioning-sessions/{provisioningSessionId}:
    parameters: