mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	* protobuf: rebuild protos with protobuf 1.35.1 * protobuf: unpin protoc-gen-go-grpc on main Signed-off-by: Ryan Cragun <me@ryan.ec>
		
			
				
	
	
		
			131 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (c) HashiCorp, Inc.
 | 
						|
// SPDX-License-Identifier: MPL-2.0
 | 
						|
 | 
						|
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 | 
						|
// versions:
 | 
						|
// - protoc-gen-go-grpc v1.5.1
 | 
						|
// - protoc             (unknown)
 | 
						|
// source: sdk/logical/version.proto
 | 
						|
 | 
						|
package logical
 | 
						|
 | 
						|
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 (
 | 
						|
	PluginVersion_Version_FullMethodName = "/logical.PluginVersion/Version"
 | 
						|
)
 | 
						|
 | 
						|
// PluginVersionClient is the client API for PluginVersion 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.
 | 
						|
//
 | 
						|
// PluginVersion is an optional RPC service implemented by plugins.
 | 
						|
type PluginVersionClient interface {
 | 
						|
	// Version returns version information for the plugin.
 | 
						|
	Version(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*VersionReply, error)
 | 
						|
}
 | 
						|
 | 
						|
type pluginVersionClient struct {
 | 
						|
	cc grpc.ClientConnInterface
 | 
						|
}
 | 
						|
 | 
						|
func NewPluginVersionClient(cc grpc.ClientConnInterface) PluginVersionClient {
 | 
						|
	return &pluginVersionClient{cc}
 | 
						|
}
 | 
						|
 | 
						|
func (c *pluginVersionClient) Version(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*VersionReply, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(VersionReply)
 | 
						|
	err := c.cc.Invoke(ctx, PluginVersion_Version_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
// PluginVersionServer is the server API for PluginVersion service.
 | 
						|
// All implementations must embed UnimplementedPluginVersionServer
 | 
						|
// for forward compatibility.
 | 
						|
//
 | 
						|
// PluginVersion is an optional RPC service implemented by plugins.
 | 
						|
type PluginVersionServer interface {
 | 
						|
	// Version returns version information for the plugin.
 | 
						|
	Version(context.Context, *Empty) (*VersionReply, error)
 | 
						|
	mustEmbedUnimplementedPluginVersionServer()
 | 
						|
}
 | 
						|
 | 
						|
// UnimplementedPluginVersionServer must 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 UnimplementedPluginVersionServer struct{}
 | 
						|
 | 
						|
func (UnimplementedPluginVersionServer) Version(context.Context, *Empty) (*VersionReply, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Version not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedPluginVersionServer) mustEmbedUnimplementedPluginVersionServer() {}
 | 
						|
func (UnimplementedPluginVersionServer) testEmbeddedByValue()                       {}
 | 
						|
 | 
						|
// UnsafePluginVersionServer may be embedded to opt out of forward compatibility for this service.
 | 
						|
// Use of this interface is not recommended, as added methods to PluginVersionServer will
 | 
						|
// result in compilation errors.
 | 
						|
type UnsafePluginVersionServer interface {
 | 
						|
	mustEmbedUnimplementedPluginVersionServer()
 | 
						|
}
 | 
						|
 | 
						|
func RegisterPluginVersionServer(s grpc.ServiceRegistrar, srv PluginVersionServer) {
 | 
						|
	// If the following call pancis, it indicates UnimplementedPluginVersionServer 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(&PluginVersion_ServiceDesc, srv)
 | 
						|
}
 | 
						|
 | 
						|
func _PluginVersion_Version_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(Empty)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(PluginVersionServer).Version(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: PluginVersion_Version_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(PluginVersionServer).Version(ctx, req.(*Empty))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
// PluginVersion_ServiceDesc is the grpc.ServiceDesc for PluginVersion service.
 | 
						|
// It's only intended for direct use with grpc.RegisterService,
 | 
						|
// and not to be introspected or modified (even as a copy)
 | 
						|
var PluginVersion_ServiceDesc = grpc.ServiceDesc{
 | 
						|
	ServiceName: "logical.PluginVersion",
 | 
						|
	HandlerType: (*PluginVersionServer)(nil),
 | 
						|
	Methods: []grpc.MethodDesc{
 | 
						|
		{
 | 
						|
			MethodName: "Version",
 | 
						|
			Handler:    _PluginVersion_Version_Handler,
 | 
						|
		},
 | 
						|
	},
 | 
						|
	Streams:  []grpc.StreamDesc{},
 | 
						|
	Metadata: "sdk/logical/version.proto",
 | 
						|
}
 |