mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
226 lines
8.5 KiB
Go
226 lines
8.5 KiB
Go
// Copyright (c) 2024 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.2.0
|
|
// - protoc (unknown)
|
|
// source: cluster-service.proto
|
|
|
|
package api
|
|
|
|
import (
|
|
context "context"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
)
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
// Requires gRPC-Go v1.32.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion7
|
|
|
|
// ClusterServiceClient is the client API for ClusterService service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
|
type ClusterServiceClient interface {
|
|
// Register registers a new WorkspaceCluster.
|
|
Register(ctx context.Context, in *RegisterRequest, opts ...grpc.CallOption) (*RegisterResponse, error)
|
|
// Update modififes properties of an already registered WorkspaceCluster.
|
|
Update(ctx context.Context, in *UpdateRequest, opts ...grpc.CallOption) (*UpdateResponse, error)
|
|
// Deregister removes a WorkspaceCluster from available clusters.
|
|
Deregister(ctx context.Context, in *DeregisterRequest, opts ...grpc.CallOption) (*DeregisterResponse, error)
|
|
// List returns the currently registered WorkspaceClusters.
|
|
List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error)
|
|
}
|
|
|
|
type clusterServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewClusterServiceClient(cc grpc.ClientConnInterface) ClusterServiceClient {
|
|
return &clusterServiceClient{cc}
|
|
}
|
|
|
|
func (c *clusterServiceClient) Register(ctx context.Context, in *RegisterRequest, opts ...grpc.CallOption) (*RegisterResponse, error) {
|
|
out := new(RegisterResponse)
|
|
err := c.cc.Invoke(ctx, "/workspacemanagerbridge.ClusterService/Register", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *clusterServiceClient) Update(ctx context.Context, in *UpdateRequest, opts ...grpc.CallOption) (*UpdateResponse, error) {
|
|
out := new(UpdateResponse)
|
|
err := c.cc.Invoke(ctx, "/workspacemanagerbridge.ClusterService/Update", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *clusterServiceClient) Deregister(ctx context.Context, in *DeregisterRequest, opts ...grpc.CallOption) (*DeregisterResponse, error) {
|
|
out := new(DeregisterResponse)
|
|
err := c.cc.Invoke(ctx, "/workspacemanagerbridge.ClusterService/Deregister", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *clusterServiceClient) List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error) {
|
|
out := new(ListResponse)
|
|
err := c.cc.Invoke(ctx, "/workspacemanagerbridge.ClusterService/List", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// ClusterServiceServer is the server API for ClusterService service.
|
|
// All implementations must embed UnimplementedClusterServiceServer
|
|
// for forward compatibility
|
|
type ClusterServiceServer interface {
|
|
// Register registers a new WorkspaceCluster.
|
|
Register(context.Context, *RegisterRequest) (*RegisterResponse, error)
|
|
// Update modififes properties of an already registered WorkspaceCluster.
|
|
Update(context.Context, *UpdateRequest) (*UpdateResponse, error)
|
|
// Deregister removes a WorkspaceCluster from available clusters.
|
|
Deregister(context.Context, *DeregisterRequest) (*DeregisterResponse, error)
|
|
// List returns the currently registered WorkspaceClusters.
|
|
List(context.Context, *ListRequest) (*ListResponse, error)
|
|
mustEmbedUnimplementedClusterServiceServer()
|
|
}
|
|
|
|
// UnimplementedClusterServiceServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedClusterServiceServer struct {
|
|
}
|
|
|
|
func (UnimplementedClusterServiceServer) Register(context.Context, *RegisterRequest) (*RegisterResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Register not implemented")
|
|
}
|
|
func (UnimplementedClusterServiceServer) Update(context.Context, *UpdateRequest) (*UpdateResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Update not implemented")
|
|
}
|
|
func (UnimplementedClusterServiceServer) Deregister(context.Context, *DeregisterRequest) (*DeregisterResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Deregister not implemented")
|
|
}
|
|
func (UnimplementedClusterServiceServer) List(context.Context, *ListRequest) (*ListResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method List not implemented")
|
|
}
|
|
func (UnimplementedClusterServiceServer) mustEmbedUnimplementedClusterServiceServer() {}
|
|
|
|
// UnsafeClusterServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to ClusterServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeClusterServiceServer interface {
|
|
mustEmbedUnimplementedClusterServiceServer()
|
|
}
|
|
|
|
func RegisterClusterServiceServer(s grpc.ServiceRegistrar, srv ClusterServiceServer) {
|
|
s.RegisterService(&ClusterService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _ClusterService_Register_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(RegisterRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ClusterServiceServer).Register(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/workspacemanagerbridge.ClusterService/Register",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ClusterServiceServer).Register(ctx, req.(*RegisterRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ClusterService_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UpdateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ClusterServiceServer).Update(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/workspacemanagerbridge.ClusterService/Update",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ClusterServiceServer).Update(ctx, req.(*UpdateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ClusterService_Deregister_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(DeregisterRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ClusterServiceServer).Deregister(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/workspacemanagerbridge.ClusterService/Deregister",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ClusterServiceServer).Deregister(ctx, req.(*DeregisterRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ClusterService_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ListRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ClusterServiceServer).List(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/workspacemanagerbridge.ClusterService/List",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ClusterServiceServer).List(ctx, req.(*ListRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// ClusterService_ServiceDesc is the grpc.ServiceDesc for ClusterService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var ClusterService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "workspacemanagerbridge.ClusterService",
|
|
HandlerType: (*ClusterServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Register",
|
|
Handler: _ClusterService_Register_Handler,
|
|
},
|
|
{
|
|
MethodName: "Update",
|
|
Handler: _ClusterService_Update_Handler,
|
|
},
|
|
{
|
|
MethodName: "Deregister",
|
|
Handler: _ClusterService_Deregister_Handler,
|
|
},
|
|
{
|
|
MethodName: "List",
|
|
Handler: _ClusterService_List_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "cluster-service.proto",
|
|
}
|