diff --git a/BUILD.bazel b/BUILD.bazel deleted file mode 100644 index 94797ba522d..00000000000 --- a/BUILD.bazel +++ /dev/null @@ -1,8 +0,0 @@ -load("@bazel_gazelle//:def.bzl", "gazelle") - -# gazelle:prefix github.com/kubeflow/pipelines -# gazelle:resolve proto protoc-gen-swagger/options/annotations.proto @com_github_grpc_ecosystem_grpc_gateway//protoc-gen-swagger/options:options_proto -# gazelle:resolve proto go protoc-gen-swagger/options/annotations.proto @com_github_grpc_ecosystem_grpc_gateway//protoc-gen-swagger/options:go_default_library -# gazelle:resolve go github.com/kubeflow/pipelines/backend/api/go_client //backend/api:go_default_library -# gazelle:exclude vendor/ -gazelle(name = "gazelle") diff --git a/api/v2alpha1/BUILD.bazel b/api/v2alpha1/BUILD.bazel deleted file mode 100644 index 7a5f9daa6a7..00000000000 --- a/api/v2alpha1/BUILD.bazel +++ /dev/null @@ -1,26 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") -load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") - -proto_library( - name = "ml_pipelines_proto", - srcs = ["pipeline_spec.proto"], - visibility = ["//visibility:public"], - deps = [ - "@com_google_protobuf//:any_proto", - "@com_google_protobuf//:struct_proto", - ], -) - -go_proto_library( - name = "ml_pipelines_go_proto", - importpath = "github.com/kubeflow/pipelines/api/v2alpha1", - proto = ":ml_pipelines_proto", - visibility = ["//visibility:public"], -) - -go_library( - name = "go_default_library", - embed = [":ml_pipelines_go_proto"], - importpath = "github.com/kubeflow/pipelines/api/v2alpha1", - visibility = ["//visibility:public"], -) diff --git a/backend/api/auth.proto b/backend/api/auth.proto index 28a27b3aa43..692fef5ff84 100644 --- a/backend/api/auth.proto +++ b/backend/api/auth.proto @@ -19,7 +19,6 @@ package api; import "google/api/annotations.proto"; import "google/protobuf/empty.proto"; -import "backend/api/error.proto"; import "protoc-gen-swagger/options/annotations.proto"; option (grpc.gateway.protoc_gen_swagger.options.openapiv2_swagger) = { diff --git a/backend/api/build_kfp_server_api_python_package.sh b/backend/api/build_kfp_server_api_python_package.sh index 2156ec728e2..3f95f54a896 100755 --- a/backend/api/build_kfp_server_api_python_package.sh +++ b/backend/api/build_kfp_server_api_python_package.sh @@ -1,6 +1,6 @@ #!/bin/bash -e # -# Copyright 2018-2020 Google LLC +# Copyright 2018-2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -66,10 +66,6 @@ pushd "$DIR" python3 setup.py --quiet sdist popd -echo "Adding license header for generated python files in $DIR." -go install github.com/google/addlicense -addlicense "$DIR" - echo "Run the following commands to update the package on PyPI" echo "python3 -m pip install twine" echo "python3 -m twine upload --username kubeflow-pipelines $DIR/dist/*" diff --git a/backend/api/generate_api.sh b/backend/api/generate_api.sh index 30bd1f34aaa..d8a82bc52a7 100755 --- a/backend/api/generate_api.sh +++ b/backend/api/generate_api.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2018-2020 Google LLC +# Copyright 2018-2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -28,10 +28,9 @@ if [ -z "$VERSION" ]; then echo "ERROR: $REPO_ROOT/VERSION is empty" exit 1 fi +TMP_DIR="$(mktemp -d)" BAZEL_BINDIR=$(bazel info bazel-bin) -SWAGGER_CMD=${DIR}/../../bazel-bin/external/com_github_go_swagger/cmd/swagger/*stripped/swagger -AUTOGEN_CMD="${DIR}/../../bazel-bin/external/com_github_mbrukman_autogen/autogen_tool" GENERATED_GO_PROTO_FILES="${BAZEL_BINDIR}/backend/api/api_generated_go_sources/src/github.com/kubeflow/pipelines/backend/api/go_client/*.go" # TODO this script should be able to be run from anywhere, not just within .../backend/api/ @@ -40,19 +39,16 @@ GENERATED_GO_PROTO_FILES="${BAZEL_BINDIR}/backend/api/api_generated_go_sources/s rm -r -f ${DIR}/go_http_client/* rm -r -f ${DIR}/go_client/* -# Build required tools. -bazel build @com_github_mbrukman_autogen//:autogen_tool -bazel build @com_github_go_swagger//cmd/swagger - # Build .pb.go and .gw.pb.go files from the proto sources. bazel build //backend/api:api_generated_go_sources +mkdir -p ${DIR}/go_client + # Copy the generated files into the source tree and add license. for f in $GENERATED_GO_PROTO_FILES; do target=${DIR}/go_client/$(basename ${f}) cp $f $target chmod 766 $target - ${AUTOGEN_CMD} -i --no-tlc -c "Google LLC" -l apache $target done # Generate and copy back into source tree .swagger.json files. @@ -68,6 +64,16 @@ jq -s ' .info.license = { "name": "Apache 2.0", "url": "https://raw.githubusercontent.com/kubeflow/pipelines/master/LICENSE" } ' ${DIR}/swagger/{run,job,pipeline,experiment,pipeline.upload,healthz}.swagger.json > "${DIR}/swagger/kfp_api_single_file.swagger.json" +# Reference: https://goswagger.io/install.html +SWAGGER_GO_VERSION=v0.18.0 +pushd "${TMP_DIR}" +curl -LO "https://github.com/go-swagger/go-swagger/releases/download/${SWAGGER_GO_VERSION}/swagger_linux_amd64" +chmod +x swagger_linux_amd64 +SWAGGER_CMD="${TMP_DIR}/swagger_linux_amd64" +popd + +mkdir -p ${DIR}/go_http_client + # Generate Go HTTP client from the swagger files. ${SWAGGER_CMD} generate client \ -f ${DIR}/swagger/job.swagger.json \ @@ -134,11 +140,3 @@ sed -i -- 's/IntervalSecond string `json:"interval_second,omitempty"`/IntervalSe # Executes the //go:generate directives in the generated code. go generate ./... - -# Add license to files in go_http_client. -find ${DIR}/go_http_client/ -name "*.go" -exec ${AUTOGEN_CMD} -i --no-tlc -c "Google LLC" -l apache {} \; - -# Finally, run gazelle to add BUILD files for the generated code. -bazel run //:gazelle -# HACK: remove unnecessary BUILD.bazels -rm -f "$REPO_ROOT/sdk/python/kfp/components/structures/BUILD.bazel" "$REPO_ROOT/tools/metadatastore-upgrade/BUILD.bazel" diff --git a/backend/api/go_client/BUILD.bazel b/backend/api/go_client/BUILD.bazel deleted file mode 100644 index 5fc54129661..00000000000 --- a/backend/api/go_client/BUILD.bazel +++ /dev/null @@ -1,45 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "auth.pb.go", - "auth.pb.gw.go", - "error.pb.go", - "experiment.pb.go", - "experiment.pb.gw.go", - "filter.pb.go", - "healthz.pb.go", - "healthz.pb.gw.go", - "job.pb.go", - "job.pb.gw.go", - "parameter.pb.go", - "pipeline.pb.go", - "pipeline.pb.gw.go", - "pipeline_spec.pb.go", - "report.pb.go", - "report.pb.gw.go", - "resource_reference.pb.go", - "run.pb.go", - "run.pb.gw.go", - "visualization.pb.go", - "visualization.pb.gw.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_client", - visibility = ["//visibility:public"], - deps = [ - "@com_github_golang_protobuf//proto:go_default_library", - "@com_github_grpc_ecosystem_grpc_gateway//protoc-gen-swagger/options:go_default_library", - "@com_github_grpc_ecosystem_grpc_gateway//runtime:go_default_library", - "@com_github_grpc_ecosystem_grpc_gateway//utilities:go_default_library", - "@go_googleapis//google/api:annotations_go_proto", - "@io_bazel_rules_go//proto/wkt:any_go_proto", - "@io_bazel_rules_go//proto/wkt:empty_go_proto", - "@io_bazel_rules_go//proto/wkt:timestamp_go_proto", - "@org_golang_google_grpc//:go_default_library", - "@org_golang_google_grpc//codes:go_default_library", - "@org_golang_google_grpc//grpclog:go_default_library", - "@org_golang_google_grpc//status:go_default_library", - "@org_golang_x_net//context:go_default_library", - ], -) diff --git a/backend/api/go_client/auth.pb.go b/backend/api/go_client/auth.pb.go index 5444bca8c3b..2aecdd88295 100755 --- a/backend/api/go_client/auth.pb.go +++ b/backend/api/go_client/auth.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/auth.proto @@ -60,7 +46,7 @@ func (x AuthorizeRequest_Resources) String() string { return proto.EnumName(AuthorizeRequest_Resources_name, int32(x)) } func (AuthorizeRequest_Resources) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_auth_b463ef3269931e86, []int{0, 0} + return fileDescriptor_auth_ddacc12b605d8d52, []int{0, 0} } type AuthorizeRequest_Verb int32 @@ -89,7 +75,7 @@ func (x AuthorizeRequest_Verb) String() string { return proto.EnumName(AuthorizeRequest_Verb_name, int32(x)) } func (AuthorizeRequest_Verb) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_auth_b463ef3269931e86, []int{0, 1} + return fileDescriptor_auth_ddacc12b605d8d52, []int{0, 1} } type AuthorizeRequest struct { @@ -105,7 +91,7 @@ func (m *AuthorizeRequest) Reset() { *m = AuthorizeRequest{} } func (m *AuthorizeRequest) String() string { return proto.CompactTextString(m) } func (*AuthorizeRequest) ProtoMessage() {} func (*AuthorizeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_auth_b463ef3269931e86, []int{0} + return fileDescriptor_auth_ddacc12b605d8d52, []int{0} } func (m *AuthorizeRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_AuthorizeRequest.Unmarshal(m, b) @@ -224,37 +210,37 @@ var _AuthService_serviceDesc = grpc.ServiceDesc{ Metadata: "backend/api/auth.proto", } -func init() { proto.RegisterFile("backend/api/auth.proto", fileDescriptor_auth_b463ef3269931e86) } - -var fileDescriptor_auth_b463ef3269931e86 = []byte{ - // 460 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x52, 0xc1, 0x6e, 0xd3, 0x40, - 0x14, 0x8c, 0x9d, 0x2a, 0xc1, 0x2f, 0x94, 0x9a, 0x6d, 0x29, 0x91, 0x09, 0x6a, 0x94, 0x53, 0x0f, - 0xd4, 0x56, 0xd3, 0x2b, 0x1c, 0x92, 0x76, 0x55, 0x55, 0x82, 0x22, 0xad, 0xd3, 0x20, 0xf5, 0x52, - 0xad, 0xdd, 0x17, 0x67, 0x55, 0xc7, 0x6b, 0xd6, 0xeb, 0x54, 0x70, 0x44, 0xe2, 0x03, 0x80, 0x4f, - 0xe3, 0x17, 0xf8, 0x10, 0xe4, 0x4d, 0x9a, 0x46, 0x90, 0xd3, 0x6a, 0xdf, 0xcc, 0x9b, 0x19, 0x69, - 0x1e, 0xec, 0x47, 0x3c, 0xbe, 0xc3, 0xec, 0x36, 0xe0, 0xb9, 0x08, 0x78, 0xa9, 0xa7, 0x7e, 0xae, - 0xa4, 0x96, 0xa4, 0xce, 0x73, 0xe1, 0x75, 0x12, 0x29, 0x93, 0x14, 0x17, 0x58, 0x96, 0x49, 0xcd, - 0xb5, 0x90, 0x59, 0xb1, 0xa0, 0x78, 0xaf, 0x96, 0xa8, 0xf9, 0x45, 0xe5, 0x24, 0xc0, 0x59, 0xae, - 0xbf, 0x2c, 0xc1, 0x97, 0xeb, 0xba, 0xa8, 0x94, 0x54, 0x4b, 0xe0, 0x8d, 0x79, 0xe2, 0xa3, 0x04, - 0xb3, 0xa3, 0xe2, 0x9e, 0x27, 0x09, 0xaa, 0x40, 0xe6, 0x46, 0xf7, 0x7f, 0x8f, 0xde, 0x0f, 0x1b, - 0xdc, 0x41, 0xa9, 0xa7, 0x52, 0x89, 0xaf, 0xc8, 0xf0, 0x73, 0x89, 0x85, 0x26, 0x1d, 0x70, 0x32, - 0x3e, 0xc3, 0x22, 0xe7, 0x31, 0xb6, 0xad, 0xae, 0x75, 0xe8, 0xb0, 0xc7, 0x01, 0x79, 0x07, 0x8e, - 0xc2, 0x42, 0x96, 0x2a, 0xc6, 0xa2, 0x6d, 0x77, 0xad, 0xc3, 0x67, 0xfd, 0x03, 0x9f, 0xe7, 0xc2, - 0xff, 0x57, 0xc7, 0x67, 0x0f, 0x34, 0xf6, 0xb8, 0x41, 0x7c, 0xd8, 0x9a, 0xa3, 0x8a, 0xda, 0x75, - 0xb3, 0xe9, 0x6d, 0xde, 0x1c, 0xa3, 0x8a, 0x98, 0xe1, 0xf5, 0xfa, 0xe0, 0xac, 0x74, 0x48, 0x1b, - 0xf6, 0xae, 0x2e, 0x07, 0x61, 0x78, 0x71, 0x7e, 0x49, 0xcf, 0x6e, 0x18, 0x0d, 0x3f, 0x5e, 0xb1, - 0x53, 0x1a, 0xba, 0x35, 0xd2, 0x82, 0xe6, 0xf8, 0x82, 0x7e, 0xa2, 0x2c, 0x74, 0xad, 0xde, 0x5b, - 0xd8, 0xaa, 0x14, 0xc8, 0x2e, 0xec, 0xac, 0xd1, 0xc7, 0x94, 0x0d, 0xdd, 0x1a, 0x01, 0x68, 0x9c, - 0x32, 0x3a, 0x18, 0x51, 0xd7, 0x22, 0x4d, 0xa8, 0x9f, 0xd3, 0x91, 0x6b, 0x57, 0xc3, 0x33, 0xfa, - 0x9e, 0x8e, 0xa8, 0x5b, 0xef, 0x23, 0xb4, 0xaa, 0x40, 0x21, 0xaa, 0xb9, 0x88, 0x91, 0x8c, 0xc1, - 0x59, 0xe5, 0x23, 0x2f, 0x36, 0xe6, 0xf5, 0xf6, 0xfd, 0x45, 0x57, 0xfe, 0x43, 0x57, 0x3e, 0xad, - 0xba, 0xea, 0x79, 0xdf, 0x7e, 0xff, 0xf9, 0x65, 0xef, 0x11, 0x52, 0xd5, 0x54, 0x04, 0xf3, 0xe3, - 0x08, 0x35, 0x3f, 0x36, 0x77, 0x30, 0xfc, 0x6e, 0xfd, 0x1c, 0x7c, 0x60, 0x1d, 0x68, 0xde, 0xe2, - 0x84, 0x97, 0xa9, 0x26, 0xcf, 0xc9, 0x0e, 0x6c, 0x7b, 0x2d, 0xe3, 0x10, 0x6a, 0xae, 0xcb, 0xe2, - 0xfa, 0x00, 0x5e, 0x43, 0x63, 0x88, 0x5c, 0xa1, 0x22, 0xbb, 0x4f, 0x6c, 0x6f, 0x9b, 0x2f, 0x9d, - 0x4d, 0x89, 0x5d, 0x3b, 0x7a, 0x0a, 0xb0, 0x22, 0xd4, 0xae, 0x4f, 0x12, 0xa1, 0xa7, 0x65, 0xe4, - 0xc7, 0x72, 0x16, 0xdc, 0x95, 0x11, 0x4e, 0x52, 0x79, 0x1f, 0xe4, 0x22, 0xc7, 0x54, 0x64, 0x58, - 0x04, 0xeb, 0x27, 0x93, 0xc8, 0x9b, 0x38, 0x15, 0x98, 0xe9, 0xa8, 0x61, 0x32, 0x9f, 0xfc, 0x0d, - 0x00, 0x00, 0xff, 0xff, 0x8e, 0x47, 0x2d, 0x41, 0xaa, 0x02, 0x00, 0x00, +func init() { proto.RegisterFile("backend/api/auth.proto", fileDescriptor_auth_ddacc12b605d8d52) } + +var fileDescriptor_auth_ddacc12b605d8d52 = []byte{ + // 453 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0xc1, 0x4e, 0xdb, 0x40, + 0x10, 0x86, 0x63, 0x07, 0x25, 0xcd, 0xa4, 0x14, 0x77, 0xa1, 0x28, 0x72, 0x53, 0x11, 0xe5, 0xc4, + 0xa1, 0xd8, 0x22, 0x5c, 0xdb, 0x43, 0x02, 0x2b, 0x84, 0xd4, 0x52, 0x69, 0x1d, 0x52, 0x89, 0x0b, + 0x5a, 0x9b, 0x89, 0xb3, 0xc2, 0xf1, 0xba, 0xeb, 0xdd, 0xa0, 0xf6, 0x58, 0xa9, 0x0f, 0xd0, 0xf6, + 0xd1, 0xfa, 0x0a, 0x7d, 0x90, 0xca, 0x9b, 0x10, 0x50, 0xe1, 0x64, 0x79, 0xe6, 0xff, 0xff, 0xf9, + 0xa5, 0x6f, 0x61, 0x37, 0xe6, 0xc9, 0x0d, 0xe6, 0xd7, 0x21, 0x2f, 0x44, 0xc8, 0x8d, 0x9e, 0x05, + 0x85, 0x92, 0x5a, 0x92, 0x3a, 0x2f, 0x84, 0xdf, 0x4d, 0xa5, 0x4c, 0x33, 0x5c, 0xee, 0xf2, 0x5c, + 0x6a, 0xae, 0x85, 0xcc, 0xcb, 0xa5, 0xc4, 0x7f, 0xbd, 0xda, 0xda, 0xbf, 0xd8, 0x4c, 0x43, 0x9c, + 0x17, 0xfa, 0xeb, 0x6a, 0xf9, 0xd6, 0x7e, 0x92, 0x83, 0x14, 0xf3, 0x83, 0xf2, 0x96, 0xa7, 0x29, + 0xaa, 0x50, 0x16, 0xd6, 0xfe, 0x38, 0xaa, 0xff, 0xd3, 0x05, 0x6f, 0x68, 0xf4, 0x4c, 0x2a, 0xf1, + 0x0d, 0x19, 0x7e, 0x31, 0x58, 0x6a, 0xd2, 0x85, 0x56, 0xce, 0xe7, 0x58, 0x16, 0x3c, 0xc1, 0x8e, + 0xd3, 0x73, 0xf6, 0x5b, 0xec, 0x7e, 0x40, 0xde, 0x43, 0x4b, 0x61, 0x29, 0x8d, 0x4a, 0xb0, 0xec, + 0xb8, 0x3d, 0x67, 0xff, 0xc5, 0x60, 0x2f, 0xe0, 0x85, 0x08, 0xfe, 0xcf, 0x09, 0xd8, 0x9d, 0x8c, + 0xdd, 0x3b, 0x48, 0x00, 0x1b, 0x0b, 0x54, 0x71, 0xa7, 0x6e, 0x9d, 0xfe, 0xd3, 0xce, 0x09, 0xaa, + 0x98, 0x59, 0x5d, 0x7f, 0x00, 0xad, 0x75, 0x0e, 0xe9, 0xc0, 0xce, 0xc5, 0xf9, 0x30, 0x8a, 0xce, + 0x4e, 0xcf, 0xe9, 0xc9, 0x15, 0xa3, 0xd1, 0xa7, 0x0b, 0x76, 0x4c, 0x23, 0xaf, 0x46, 0xda, 0xd0, + 0x9c, 0x9c, 0xd1, 0xcf, 0x94, 0x45, 0x9e, 0xd3, 0x7f, 0x07, 0x1b, 0x55, 0x02, 0xd9, 0x86, 0xad, + 0x07, 0xf2, 0x09, 0x65, 0x23, 0xaf, 0x46, 0x00, 0x1a, 0xc7, 0x8c, 0x0e, 0xc7, 0xd4, 0x73, 0x48, + 0x13, 0xea, 0xa7, 0x74, 0xec, 0xb9, 0xd5, 0xf0, 0x84, 0x7e, 0xa0, 0x63, 0xea, 0xd5, 0x07, 0x08, + 0xed, 0xaa, 0x50, 0x84, 0x6a, 0x21, 0x12, 0x24, 0x13, 0x68, 0xad, 0xfb, 0x91, 0x57, 0x4f, 0xf6, + 0xf5, 0x77, 0x83, 0x25, 0x92, 0xe0, 0x0e, 0x49, 0x40, 0x2b, 0x24, 0x7d, 0xff, 0xfb, 0x9f, 0xbf, + 0xbf, 0xdd, 0x1d, 0x42, 0x2a, 0x92, 0x65, 0xb8, 0x38, 0x8c, 0x51, 0xf3, 0x43, 0x8b, 0x7b, 0xf4, + 0xc3, 0xf9, 0x35, 0xfc, 0xc8, 0xba, 0xd0, 0xbc, 0xc6, 0x29, 0x37, 0x99, 0x26, 0x2f, 0xc9, 0x16, + 0x6c, 0xfa, 0x6d, 0x7b, 0x21, 0xd2, 0x5c, 0x9b, 0xf2, 0x72, 0x0f, 0xde, 0x40, 0x63, 0x84, 0x5c, + 0xa1, 0x22, 0xdb, 0xcf, 0x5c, 0x7f, 0x93, 0xaf, 0x2e, 0x5b, 0x88, 0x3d, 0x37, 0x7e, 0x0e, 0xb0, + 0x16, 0xd4, 0x2e, 0x8f, 0x52, 0xa1, 0x67, 0x26, 0x0e, 0x12, 0x39, 0x0f, 0x6f, 0x4c, 0x8c, 0xd3, + 0x4c, 0xde, 0x86, 0x85, 0x28, 0x30, 0x13, 0x39, 0x96, 0xe1, 0xc3, 0x17, 0x97, 0xca, 0xab, 0x24, + 0x13, 0x98, 0xeb, 0xb8, 0x61, 0x3b, 0x1f, 0xfd, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x98, 0xcf, 0xb4, + 0xb0, 0x91, 0x02, 0x00, 0x00, } diff --git a/backend/api/go_client/auth.pb.gw.go b/backend/api/go_client/auth.pb.gw.go index 86ce6379d10..47433d483b2 100755 --- a/backend/api/go_client/auth.pb.gw.go +++ b/backend/api/go_client/auth.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. // source: backend/api/auth.proto diff --git a/backend/api/go_client/error.pb.go b/backend/api/go_client/error.pb.go index 64efd5a4a4e..0d56cf662b5 100755 --- a/backend/api/go_client/error.pb.go +++ b/backend/api/go_client/error.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/error.proto diff --git a/backend/api/go_client/error.pb.gw.go b/backend/api/go_client/error.pb.gw.go index 83c8e5f513f..b76fb6098a3 100755 --- a/backend/api/go_client/error.pb.gw.go +++ b/backend/api/go_client/error.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // +build ignore package ignore \ No newline at end of file diff --git a/backend/api/go_client/experiment.pb.go b/backend/api/go_client/experiment.pb.go index eeee4b5414e..5ed987ff379 100755 --- a/backend/api/go_client/experiment.pb.go +++ b/backend/api/go_client/experiment.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/experiment.proto diff --git a/backend/api/go_client/experiment.pb.gw.go b/backend/api/go_client/experiment.pb.gw.go index 9e0816b74d9..c30fc1e3809 100755 --- a/backend/api/go_client/experiment.pb.gw.go +++ b/backend/api/go_client/experiment.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. // source: backend/api/experiment.proto diff --git a/backend/api/go_client/filter.pb.go b/backend/api/go_client/filter.pb.go index ff95eb1433a..ccbaa6e0ece 100755 --- a/backend/api/go_client/filter.pb.go +++ b/backend/api/go_client/filter.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/filter.proto diff --git a/backend/api/go_client/filter.pb.gw.go b/backend/api/go_client/filter.pb.gw.go index 83c8e5f513f..b76fb6098a3 100755 --- a/backend/api/go_client/filter.pb.gw.go +++ b/backend/api/go_client/filter.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // +build ignore package ignore \ No newline at end of file diff --git a/backend/api/go_client/healthz.pb.go b/backend/api/go_client/healthz.pb.go index 760a103e21d..09223620c7e 100755 --- a/backend/api/go_client/healthz.pb.go +++ b/backend/api/go_client/healthz.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/healthz.proto @@ -21,7 +7,6 @@ import proto "github.com/golang/protobuf/proto" import fmt "fmt" import math "math" import empty "github.com/golang/protobuf/ptypes/empty" -import _ "github.com/golang/protobuf/ptypes/timestamp" import _ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger/options" import _ "google.golang.org/genproto/googleapis/api/annotations" @@ -52,7 +37,7 @@ func (m *GetHealthzResponse) Reset() { *m = GetHealthzResponse{} } func (m *GetHealthzResponse) String() string { return proto.CompactTextString(m) } func (*GetHealthzResponse) ProtoMessage() {} func (*GetHealthzResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_healthz_d6923259aa48c5fd, []int{0} + return fileDescriptor_healthz_5afa675864f5c71f, []int{0} } func (m *GetHealthzResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetHealthzResponse.Unmarshal(m, b) @@ -155,32 +140,30 @@ var _HealthzService_serviceDesc = grpc.ServiceDesc{ Metadata: "backend/api/healthz.proto", } -func init() { proto.RegisterFile("backend/api/healthz.proto", fileDescriptor_healthz_d6923259aa48c5fd) } - -var fileDescriptor_healthz_d6923259aa48c5fd = []byte{ - // 377 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xcd, 0xae, 0x12, 0x31, - 0x14, 0x80, 0x05, 0x12, 0xc4, 0x2a, 0x1a, 0x6b, 0x14, 0x1d, 0x21, 0x10, 0xe2, 0xc2, 0x85, 0xcc, - 0x04, 0x79, 0x02, 0x49, 0x8c, 0x6e, 0xdc, 0x40, 0xdc, 0x10, 0x93, 0x49, 0xa7, 0x9c, 0x99, 0x69, - 0x98, 0x69, 0x9b, 0xf6, 0x14, 0x22, 0x4b, 0x13, 0x5f, 0x40, 0x1f, 0xed, 0xbe, 0xc2, 0x7d, 0x90, - 0x1b, 0x3a, 0x03, 0x77, 0x72, 0xef, 0x5d, 0x35, 0xed, 0xf9, 0xce, 0x4f, 0xbf, 0x43, 0xde, 0x25, - 0x8c, 0xef, 0x40, 0x6e, 0x23, 0xa6, 0x45, 0x94, 0x03, 0x2b, 0x30, 0x3f, 0x86, 0xda, 0x28, 0x54, - 0xb4, 0xc3, 0xb4, 0x08, 0x86, 0x99, 0x52, 0x59, 0x01, 0x3e, 0xcc, 0xa4, 0x54, 0xc8, 0x50, 0x28, - 0x69, 0x2b, 0x24, 0x18, 0xd7, 0x51, 0x7f, 0x4b, 0x5c, 0x1a, 0xa1, 0x28, 0xc1, 0x22, 0x2b, 0x75, - 0x0d, 0xbc, 0xbf, 0x0b, 0x40, 0xa9, 0xf1, 0xf7, 0x39, 0xbb, 0xd9, 0x5b, 0x0b, 0x0d, 0x85, 0x90, - 0x10, 0x5b, 0x0d, 0xbc, 0x06, 0x3e, 0x34, 0x01, 0x03, 0x56, 0x39, 0xc3, 0x21, 0x36, 0x90, 0x82, - 0x01, 0xc9, 0xa1, 0xa6, 0x3e, 0xf9, 0x83, 0xcf, 0x32, 0x90, 0x33, 0x7b, 0x60, 0x59, 0x06, 0x26, - 0x52, 0xda, 0x8f, 0xf9, 0xc0, 0xc8, 0x83, 0x66, 0x4d, 0x30, 0x46, 0x99, 0x2a, 0x30, 0x5d, 0x10, - 0xfa, 0x0d, 0xf0, 0x7b, 0xa5, 0x60, 0x05, 0x56, 0x2b, 0x69, 0x81, 0x8e, 0x08, 0x29, 0x5d, 0x81, - 0x22, 0x76, 0x16, 0xcc, 0xdb, 0xce, 0xa4, 0xf5, 0xb1, 0xb7, 0x7a, 0xe2, 0x5f, 0x7e, 0x5a, 0x30, - 0x9f, 0x25, 0x79, 0x5e, 0x67, 0xac, 0xc1, 0xec, 0x05, 0x07, 0xfa, 0x8b, 0x90, 0xdb, 0x32, 0xf4, - 0x4d, 0x58, 0x09, 0x08, 0xcf, 0x02, 0xc2, 0xaf, 0x27, 0x01, 0xc1, 0x20, 0x64, 0x5a, 0x84, 0xf7, - 0xfb, 0x4d, 0x47, 0x7f, 0xae, 0xae, 0xff, 0xb7, 0x07, 0xf4, 0xf5, 0x69, 0x3e, 0x1b, 0xed, 0xe7, - 0x09, 0x20, 0x9b, 0x9f, 0x37, 0xb3, 0xfc, 0xdb, 0xfa, 0xf7, 0xe5, 0xc7, 0x6a, 0x48, 0x1e, 0x6f, - 0x21, 0x65, 0xae, 0x40, 0xfa, 0x92, 0xbe, 0x20, 0xfd, 0xe0, 0xa9, 0x2f, 0xb7, 0x46, 0x86, 0xce, - 0x6e, 0xc6, 0x64, 0x44, 0xba, 0x4b, 0x60, 0x06, 0x0c, 0x7d, 0xd5, 0x6b, 0x07, 0x7d, 0xe6, 0x30, - 0x57, 0x46, 0x1c, 0xbd, 0x87, 0x49, 0x3b, 0x79, 0x46, 0xc8, 0x05, 0x78, 0xb4, 0x59, 0x64, 0x02, - 0x73, 0x97, 0x84, 0x5c, 0x95, 0xd1, 0xce, 0x25, 0x90, 0x16, 0xea, 0x70, 0xd9, 0x86, 0x8d, 0x9a, - 0xba, 0x32, 0x15, 0xf3, 0x42, 0x80, 0xc4, 0xa4, 0xeb, 0xff, 0xb3, 0xb8, 0x09, 0x00, 0x00, 0xff, - 0xff, 0xd1, 0xc1, 0x9c, 0x02, 0x3f, 0x02, 0x00, 0x00, +func init() { proto.RegisterFile("backend/api/healthz.proto", fileDescriptor_healthz_5afa675864f5c71f) } + +var fileDescriptor_healthz_5afa675864f5c71f = []byte{ + // 337 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0xc1, 0x4e, 0x32, 0x31, + 0x14, 0x85, 0x7f, 0x20, 0xe1, 0xc7, 0x2a, 0x1a, 0x6b, 0x14, 0x1d, 0x21, 0x12, 0x56, 0x2e, 0x64, + 0x1a, 0xe4, 0x09, 0x24, 0x31, 0xba, 0x71, 0x03, 0x71, 0x43, 0x4c, 0x48, 0x67, 0xb8, 0xcc, 0x34, + 0x0c, 0x6d, 0xd3, 0xde, 0x42, 0x64, 0x69, 0xe2, 0x0b, 0xe8, 0xa3, 0xf9, 0x0a, 0x3e, 0x88, 0xa1, + 0x03, 0x4a, 0xa2, 0xab, 0xa6, 0x3d, 0xf7, 0x9c, 0x7e, 0xf7, 0x90, 0xb3, 0x88, 0xc7, 0x53, 0x90, + 0x63, 0xc6, 0xb5, 0x60, 0x29, 0xf0, 0x0c, 0xd3, 0x65, 0xa8, 0x8d, 0x42, 0x45, 0x4b, 0x5c, 0x8b, + 0xa0, 0x9e, 0x28, 0x95, 0x64, 0xe0, 0x65, 0x2e, 0xa5, 0x42, 0x8e, 0x42, 0x49, 0x9b, 0x8f, 0x04, + 0xe7, 0x6b, 0xd5, 0xdf, 0x22, 0x37, 0x61, 0x30, 0xd3, 0xf8, 0xbc, 0x16, 0xaf, 0xfc, 0x11, 0xb7, + 0x13, 0x90, 0x6d, 0xbb, 0xe0, 0x49, 0x02, 0x86, 0x29, 0xed, 0xed, 0x7f, 0x44, 0xd5, 0xb6, 0x41, + 0xc0, 0x18, 0x65, 0x72, 0xa1, 0xd5, 0x25, 0xf4, 0x0e, 0xf0, 0x3e, 0x47, 0xeb, 0x83, 0xd5, 0x4a, + 0x5a, 0xa0, 0x0d, 0x42, 0x66, 0x2e, 0x43, 0x31, 0x72, 0x16, 0xcc, 0x69, 0xa9, 0x59, 0xb8, 0xac, + 0xf4, 0x77, 0xfc, 0xcb, 0xa3, 0x05, 0x73, 0x2d, 0xc9, 0xfe, 0xda, 0x31, 0x00, 0x33, 0x17, 0x31, + 0xd0, 0x27, 0x42, 0x7e, 0x62, 0xe8, 0x49, 0x98, 0x93, 0x87, 0x1b, 0xf2, 0xf0, 0x76, 0x45, 0x1e, + 0xd4, 0x42, 0xae, 0x45, 0xf8, 0xfb, 0xbf, 0x56, 0xe3, 0xe5, 0xe3, 0xf3, 0xbd, 0x58, 0xa3, 0xc7, + 0x2b, 0x3e, 0xcb, 0xe6, 0x9d, 0x08, 0x90, 0x77, 0x36, 0x8d, 0xf5, 0x5e, 0x0b, 0x6f, 0x37, 0x0f, + 0xfd, 0x3a, 0xf9, 0x3f, 0x86, 0x09, 0x77, 0x19, 0xd2, 0x43, 0x7a, 0x40, 0xaa, 0xc1, 0xae, 0x8f, + 0x1b, 0x20, 0x47, 0x67, 0x87, 0x17, 0xa4, 0x41, 0xca, 0x3d, 0xe0, 0x06, 0x0c, 0x3d, 0xaa, 0x14, + 0x83, 0x2a, 0x77, 0x98, 0x2a, 0x23, 0x96, 0xbe, 0x87, 0x66, 0x31, 0xda, 0x23, 0xe4, 0x7b, 0xe0, + 0xdf, 0xb0, 0x9b, 0x08, 0x4c, 0x5d, 0x14, 0xc6, 0x6a, 0xc6, 0xa6, 0x2e, 0x82, 0x49, 0xa6, 0x16, + 0x4c, 0x0b, 0x0d, 0x99, 0x90, 0x60, 0xd9, 0x76, 0x5d, 0x89, 0x1a, 0xc5, 0x99, 0x00, 0x89, 0x51, + 0xd9, 0xef, 0xd3, 0xfd, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x04, 0x2d, 0x10, 0xd7, 0x01, 0x00, + 0x00, } diff --git a/backend/api/go_client/healthz.pb.gw.go b/backend/api/go_client/healthz.pb.gw.go index 02d5da809fe..5b9fcb28efe 100755 --- a/backend/api/go_client/healthz.pb.gw.go +++ b/backend/api/go_client/healthz.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. // source: backend/api/healthz.proto diff --git a/backend/api/go_client/job.pb.go b/backend/api/go_client/job.pb.go index 5513ae48267..2f783844065 100755 --- a/backend/api/go_client/job.pb.go +++ b/backend/api/go_client/job.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/job.proto diff --git a/backend/api/go_client/job.pb.gw.go b/backend/api/go_client/job.pb.gw.go index 0d1d8cebb1d..09d68b81b85 100755 --- a/backend/api/go_client/job.pb.gw.go +++ b/backend/api/go_client/job.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. // source: backend/api/job.proto diff --git a/backend/api/go_client/parameter.pb.go b/backend/api/go_client/parameter.pb.go index 1c723200430..273a994b3dc 100755 --- a/backend/api/go_client/parameter.pb.go +++ b/backend/api/go_client/parameter.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/parameter.proto diff --git a/backend/api/go_client/parameter.pb.gw.go b/backend/api/go_client/parameter.pb.gw.go index 83c8e5f513f..b76fb6098a3 100755 --- a/backend/api/go_client/parameter.pb.gw.go +++ b/backend/api/go_client/parameter.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // +build ignore package ignore \ No newline at end of file diff --git a/backend/api/go_client/pipeline.pb.go b/backend/api/go_client/pipeline.pb.go index d6f5150e845..a21ff489c6e 100755 --- a/backend/api/go_client/pipeline.pb.go +++ b/backend/api/go_client/pipeline.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/pipeline.proto diff --git a/backend/api/go_client/pipeline.pb.gw.go b/backend/api/go_client/pipeline.pb.gw.go index 2210f3fd5ef..61789595375 100755 --- a/backend/api/go_client/pipeline.pb.gw.go +++ b/backend/api/go_client/pipeline.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. // source: backend/api/pipeline.proto diff --git a/backend/api/go_client/pipeline_spec.pb.go b/backend/api/go_client/pipeline_spec.pb.go index 24077e1f2af..221343c0a74 100755 --- a/backend/api/go_client/pipeline_spec.pb.go +++ b/backend/api/go_client/pipeline_spec.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/pipeline_spec.proto diff --git a/backend/api/go_client/pipeline_spec.pb.gw.go b/backend/api/go_client/pipeline_spec.pb.gw.go index 83c8e5f513f..b76fb6098a3 100755 --- a/backend/api/go_client/pipeline_spec.pb.gw.go +++ b/backend/api/go_client/pipeline_spec.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // +build ignore package ignore \ No newline at end of file diff --git a/backend/api/go_client/report.pb.go b/backend/api/go_client/report.pb.go index cc0f872fb28..2f8199daec5 100755 --- a/backend/api/go_client/report.pb.go +++ b/backend/api/go_client/report.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/report.proto diff --git a/backend/api/go_client/report.pb.gw.go b/backend/api/go_client/report.pb.gw.go index c1923b4c4a3..b2034bc6f93 100755 --- a/backend/api/go_client/report.pb.gw.go +++ b/backend/api/go_client/report.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. // source: backend/api/report.proto diff --git a/backend/api/go_client/resource_reference.pb.go b/backend/api/go_client/resource_reference.pb.go index 62726f410b1..ece596fccb6 100755 --- a/backend/api/go_client/resource_reference.pb.go +++ b/backend/api/go_client/resource_reference.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/resource_reference.proto diff --git a/backend/api/go_client/resource_reference.pb.gw.go b/backend/api/go_client/resource_reference.pb.gw.go index 83c8e5f513f..b76fb6098a3 100755 --- a/backend/api/go_client/resource_reference.pb.gw.go +++ b/backend/api/go_client/resource_reference.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // +build ignore package ignore \ No newline at end of file diff --git a/backend/api/go_client/run.pb.go b/backend/api/go_client/run.pb.go index d9241aed014..798ba2bb528 100755 --- a/backend/api/go_client/run.pb.go +++ b/backend/api/go_client/run.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/run.proto diff --git a/backend/api/go_client/run.pb.gw.go b/backend/api/go_client/run.pb.gw.go index 2056c67e12e..57347b77d23 100755 --- a/backend/api/go_client/run.pb.gw.go +++ b/backend/api/go_client/run.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. // source: backend/api/run.proto diff --git a/backend/api/go_client/visualization.pb.go b/backend/api/go_client/visualization.pb.go index cd8020afa63..c2187707db9 100755 --- a/backend/api/go_client/visualization.pb.go +++ b/backend/api/go_client/visualization.pb.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-go. DO NOT EDIT. // source: backend/api/visualization.proto diff --git a/backend/api/go_client/visualization.pb.gw.go b/backend/api/go_client/visualization.pb.gw.go index 46431b0a537..af80a7b8c77 100755 --- a/backend/api/go_client/visualization.pb.gw.go +++ b/backend/api/go_client/visualization.pb.gw.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. // source: backend/api/visualization.proto diff --git a/backend/api/go_http_client/experiment_client/BUILD.bazel b/backend/api/go_http_client/experiment_client/BUILD.bazel deleted file mode 100644 index 1b30b391682..00000000000 --- a/backend/api/go_http_client/experiment_client/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["experiment_client.go"], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/experiment_client", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/experiment_client/experiment_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", - ], -) diff --git a/backend/api/go_http_client/experiment_client/experiment_client.go b/backend/api/go_http_client/experiment_client/experiment_client.go index 3e5a808230e..642e968aeb5 100644 --- a/backend/api/go_http_client/experiment_client/experiment_client.go +++ b/backend/api/go_http_client/experiment_client/experiment_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_client diff --git a/backend/api/go_http_client/experiment_client/experiment_service/BUILD.bazel b/backend/api/go_http_client/experiment_client/experiment_service/BUILD.bazel deleted file mode 100644 index 2d5a4495fd2..00000000000 --- a/backend/api/go_http_client/experiment_client/experiment_service/BUILD.bazel +++ /dev/null @@ -1,30 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "archive_experiment_parameters.go", - "archive_experiment_responses.go", - "create_experiment_parameters.go", - "create_experiment_responses.go", - "delete_experiment_parameters.go", - "delete_experiment_responses.go", - "experiment_service_client.go", - "get_experiment_parameters.go", - "get_experiment_responses.go", - "list_experiment_parameters.go", - "list_experiment_responses.go", - "unarchive_experiment_parameters.go", - "unarchive_experiment_responses.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/experiment_client/experiment_service", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/experiment_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", - "@com_github_go_openapi_swag//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/experiment_client/experiment_service/archive_experiment_parameters.go b/backend/api/go_http_client/experiment_client/experiment_service/archive_experiment_parameters.go index 7d5a0ee9d9b..51b7262ccda 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/archive_experiment_parameters.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/archive_experiment_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/archive_experiment_responses.go b/backend/api/go_http_client/experiment_client/experiment_service/archive_experiment_responses.go index da1d0e1e43e..b305ed6902d 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/archive_experiment_responses.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/archive_experiment_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/create_experiment_parameters.go b/backend/api/go_http_client/experiment_client/experiment_service/create_experiment_parameters.go index 4198068793b..9f2d99a928c 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/create_experiment_parameters.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/create_experiment_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/create_experiment_responses.go b/backend/api/go_http_client/experiment_client/experiment_service/create_experiment_responses.go index 542360d656a..aaf04cb0bf9 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/create_experiment_responses.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/create_experiment_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/delete_experiment_parameters.go b/backend/api/go_http_client/experiment_client/experiment_service/delete_experiment_parameters.go index 90360b19f0e..d2ad3fca081 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/delete_experiment_parameters.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/delete_experiment_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/delete_experiment_responses.go b/backend/api/go_http_client/experiment_client/experiment_service/delete_experiment_responses.go index 82589deacbf..9faabcaf839 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/delete_experiment_responses.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/delete_experiment_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/experiment_service_client.go b/backend/api/go_http_client/experiment_client/experiment_service/experiment_service_client.go index 447e5d3c501..4635470c862 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/experiment_service_client.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/experiment_service_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/get_experiment_parameters.go b/backend/api/go_http_client/experiment_client/experiment_service/get_experiment_parameters.go index d81469cfaf5..9bacdf41c85 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/get_experiment_parameters.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/get_experiment_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/get_experiment_responses.go b/backend/api/go_http_client/experiment_client/experiment_service/get_experiment_responses.go index cbbff402c58..3cfcc035b06 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/get_experiment_responses.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/get_experiment_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/list_experiment_parameters.go b/backend/api/go_http_client/experiment_client/experiment_service/list_experiment_parameters.go index 1f07ceb0a56..2fa0df54c17 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/list_experiment_parameters.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/list_experiment_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/list_experiment_responses.go b/backend/api/go_http_client/experiment_client/experiment_service/list_experiment_responses.go index 053cd136479..3169fb5b2fe 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/list_experiment_responses.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/list_experiment_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/unarchive_experiment_parameters.go b/backend/api/go_http_client/experiment_client/experiment_service/unarchive_experiment_parameters.go index a0c2f4f523a..1a21b986025 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/unarchive_experiment_parameters.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/unarchive_experiment_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_client/experiment_service/unarchive_experiment_responses.go b/backend/api/go_http_client/experiment_client/experiment_service/unarchive_experiment_responses.go index fcd7727bba4..b7101151366 100644 --- a/backend/api/go_http_client/experiment_client/experiment_service/unarchive_experiment_responses.go +++ b/backend/api/go_http_client/experiment_client/experiment_service/unarchive_experiment_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_service diff --git a/backend/api/go_http_client/experiment_model/BUILD.bazel b/backend/api/go_http_client/experiment_model/BUILD.bazel deleted file mode 100644 index cf3f4b58f86..00000000000 --- a/backend/api/go_http_client/experiment_model/BUILD.bazel +++ /dev/null @@ -1,24 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "api_experiment.go", - "api_list_experiments_response.go", - "api_relationship.go", - "api_resource_key.go", - "api_resource_reference.go", - "api_resource_type.go", - "api_status.go", - "experiment_storage_state.go", - "protobuf_any.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/experiment_model", - visibility = ["//visibility:public"], - deps = [ - "@com_github_go_openapi_errors//:go_default_library", - "@com_github_go_openapi_strfmt//:go_default_library", - "@com_github_go_openapi_swag//:go_default_library", - "@com_github_go_openapi_validate//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/experiment_model/api_experiment.go b/backend/api/go_http_client/experiment_model/api_experiment.go index ba710b4e144..a526999fc73 100644 --- a/backend/api/go_http_client/experiment_model/api_experiment.go +++ b/backend/api/go_http_client/experiment_model/api_experiment.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_model diff --git a/backend/api/go_http_client/experiment_model/api_list_experiments_response.go b/backend/api/go_http_client/experiment_model/api_list_experiments_response.go index a7704b8c4b5..0b2294c69a5 100644 --- a/backend/api/go_http_client/experiment_model/api_list_experiments_response.go +++ b/backend/api/go_http_client/experiment_model/api_list_experiments_response.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_model diff --git a/backend/api/go_http_client/experiment_model/api_relationship.go b/backend/api/go_http_client/experiment_model/api_relationship.go index 3f350b3635b..24c3abcb7ce 100644 --- a/backend/api/go_http_client/experiment_model/api_relationship.go +++ b/backend/api/go_http_client/experiment_model/api_relationship.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_model diff --git a/backend/api/go_http_client/experiment_model/api_resource_key.go b/backend/api/go_http_client/experiment_model/api_resource_key.go index 5d65c1d119c..7dfbd3f0118 100644 --- a/backend/api/go_http_client/experiment_model/api_resource_key.go +++ b/backend/api/go_http_client/experiment_model/api_resource_key.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_model diff --git a/backend/api/go_http_client/experiment_model/api_resource_reference.go b/backend/api/go_http_client/experiment_model/api_resource_reference.go index 820424704ec..8103adf2612 100644 --- a/backend/api/go_http_client/experiment_model/api_resource_reference.go +++ b/backend/api/go_http_client/experiment_model/api_resource_reference.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_model diff --git a/backend/api/go_http_client/experiment_model/api_resource_type.go b/backend/api/go_http_client/experiment_model/api_resource_type.go index f41a47fa551..aeb958e1964 100644 --- a/backend/api/go_http_client/experiment_model/api_resource_type.go +++ b/backend/api/go_http_client/experiment_model/api_resource_type.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_model diff --git a/backend/api/go_http_client/experiment_model/api_status.go b/backend/api/go_http_client/experiment_model/api_status.go index cb2593fbbf5..2bac696ea45 100644 --- a/backend/api/go_http_client/experiment_model/api_status.go +++ b/backend/api/go_http_client/experiment_model/api_status.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_model diff --git a/backend/api/go_http_client/experiment_model/experiment_storage_state.go b/backend/api/go_http_client/experiment_model/experiment_storage_state.go index 1fa5717ef31..92a1fef06d3 100644 --- a/backend/api/go_http_client/experiment_model/experiment_storage_state.go +++ b/backend/api/go_http_client/experiment_model/experiment_storage_state.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_model diff --git a/backend/api/go_http_client/experiment_model/protobuf_any.go b/backend/api/go_http_client/experiment_model/protobuf_any.go index 0c6ab9b6866..8b68546a2a8 100644 --- a/backend/api/go_http_client/experiment_model/protobuf_any.go +++ b/backend/api/go_http_client/experiment_model/protobuf_any.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package experiment_model diff --git a/backend/api/go_http_client/healthz_client/BUILD.bazel b/backend/api/go_http_client/healthz_client/BUILD.bazel deleted file mode 100644 index 903add027b0..00000000000 --- a/backend/api/go_http_client/healthz_client/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["healthz_client.go"], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/healthz_client", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/healthz_client/healthz_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", - ], -) diff --git a/backend/api/go_http_client/healthz_client/healthz_client.go b/backend/api/go_http_client/healthz_client/healthz_client.go index f5c860ad896..d0c9be172df 100644 --- a/backend/api/go_http_client/healthz_client/healthz_client.go +++ b/backend/api/go_http_client/healthz_client/healthz_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package healthz_client diff --git a/backend/api/go_http_client/healthz_client/healthz_service/BUILD.bazel b/backend/api/go_http_client/healthz_client/healthz_service/BUILD.bazel deleted file mode 100644 index c08ab8f6d39..00000000000 --- a/backend/api/go_http_client/healthz_client/healthz_service/BUILD.bazel +++ /dev/null @@ -1,19 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "get_healthz_parameters.go", - "get_healthz_responses.go", - "healthz_service_client.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/healthz_client/healthz_service", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/healthz_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", - ], -) diff --git a/backend/api/go_http_client/healthz_client/healthz_service/get_healthz_parameters.go b/backend/api/go_http_client/healthz_client/healthz_service/get_healthz_parameters.go index 7a3a01c4257..b03e4c1c459 100644 --- a/backend/api/go_http_client/healthz_client/healthz_service/get_healthz_parameters.go +++ b/backend/api/go_http_client/healthz_client/healthz_service/get_healthz_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package healthz_service diff --git a/backend/api/go_http_client/healthz_client/healthz_service/get_healthz_responses.go b/backend/api/go_http_client/healthz_client/healthz_service/get_healthz_responses.go index 66b809c8bc9..ae54da8a4d0 100644 --- a/backend/api/go_http_client/healthz_client/healthz_service/get_healthz_responses.go +++ b/backend/api/go_http_client/healthz_client/healthz_service/get_healthz_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package healthz_service diff --git a/backend/api/go_http_client/healthz_client/healthz_service/healthz_service_client.go b/backend/api/go_http_client/healthz_client/healthz_service/healthz_service_client.go index c3a4809bb02..6131771b103 100644 --- a/backend/api/go_http_client/healthz_client/healthz_service/healthz_service_client.go +++ b/backend/api/go_http_client/healthz_client/healthz_service/healthz_service_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package healthz_service diff --git a/backend/api/go_http_client/healthz_model/BUILD.bazel b/backend/api/go_http_client/healthz_model/BUILD.bazel deleted file mode 100644 index d37f6a28888..00000000000 --- a/backend/api/go_http_client/healthz_model/BUILD.bazel +++ /dev/null @@ -1,17 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "api_get_healthz_response.go", - "api_status.go", - "protobuf_any.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/healthz_model", - visibility = ["//visibility:public"], - deps = [ - "@com_github_go_openapi_errors//:go_default_library", - "@com_github_go_openapi_strfmt//:go_default_library", - "@com_github_go_openapi_swag//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/healthz_model/api_get_healthz_response.go b/backend/api/go_http_client/healthz_model/api_get_healthz_response.go index 5c057600280..45943fb9ead 100644 --- a/backend/api/go_http_client/healthz_model/api_get_healthz_response.go +++ b/backend/api/go_http_client/healthz_model/api_get_healthz_response.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package healthz_model diff --git a/backend/api/go_http_client/healthz_model/api_status.go b/backend/api/go_http_client/healthz_model/api_status.go index 4e38621465d..ec35b7f47de 100644 --- a/backend/api/go_http_client/healthz_model/api_status.go +++ b/backend/api/go_http_client/healthz_model/api_status.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package healthz_model diff --git a/backend/api/go_http_client/healthz_model/protobuf_any.go b/backend/api/go_http_client/healthz_model/protobuf_any.go index 18ffb022c83..20cf3b3e2c0 100644 --- a/backend/api/go_http_client/healthz_model/protobuf_any.go +++ b/backend/api/go_http_client/healthz_model/protobuf_any.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package healthz_model diff --git a/backend/api/go_http_client/job_client/BUILD.bazel b/backend/api/go_http_client/job_client/BUILD.bazel deleted file mode 100644 index 13341127419..00000000000 --- a/backend/api/go_http_client/job_client/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["job_client.go"], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/job_client", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/job_client/job_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", - ], -) diff --git a/backend/api/go_http_client/job_client/job_client.go b/backend/api/go_http_client/job_client/job_client.go index 44682389a17..e7afb5214e0 100644 --- a/backend/api/go_http_client/job_client/job_client.go +++ b/backend/api/go_http_client/job_client/job_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_client diff --git a/backend/api/go_http_client/job_client/job_service/BUILD.bazel b/backend/api/go_http_client/job_client/job_service/BUILD.bazel deleted file mode 100644 index 1a6c19b3b6c..00000000000 --- a/backend/api/go_http_client/job_client/job_service/BUILD.bazel +++ /dev/null @@ -1,30 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "create_job_parameters.go", - "create_job_responses.go", - "delete_job_parameters.go", - "delete_job_responses.go", - "disable_job_parameters.go", - "disable_job_responses.go", - "enable_job_parameters.go", - "enable_job_responses.go", - "get_job_parameters.go", - "get_job_responses.go", - "job_service_client.go", - "list_jobs_parameters.go", - "list_jobs_responses.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/job_client/job_service", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/job_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", - "@com_github_go_openapi_swag//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/job_client/job_service/create_job_parameters.go b/backend/api/go_http_client/job_client/job_service/create_job_parameters.go index 5e5578aff2b..933fc1f0120 100644 --- a/backend/api/go_http_client/job_client/job_service/create_job_parameters.go +++ b/backend/api/go_http_client/job_client/job_service/create_job_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/create_job_responses.go b/backend/api/go_http_client/job_client/job_service/create_job_responses.go index e3f99f2c690..1a22c09cb1c 100644 --- a/backend/api/go_http_client/job_client/job_service/create_job_responses.go +++ b/backend/api/go_http_client/job_client/job_service/create_job_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/delete_job_parameters.go b/backend/api/go_http_client/job_client/job_service/delete_job_parameters.go index b56f43c5ced..c68b144fab6 100644 --- a/backend/api/go_http_client/job_client/job_service/delete_job_parameters.go +++ b/backend/api/go_http_client/job_client/job_service/delete_job_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/delete_job_responses.go b/backend/api/go_http_client/job_client/job_service/delete_job_responses.go index 3b793b62a77..36e5a26d07a 100644 --- a/backend/api/go_http_client/job_client/job_service/delete_job_responses.go +++ b/backend/api/go_http_client/job_client/job_service/delete_job_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/disable_job_parameters.go b/backend/api/go_http_client/job_client/job_service/disable_job_parameters.go index cf5dd840efc..3613607ddb1 100644 --- a/backend/api/go_http_client/job_client/job_service/disable_job_parameters.go +++ b/backend/api/go_http_client/job_client/job_service/disable_job_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/disable_job_responses.go b/backend/api/go_http_client/job_client/job_service/disable_job_responses.go index b75e522ec5d..101f8e59869 100644 --- a/backend/api/go_http_client/job_client/job_service/disable_job_responses.go +++ b/backend/api/go_http_client/job_client/job_service/disable_job_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/enable_job_parameters.go b/backend/api/go_http_client/job_client/job_service/enable_job_parameters.go index 611155165af..0d98cfc591c 100644 --- a/backend/api/go_http_client/job_client/job_service/enable_job_parameters.go +++ b/backend/api/go_http_client/job_client/job_service/enable_job_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/enable_job_responses.go b/backend/api/go_http_client/job_client/job_service/enable_job_responses.go index 03ae71ae1aa..12c31aa7a96 100644 --- a/backend/api/go_http_client/job_client/job_service/enable_job_responses.go +++ b/backend/api/go_http_client/job_client/job_service/enable_job_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/get_job_parameters.go b/backend/api/go_http_client/job_client/job_service/get_job_parameters.go index da74ca36a43..1b11cb2dfc4 100644 --- a/backend/api/go_http_client/job_client/job_service/get_job_parameters.go +++ b/backend/api/go_http_client/job_client/job_service/get_job_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/get_job_responses.go b/backend/api/go_http_client/job_client/job_service/get_job_responses.go index d1e34b26312..9f1dd6289a9 100644 --- a/backend/api/go_http_client/job_client/job_service/get_job_responses.go +++ b/backend/api/go_http_client/job_client/job_service/get_job_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/job_service_client.go b/backend/api/go_http_client/job_client/job_service/job_service_client.go index 3ba4a2d978a..b171434125c 100644 --- a/backend/api/go_http_client/job_client/job_service/job_service_client.go +++ b/backend/api/go_http_client/job_client/job_service/job_service_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/list_jobs_parameters.go b/backend/api/go_http_client/job_client/job_service/list_jobs_parameters.go index 5c97580838e..46feca3fd69 100644 --- a/backend/api/go_http_client/job_client/job_service/list_jobs_parameters.go +++ b/backend/api/go_http_client/job_client/job_service/list_jobs_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_client/job_service/list_jobs_responses.go b/backend/api/go_http_client/job_client/job_service/list_jobs_responses.go index 62acdb709f1..7c3d5534eaf 100644 --- a/backend/api/go_http_client/job_client/job_service/list_jobs_responses.go +++ b/backend/api/go_http_client/job_client/job_service/list_jobs_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_service diff --git a/backend/api/go_http_client/job_model/BUILD.bazel b/backend/api/go_http_client/job_model/BUILD.bazel deleted file mode 100644 index 30f07f75688..00000000000 --- a/backend/api/go_http_client/job_model/BUILD.bazel +++ /dev/null @@ -1,29 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "api_cron_schedule.go", - "api_job.go", - "api_list_jobs_response.go", - "api_parameter.go", - "api_periodic_schedule.go", - "api_pipeline_spec.go", - "api_relationship.go", - "api_resource_key.go", - "api_resource_reference.go", - "api_resource_type.go", - "api_status.go", - "api_trigger.go", - "job_mode.go", - "protobuf_any.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/job_model", - visibility = ["//visibility:public"], - deps = [ - "@com_github_go_openapi_errors//:go_default_library", - "@com_github_go_openapi_strfmt//:go_default_library", - "@com_github_go_openapi_swag//:go_default_library", - "@com_github_go_openapi_validate//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/job_model/api_cron_schedule.go b/backend/api/go_http_client/job_model/api_cron_schedule.go index ab2aec13056..6cf33620b63 100644 --- a/backend/api/go_http_client/job_model/api_cron_schedule.go +++ b/backend/api/go_http_client/job_model/api_cron_schedule.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_job.go b/backend/api/go_http_client/job_model/api_job.go index 53612d793ff..3b93a6b8b16 100644 --- a/backend/api/go_http_client/job_model/api_job.go +++ b/backend/api/go_http_client/job_model/api_job.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_list_jobs_response.go b/backend/api/go_http_client/job_model/api_list_jobs_response.go index 7f1a0bb127f..3e87d2ce10d 100644 --- a/backend/api/go_http_client/job_model/api_list_jobs_response.go +++ b/backend/api/go_http_client/job_model/api_list_jobs_response.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_parameter.go b/backend/api/go_http_client/job_model/api_parameter.go index c164211c926..999505b4470 100644 --- a/backend/api/go_http_client/job_model/api_parameter.go +++ b/backend/api/go_http_client/job_model/api_parameter.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_periodic_schedule.go b/backend/api/go_http_client/job_model/api_periodic_schedule.go index 94b071ed83b..ad1f6a33257 100644 --- a/backend/api/go_http_client/job_model/api_periodic_schedule.go +++ b/backend/api/go_http_client/job_model/api_periodic_schedule.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_pipeline_spec.go b/backend/api/go_http_client/job_model/api_pipeline_spec.go index ffb9146f0fb..66b66c9e298 100644 --- a/backend/api/go_http_client/job_model/api_pipeline_spec.go +++ b/backend/api/go_http_client/job_model/api_pipeline_spec.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_relationship.go b/backend/api/go_http_client/job_model/api_relationship.go index b2b7828b9b1..c3987f80bb8 100644 --- a/backend/api/go_http_client/job_model/api_relationship.go +++ b/backend/api/go_http_client/job_model/api_relationship.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_resource_key.go b/backend/api/go_http_client/job_model/api_resource_key.go index e05a5ea92a3..4a894169800 100644 --- a/backend/api/go_http_client/job_model/api_resource_key.go +++ b/backend/api/go_http_client/job_model/api_resource_key.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_resource_reference.go b/backend/api/go_http_client/job_model/api_resource_reference.go index 804fd4f9b53..3e0b921d5da 100644 --- a/backend/api/go_http_client/job_model/api_resource_reference.go +++ b/backend/api/go_http_client/job_model/api_resource_reference.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_resource_type.go b/backend/api/go_http_client/job_model/api_resource_type.go index 947d6bb620d..1d6d8e2eb57 100644 --- a/backend/api/go_http_client/job_model/api_resource_type.go +++ b/backend/api/go_http_client/job_model/api_resource_type.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_status.go b/backend/api/go_http_client/job_model/api_status.go index 080d7d448ee..11a7e603454 100644 --- a/backend/api/go_http_client/job_model/api_status.go +++ b/backend/api/go_http_client/job_model/api_status.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/api_trigger.go b/backend/api/go_http_client/job_model/api_trigger.go index ee4d123a66e..9e03e3fbe58 100644 --- a/backend/api/go_http_client/job_model/api_trigger.go +++ b/backend/api/go_http_client/job_model/api_trigger.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/job_mode.go b/backend/api/go_http_client/job_model/job_mode.go index 7dfdc9055bb..bb24a144823 100644 --- a/backend/api/go_http_client/job_model/job_mode.go +++ b/backend/api/go_http_client/job_model/job_mode.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/job_model/protobuf_any.go b/backend/api/go_http_client/job_model/protobuf_any.go index 9e1cce85dbc..ea5f510a5cd 100644 --- a/backend/api/go_http_client/job_model/protobuf_any.go +++ b/backend/api/go_http_client/job_model/protobuf_any.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package job_model diff --git a/backend/api/go_http_client/pipeline_client/BUILD.bazel b/backend/api/go_http_client/pipeline_client/BUILD.bazel deleted file mode 100644 index 9c767d68d35..00000000000 --- a/backend/api/go_http_client/pipeline_client/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["pipeline_client.go"], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/pipeline_client", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/pipeline_client/pipeline_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", - ], -) diff --git a/backend/api/go_http_client/pipeline_client/pipeline_client.go b/backend/api/go_http_client/pipeline_client/pipeline_client.go index b29bdc474b6..2cc63dac9ac 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_client.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_client diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/BUILD.bazel b/backend/api/go_http_client/pipeline_client/pipeline_service/BUILD.bazel deleted file mode 100644 index cca2221c2c2..00000000000 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/BUILD.bazel +++ /dev/null @@ -1,40 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "create_pipeline_parameters.go", - "create_pipeline_responses.go", - "create_pipeline_version_parameters.go", - "create_pipeline_version_responses.go", - "delete_pipeline_parameters.go", - "delete_pipeline_responses.go", - "delete_pipeline_version_parameters.go", - "delete_pipeline_version_responses.go", - "get_pipeline_parameters.go", - "get_pipeline_responses.go", - "get_pipeline_version_parameters.go", - "get_pipeline_version_responses.go", - "get_pipeline_version_template_parameters.go", - "get_pipeline_version_template_responses.go", - "get_template_parameters.go", - "get_template_responses.go", - "list_pipeline_versions_parameters.go", - "list_pipeline_versions_responses.go", - "list_pipelines_parameters.go", - "list_pipelines_responses.go", - "pipeline_service_client.go", - "update_pipeline_default_version_parameters.go", - "update_pipeline_default_version_responses.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/pipeline_client/pipeline_service", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/pipeline_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", - "@com_github_go_openapi_swag//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_parameters.go index 25ece962d56..08c94f7d008 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_responses.go index b39cc4a3121..d38295a1e58 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_version_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_version_parameters.go index f72ba71e09e..1837903ba78 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_version_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_version_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_version_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_version_responses.go index 4da0292eb60..e01c4f80339 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_version_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/create_pipeline_version_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_parameters.go index bde8083a655..0fd3417789f 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_responses.go index 0500129b7e0..f8dd070236b 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_version_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_version_parameters.go index d12d6d7a80f..d8718fe0930 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_version_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_version_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_version_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_version_responses.go index a9e3ec44c25..c0c163ea3e7 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_version_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/delete_pipeline_version_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_parameters.go index 76c0a96b3bb..499511d87f1 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_responses.go index 79af70d9b46..5c9b7e5f7dc 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_parameters.go index 7149072f19a..4ed8b98ddae 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_responses.go index b13ac0d15c7..f08e7dfa011 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_template_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_template_parameters.go index 20e6581ddfa..b5291d9d7ab 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_template_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_template_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_template_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_template_responses.go index 9c756d27160..e4717b3ba14 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_template_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/get_pipeline_version_template_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/get_template_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/get_template_parameters.go index e0d4d7e02c6..684c1c11b96 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/get_template_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/get_template_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/get_template_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/get_template_responses.go index 351e1861388..0bbab19faa6 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/get_template_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/get_template_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipeline_versions_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipeline_versions_parameters.go index dd8b1f8465f..e47bb7b8450 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipeline_versions_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipeline_versions_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipeline_versions_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipeline_versions_responses.go index fdea0b9e901..dbbf1b53c4b 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipeline_versions_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipeline_versions_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipelines_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipelines_parameters.go index 27f2c2310f8..8b0afe3e205 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipelines_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipelines_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipelines_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipelines_responses.go index f4b7cecda5c..20597ff6ee0 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipelines_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/list_pipelines_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/pipeline_service_client.go b/backend/api/go_http_client/pipeline_client/pipeline_service/pipeline_service_client.go index ec84a87881b..344bb2c5225 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/pipeline_service_client.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/pipeline_service_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/update_pipeline_default_version_parameters.go b/backend/api/go_http_client/pipeline_client/pipeline_service/update_pipeline_default_version_parameters.go index c3d9db9a8da..9aa93ed2a95 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/update_pipeline_default_version_parameters.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/update_pipeline_default_version_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_client/pipeline_service/update_pipeline_default_version_responses.go b/backend/api/go_http_client/pipeline_client/pipeline_service/update_pipeline_default_version_responses.go index ccb5661c64e..ab6680b313e 100644 --- a/backend/api/go_http_client/pipeline_client/pipeline_service/update_pipeline_default_version_responses.go +++ b/backend/api/go_http_client/pipeline_client/pipeline_service/update_pipeline_default_version_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_service diff --git a/backend/api/go_http_client/pipeline_model/BUILD.bazel b/backend/api/go_http_client/pipeline_model/BUILD.bazel deleted file mode 100644 index a35b4bfea07..00000000000 --- a/backend/api/go_http_client/pipeline_model/BUILD.bazel +++ /dev/null @@ -1,28 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "api_get_template_response.go", - "api_list_pipeline_versions_response.go", - "api_list_pipelines_response.go", - "api_parameter.go", - "api_pipeline.go", - "api_pipeline_version.go", - "api_relationship.go", - "api_resource_key.go", - "api_resource_reference.go", - "api_resource_type.go", - "api_status.go", - "api_url.go", - "protobuf_any.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/pipeline_model", - visibility = ["//visibility:public"], - deps = [ - "@com_github_go_openapi_errors//:go_default_library", - "@com_github_go_openapi_strfmt//:go_default_library", - "@com_github_go_openapi_swag//:go_default_library", - "@com_github_go_openapi_validate//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/pipeline_model/api_get_template_response.go b/backend/api/go_http_client/pipeline_model/api_get_template_response.go index c521a02ca49..bf3917f7f83 100644 --- a/backend/api/go_http_client/pipeline_model/api_get_template_response.go +++ b/backend/api/go_http_client/pipeline_model/api_get_template_response.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_list_pipeline_versions_response.go b/backend/api/go_http_client/pipeline_model/api_list_pipeline_versions_response.go index 05be6c905f8..4c4cc8e6a0a 100644 --- a/backend/api/go_http_client/pipeline_model/api_list_pipeline_versions_response.go +++ b/backend/api/go_http_client/pipeline_model/api_list_pipeline_versions_response.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_list_pipelines_response.go b/backend/api/go_http_client/pipeline_model/api_list_pipelines_response.go index 7f6ca008d28..4f3dfc30744 100644 --- a/backend/api/go_http_client/pipeline_model/api_list_pipelines_response.go +++ b/backend/api/go_http_client/pipeline_model/api_list_pipelines_response.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_parameter.go b/backend/api/go_http_client/pipeline_model/api_parameter.go index 97a58696226..68fa4288480 100644 --- a/backend/api/go_http_client/pipeline_model/api_parameter.go +++ b/backend/api/go_http_client/pipeline_model/api_parameter.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_pipeline.go b/backend/api/go_http_client/pipeline_model/api_pipeline.go index c0746f760d4..108ea7e3cb8 100644 --- a/backend/api/go_http_client/pipeline_model/api_pipeline.go +++ b/backend/api/go_http_client/pipeline_model/api_pipeline.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_pipeline_version.go b/backend/api/go_http_client/pipeline_model/api_pipeline_version.go index 87d26410d89..66166685de7 100644 --- a/backend/api/go_http_client/pipeline_model/api_pipeline_version.go +++ b/backend/api/go_http_client/pipeline_model/api_pipeline_version.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_relationship.go b/backend/api/go_http_client/pipeline_model/api_relationship.go index f09fb859a68..ab414853c95 100644 --- a/backend/api/go_http_client/pipeline_model/api_relationship.go +++ b/backend/api/go_http_client/pipeline_model/api_relationship.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_resource_key.go b/backend/api/go_http_client/pipeline_model/api_resource_key.go index af5b4e7c01c..c0fb0fae089 100644 --- a/backend/api/go_http_client/pipeline_model/api_resource_key.go +++ b/backend/api/go_http_client/pipeline_model/api_resource_key.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_resource_reference.go b/backend/api/go_http_client/pipeline_model/api_resource_reference.go index 51e56ac03e4..975fe1f830a 100644 --- a/backend/api/go_http_client/pipeline_model/api_resource_reference.go +++ b/backend/api/go_http_client/pipeline_model/api_resource_reference.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_resource_type.go b/backend/api/go_http_client/pipeline_model/api_resource_type.go index c5661e4152e..8df611d77ff 100644 --- a/backend/api/go_http_client/pipeline_model/api_resource_type.go +++ b/backend/api/go_http_client/pipeline_model/api_resource_type.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_status.go b/backend/api/go_http_client/pipeline_model/api_status.go index 7ecb18b4b43..1c704ef67d1 100644 --- a/backend/api/go_http_client/pipeline_model/api_status.go +++ b/backend/api/go_http_client/pipeline_model/api_status.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/api_url.go b/backend/api/go_http_client/pipeline_model/api_url.go index 443cf6977c7..69be2fc2277 100644 --- a/backend/api/go_http_client/pipeline_model/api_url.go +++ b/backend/api/go_http_client/pipeline_model/api_url.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_model/protobuf_any.go b/backend/api/go_http_client/pipeline_model/protobuf_any.go index 63b1ab9e5bd..8c2b8abfbd9 100644 --- a/backend/api/go_http_client/pipeline_model/protobuf_any.go +++ b/backend/api/go_http_client/pipeline_model/protobuf_any.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_model diff --git a/backend/api/go_http_client/pipeline_upload_client/BUILD.bazel b/backend/api/go_http_client/pipeline_upload_client/BUILD.bazel deleted file mode 100644 index 647385f686a..00000000000 --- a/backend/api/go_http_client/pipeline_upload_client/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["pipeline_upload_client.go"], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/pipeline_upload_client", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/pipeline_upload_client/pipeline_upload_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", - ], -) diff --git a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_client.go b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_client.go index 4014a5c8dfc..97b9357b80c 100644 --- a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_client.go +++ b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_client diff --git a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/BUILD.bazel b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/BUILD.bazel deleted file mode 100644 index 67db66690db..00000000000 --- a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/BUILD.bazel +++ /dev/null @@ -1,21 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "pipeline_upload_service_client.go", - "upload_pipeline_parameters.go", - "upload_pipeline_responses.go", - "upload_pipeline_version_parameters.go", - "upload_pipeline_version_responses.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/pipeline_upload_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", - ], -) diff --git a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/pipeline_upload_service_client.go b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/pipeline_upload_service_client.go index eccabc8b95b..42494cf4755 100644 --- a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/pipeline_upload_service_client.go +++ b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/pipeline_upload_service_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_service diff --git a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_parameters.go b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_parameters.go index 4ea0a17a230..8b36f7ff7df 100644 --- a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_parameters.go +++ b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_service diff --git a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_responses.go b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_responses.go index a755929bd8c..6b4b94defeb 100644 --- a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_responses.go +++ b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_service diff --git a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_version_parameters.go b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_version_parameters.go index 0cd65446a3d..8868b12988f 100644 --- a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_version_parameters.go +++ b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_version_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_service diff --git a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_version_responses.go b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_version_responses.go index 84de3ed7fdf..101e5bf05b3 100644 --- a/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_version_responses.go +++ b/backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service/upload_pipeline_version_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_service diff --git a/backend/api/go_http_client/pipeline_upload_model/BUILD.bazel b/backend/api/go_http_client/pipeline_upload_model/BUILD.bazel deleted file mode 100644 index 47139760513..00000000000 --- a/backend/api/go_http_client/pipeline_upload_model/BUILD.bazel +++ /dev/null @@ -1,25 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "api_parameter.go", - "api_pipeline.go", - "api_pipeline_version.go", - "api_relationship.go", - "api_resource_key.go", - "api_resource_reference.go", - "api_resource_type.go", - "api_status.go", - "api_url.go", - "protobuf_any.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/pipeline_upload_model", - visibility = ["//visibility:public"], - deps = [ - "@com_github_go_openapi_errors//:go_default_library", - "@com_github_go_openapi_strfmt//:go_default_library", - "@com_github_go_openapi_swag//:go_default_library", - "@com_github_go_openapi_validate//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/pipeline_upload_model/api_parameter.go b/backend/api/go_http_client/pipeline_upload_model/api_parameter.go index 35195cefee3..f46f394429a 100644 --- a/backend/api/go_http_client/pipeline_upload_model/api_parameter.go +++ b/backend/api/go_http_client/pipeline_upload_model/api_parameter.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/pipeline_upload_model/api_pipeline.go b/backend/api/go_http_client/pipeline_upload_model/api_pipeline.go index 840ca21e11a..ba9aa33bb04 100644 --- a/backend/api/go_http_client/pipeline_upload_model/api_pipeline.go +++ b/backend/api/go_http_client/pipeline_upload_model/api_pipeline.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/pipeline_upload_model/api_pipeline_version.go b/backend/api/go_http_client/pipeline_upload_model/api_pipeline_version.go index 5dda907474a..1d6f169f7f0 100644 --- a/backend/api/go_http_client/pipeline_upload_model/api_pipeline_version.go +++ b/backend/api/go_http_client/pipeline_upload_model/api_pipeline_version.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/pipeline_upload_model/api_relationship.go b/backend/api/go_http_client/pipeline_upload_model/api_relationship.go index 70b69f7fe36..b4f85b6da9a 100644 --- a/backend/api/go_http_client/pipeline_upload_model/api_relationship.go +++ b/backend/api/go_http_client/pipeline_upload_model/api_relationship.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/pipeline_upload_model/api_resource_key.go b/backend/api/go_http_client/pipeline_upload_model/api_resource_key.go index 4c1258a1b0d..2242421be03 100644 --- a/backend/api/go_http_client/pipeline_upload_model/api_resource_key.go +++ b/backend/api/go_http_client/pipeline_upload_model/api_resource_key.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/pipeline_upload_model/api_resource_reference.go b/backend/api/go_http_client/pipeline_upload_model/api_resource_reference.go index e57daa7187f..c5fcfce9441 100644 --- a/backend/api/go_http_client/pipeline_upload_model/api_resource_reference.go +++ b/backend/api/go_http_client/pipeline_upload_model/api_resource_reference.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/pipeline_upload_model/api_resource_type.go b/backend/api/go_http_client/pipeline_upload_model/api_resource_type.go index 107a6899312..b0fe8702d6e 100644 --- a/backend/api/go_http_client/pipeline_upload_model/api_resource_type.go +++ b/backend/api/go_http_client/pipeline_upload_model/api_resource_type.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/pipeline_upload_model/api_status.go b/backend/api/go_http_client/pipeline_upload_model/api_status.go index f525c404320..a1df8518689 100644 --- a/backend/api/go_http_client/pipeline_upload_model/api_status.go +++ b/backend/api/go_http_client/pipeline_upload_model/api_status.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/pipeline_upload_model/api_url.go b/backend/api/go_http_client/pipeline_upload_model/api_url.go index fa922e0fe4f..b1ebfac3c25 100644 --- a/backend/api/go_http_client/pipeline_upload_model/api_url.go +++ b/backend/api/go_http_client/pipeline_upload_model/api_url.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/pipeline_upload_model/protobuf_any.go b/backend/api/go_http_client/pipeline_upload_model/protobuf_any.go index d9148d366fe..80a4d4cd71f 100644 --- a/backend/api/go_http_client/pipeline_upload_model/protobuf_any.go +++ b/backend/api/go_http_client/pipeline_upload_model/protobuf_any.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package pipeline_upload_model diff --git a/backend/api/go_http_client/run_client/BUILD.bazel b/backend/api/go_http_client/run_client/BUILD.bazel deleted file mode 100644 index 28b6f348c80..00000000000 --- a/backend/api/go_http_client/run_client/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["run_client.go"], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/run_client", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/run_client/run_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", - ], -) diff --git a/backend/api/go_http_client/run_client/run_client.go b/backend/api/go_http_client/run_client/run_client.go index 9a581c08b26..3b6419cc974 100644 --- a/backend/api/go_http_client/run_client/run_client.go +++ b/backend/api/go_http_client/run_client/run_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_client diff --git a/backend/api/go_http_client/run_client/run_service/BUILD.bazel b/backend/api/go_http_client/run_client/run_service/BUILD.bazel deleted file mode 100644 index 7db15acfdd5..00000000000 --- a/backend/api/go_http_client/run_client/run_service/BUILD.bazel +++ /dev/null @@ -1,38 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "archive_run_parameters.go", - "archive_run_responses.go", - "create_run_parameters.go", - "create_run_responses.go", - "delete_run_parameters.go", - "delete_run_responses.go", - "get_run_parameters.go", - "get_run_responses.go", - "list_runs_parameters.go", - "list_runs_responses.go", - "read_artifact_parameters.go", - "read_artifact_responses.go", - "report_run_metrics_parameters.go", - "report_run_metrics_responses.go", - "retry_run_parameters.go", - "retry_run_responses.go", - "run_service_client.go", - "terminate_run_parameters.go", - "terminate_run_responses.go", - "unarchive_run_parameters.go", - "unarchive_run_responses.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/run_client/run_service", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/run_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", - "@com_github_go_openapi_swag//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/run_client/run_service/archive_run_parameters.go b/backend/api/go_http_client/run_client/run_service/archive_run_parameters.go index c73debcee03..71672a67d87 100644 --- a/backend/api/go_http_client/run_client/run_service/archive_run_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/archive_run_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/archive_run_responses.go b/backend/api/go_http_client/run_client/run_service/archive_run_responses.go index 24ff12b2b9a..cdcdd5939a8 100644 --- a/backend/api/go_http_client/run_client/run_service/archive_run_responses.go +++ b/backend/api/go_http_client/run_client/run_service/archive_run_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/create_run_parameters.go b/backend/api/go_http_client/run_client/run_service/create_run_parameters.go index 6b94c424103..30c26f56b7b 100644 --- a/backend/api/go_http_client/run_client/run_service/create_run_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/create_run_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/create_run_responses.go b/backend/api/go_http_client/run_client/run_service/create_run_responses.go index d014dc129db..1ebb6e9af09 100644 --- a/backend/api/go_http_client/run_client/run_service/create_run_responses.go +++ b/backend/api/go_http_client/run_client/run_service/create_run_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/delete_run_parameters.go b/backend/api/go_http_client/run_client/run_service/delete_run_parameters.go index 1a8d25c5449..baf7313f274 100644 --- a/backend/api/go_http_client/run_client/run_service/delete_run_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/delete_run_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/delete_run_responses.go b/backend/api/go_http_client/run_client/run_service/delete_run_responses.go index c282505e02c..3f4cb4a3a05 100644 --- a/backend/api/go_http_client/run_client/run_service/delete_run_responses.go +++ b/backend/api/go_http_client/run_client/run_service/delete_run_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/get_run_parameters.go b/backend/api/go_http_client/run_client/run_service/get_run_parameters.go index 08077fa0ae7..acbd617e1c8 100644 --- a/backend/api/go_http_client/run_client/run_service/get_run_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/get_run_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/get_run_responses.go b/backend/api/go_http_client/run_client/run_service/get_run_responses.go index 53b5a18e0dc..daeec511fe4 100644 --- a/backend/api/go_http_client/run_client/run_service/get_run_responses.go +++ b/backend/api/go_http_client/run_client/run_service/get_run_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/list_runs_parameters.go b/backend/api/go_http_client/run_client/run_service/list_runs_parameters.go index 41b57a6556b..83ba2d7a85e 100644 --- a/backend/api/go_http_client/run_client/run_service/list_runs_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/list_runs_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/list_runs_responses.go b/backend/api/go_http_client/run_client/run_service/list_runs_responses.go index 65e8569557e..e5bb11ee4ce 100644 --- a/backend/api/go_http_client/run_client/run_service/list_runs_responses.go +++ b/backend/api/go_http_client/run_client/run_service/list_runs_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/read_artifact_parameters.go b/backend/api/go_http_client/run_client/run_service/read_artifact_parameters.go index a2cca1d6176..8e7243ea313 100644 --- a/backend/api/go_http_client/run_client/run_service/read_artifact_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/read_artifact_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/read_artifact_responses.go b/backend/api/go_http_client/run_client/run_service/read_artifact_responses.go index 240aae1046b..ea87f9b42b3 100644 --- a/backend/api/go_http_client/run_client/run_service/read_artifact_responses.go +++ b/backend/api/go_http_client/run_client/run_service/read_artifact_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/report_run_metrics_parameters.go b/backend/api/go_http_client/run_client/run_service/report_run_metrics_parameters.go index 35596304a2f..c795f7fcc24 100644 --- a/backend/api/go_http_client/run_client/run_service/report_run_metrics_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/report_run_metrics_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/report_run_metrics_responses.go b/backend/api/go_http_client/run_client/run_service/report_run_metrics_responses.go index 99654b47063..f17fedee98a 100644 --- a/backend/api/go_http_client/run_client/run_service/report_run_metrics_responses.go +++ b/backend/api/go_http_client/run_client/run_service/report_run_metrics_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/retry_run_parameters.go b/backend/api/go_http_client/run_client/run_service/retry_run_parameters.go index a3eb7f92776..88fb51cb66b 100644 --- a/backend/api/go_http_client/run_client/run_service/retry_run_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/retry_run_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/retry_run_responses.go b/backend/api/go_http_client/run_client/run_service/retry_run_responses.go index 7df34fa7253..d244875fb7c 100644 --- a/backend/api/go_http_client/run_client/run_service/retry_run_responses.go +++ b/backend/api/go_http_client/run_client/run_service/retry_run_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/run_service_client.go b/backend/api/go_http_client/run_client/run_service/run_service_client.go index 89033a7d7c2..3800988d49e 100644 --- a/backend/api/go_http_client/run_client/run_service/run_service_client.go +++ b/backend/api/go_http_client/run_client/run_service/run_service_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/terminate_run_parameters.go b/backend/api/go_http_client/run_client/run_service/terminate_run_parameters.go index 55350c68ec2..97352266ca0 100644 --- a/backend/api/go_http_client/run_client/run_service/terminate_run_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/terminate_run_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/terminate_run_responses.go b/backend/api/go_http_client/run_client/run_service/terminate_run_responses.go index d6d9fd6da78..d70d8c5ecb0 100644 --- a/backend/api/go_http_client/run_client/run_service/terminate_run_responses.go +++ b/backend/api/go_http_client/run_client/run_service/terminate_run_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/unarchive_run_parameters.go b/backend/api/go_http_client/run_client/run_service/unarchive_run_parameters.go index 70c2c1bb982..a6c1879d492 100644 --- a/backend/api/go_http_client/run_client/run_service/unarchive_run_parameters.go +++ b/backend/api/go_http_client/run_client/run_service/unarchive_run_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_client/run_service/unarchive_run_responses.go b/backend/api/go_http_client/run_client/run_service/unarchive_run_responses.go index dd93ca2adc4..3d4bf2912b0 100644 --- a/backend/api/go_http_client/run_client/run_service/unarchive_run_responses.go +++ b/backend/api/go_http_client/run_client/run_service/unarchive_run_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_service diff --git a/backend/api/go_http_client/run_model/BUILD.bazel b/backend/api/go_http_client/run_model/BUILD.bazel deleted file mode 100644 index 9786a9bc659..00000000000 --- a/backend/api/go_http_client/run_model/BUILD.bazel +++ /dev/null @@ -1,35 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "api_list_runs_response.go", - "api_parameter.go", - "api_pipeline_runtime.go", - "api_pipeline_spec.go", - "api_read_artifact_response.go", - "api_relationship.go", - "api_report_run_metrics_request.go", - "api_report_run_metrics_response.go", - "api_resource_key.go", - "api_resource_reference.go", - "api_resource_type.go", - "api_run.go", - "api_run_detail.go", - "api_run_metric.go", - "api_status.go", - "protobuf_any.go", - "report_run_metrics_response_report_run_metric_result.go", - "report_run_metrics_response_report_run_metric_result_status.go", - "run_metric_format.go", - "run_storage_state.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/run_model", - visibility = ["//visibility:public"], - deps = [ - "@com_github_go_openapi_errors//:go_default_library", - "@com_github_go_openapi_strfmt//:go_default_library", - "@com_github_go_openapi_swag//:go_default_library", - "@com_github_go_openapi_validate//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/run_model/api_list_runs_response.go b/backend/api/go_http_client/run_model/api_list_runs_response.go index 04e8868a33f..3681e0edc4a 100644 --- a/backend/api/go_http_client/run_model/api_list_runs_response.go +++ b/backend/api/go_http_client/run_model/api_list_runs_response.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_parameter.go b/backend/api/go_http_client/run_model/api_parameter.go index b41c8cbcd4f..a6d010007a4 100644 --- a/backend/api/go_http_client/run_model/api_parameter.go +++ b/backend/api/go_http_client/run_model/api_parameter.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_pipeline_runtime.go b/backend/api/go_http_client/run_model/api_pipeline_runtime.go index c2e8f4c7f52..74c255842ed 100644 --- a/backend/api/go_http_client/run_model/api_pipeline_runtime.go +++ b/backend/api/go_http_client/run_model/api_pipeline_runtime.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_pipeline_spec.go b/backend/api/go_http_client/run_model/api_pipeline_spec.go index 018ff9bcbcd..ba829c2291a 100644 --- a/backend/api/go_http_client/run_model/api_pipeline_spec.go +++ b/backend/api/go_http_client/run_model/api_pipeline_spec.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_read_artifact_response.go b/backend/api/go_http_client/run_model/api_read_artifact_response.go index c2f88e0601c..c8add16464f 100644 --- a/backend/api/go_http_client/run_model/api_read_artifact_response.go +++ b/backend/api/go_http_client/run_model/api_read_artifact_response.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_relationship.go b/backend/api/go_http_client/run_model/api_relationship.go index 1760d5669ca..48c2be62cc1 100644 --- a/backend/api/go_http_client/run_model/api_relationship.go +++ b/backend/api/go_http_client/run_model/api_relationship.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_report_run_metrics_request.go b/backend/api/go_http_client/run_model/api_report_run_metrics_request.go index 316057d579d..7cf45d35d8f 100644 --- a/backend/api/go_http_client/run_model/api_report_run_metrics_request.go +++ b/backend/api/go_http_client/run_model/api_report_run_metrics_request.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_report_run_metrics_response.go b/backend/api/go_http_client/run_model/api_report_run_metrics_response.go index bc59c9cc1a6..5afa15d6eef 100644 --- a/backend/api/go_http_client/run_model/api_report_run_metrics_response.go +++ b/backend/api/go_http_client/run_model/api_report_run_metrics_response.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_resource_key.go b/backend/api/go_http_client/run_model/api_resource_key.go index fdc636f16f3..606d5c956c3 100644 --- a/backend/api/go_http_client/run_model/api_resource_key.go +++ b/backend/api/go_http_client/run_model/api_resource_key.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_resource_reference.go b/backend/api/go_http_client/run_model/api_resource_reference.go index 90c0f23e5ad..5525a679e23 100644 --- a/backend/api/go_http_client/run_model/api_resource_reference.go +++ b/backend/api/go_http_client/run_model/api_resource_reference.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_resource_type.go b/backend/api/go_http_client/run_model/api_resource_type.go index d6bbcf1ee7f..b686a8783ed 100644 --- a/backend/api/go_http_client/run_model/api_resource_type.go +++ b/backend/api/go_http_client/run_model/api_resource_type.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_run.go b/backend/api/go_http_client/run_model/api_run.go index 2c77552ae29..3a9c9b96041 100644 --- a/backend/api/go_http_client/run_model/api_run.go +++ b/backend/api/go_http_client/run_model/api_run.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_run_detail.go b/backend/api/go_http_client/run_model/api_run_detail.go index 248f9404af9..53e76c303b6 100644 --- a/backend/api/go_http_client/run_model/api_run_detail.go +++ b/backend/api/go_http_client/run_model/api_run_detail.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_run_metric.go b/backend/api/go_http_client/run_model/api_run_metric.go index e62c2edbebb..9ea781b0b6d 100644 --- a/backend/api/go_http_client/run_model/api_run_metric.go +++ b/backend/api/go_http_client/run_model/api_run_metric.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/api_status.go b/backend/api/go_http_client/run_model/api_status.go index fe805893ade..f7ffb5e1cdf 100644 --- a/backend/api/go_http_client/run_model/api_status.go +++ b/backend/api/go_http_client/run_model/api_status.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/protobuf_any.go b/backend/api/go_http_client/run_model/protobuf_any.go index bf9dba8f492..493a53a2553 100644 --- a/backend/api/go_http_client/run_model/protobuf_any.go +++ b/backend/api/go_http_client/run_model/protobuf_any.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/report_run_metrics_response_report_run_metric_result.go b/backend/api/go_http_client/run_model/report_run_metrics_response_report_run_metric_result.go index e4c3af39232..c0ea5f174af 100644 --- a/backend/api/go_http_client/run_model/report_run_metrics_response_report_run_metric_result.go +++ b/backend/api/go_http_client/run_model/report_run_metrics_response_report_run_metric_result.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/report_run_metrics_response_report_run_metric_result_status.go b/backend/api/go_http_client/run_model/report_run_metrics_response_report_run_metric_result_status.go index 18e9f35dfe5..19f00402eea 100644 --- a/backend/api/go_http_client/run_model/report_run_metrics_response_report_run_metric_result_status.go +++ b/backend/api/go_http_client/run_model/report_run_metrics_response_report_run_metric_result_status.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/run_metric_format.go b/backend/api/go_http_client/run_model/run_metric_format.go index a5d91ad1fca..6a194f501b0 100644 --- a/backend/api/go_http_client/run_model/run_metric_format.go +++ b/backend/api/go_http_client/run_model/run_metric_format.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/run_model/run_storage_state.go b/backend/api/go_http_client/run_model/run_storage_state.go index 67888bb281a..997cb8405c3 100644 --- a/backend/api/go_http_client/run_model/run_storage_state.go +++ b/backend/api/go_http_client/run_model/run_storage_state.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package run_model diff --git a/backend/api/go_http_client/visualization_client/BUILD.bazel b/backend/api/go_http_client/visualization_client/BUILD.bazel deleted file mode 100644 index 09ac53441e0..00000000000 --- a/backend/api/go_http_client/visualization_client/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -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", - ], -) diff --git a/backend/api/go_http_client/visualization_client/visualization_client.go b/backend/api/go_http_client/visualization_client/visualization_client.go index a78beff749a..9c472e03978 100644 --- a/backend/api/go_http_client/visualization_client/visualization_client.go +++ b/backend/api/go_http_client/visualization_client/visualization_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package visualization_client diff --git a/backend/api/go_http_client/visualization_client/visualization_service/BUILD.bazel b/backend/api/go_http_client/visualization_client/visualization_service/BUILD.bazel deleted file mode 100644 index e62497c5f36..00000000000 --- a/backend/api/go_http_client/visualization_client/visualization_service/BUILD.bazel +++ /dev/null @@ -1,19 +0,0 @@ -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", - ], -) diff --git a/backend/api/go_http_client/visualization_client/visualization_service/create_visualization_parameters.go b/backend/api/go_http_client/visualization_client/visualization_service/create_visualization_parameters.go index c1a7b2e44bb..fe526648845 100644 --- a/backend/api/go_http_client/visualization_client/visualization_service/create_visualization_parameters.go +++ b/backend/api/go_http_client/visualization_client/visualization_service/create_visualization_parameters.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package visualization_service diff --git a/backend/api/go_http_client/visualization_client/visualization_service/create_visualization_responses.go b/backend/api/go_http_client/visualization_client/visualization_service/create_visualization_responses.go index 47c65cc9909..935e0d00c9a 100644 --- a/backend/api/go_http_client/visualization_client/visualization_service/create_visualization_responses.go +++ b/backend/api/go_http_client/visualization_client/visualization_service/create_visualization_responses.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package visualization_service diff --git a/backend/api/go_http_client/visualization_client/visualization_service/visualization_service_client.go b/backend/api/go_http_client/visualization_client/visualization_service/visualization_service_client.go index a994ccab338..8e12bad5f4a 100644 --- a/backend/api/go_http_client/visualization_client/visualization_service/visualization_service_client.go +++ b/backend/api/go_http_client/visualization_client/visualization_service/visualization_service_client.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package visualization_service diff --git a/backend/api/go_http_client/visualization_model/BUILD.bazel b/backend/api/go_http_client/visualization_model/BUILD.bazel deleted file mode 100644 index fd88a6b882a..00000000000 --- a/backend/api/go_http_client/visualization_model/BUILD.bazel +++ /dev/null @@ -1,19 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "api_status.go", - "api_visualization.go", - "api_visualization_type.go", - "protobuf_any.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/visualization_model", - visibility = ["//visibility:public"], - deps = [ - "@com_github_go_openapi_errors//:go_default_library", - "@com_github_go_openapi_strfmt//:go_default_library", - "@com_github_go_openapi_swag//:go_default_library", - "@com_github_go_openapi_validate//:go_default_library", - ], -) diff --git a/backend/api/go_http_client/visualization_model/api_status.go b/backend/api/go_http_client/visualization_model/api_status.go index ac6b96e655e..a8de240e6cf 100644 --- a/backend/api/go_http_client/visualization_model/api_status.go +++ b/backend/api/go_http_client/visualization_model/api_status.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package visualization_model diff --git a/backend/api/go_http_client/visualization_model/api_visualization.go b/backend/api/go_http_client/visualization_model/api_visualization.go index 8e517436ca5..13f1dee9cab 100644 --- a/backend/api/go_http_client/visualization_model/api_visualization.go +++ b/backend/api/go_http_client/visualization_model/api_visualization.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package visualization_model diff --git a/backend/api/go_http_client/visualization_model/api_visualization_type.go b/backend/api/go_http_client/visualization_model/api_visualization_type.go index 1b71644b84c..38a388d30b3 100644 --- a/backend/api/go_http_client/visualization_model/api_visualization_type.go +++ b/backend/api/go_http_client/visualization_model/api_visualization_type.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package visualization_model diff --git a/backend/api/go_http_client/visualization_model/protobuf_any.go b/backend/api/go_http_client/visualization_model/protobuf_any.go index 0e79b422bb5..8b76b45fdb4 100644 --- a/backend/api/go_http_client/visualization_model/protobuf_any.go +++ b/backend/api/go_http_client/visualization_model/protobuf_any.go @@ -1,17 +1,3 @@ -// Copyright 2021 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - // Code generated by go-swagger; DO NOT EDIT. package visualization_model diff --git a/backend/api/healthz.proto b/backend/api/healthz.proto index dde676a3710..82988b600c0 100644 --- a/backend/api/healthz.proto +++ b/backend/api/healthz.proto @@ -18,10 +18,7 @@ option go_package = "github.com/kubeflow/pipelines/backend/api/go_client"; package api; import "google/api/annotations.proto"; -import "google/protobuf/timestamp.proto"; import "google/protobuf/empty.proto"; -import "backend/api/pipeline_spec.proto"; -import "backend/api/resource_reference.proto"; import "protoc-gen-swagger/options/annotations.proto"; import "backend/api/error.proto"; diff --git a/backend/api/pipeline.proto b/backend/api/pipeline.proto index 9a3db557701..a84ad58772d 100644 --- a/backend/api/pipeline.proto +++ b/backend/api/pipeline.proto @@ -144,7 +144,7 @@ service PipelineService { rpc UpdatePipelineDefaultVersion(UpdatePipelineDefaultVersionRequest) returns (google.protobuf.Empty) { option (google.api.http) = { post: "/apis/v1beta1/pipelines/{pipeline_id}/default_version/{version_id}" - + }; } } @@ -165,8 +165,8 @@ message UpdatePipelineDefaultVersionRequest { // The ID of the pipeline to be updated. string pipeline_id = 1; - // The ID of the default version. - string version_id = 2; + // The ID of the default version. + string version_id = 2; } message GetPipelineRequest { diff --git a/backend/api/swagger/auth.swagger.json b/backend/api/swagger/auth.swagger.json index 5b8e5beb0e6..470c6390a1e 100755 --- a/backend/api/swagger/auth.swagger.json +++ b/backend/api/swagger/auth.swagger.json @@ -28,7 +28,7 @@ "default": { "description": "", "schema": { - "$ref": "#/definitions/apiStatus" + "$ref": ".api.Status" } } }, @@ -90,39 +90,6 @@ ], "default": "UNASSIGNED_VERB", "description": "Type of verbs that act on the resources." - }, - "apiStatus": { - "type": "object", - "properties": { - "error": { - "type": "string" - }, - "code": { - "type": "integer", - "format": "int32" - }, - "details": { - "type": "array", - "items": { - "$ref": "#/definitions/protobufAny" - } - } - } - }, - "protobufAny": { - "type": "object", - "properties": { - "type_url": { - "type": "string", - "description": "A URL/resource name that uniquely identifies the type of the serialized\nprotocol buffer message. The last segment of the URL's path must represent\nthe fully qualified name of the type (as in\n`path/google.protobuf.Duration`). The name should be in a canonical form\n(e.g., leading \".\" is not accepted).\n\nIn practice, teams usually precompile into the binary all types that they\nexpect it to use in the context of Any. However, for URLs which use the\nscheme `http`, `https`, or no scheme, one can optionally set up a type\nserver that maps type URLs to message definitions as follows:\n\n* If no scheme is provided, `https` is assumed.\n* An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n* Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\nNote: this functionality is not currently available in the official\nprotobuf release, and it is not used for type URLs beginning with\ntype.googleapis.com.\n\nSchemes other than `http`, `https` (or the empty scheme) might be\nused with implementation specific semantics." - }, - "value": { - "type": "string", - "format": "byte", - "description": "Must be a valid serialized protocol buffer of the above specified type." - } - }, - "description": "`Any` contains an arbitrary serialized protocol buffer message along with a\nURL that describes the type of the serialized message.\n\nProtobuf library provides support to pack/unpack Any values in the form\nof utility functions or additional generated methods of the Any type.\n\nExample 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(\u0026foo)) {\n ...\n }\n\nExample 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := \u0026pb.Foo{...}\n any, err := ptypes.MarshalAny(foo)\n ...\n foo := \u0026pb.Foo{}\n if err := ptypes.UnmarshalAny(any, foo); err != nil {\n ...\n }\n\nThe pack methods provided by protobuf library will by default use\n'type.googleapis.com/full.type.name' as the type URL and the unpack\nmethods only use the fully qualified type name after the last '/'\nin the type URL, for example \"foo.bar.com/x/y.z\" will yield type\nname \"y.z\".\n\n\nJSON\n====\nThe JSON representation of an `Any` value uses the regular\nrepresentation of the deserialized, embedded message, with an\nadditional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": \u003cstring\u003e,\n \"lastName\": \u003cstring\u003e\n }\n\nIf the embedded message type is well-known and has a custom JSON\nrepresentation, that representation will be embedded adding a field\n`value` which holds the custom JSON in addition to the `@type`\nfield. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }" } }, "securityDefinitions": { diff --git a/backend/api/visualization.proto b/backend/api/visualization.proto index b65b21582fb..d16ae7b6ed2 100644 --- a/backend/api/visualization.proto +++ b/backend/api/visualization.proto @@ -103,4 +103,4 @@ message Visualization { // visualization ID and the error message are returned. Client has the // flexibility of choosing how to handle the error. string error = 5; -} \ No newline at end of file +} diff --git a/backend/src/agent/persistence/BUILD.bazel b/backend/src/agent/persistence/BUILD.bazel deleted file mode 100644 index 6ec77f0fe7f..00000000000 --- a/backend/src/agent/persistence/BUILD.bazel +++ /dev/null @@ -1,37 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "main.go", - "persistence_agent.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/agent/persistence", - visibility = ["//visibility:private"], - deps = [ - "//backend/src/agent/persistence/client:go_default_library", - "//backend/src/agent/persistence/worker:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned/scheme:go_default_library", - "//backend/src/crd/pkg/client/informers/externalversions:go_default_library", - "//backend/src/crd/pkg/signals:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow:go_default_library", - "@com_github_argoproj_argo//pkg/client/clientset/versioned:go_default_library", - "@com_github_argoproj_argo//pkg/client/informers/externalversions:go_default_library", - "@com_github_sirupsen_logrus//:go_default_library", - "@io_k8s_apimachinery//pkg/util/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/util/wait:go_default_library", - "@io_k8s_client_go//kubernetes/scheme:go_default_library", - "@io_k8s_client_go//plugin/pkg/client/auth/gcp:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - "@io_k8s_client_go//tools/clientcmd:go_default_library", - ], -) - -go_binary( - name = "persistence", - embed = [":go_default_library"], - visibility = ["//visibility:public"], -) diff --git a/backend/src/agent/persistence/client/BUILD.bazel b/backend/src/agent/persistence/client/BUILD.bazel deleted file mode 100644 index db7bb20039f..00000000000 --- a/backend/src/agent/persistence/client/BUILD.bazel +++ /dev/null @@ -1,26 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "pipeline_client.go", - "pipeline_client_fake.go", - "scheduled_workflow_client.go", - "scheduled_workflow_client_fake.go", - "workflow_client.go", - "workflow_fake.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/agent/persistence/client", - visibility = ["//visibility:public"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/client/informers/externalversions/workflow/v1alpha1:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@io_k8s_client_go//plugin/pkg/client/auth/gcp:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - "@org_golang_google_grpc//codes:go_default_library", - "@org_golang_google_grpc//status:go_default_library", - ], -) diff --git a/backend/src/agent/persistence/worker/BUILD.bazel b/backend/src/agent/persistence/worker/BUILD.bazel deleted file mode 100644 index 99e2821b640..00000000000 --- a/backend/src/agent/persistence/worker/BUILD.bazel +++ /dev/null @@ -1,48 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "metrics_reporter.go", - "persistence_worker.go", - "swf_saver.go", - "workflow_saver.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/agent/persistence/worker", - visibility = ["//visibility:public"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/agent/persistence/client:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_golang_protobuf//jsonpb:go_default_library_gen", - "@com_github_sirupsen_logrus//:go_default_library", - "@io_k8s_apimachinery//pkg/util/runtime:go_default_library", - "@io_k8s_client_go//plugin/pkg/client/auth/gcp:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - "@io_k8s_client_go//util/workqueue:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = [ - "metrics_reporter_test.go", - "persistence_worker_test.go", - "swf_saver_test.go", - "workflow_saver_test.go", - ], - embed = [":go_default_library"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/agent/persistence/client:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_client_go//plugin/pkg/client/auth/gcp:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - ], -) diff --git a/backend/src/apiserver/BUILD.bazel b/backend/src/apiserver/BUILD.bazel deleted file mode 100644 index 3f777545b1d..00000000000 --- a/backend/src/apiserver/BUILD.bazel +++ /dev/null @@ -1,41 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "client_manager.go", - "interceptor.go", - "main.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver", - visibility = ["//visibility:private"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/apiserver/archive:go_default_library", - "//backend/src/apiserver/client:go_default_library", - "//backend/src/apiserver/common:go_default_library", - "//backend/src/apiserver/model:go_default_library", - "//backend/src/apiserver/resource:go_default_library", - "//backend/src/apiserver/server:go_default_library", - "//backend/src/apiserver/storage:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_cenkalti_backoff//:go_default_library", - "@com_github_fsnotify_fsnotify//:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_gorilla_mux//:go_default_library", - "@com_github_grpc_ecosystem_grpc_gateway//runtime:go_default_library", - "@com_github_jinzhu_gorm//:go_default_library", - "@com_github_jinzhu_gorm//dialects/sqlite:go_default_library", - "@com_github_minio_minio_go//:go_default_library", - "@com_github_prometheus_client_golang//prometheus/promhttp:go_default_library", - "@com_github_spf13_viper//:go_default_library", - "@org_golang_google_grpc//:go_default_library", - "@org_golang_google_grpc//reflection:go_default_library", - ], -) - -go_binary( - name = "apiserver", - embed = [":go_default_library"], - visibility = ["//visibility:public"], -) diff --git a/backend/src/apiserver/archive/BUILD.bazel b/backend/src/apiserver/archive/BUILD.bazel deleted file mode 100644 index 673577e03b6..00000000000 --- a/backend/src/apiserver/archive/BUILD.bazel +++ /dev/null @@ -1,21 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = ["log.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/archive", - visibility = ["//visibility:public"], - deps = ["//backend/src/common/util:go_default_library"], -) - -go_test( - name = "go_default_test", - srcs = ["log_test.go"], - embed = [":go_default_library"], - deps = [ - "//backend/src/common/util:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - ], -) diff --git a/backend/src/apiserver/client/BUILD.bazel b/backend/src/apiserver/client/BUILD.bazel deleted file mode 100644 index bfc12c2f561..00000000000 --- a/backend/src/apiserver/client/BUILD.bazel +++ /dev/null @@ -1,58 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "argo.go", - "argo_fake.go", - "kubernetes_core.go", - "kubernetes_core_fake.go", - "minio.go", - "pod_fake.go", - "scheduled_workflow_fake.go", - "sql.go", - "subject_access_review.go", - "subject_access_review_fake.go", - "swf.go", - "swf_fake.go", - "workflow_fake.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/client", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_argoproj_argo//pkg/client/clientset/versioned:go_default_library", - "@com_github_argoproj_argo//pkg/client/clientset/versioned/typed/workflow/v1alpha1:go_default_library", - "@com_github_cenkalti_backoff//:go_default_library", - "@com_github_go_sql_driver_mysql//:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_minio_minio_go//:go_default_library", - "@com_github_minio_minio_go//pkg/credentials:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@io_k8s_api//authorization/v1:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_api//policy/v1beta1:go_default_library", - "@io_k8s_apimachinery//pkg/api/errors:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/schema:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_apimachinery//pkg/watch:go_default_library", - "@io_k8s_client_go//kubernetes:go_default_library", - "@io_k8s_client_go//kubernetes/typed/core/v1:go_default_library", - "@io_k8s_client_go//rest:go_default_library", - "@io_k8s_client_go//tools/clientcmd:go_default_library", - "@io_k8s_client_go//util/homedir:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = ["sql_test.go"], - data = glob(["test/**/*"]), # keep - embed = [":go_default_library"], - deps = ["@com_github_go_sql_driver_mysql//:go_default_library"], -) diff --git a/backend/src/apiserver/common/BUILD.bazel b/backend/src/apiserver/common/BUILD.bazel deleted file mode 100644 index 282a1f65264..00000000000 --- a/backend/src/apiserver/common/BUILD.bazel +++ /dev/null @@ -1,31 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "config.go", - "const.go", - "filter_context.go", - "pagination_context.go", - "paths.go", - "util.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/common", - visibility = ["//visibility:public"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_spf13_viper//:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = ["util_test.go"], - embed = [":go_default_library"], - deps = [ - "//backend/api:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - ], -) diff --git a/backend/src/apiserver/filter/BUILD.bazel b/backend/src/apiserver/filter/BUILD.bazel deleted file mode 100644 index 8b31454d028..00000000000 --- a/backend/src/apiserver/filter/BUILD.bazel +++ /dev/null @@ -1,28 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = ["filter.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/filter", - visibility = ["//visibility:public"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_golang_protobuf//jsonpb:go_default_library_gen", - "@com_github_golang_protobuf//ptypes:go_default_library_gen", - "@com_github_masterminds_squirrel//:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = ["filter_test.go"], - embed = [":go_default_library"], - deps = [ - "//backend/api:go_default_library", - "@com_github_golang_protobuf//proto:go_default_library", - "@com_github_google_go_cmp//cmp:go_default_library", - "@com_github_google_go_cmp//cmp/cmpopts:go_default_library", - "@com_github_masterminds_squirrel//:go_default_library", - ], -) diff --git a/backend/src/apiserver/list/BUILD.bazel b/backend/src/apiserver/list/BUILD.bazel deleted file mode 100644 index 605f0f027b4..00000000000 --- a/backend/src/apiserver/list/BUILD.bazel +++ /dev/null @@ -1,32 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = ["list.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/list", - visibility = ["//visibility:public"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/apiserver/common:go_default_library", - "//backend/src/apiserver/filter:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_masterminds_squirrel//:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = ["list_test.go"], - embed = [":go_default_library"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/apiserver/common:go_default_library", - "//backend/src/apiserver/filter:go_default_library", - "//backend/src/apiserver/model:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_google_go_cmp//cmp:go_default_library", - "@com_github_google_go_cmp//cmp/cmpopts:go_default_library", - "@com_github_masterminds_squirrel//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - ], -) diff --git a/backend/src/apiserver/model/BUILD.bazel b/backend/src/apiserver/model/BUILD.bazel deleted file mode 100644 index 9a9d1db95c9..00000000000 --- a/backend/src/apiserver/model/BUILD.bazel +++ /dev/null @@ -1,32 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "db_status.go", - "default_experiment.go", - "experiment.go", - "job.go", - "listable_model.go", - "pipeline.go", - "pipeline_spec.go", - "pipeline_version.go", - "resource_reference.go", - "run.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/model", - visibility = ["//visibility:public"], - deps = ["//backend/src/apiserver/common:go_default_library"], -) - -go_test( - name = "go_default_test", - srcs = ["resource_reference_test.go"], - embed = [":go_default_library"], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/model", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/apiserver/common:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - ], -) diff --git a/backend/src/apiserver/resource/BUILD.bazel b/backend/src/apiserver/resource/BUILD.bazel deleted file mode 100644 index a75f561580b..00000000000 --- a/backend/src/apiserver/resource/BUILD.bazel +++ /dev/null @@ -1,68 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "client_manager_fake.go", - "model_converter.go", - "resource_manager.go", - "resource_manager_util.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/resource", - visibility = ["//visibility:public"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/apiserver/archive:go_default_library", - "//backend/src/apiserver/client:go_default_library", - "//backend/src/apiserver/common:go_default_library", - "//backend/src/apiserver/list:go_default_library", - "//backend/src/apiserver/model:go_default_library", - "//backend/src/apiserver/storage:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_argoproj_argo//pkg/client/clientset/versioned/typed/workflow/v1alpha1:go_default_library", - "@com_github_argoproj_argo//workflow/common:go_default_library", - "@com_github_cenkalti_backoff//:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@com_github_prometheus_client_golang//prometheus:go_default_library", - "@com_github_prometheus_client_golang//prometheus/promauto:go_default_library", - "@io_k8s_api//authorization/v1:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_apimachinery//pkg/api/errors:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = [ - "model_converter_test.go", - "resource_manager_test.go", - "resource_manager_util_test.go", - ], - embed = [":go_default_library"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/apiserver/client:go_default_library", - "//backend/src/apiserver/common:go_default_library", - "//backend/src/apiserver/model:go_default_library", - "//backend/src/apiserver/storage:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_ghodss_yaml//:go_default_library", - "@com_github_google_go_cmp//cmp:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@com_github_spf13_viper//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@com_github_stretchr_testify//require:go_default_library", - "@io_bazel_rules_go//proto/wkt:timestamp_go_proto", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@org_golang_google_grpc//codes:go_default_library", - ], -) diff --git a/backend/src/apiserver/server/BUILD.bazel b/backend/src/apiserver/server/BUILD.bazel deleted file mode 100644 index 7c9c7441696..00000000000 --- a/backend/src/apiserver/server/BUILD.bazel +++ /dev/null @@ -1,90 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "api_converter.go", - "auth_server.go", - "experiment_server.go", - "job_server.go", - "list_request_util.go", - "pipeline_server.go", - "pipeline_upload_server.go", - "report_server.go", - "run_log_server.go", - "run_metric_util.go", - "run_server.go", - "test_util.go", - "util.go", - "visualization_server.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/server", - visibility = ["//visibility:public"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/apiserver/client:go_default_library", - "//backend/src/apiserver/common:go_default_library", - "//backend/src/apiserver/list:go_default_library", - "//backend/src/apiserver/model:go_default_library", - "//backend/src/apiserver/resource:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_golang_protobuf//jsonpb:go_default_library_gen", - "@com_github_gorilla_mux//:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@com_github_prometheus_client_golang//prometheus:go_default_library", - "@com_github_prometheus_client_golang//prometheus/promauto:go_default_library", - "@com_github_robfig_cron//:go_default_library", - "@com_github_spf13_viper//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@io_bazel_rules_go//proto/wkt:empty_go_proto", - "@io_bazel_rules_go//proto/wkt:timestamp_go_proto", - "@io_k8s_api//authorization/v1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@org_golang_google_grpc//codes:go_default_library", - "@org_golang_google_grpc//metadata:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = [ - "api_converter_test.go", - "auth_server_test.go", - "experiment_server_test.go", - "job_server_test.go", - "list_request_util_test.go", - "pipeline_server_test.go", - "pipeline_upload_server_test.go", - "report_server_test.go", - "run_metric_util_test.go", - "run_server_test.go", - "util_test.go", - "visualization_server_test.go", - ], - data = glob(["test/**/*"]), # keep - embed = [":go_default_library"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/apiserver/client:go_default_library", - "//backend/src/apiserver/common:go_default_library", - "//backend/src/apiserver/list:go_default_library", - "//backend/src/apiserver/model:go_default_library", - "//backend/src/apiserver/resource:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_google_go_cmp//cmp:go_default_library", - "@com_github_google_go_cmp//cmp/cmpopts:go_default_library", - "@com_github_spf13_viper//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@io_bazel_rules_go//proto/wkt:timestamp_go_proto", - "@io_k8s_api//authorization/v1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@org_golang_google_grpc//codes:go_default_library", - "@org_golang_google_grpc//metadata:go_default_library", - ], -) diff --git a/backend/src/apiserver/storage/BUILD.bazel b/backend/src/apiserver/storage/BUILD.bazel deleted file mode 100644 index a88a1eb9668..00000000000 --- a/backend/src/apiserver/storage/BUILD.bazel +++ /dev/null @@ -1,73 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "db.go", - "db_fake.go", - "db_status_store.go", - "default_experiment_store.go", - "experiment_store.go", - "job_store.go", - "minio_client.go", - "minio_client_fake.go", - "object_store.go", - "object_store_fake.go", - "pipeline_store.go", - "resource_reference_store.go", - "run_store.go", - "sql_null_util.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/storage", - visibility = ["//visibility:public"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/apiserver/common:go_default_library", - "//backend/src/apiserver/list:go_default_library", - "//backend/src/apiserver/model:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_ghodss_yaml//:go_default_library", - "@com_github_go_sql_driver_mysql//:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_jinzhu_gorm//:go_default_library", - "@com_github_masterminds_squirrel//:go_default_library", - "@com_github_mattn_go_sqlite3//:go_default_library", - "@com_github_minio_minio_go//:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@com_github_vividcortex_mysqlerr//:go_default_library", - "@io_k8s_apimachinery//pkg/util/json:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = [ - "db_status_store_test.go", - "db_test.go", - "default_experiment_store_test.go", - "experiment_store_test.go", - "job_store_test.go", - "object_store_test.go", - "pipeline_store_test.go", - "resource_reference_store_test.go", - "run_store_test.go", - ], - embed = [":go_default_library"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/apiserver/common:go_default_library", - "//backend/src/apiserver/list:go_default_library", - "//backend/src/apiserver/model:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_masterminds_squirrel//:go_default_library", - "@com_github_minio_minio_go//:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/util/json:go_default_library", - "@io_k8s_kubernetes//pkg/apis/core:go_default_library", - "@org_golang_google_grpc//codes:go_default_library", - ], -) diff --git a/backend/src/cache/BUILD.bazel b/backend/src/cache/BUILD.bazel deleted file mode 100644 index 709071958b5..00000000000 --- a/backend/src/cache/BUILD.bazel +++ /dev/null @@ -1,27 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "client_manager.go", - "main.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/cache", - visibility = ["//visibility:private"], - deps = [ - "//backend/src/cache/client:go_default_library", - "//backend/src/cache/model:go_default_library", - "//backend/src/cache/server:go_default_library", - "//backend/src/cache/storage:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_cenkalti_backoff//:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_jinzhu_gorm//:go_default_library", - ], -) - -go_binary( - name = "cache", - embed = [":go_default_library"], - visibility = ["//visibility:public"], -) diff --git a/backend/src/cache/client/BUILD.bazel b/backend/src/cache/client/BUILD.bazel deleted file mode 100644 index b04c858c529..00000000000 --- a/backend/src/cache/client/BUILD.bazel +++ /dev/null @@ -1,35 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "kubernetes_core.go", - "kubernetes_core_fake.go", - "pod_fake.go", - "sql.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/cache/client", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/common/util:go_default_library", - "@com_github_cenkalti_backoff//:go_default_library", - "@com_github_go_sql_driver_mysql//:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_api//policy/v1beta1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_apimachinery//pkg/watch:go_default_library", - "@io_k8s_client_go//kubernetes:go_default_library", - "@io_k8s_client_go//kubernetes/typed/core/v1:go_default_library", - "@io_k8s_client_go//rest:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = ["sql_test.go"], - embed = [":go_default_library"], - deps = ["@com_github_go_sql_driver_mysql//:go_default_library"], -) diff --git a/backend/src/cache/model/BUILD.bazel b/backend/src/cache/model/BUILD.bazel deleted file mode 100644 index c69c82c1449..00000000000 --- a/backend/src/cache/model/BUILD.bazel +++ /dev/null @@ -1,8 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["execution_cache.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/cache/model", - visibility = ["//visibility:public"], -) diff --git a/backend/src/cache/server/BUILD.bazel b/backend/src/cache/server/BUILD.bazel deleted file mode 100644 index 992721f2825..00000000000 --- a/backend/src/cache/server/BUILD.bazel +++ /dev/null @@ -1,47 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "admission.go", - "client_manager_fake.go", - "mutation.go", - "watcher.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/cache/server", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/cache/client:go_default_library", - "//backend/src/cache/model:go_default_library", - "//backend/src/cache/storage:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_peterhellberg_duration//:go_default_library", - "@io_k8s_api//admission/v1beta1:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/serializer:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_apimachinery//pkg/watch:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = [ - "admission_test.go", - "mutation_test.go", - ], - embed = [":go_default_library"], - deps = [ - "//backend/src/cache/model:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@com_github_stretchr_testify//require:go_default_library", - "@io_k8s_api//admission/v1beta1:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - ], -) diff --git a/backend/src/cache/storage/BUILD.bazel b/backend/src/cache/storage/BUILD.bazel deleted file mode 100644 index 72c5088a0ae..00000000000 --- a/backend/src/cache/storage/BUILD.bazel +++ /dev/null @@ -1,31 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "db.go", - "db_fake.go", - "execution_cache_store.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/cache/storage", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/cache/model:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_jinzhu_gorm//:go_default_library", - "@com_github_mattn_go_sqlite3//:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = ["execution_cache_store_test.go"], - embed = [":go_default_library"], - deps = [ - "//backend/src/cache/model:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@com_github_stretchr_testify//require:go_default_library", - ], -) diff --git a/backend/src/common/client/api_server/BUILD.bazel b/backend/src/common/client/api_server/BUILD.bazel deleted file mode 100644 index e4ae2f9e295..00000000000 --- a/backend/src/common/client/api_server/BUILD.bazel +++ /dev/null @@ -1,54 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "experiment_client.go", - "experiment_client_fake.go", - "job_client.go", - "job_client_fake.go", - "pipeline_client.go", - "pipeline_client_fake.go", - "pipeline_upload_client.go", - "pipeline_upload_client_fake.go", - "run_client.go", - "run_client_fake.go", - "util.go", - "visualization_client.go", - "visualization_client_fake.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/common/client/api_server", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/experiment_client:go_default_library", - "//backend/api/go_http_client/experiment_client/experiment_service:go_default_library", - "//backend/api/go_http_client/experiment_model:go_default_library", - "//backend/api/go_http_client/job_client:go_default_library", - "//backend/api/go_http_client/job_client/job_service:go_default_library", - "//backend/api/go_http_client/job_model:go_default_library", - "//backend/api/go_http_client/pipeline_client:go_default_library", - "//backend/api/go_http_client/pipeline_client/pipeline_service:go_default_library", - "//backend/api/go_http_client/pipeline_model:go_default_library", - "//backend/api/go_http_client/pipeline_upload_client:go_default_library", - "//backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service:go_default_library", - "//backend/api/go_http_client/pipeline_upload_model:go_default_library", - "//backend/api/go_http_client/run_client:go_default_library", - "//backend/api/go_http_client/run_client/run_service:go_default_library", - "//backend/api/go_http_client/run_model:go_default_library", - "//backend/api/go_http_client/visualization_client:go_default_library", - "//backend/api/go_http_client/visualization_client/visualization_service:go_default_library", - "//backend/api/go_http_client/visualization_model:go_default_library", - "//backend/src/common/util:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_ghodss_yaml//: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", - "@com_github_pkg_errors//:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_client_go//plugin/pkg/client/auth/gcp:go_default_library", - "@io_k8s_client_go//rest:go_default_library", - "@io_k8s_client_go//tools/clientcmd:go_default_library", - "@org_golang_x_net//context:go_default_library", - ], -) diff --git a/backend/src/common/util/BUILD.bazel b/backend/src/common/util/BUILD.bazel deleted file mode 100644 index 0c667a360f2..00000000000 --- a/backend/src/common/util/BUILD.bazel +++ /dev/null @@ -1,74 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "consts.go", - "error.go", - "formatter.go", - "json.go", - "label.go", - "pointer.go", - "scheduled_workflow.go", - "service.go", - "string.go", - "template_util.go", - "tgz.go", - "time.go", - "uuid.go", - "workflow.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/common/util", - visibility = ["//visibility:public"], - deps = [ - "//backend/api:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_cenkalti_backoff//:go_default_library", - "@com_github_ghodss_yaml//:go_default_library", - "@com_github_go_openapi_runtime//:go_default_library", - "@com_github_go_openapi_strfmt//:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_google_uuid//:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@io_bazel_rules_go//proto/wkt:timestamp_go_proto", - "@io_k8s_apimachinery//pkg/api/errors:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/schema:go_default_library", - "@io_k8s_apimachinery//pkg/util/json:go_default_library", - "@io_k8s_client_go//kubernetes:go_default_library", - "@io_k8s_client_go//rest:go_default_library", - "@io_k8s_client_go//tools/clientcmd:go_default_library", - "@org_golang_google_grpc//:go_default_library", - "@org_golang_google_grpc//codes:go_default_library", - "@org_golang_google_grpc//status:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = [ - "error_test.go", - "formatter_test.go", - "label_test.go", - "scheduled_workflow_test.go", - "string_test.go", - "template_util_test.go", - "tgz_test.go", - "workflow_test.go", - ], - embed = [":go_default_library"], - deps = [ - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_ghodss_yaml//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@io_k8s_apimachinery//pkg/api/errors:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/schema:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_kubernetes//pkg/apis/core:go_default_library", - "@org_golang_google_grpc//codes:go_default_library", - ], -) diff --git a/backend/src/crd/controller/scheduledworkflow/BUILD.bazel b/backend/src/crd/controller/scheduledworkflow/BUILD.bazel deleted file mode 100644 index 6900cd190db..00000000000 --- a/backend/src/crd/controller/scheduledworkflow/BUILD.bazel +++ /dev/null @@ -1,46 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "controller.go", - "main.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/controller/scheduledworkflow", - visibility = ["//visibility:private"], - deps = [ - "//backend/src/common/util:go_default_library", - "//backend/src/crd/controller/scheduledworkflow/client:go_default_library", - "//backend/src/crd/controller/scheduledworkflow/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned/scheme:go_default_library", - "//backend/src/crd/pkg/client/informers/externalversions:go_default_library", - "//backend/src/crd/pkg/signals:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_argoproj_argo//pkg/client/clientset/versioned:go_default_library", - "@com_github_argoproj_argo//pkg/client/informers/externalversions:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@com_github_sirupsen_logrus//:go_default_library", - "@com_github_spf13_viper//:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/util/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/util/wait:go_default_library", - "@io_k8s_client_go//kubernetes:go_default_library", - "@io_k8s_client_go//kubernetes/scheme:go_default_library", - "@io_k8s_client_go//kubernetes/typed/core/v1:go_default_library", - "@io_k8s_client_go//plugin/pkg/client/auth/gcp:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - "@io_k8s_client_go//tools/clientcmd:go_default_library", - "@io_k8s_client_go//tools/record:go_default_library", - "@io_k8s_client_go//util/workqueue:go_default_library", - ], -) - -go_binary( - name = "scheduledworkflow", - embed = [":go_default_library"], - visibility = ["//visibility:public"], -) diff --git a/backend/src/crd/controller/scheduledworkflow/client/BUILD.bazel b/backend/src/crd/controller/scheduledworkflow/client/BUILD.bazel deleted file mode 100644 index e27c33df3ce..00000000000 --- a/backend/src/crd/controller/scheduledworkflow/client/BUILD.bazel +++ /dev/null @@ -1,46 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "kube_client.go", - "swf_client.go", - "workflow_client.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/controller/scheduledworkflow/client", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/common/util:go_default_library", - "//backend/src/crd/controller/scheduledworkflow/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned:go_default_library", - "//backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_argoproj_argo//pkg/client/clientset/versioned:go_default_library", - "@com_github_argoproj_argo//pkg/client/informers/externalversions/workflow/v1alpha1:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/labels:go_default_library", - "@io_k8s_client_go//kubernetes:go_default_library", - "@io_k8s_client_go//plugin/pkg/client/auth/gcp:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - "@io_k8s_client_go//tools/record:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = ["workflow_client_test.go"], - embed = [":go_default_library"], - deps = [ - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_argoproj_argo//workflow/common:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/labels:go_default_library", - "@io_k8s_apimachinery//pkg/selection:go_default_library", - ], -) diff --git a/backend/src/crd/controller/scheduledworkflow/util/BUILD.bazel b/backend/src/crd/controller/scheduledworkflow/util/BUILD.bazel deleted file mode 100644 index 30ba89cee99..00000000000 --- a/backend/src/crd/controller/scheduledworkflow/util/BUILD.bazel +++ /dev/null @@ -1,50 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = [ - "const.go", - "cron_schedule.go", - "label.go", - "parameter_formatter.go", - "periodic_schedule.go", - "scheduled_workflow.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/controller/scheduledworkflow/util", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/apiserver/common:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_argoproj_argo//workflow/common:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@com_github_robfig_cron//:go_default_library", - "@com_github_sirupsen_logrus//:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/labels:go_default_library", - "@io_k8s_apimachinery//pkg/selection:go_default_library", - "@io_k8s_kubernetes//pkg/apis/core:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = [ - "const_test.go", - "cron_schedule_test.go", - "parameter_formatter_test.go", - "periodic_schedule_test.go", - "scheduled_workflow_test.go", - ], - embed = [":go_default_library"], - deps = [ - "//backend/src/common/util:go_default_library", - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_spf13_viper//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_kubernetes//pkg/apis/core:go_default_library", - ], -) diff --git a/backend/src/crd/controller/viewer/BUILD.bazel b/backend/src/crd/controller/viewer/BUILD.bazel deleted file mode 100644 index b7041c6121f..00000000000 --- a/backend/src/crd/controller/viewer/BUILD.bazel +++ /dev/null @@ -1,28 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") - -go_library( - name = "go_default_library", - srcs = ["main.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/controller/viewer", - visibility = ["//visibility:private"], - deps = [ - "//backend/src/crd/controller/viewer/reconciler:go_default_library", - "//backend/src/crd/pkg/apis/viewer/v1beta1:go_default_library", - "//backend/src/crd/pkg/signals:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@io_k8s_api//apps/v1:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_client_go//kubernetes/scheme:go_default_library", - "@io_k8s_client_go//plugin/pkg/client/auth/gcp:go_default_library", - "@io_k8s_client_go//tools/clientcmd:go_default_library", - "@io_k8s_sigs_controller_runtime//pkg/builder:go_default_library", - "@io_k8s_sigs_controller_runtime//pkg/client:go_default_library", - "@io_k8s_sigs_controller_runtime//pkg/manager:go_default_library", - ], -) - -go_binary( - name = "viewer", - embed = [":go_default_library"], - visibility = ["//visibility:public"], -) diff --git a/backend/src/crd/controller/viewer/reconciler/BUILD.bazel b/backend/src/crd/controller/viewer/reconciler/BUILD.bazel deleted file mode 100644 index 80e4721ab7c..00000000000 --- a/backend/src/crd/controller/viewer/reconciler/BUILD.bazel +++ /dev/null @@ -1,43 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_library( - name = "go_default_library", - srcs = ["reconciler.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/controller/viewer/reconciler", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/viewer/v1beta1:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@io_k8s_api//apps/v1:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_apimachinery//pkg/api/errors:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_apimachinery//pkg/util/intstr:go_default_library", - "@io_k8s_apimachinery//pkg/util/runtime:go_default_library", - "@io_k8s_sigs_controller_runtime//pkg/client:go_default_library", - "@io_k8s_sigs_controller_runtime//pkg/controller/controllerutil:go_default_library", - "@io_k8s_sigs_controller_runtime//pkg/reconcile:go_default_library", - ], -) - -go_test( - name = "go_default_test", - srcs = ["reconciler_test.go"], - embed = [":go_default_library"], - deps = [ - "//backend/src/crd/pkg/apis/viewer/v1beta1:go_default_library", - "@com_github_google_go_cmp//cmp:go_default_library", - "@com_github_google_go_cmp//cmp/cmpopts:go_default_library", - "@io_k8s_api//apps/v1:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_apimachinery//pkg/util/intstr:go_default_library", - "@io_k8s_client_go//kubernetes/scheme:go_default_library", - "@io_k8s_sigs_controller_runtime//pkg/client:go_default_library", - "@io_k8s_sigs_controller_runtime//pkg/client/fake:go_default_library", - "@io_k8s_sigs_controller_runtime//pkg/reconcile:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/apis/scheduledworkflow/BUILD.bazel b/backend/src/crd/pkg/apis/scheduledworkflow/BUILD.bazel deleted file mode 100644 index 04568180d75..00000000000 --- a/backend/src/crd/pkg/apis/scheduledworkflow/BUILD.bazel +++ /dev/null @@ -1,8 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["register.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/apis/scheduledworkflow", - visibility = ["//visibility:public"], -) diff --git a/backend/src/crd/pkg/apis/scheduledworkflow/v1beta1/BUILD.bazel b/backend/src/crd/pkg/apis/scheduledworkflow/v1beta1/BUILD.bazel deleted file mode 100644 index d68ec8d19bd..00000000000 --- a/backend/src/crd/pkg/apis/scheduledworkflow/v1beta1/BUILD.bazel +++ /dev/null @@ -1,22 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "doc.go", - "register.go", - "types.go", - "zz_generated.deepcopy.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/apis/scheduledworkflow/v1beta1", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/scheduledworkflow:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/schema:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_kubernetes//pkg/apis/core:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/apis/viewer/BUILD.bazel b/backend/src/crd/pkg/apis/viewer/BUILD.bazel deleted file mode 100644 index 8bfb733d09c..00000000000 --- a/backend/src/crd/pkg/apis/viewer/BUILD.bazel +++ /dev/null @@ -1,8 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["register.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/apis/viewer", - visibility = ["//visibility:public"], -) diff --git a/backend/src/crd/pkg/apis/viewer/v1beta1/BUILD.bazel b/backend/src/crd/pkg/apis/viewer/v1beta1/BUILD.bazel deleted file mode 100644 index ac95c7308ff..00000000000 --- a/backend/src/crd/pkg/apis/viewer/v1beta1/BUILD.bazel +++ /dev/null @@ -1,20 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "doc.go", - "register.go", - "types.go", - "zz_generated.deepcopy.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/apis/viewer/v1beta1", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/viewer:go_default_library", - "@io_k8s_api//core/v1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/schema:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/clientset/versioned/BUILD.bazel b/backend/src/crd/pkg/client/clientset/versioned/BUILD.bazel deleted file mode 100644 index 825e52f37cb..00000000000 --- a/backend/src/crd/pkg/client/clientset/versioned/BUILD.bazel +++ /dev/null @@ -1,17 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "clientset.go", - "doc.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/clientset/versioned", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1:go_default_library", - "@io_k8s_client_go//discovery:go_default_library", - "@io_k8s_client_go//rest:go_default_library", - "@io_k8s_client_go//util/flowcontrol:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/clientset/versioned/fake/BUILD.bazel b/backend/src/crd/pkg/client/clientset/versioned/fake/BUILD.bazel deleted file mode 100644 index 1b850ef12d4..00000000000 --- a/backend/src/crd/pkg/client/clientset/versioned/fake/BUILD.bazel +++ /dev/null @@ -1,27 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "clientset_generated.go", - "doc.go", - "register.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/clientset/versioned/fake", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1/fake:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/schema:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/serializer:go_default_library", - "@io_k8s_apimachinery//pkg/util/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/watch:go_default_library", - "@io_k8s_client_go//discovery:go_default_library", - "@io_k8s_client_go//discovery/fake:go_default_library", - "@io_k8s_client_go//testing:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/clientset/versioned/scheme/BUILD.bazel b/backend/src/crd/pkg/client/clientset/versioned/scheme/BUILD.bazel deleted file mode 100644 index a510986b3dd..00000000000 --- a/backend/src/crd/pkg/client/clientset/versioned/scheme/BUILD.bazel +++ /dev/null @@ -1,19 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "doc.go", - "register.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/clientset/versioned/scheme", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/schema:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/serializer:go_default_library", - "@io_k8s_apimachinery//pkg/util/runtime:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1/BUILD.bazel b/backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1/BUILD.bazel deleted file mode 100644 index ce73bfdc58f..00000000000 --- a/backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1/BUILD.bazel +++ /dev/null @@ -1,21 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "doc.go", - "generated_expansion.go", - "scheduledworkflow.go", - "scheduledworkflow_client.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned/scheme:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_apimachinery//pkg/watch:go_default_library", - "@io_k8s_client_go//rest:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1/fake/BUILD.bazel b/backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1/fake/BUILD.bazel deleted file mode 100644 index 73b72d778e5..00000000000 --- a/backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1/fake/BUILD.bazel +++ /dev/null @@ -1,23 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "doc.go", - "fake_scheduledworkflow.go", - "fake_scheduledworkflow_client.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1/fake", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned/typed/scheduledworkflow/v1beta1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/labels:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/schema:go_default_library", - "@io_k8s_apimachinery//pkg/types:go_default_library", - "@io_k8s_apimachinery//pkg/watch:go_default_library", - "@io_k8s_client_go//rest:go_default_library", - "@io_k8s_client_go//testing:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/informers/externalversions/BUILD.bazel b/backend/src/crd/pkg/client/informers/externalversions/BUILD.bazel deleted file mode 100644 index 9c5f132d5b9..00000000000 --- a/backend/src/crd/pkg/client/informers/externalversions/BUILD.bazel +++ /dev/null @@ -1,21 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "factory.go", - "generic.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/informers/externalversions", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned:go_default_library", - "//backend/src/crd/pkg/client/informers/externalversions/internalinterfaces:go_default_library", - "//backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/runtime/schema:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/informers/externalversions/internalinterfaces/BUILD.bazel b/backend/src/crd/pkg/client/informers/externalversions/internalinterfaces/BUILD.bazel deleted file mode 100644 index 7a28313f78b..00000000000 --- a/backend/src/crd/pkg/client/informers/externalversions/internalinterfaces/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["factory_interfaces.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/informers/externalversions/internalinterfaces", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/client/clientset/versioned:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/BUILD.bazel b/backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/BUILD.bazel deleted file mode 100644 index d800701a47a..00000000000 --- a/backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/BUILD.bazel +++ /dev/null @@ -1,12 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["interface.go"], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/client/informers/externalversions/internalinterfaces:go_default_library", - "//backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/v1beta1:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/v1beta1/BUILD.bazel b/backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/v1beta1/BUILD.bazel deleted file mode 100644 index aca40e9a467..00000000000 --- a/backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/v1beta1/BUILD.bazel +++ /dev/null @@ -1,21 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "interface.go", - "scheduledworkflow.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/informers/externalversions/scheduledworkflow/v1beta1", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "//backend/src/crd/pkg/client/clientset/versioned:go_default_library", - "//backend/src/crd/pkg/client/informers/externalversions/internalinterfaces:go_default_library", - "//backend/src/crd/pkg/client/listers/scheduledworkflow/v1beta1:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/runtime:go_default_library", - "@io_k8s_apimachinery//pkg/watch:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/client/listers/scheduledworkflow/v1beta1/BUILD.bazel b/backend/src/crd/pkg/client/listers/scheduledworkflow/v1beta1/BUILD.bazel deleted file mode 100644 index 1a07658dd89..00000000000 --- a/backend/src/crd/pkg/client/listers/scheduledworkflow/v1beta1/BUILD.bazel +++ /dev/null @@ -1,17 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "expansion_generated.go", - "scheduledworkflow.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/client/listers/scheduledworkflow/v1beta1", - visibility = ["//visibility:public"], - deps = [ - "//backend/src/crd/pkg/apis/scheduledworkflow/v1beta1:go_default_library", - "@io_k8s_apimachinery//pkg/api/errors:go_default_library", - "@io_k8s_apimachinery//pkg/labels:go_default_library", - "@io_k8s_client_go//tools/cache:go_default_library", - ], -) diff --git a/backend/src/crd/pkg/signals/BUILD.bazel b/backend/src/crd/pkg/signals/BUILD.bazel deleted file mode 100644 index 77a6d9ba0de..00000000000 --- a/backend/src/crd/pkg/signals/BUILD.bazel +++ /dev/null @@ -1,11 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = [ - "signal.go", - "signal_posix.go", - ], - importpath = "github.com/kubeflow/pipelines/backend/src/crd/pkg/signals", - visibility = ["//visibility:public"], -) diff --git a/backend/test/BUILD.bazel b/backend/test/BUILD.bazel deleted file mode 100644 index a583303c65f..00000000000 --- a/backend/test/BUILD.bazel +++ /dev/null @@ -1,21 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["test_utils.go"], - importpath = "github.com/kubeflow/pipelines/backend/test", - visibility = ["//visibility:public"], - deps = [ - "//backend/api/go_http_client/experiment_client/experiment_service:go_default_library", - "//backend/api/go_http_client/job_client/job_service:go_default_library", - "//backend/api/go_http_client/pipeline_client/pipeline_service:go_default_library", - "//backend/api/go_http_client/run_client/run_service:go_default_library", - "//backend/api/go_http_client/run_model:go_default_library", - "//backend/src/common/client/api_server:go_default_library", - "@com_github_cenkalti_backoff//:go_default_library", - "@com_github_pkg_errors//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@io_k8s_client_go//tools/clientcmd:go_default_library", - "@io_k8s_client_go//tools/clientcmd/api:go_default_library", - ], -) diff --git a/backend/test/initialization/BUILD.bazel b/backend/test/initialization/BUILD.bazel deleted file mode 100644 index f9c845ec6f4..00000000000 --- a/backend/test/initialization/BUILD.bazel +++ /dev/null @@ -1,22 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_test( - name = "go_default_test", - srcs = ["initialization_test.go"], - embed = [":go_default_library"], - deps = [ - "//backend/api/go_http_client/experiment_client/experiment_service:go_default_library", - "//backend/src/common/client/api_server:go_default_library", - "//backend/test:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@com_github_stretchr_testify//suite:go_default_library", - ], -) - -go_library( - name = "go_default_library", - srcs = ["flags.go"], - importpath = "github.com/kubeflow/pipelines/backend/test/initialization", - visibility = ["//visibility:public"], -) diff --git a/backend/test/integration/BUILD.bazel b/backend/test/integration/BUILD.bazel deleted file mode 100644 index d13ed972991..00000000000 --- a/backend/test/integration/BUILD.bazel +++ /dev/null @@ -1,50 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") - -go_test( - name = "go_default_test", - srcs = [ - "experiment_api_test.go", - "job_api_test.go", - "pipeline_api_test.go", - "pipeline_version_api_test.go", - "run_api_test.go", - "upgrade_test.go", - "visualization_api_test.go", - ], - embed = [":go_default_library"], - deps = [ - "//backend/api:go_default_library", - "//backend/api/go_http_client/experiment_client/experiment_service:go_default_library", - "//backend/api/go_http_client/experiment_model:go_default_library", - "//backend/api/go_http_client/job_client/job_service:go_default_library", - "//backend/api/go_http_client/job_model:go_default_library", - "//backend/api/go_http_client/pipeline_client/pipeline_service:go_default_library", - "//backend/api/go_http_client/pipeline_model:go_default_library", - "//backend/api/go_http_client/pipeline_upload_client/pipeline_upload_service:go_default_library", - "//backend/api/go_http_client/run_client/run_service:go_default_library", - "//backend/api/go_http_client/run_model:go_default_library", - "//backend/api/go_http_client/visualization_client/visualization_service:go_default_library", - "//backend/api/go_http_client/visualization_model:go_default_library", - "//backend/src/apiserver/client:go_default_library", - "//backend/src/common/client/api_server:go_default_library", - "//backend/src/common/util:go_default_library", - "//backend/test:go_default_library", - "@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", - "@com_github_ghodss_yaml//:go_default_library", - "@com_github_go_openapi_strfmt//:go_default_library", - "@com_github_golang_glog//:go_default_library", - "@com_github_stretchr_testify//assert:go_default_library", - "@com_github_stretchr_testify//require:go_default_library", - "@com_github_stretchr_testify//suite:go_default_library", - "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", - "@io_k8s_apimachinery//pkg/util/yaml:go_default_library", - "@org_golang_google_grpc//:go_default_library", - ], -) - -go_library( - name = "go_default_library", - srcs = ["flags.go"], - importpath = "github.com/kubeflow/pipelines/backend/test/integration", - visibility = ["//visibility:public"], -) diff --git a/test/tools/project-cleaner/BUILD.bazel b/test/tools/project-cleaner/BUILD.bazel deleted file mode 100644 index c0aa41b5568..00000000000 --- a/test/tools/project-cleaner/BUILD.bazel +++ /dev/null @@ -1,18 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") - -go_library( - name = "go_default_library", - srcs = ["main.go"], - importpath = "github.com/kubeflow/pipelines/test/tools/project-cleaner", - visibility = ["//visibility:private"], - deps = [ - "@in_gopkg_yaml_v2//:go_default_library", - "@org_golang_google_api//container/v1:go_default_library", - ], -) - -go_binary( - name = "project-cleaner", - embed = [":go_default_library"], - visibility = ["//visibility:public"], -) diff --git a/tools/BUILD.bazel b/tools/BUILD.bazel deleted file mode 100644 index 07d88d89e31..00000000000 --- a/tools/BUILD.bazel +++ /dev/null @@ -1,9 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["tools.go"], - importpath = "github.com/kubeflow/pipelines/tools", - visibility = ["//visibility:public"], - deps = ["@io_k8s_code_generator//:go_default_library"], -)