blob: a29e4a6a0404d6e538580ba0491a4737765850c7 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You 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-connect-go. DO NOT EDIT.
//
// Source: registry/v1alpha1/repository_tag.proto
package registryv1alpha1v1alpha1connect
import (
context "context"
errors "errors"
http "net/http"
strings "strings"
)
import (
connect_go "github.com/bufbuild/connect-go"
)
import (
v1alpha1 "github.com/apache/dubbo-kubernetes/pkg/bufman/gen/proto/go/registry/v1alpha1"
)
// This is a compile-time assertion to ensure that this generated file and the connect package are
// compatible. If you get a compiler error that this constant is not defined, this code was
// generated with a version of connect newer than the one compiled into your binary. You can fix the
// problem by either regenerating this code with an older version of connect or updating the connect
// version compiled into your binary.
const _ = connect_go.IsAtLeastVersion1_7_0
const (
// RepositoryTagServiceName is the fully-qualified name of the RepositoryTagService service.
RepositoryTagServiceName = "bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService"
)
// These constants are the fully-qualified names of the RPCs defined in this package. They're
// exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.
//
// Note that these are different from the fully-qualified method names used by
// google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to
// reflection-formatted method names, remove the leading slash and convert the remaining slash to a
// period.
const (
// RepositoryTagServiceCreateRepositoryTagProcedure is the fully-qualified name of the
// RepositoryTagService's CreateRepositoryTag RPC.
RepositoryTagServiceCreateRepositoryTagProcedure = "/bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService/CreateRepositoryTag"
// RepositoryTagServiceListRepositoryTagsProcedure is the fully-qualified name of the
// RepositoryTagService's ListRepositoryTags RPC.
RepositoryTagServiceListRepositoryTagsProcedure = "/bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService/ListRepositoryTags"
// RepositoryTagServiceListRepositoryTagsForReferenceProcedure is the fully-qualified name of the
// RepositoryTagService's ListRepositoryTagsForReference RPC.
RepositoryTagServiceListRepositoryTagsForReferenceProcedure = "/bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService/ListRepositoryTagsForReference"
)
// RepositoryTagServiceClient is a client for the
// bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService service.
type RepositoryTagServiceClient interface {
// CreateRepositoryTag creates a new repository tag.
CreateRepositoryTag(context.Context, *connect_go.Request[v1alpha1.CreateRepositoryTagRequest]) (*connect_go.Response[v1alpha1.CreateRepositoryTagResponse], error)
// ListRepositoryTags lists the repository tags associated with a Repository.
ListRepositoryTags(context.Context, *connect_go.Request[v1alpha1.ListRepositoryTagsRequest]) (*connect_go.Response[v1alpha1.ListRepositoryTagsResponse], error)
// ListRepositoryTagsForReference lists the repository tags associated with a repository
// reference name.
ListRepositoryTagsForReference(context.Context, *connect_go.Request[v1alpha1.ListRepositoryTagsForReferenceRequest]) (*connect_go.Response[v1alpha1.ListRepositoryTagsForReferenceResponse], error)
}
// NewRepositoryTagServiceClient constructs a client for the
// bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService service. By default, it
// uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends
// uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or
// connect.WithGRPCWeb() options.
//
// The URL supplied here should be the base URL for the Connect or gRPC server (for example,
// http://api.acme.com or https://acme.com/grpc).
func NewRepositoryTagServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) RepositoryTagServiceClient {
baseURL = strings.TrimRight(baseURL, "/")
return &repositoryTagServiceClient{
createRepositoryTag: connect_go.NewClient[v1alpha1.CreateRepositoryTagRequest, v1alpha1.CreateRepositoryTagResponse](
httpClient,
baseURL+RepositoryTagServiceCreateRepositoryTagProcedure,
connect_go.WithIdempotency(connect_go.IdempotencyIdempotent),
connect_go.WithClientOptions(opts...),
),
listRepositoryTags: connect_go.NewClient[v1alpha1.ListRepositoryTagsRequest, v1alpha1.ListRepositoryTagsResponse](
httpClient,
baseURL+RepositoryTagServiceListRepositoryTagsProcedure,
connect_go.WithIdempotency(connect_go.IdempotencyNoSideEffects),
connect_go.WithClientOptions(opts...),
),
listRepositoryTagsForReference: connect_go.NewClient[v1alpha1.ListRepositoryTagsForReferenceRequest, v1alpha1.ListRepositoryTagsForReferenceResponse](
httpClient,
baseURL+RepositoryTagServiceListRepositoryTagsForReferenceProcedure,
connect_go.WithIdempotency(connect_go.IdempotencyNoSideEffects),
connect_go.WithClientOptions(opts...),
),
}
}
// repositoryTagServiceClient implements RepositoryTagServiceClient.
type repositoryTagServiceClient struct {
createRepositoryTag *connect_go.Client[v1alpha1.CreateRepositoryTagRequest, v1alpha1.CreateRepositoryTagResponse]
listRepositoryTags *connect_go.Client[v1alpha1.ListRepositoryTagsRequest, v1alpha1.ListRepositoryTagsResponse]
listRepositoryTagsForReference *connect_go.Client[v1alpha1.ListRepositoryTagsForReferenceRequest, v1alpha1.ListRepositoryTagsForReferenceResponse]
}
// CreateRepositoryTag calls
// bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService.CreateRepositoryTag.
func (c *repositoryTagServiceClient) CreateRepositoryTag(ctx context.Context, req *connect_go.Request[v1alpha1.CreateRepositoryTagRequest]) (*connect_go.Response[v1alpha1.CreateRepositoryTagResponse], error) {
return c.createRepositoryTag.CallUnary(ctx, req)
}
// ListRepositoryTags calls
// bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService.ListRepositoryTags.
func (c *repositoryTagServiceClient) ListRepositoryTags(ctx context.Context, req *connect_go.Request[v1alpha1.ListRepositoryTagsRequest]) (*connect_go.Response[v1alpha1.ListRepositoryTagsResponse], error) {
return c.listRepositoryTags.CallUnary(ctx, req)
}
// ListRepositoryTagsForReference calls
// bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService.ListRepositoryTagsForReference.
func (c *repositoryTagServiceClient) ListRepositoryTagsForReference(ctx context.Context, req *connect_go.Request[v1alpha1.ListRepositoryTagsForReferenceRequest]) (*connect_go.Response[v1alpha1.ListRepositoryTagsForReferenceResponse], error) {
return c.listRepositoryTagsForReference.CallUnary(ctx, req)
}
// RepositoryTagServiceHandler is an implementation of the
// bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService service.
type RepositoryTagServiceHandler interface {
// CreateRepositoryTag creates a new repository tag.
CreateRepositoryTag(context.Context, *connect_go.Request[v1alpha1.CreateRepositoryTagRequest]) (*connect_go.Response[v1alpha1.CreateRepositoryTagResponse], error)
// ListRepositoryTags lists the repository tags associated with a Repository.
ListRepositoryTags(context.Context, *connect_go.Request[v1alpha1.ListRepositoryTagsRequest]) (*connect_go.Response[v1alpha1.ListRepositoryTagsResponse], error)
// ListRepositoryTagsForReference lists the repository tags associated with a repository
// reference name.
ListRepositoryTagsForReference(context.Context, *connect_go.Request[v1alpha1.ListRepositoryTagsForReferenceRequest]) (*connect_go.Response[v1alpha1.ListRepositoryTagsForReferenceResponse], error)
}
// NewRepositoryTagServiceHandler builds an HTTP handler from the service implementation. It returns
// the path on which to mount the handler and the handler itself.
//
// By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf
// and JSON codecs. They also support gzip compression.
func NewRepositoryTagServiceHandler(svc RepositoryTagServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler) {
repositoryTagServiceCreateRepositoryTagHandler := connect_go.NewUnaryHandler(
RepositoryTagServiceCreateRepositoryTagProcedure,
svc.CreateRepositoryTag,
connect_go.WithIdempotency(connect_go.IdempotencyIdempotent),
connect_go.WithHandlerOptions(opts...),
)
repositoryTagServiceListRepositoryTagsHandler := connect_go.NewUnaryHandler(
RepositoryTagServiceListRepositoryTagsProcedure,
svc.ListRepositoryTags,
connect_go.WithIdempotency(connect_go.IdempotencyNoSideEffects),
connect_go.WithHandlerOptions(opts...),
)
repositoryTagServiceListRepositoryTagsForReferenceHandler := connect_go.NewUnaryHandler(
RepositoryTagServiceListRepositoryTagsForReferenceProcedure,
svc.ListRepositoryTagsForReference,
connect_go.WithIdempotency(connect_go.IdempotencyNoSideEffects),
connect_go.WithHandlerOptions(opts...),
)
return "/bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case RepositoryTagServiceCreateRepositoryTagProcedure:
repositoryTagServiceCreateRepositoryTagHandler.ServeHTTP(w, r)
case RepositoryTagServiceListRepositoryTagsProcedure:
repositoryTagServiceListRepositoryTagsHandler.ServeHTTP(w, r)
case RepositoryTagServiceListRepositoryTagsForReferenceProcedure:
repositoryTagServiceListRepositoryTagsForReferenceHandler.ServeHTTP(w, r)
default:
http.NotFound(w, r)
}
})
}
// UnimplementedRepositoryTagServiceHandler returns CodeUnimplemented from all methods.
type UnimplementedRepositoryTagServiceHandler struct{}
func (UnimplementedRepositoryTagServiceHandler) CreateRepositoryTag(context.Context, *connect_go.Request[v1alpha1.CreateRepositoryTagRequest]) (*connect_go.Response[v1alpha1.CreateRepositoryTagResponse], error) {
return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService.CreateRepositoryTag is not implemented"))
}
func (UnimplementedRepositoryTagServiceHandler) ListRepositoryTags(context.Context, *connect_go.Request[v1alpha1.ListRepositoryTagsRequest]) (*connect_go.Response[v1alpha1.ListRepositoryTagsResponse], error) {
return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService.ListRepositoryTags is not implemented"))
}
func (UnimplementedRepositoryTagServiceHandler) ListRepositoryTagsForReference(context.Context, *connect_go.Request[v1alpha1.ListRepositoryTagsForReferenceRequest]) (*connect_go.Response[v1alpha1.ListRepositoryTagsForReferenceResponse], error) {
return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("bufman.dubbo.apache.org.registry.v1alpha1.RepositoryTagService.ListRepositoryTagsForReference is not implemented"))
}