Commit 116c84b9 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

replay feature fixes + optional activation info

parent cf74c131
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 0.0.1
- Build date: 2020-02-21T16:24:22.905-05:00
- Build date: 2020-03-03T10:01:57.219-05:00


### Running the server
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 0.0.1
- Build date: 2020-02-21T16:24:24.872-05:00
- Build date: 2020-03-03T10:01:58.559-05:00


### Running the server
+45 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ paths:
      - in: "body"
        name: "activationInfo"
        description: "Activation information"
        required: true
        required: false
        schema:
          $ref: "#/definitions/ActivationInfo"
        x-exportParamName: "ActivationInfo"
@@ -327,6 +327,23 @@ paths:
          description: "OK"
        404:
          description: "Not found"
  /replaystatus:
    get:
      tags:
      - "Event Replay"
      summary: "Get status of replay manager"
      description: "Returns status information on the replay manager"
      operationId: "getReplayStatus"
      produces:
      - "application/json"
      parameters: []
      responses:
        200:
          description: "OK"
          schema:
            $ref: "#/definitions/ReplayStatus"
        404:
          description: "Not found"
  /replay/{name}:
    get:
      tags:
@@ -1168,6 +1185,33 @@ definitions:
          type: "string"
    description: "Replay-file list"
    example: {}
  ReplayStatus:
    type: "object"
    properties:
      replayFileRunning:
        type: "string"
        description: "Name of the replay file currently running"
        readOnly: true
      index:
        type: "integer"
        description: "Index of the last ran event"
        readOnly: true
      maxIndex:
        type: "integer"
        description: "Number of events in the replay file"
        readOnly: true
      loopMode:
        type: "boolean"
        description: "Loop mode enables"
        readOnly: true
      duration:
        type: "integer"
        description: "Total duration of the replay file"
      durationElapsed:
        type: "integer"
        description: "Duration the replay file has been running"
    description: "Replay status object"
    example: {}
  Replay:
    type: "object"
    properties:
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 1.0.0
- Build date: 2020-02-21T16:24:05.382-05:00
- Build date: 2020-03-03T10:01:46.435-05:00


### Running the server
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 1.1.1
- Build date: 2020-02-21T16:24:19.313-05:00
- Build date: 2020-03-03T10:01:55.056-05:00


### Running the server
Loading