// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v3.21.12 // source: yandex/cloud/operation/operation_service.proto package operation 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.64.0 or later. const _ = grpc.SupportPackageIsVersion9 const ( OperationService_Get_FullMethodName = "/yandex.cloud.operation.OperationService/Get" OperationService_Cancel_FullMethodName = "/yandex.cloud.operation.OperationService/Cancel" ) // OperationServiceClient is the client API for OperationService 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. // // A set of methods for managing operations for asynchronous API requests. type OperationServiceClient interface { // Returns the specified Operation resource. Get(ctx context.Context, in *GetOperationRequest, opts ...grpc.CallOption) (*Operation, error) // Cancels the specified operation. // // Note that currently Object Storage API does not support cancelling operations. Cancel(ctx context.Context, in *CancelOperationRequest, opts ...grpc.CallOption) (*Operation, error) } type operationServiceClient struct { cc grpc.ClientConnInterface } func NewOperationServiceClient(cc grpc.ClientConnInterface) OperationServiceClient { return &operationServiceClient{cc} } func (c *operationServiceClient) Get(ctx context.Context, in *GetOperationRequest, opts ...grpc.CallOption) (*Operation, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Operation) err := c.cc.Invoke(ctx, OperationService_Get_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *operationServiceClient) Cancel(ctx context.Context, in *CancelOperationRequest, opts ...grpc.CallOption) (*Operation, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Operation) err := c.cc.Invoke(ctx, OperationService_Cancel_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } // OperationServiceServer is the server API for OperationService service. // All implementations should embed UnimplementedOperationServiceServer // for forward compatibility. // // A set of methods for managing operations for asynchronous API requests. type OperationServiceServer interface { // Returns the specified Operation resource. Get(context.Context, *GetOperationRequest) (*Operation, error) // Cancels the specified operation. // // Note that currently Object Storage API does not support cancelling operations. Cancel(context.Context, *CancelOperationRequest) (*Operation, error) } // UnimplementedOperationServiceServer should be embedded to have // forward compatible implementations. // // NOTE: this should be embedded by value instead of pointer to avoid a nil // pointer dereference when methods are called. type UnimplementedOperationServiceServer struct{} func (UnimplementedOperationServiceServer) Get(context.Context, *GetOperationRequest) (*Operation, error) { return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") } func (UnimplementedOperationServiceServer) Cancel(context.Context, *CancelOperationRequest) (*Operation, error) { return nil, status.Errorf(codes.Unimplemented, "method Cancel not implemented") } func (UnimplementedOperationServiceServer) testEmbeddedByValue() {} // UnsafeOperationServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to OperationServiceServer will // result in compilation errors. type UnsafeOperationServiceServer interface { mustEmbedUnimplementedOperationServiceServer() } func RegisterOperationServiceServer(s grpc.ServiceRegistrar, srv OperationServiceServer) { // If the following call pancis, it indicates UnimplementedOperationServiceServer was // embedded by pointer and is nil. This will cause panics if an // unimplemented method is ever invoked, so we test this at initialization // time to prevent it from happening at runtime later due to I/O. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { t.testEmbeddedByValue() } s.RegisterService(&OperationService_ServiceDesc, srv) } func _OperationService_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetOperationRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(OperationServiceServer).Get(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: OperationService_Get_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(OperationServiceServer).Get(ctx, req.(*GetOperationRequest)) } return interceptor(ctx, in, info, handler) } func _OperationService_Cancel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CancelOperationRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(OperationServiceServer).Cancel(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: OperationService_Cancel_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(OperationServiceServer).Cancel(ctx, req.(*CancelOperationRequest)) } return interceptor(ctx, in, info, handler) } // OperationService_ServiceDesc is the grpc.ServiceDesc for OperationService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var OperationService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "yandex.cloud.operation.OperationService", HandlerType: (*OperationServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Get", Handler: _OperationService_Get_Handler, }, { MethodName: "Cancel", Handler: _OperationService_Cancel_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "yandex/cloud/operation/operation_service.proto", }