-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add generated client from visualization swagger (#1979)
* Update backend/api/generate_api.sh to build visualization swagger file * Built visualization client
- Loading branch information
1 parent
f5b2f24
commit cd2a684
Showing
12 changed files
with
1,015 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
backend/api/go_http_client/visualization_client/BUILD.bazel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = ["visualization_client.go"], | ||
importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/visualization_client", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//backend/api/go_http_client/visualization_client/visualization_service:go_default_library", | ||
"@com_github_go_openapi_runtime//:go_default_library", | ||
"@com_github_go_openapi_runtime//client:go_default_library", | ||
"@com_github_go_openapi_strfmt//:go_default_library", | ||
], | ||
) |
131 changes: 131 additions & 0 deletions
131
backend/api/go_http_client/visualization_client/visualization_client.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
backend/api/go_http_client/visualization_client/visualization_service/BUILD.bazel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = [ | ||
"create_visualization_parameters.go", | ||
"create_visualization_responses.go", | ||
"visualization_service_client.go", | ||
], | ||
importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/visualization_client/visualization_service", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//backend/api/go_http_client/visualization_model:go_default_library", | ||
"@com_github_go_openapi_errors//:go_default_library", | ||
"@com_github_go_openapi_runtime//:go_default_library", | ||
"@com_github_go_openapi_runtime//client:go_default_library", | ||
"@com_github_go_openapi_strfmt//:go_default_library", | ||
], | ||
) |
150 changes: 150 additions & 0 deletions
150
...http_client/visualization_client/visualization_service/create_visualization_parameters.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.