Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

count instead of jobs list and expose filter by pipeline and tag #1513

Merged
merged 10 commits into from
Feb 8, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion core/api-server/api/rest-api/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "HKube API",
"description": "HKube RESTful API",
"version": "2.2.7",
"version": "2.2.8",
"contact": {
"email": "[email protected]"
},
Expand Down Expand Up @@ -12487,6 +12487,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down Expand Up @@ -13166,6 +13182,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down
34 changes: 33 additions & 1 deletion core/datasources-service/api/rest-api/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "HKube API",
"description": "HKube RESTful API",
"version": "2.2.7",
"version": "2.2.8",
"contact": {
"email": "[email protected]"
},
Expand Down Expand Up @@ -12487,6 +12487,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down Expand Up @@ -13166,6 +13182,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down
34 changes: 33 additions & 1 deletion core/gc-service/api/rest-api/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "HKube API",
"description": "HKube RESTful API",
"version": "2.2.7",
"version": "2.2.8",
"contact": {
"email": "[email protected]"
},
Expand Down Expand Up @@ -12487,6 +12487,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down Expand Up @@ -13166,6 +13182,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down
34 changes: 33 additions & 1 deletion core/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "HKube API",
"description": "HKube RESTful API",
"version": "2.2.7",
"version": "2.2.8",
"contact": {
"email": "[email protected]"
},
Expand Down Expand Up @@ -12487,6 +12487,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down Expand Up @@ -13166,6 +13182,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down
10 changes: 10 additions & 0 deletions core/openapi-spec/swagger/paths/managed/list.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ get:
required: true
schema:
type: string
- name: pipelineName
in: query
schema:
type: string
description: filter by pipeline
- name: tag
in: query
schema:
type: string
description: filter by tag

responses:
"200":
Expand Down
12 changes: 11 additions & 1 deletion core/openapi-spec/swagger/paths/preferred/list.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,17 @@ get:
required: true
description: number of records in page
schema:
type: string
type: string
- name: pipelineName
in: query
schema:
type: string
description: filter by pipeline
- name: tag
in: query
schema:
type: string
description: filter by tag
responses:
"200":
description: Get preferred
Expand Down
12 changes: 11 additions & 1 deletion core/openapi-spec/swagger/paths/preferred/preferred.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,17 @@ get:
required: true
description: number of records in page
schema:
type: string
type: string
- name: pipelineName
in: query
schema:
type: string
description: filter by pipeline
- name: tag
in: query
schema:
type: string
description: filter by tag
responses:
"200":
description: Get preferred
Expand Down
34 changes: 33 additions & 1 deletion core/pipeline-driver-queue/api/rest-api/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "HKube API",
"description": "HKube RESTful API",
"version": "2.2.7",
"version": "2.2.8",
"contact": {
"email": "[email protected]"
},
Expand Down Expand Up @@ -12417,6 +12417,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down Expand Up @@ -13096,6 +13112,22 @@
"schema": {
"type": "string"
}
},
{
"name": "pipelineName",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by pipeline"
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
},
"description": "filter by tag"
}
],
"responses": {
Expand Down
Loading