Documentation ¶
Index ¶
- Variables
- func RegisterMountServiceServer(s grpc.ServiceRegistrar, srv MountServiceServer)
- type MountAzureBlobRequest
- func (*MountAzureBlobRequest) Descriptor() ([]byte, []int)deprecated
- func (x *MountAzureBlobRequest) GetAuthEnv() []string
- func (x *MountAzureBlobRequest) GetMountArgs() string
- func (x *MountAzureBlobRequest) GetProtocol() string
- func (*MountAzureBlobRequest) ProtoMessage()
- func (x *MountAzureBlobRequest) ProtoReflect() protoreflect.Message
- func (x *MountAzureBlobRequest) Reset()
- func (x *MountAzureBlobRequest) String() string
- type MountAzureBlobResponse
- func (*MountAzureBlobResponse) Descriptor() ([]byte, []int)deprecated
- func (x *MountAzureBlobResponse) GetOutput() string
- func (*MountAzureBlobResponse) ProtoMessage()
- func (x *MountAzureBlobResponse) ProtoReflect() protoreflect.Message
- func (x *MountAzureBlobResponse) Reset()
- func (x *MountAzureBlobResponse) String() string
- type MountServiceClient
- type MountServiceServer
- type UnimplementedMountServiceServer
- type UnsafeMountServiceServer
Constants ¶
This section is empty.
Variables ¶
var File_azure_blob_mount_proto protoreflect.FileDescriptor
var MountService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "MountService", HandlerType: (*MountServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "MountAzureBlob", Handler: _MountService_MountAzureBlob_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "azure_blob_mount.proto", }
MountService_ServiceDesc is the grpc.ServiceDesc for MountService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterMountServiceServer ¶
func RegisterMountServiceServer(s grpc.ServiceRegistrar, srv MountServiceServer)
Types ¶
type MountAzureBlobRequest ¶
type MountAzureBlobRequest struct { MountArgs string `protobuf:"bytes,1,opt,name=mountArgs,proto3" json:"mountArgs,omitempty"` AuthEnv []string `protobuf:"bytes,2,rep,name=authEnv,proto3" json:"authEnv,omitempty"` Protocol string `protobuf:"bytes,3,opt,name=protocol,proto3" json:"protocol,omitempty"` // contains filtered or unexported fields }
func (*MountAzureBlobRequest) Descriptor
deprecated
func (*MountAzureBlobRequest) Descriptor() ([]byte, []int)
Deprecated: Use MountAzureBlobRequest.ProtoReflect.Descriptor instead.
func (*MountAzureBlobRequest) GetAuthEnv ¶
func (x *MountAzureBlobRequest) GetAuthEnv() []string
func (*MountAzureBlobRequest) GetMountArgs ¶
func (x *MountAzureBlobRequest) GetMountArgs() string
func (*MountAzureBlobRequest) GetProtocol ¶ added in v1.18.0
func (x *MountAzureBlobRequest) GetProtocol() string
func (*MountAzureBlobRequest) ProtoMessage ¶
func (*MountAzureBlobRequest) ProtoMessage()
func (*MountAzureBlobRequest) ProtoReflect ¶
func (x *MountAzureBlobRequest) ProtoReflect() protoreflect.Message
func (*MountAzureBlobRequest) Reset ¶
func (x *MountAzureBlobRequest) Reset()
func (*MountAzureBlobRequest) String ¶
func (x *MountAzureBlobRequest) String() string
type MountAzureBlobResponse ¶
type MountAzureBlobResponse struct { Output string `protobuf:"bytes,1,opt,name=output,proto3" json:"output,omitempty"` // contains filtered or unexported fields }
func (*MountAzureBlobResponse) Descriptor
deprecated
func (*MountAzureBlobResponse) Descriptor() ([]byte, []int)
Deprecated: Use MountAzureBlobResponse.ProtoReflect.Descriptor instead.
func (*MountAzureBlobResponse) GetOutput ¶
func (x *MountAzureBlobResponse) GetOutput() string
func (*MountAzureBlobResponse) ProtoMessage ¶
func (*MountAzureBlobResponse) ProtoMessage()
func (*MountAzureBlobResponse) ProtoReflect ¶
func (x *MountAzureBlobResponse) ProtoReflect() protoreflect.Message
func (*MountAzureBlobResponse) Reset ¶
func (x *MountAzureBlobResponse) Reset()
func (*MountAzureBlobResponse) String ¶
func (x *MountAzureBlobResponse) String() string
type MountServiceClient ¶
type MountServiceClient interface {
MountAzureBlob(ctx context.Context, in *MountAzureBlobRequest, opts ...grpc.CallOption) (*MountAzureBlobResponse, error)
}
MountServiceClient is the client API for MountService 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.
func NewMountServiceClient ¶
func NewMountServiceClient(cc grpc.ClientConnInterface) MountServiceClient
type MountServiceServer ¶
type MountServiceServer interface { MountAzureBlob(context.Context, *MountAzureBlobRequest) (*MountAzureBlobResponse, error) // contains filtered or unexported methods }
MountServiceServer is the server API for MountService service. All implementations must embed UnimplementedMountServiceServer for forward compatibility
type UnimplementedMountServiceServer ¶
type UnimplementedMountServiceServer struct { }
UnimplementedMountServiceServer must be embedded to have forward compatible implementations.
func (UnimplementedMountServiceServer) MountAzureBlob ¶
func (UnimplementedMountServiceServer) MountAzureBlob(context.Context, *MountAzureBlobRequest) (*MountAzureBlobResponse, error)
type UnsafeMountServiceServer ¶
type UnsafeMountServiceServer interface {
// contains filtered or unexported methods
}
UnsafeMountServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to MountServiceServer will result in compilation errors.