diff --git a/openapi/components/schemas/RunListResponse.yaml b/openapi/components/schemas/RunListResponse.yaml index f3234e17..1252d5d9 100644 --- a/openapi/components/schemas/RunListResponse.yaml +++ b/openapi/components/schemas/RunListResponse.yaml @@ -9,4 +9,8 @@ properties: next_page_token: type: string description: A token which may be supplied as `page_token` in workflow run list request to get the next page of results. An empty string indicates there are no more items to return. + total_runs: + type: integer + description: >- + Total number of runs in list. description: The service will return a RunListResponse when receiving a successful RunListRequest. \ No newline at end of file diff --git a/openapi/workflow_execution_service.schema.json b/openapi/workflow_execution_service.schema.json index bf24ce34..cdb643b4 100644 --- a/openapi/workflow_execution_service.schema.json +++ b/openapi/workflow_execution_service.schema.json @@ -150,6 +150,10 @@ "next_page_token": { "type": "string", "description": "A token which may be supplied as `page_token` in workflow run list request to get the next page of results. An empty string indicates there are no more items to return." + }, + "total_runs": { + "type": "integer", + "description": "Total number of runs in list." } }, "description": "The service will return a RunListResponse when receiving a successful RunListRequest." diff --git a/openapi/workflow_execution_service.swagger.yaml b/openapi/workflow_execution_service.swagger.yaml index 99866251..0ac25c17 100644 --- a/openapi/workflow_execution_service.swagger.yaml +++ b/openapi/workflow_execution_service.swagger.yaml @@ -548,6 +548,10 @@ definitions: description: >- A token which may be supplied as `page_token` in workflow run list request to get the next page of results. An empty string indicates there are no more items to return. + total_runs: + type: integer + description: >- + Total number of runs in list. description: The service will return a RunListResponse when receiving a successful RunListRequest. RunLog: type: object