// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc (unknown) // source: api/v1/instance_service.proto package apiv1 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 ( InstanceService_GetInstanceProfile_FullMethodName = "/memos.api.v1.InstanceService/GetInstanceProfile" InstanceService_GetInstanceSetting_FullMethodName = "/memos.api.v1.InstanceService/GetInstanceSetting" InstanceService_UpdateInstanceSetting_FullMethodName = "/memos.api.v1.InstanceService/UpdateInstanceSetting" ) // InstanceServiceClient is the client API for InstanceService 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 InstanceServiceClient interface { // Gets the instance profile. GetInstanceProfile(ctx context.Context, in *GetInstanceProfileRequest, opts ...grpc.CallOption) (*InstanceProfile, error) // Gets an instance setting. GetInstanceSetting(ctx context.Context, in *GetInstanceSettingRequest, opts ...grpc.CallOption) (*InstanceSetting, error) // Updates an instance setting. UpdateInstanceSetting(ctx context.Context, in *UpdateInstanceSettingRequest, opts ...grpc.CallOption) (*InstanceSetting, error) } type instanceServiceClient struct { cc grpc.ClientConnInterface } func NewInstanceServiceClient(cc grpc.ClientConnInterface) InstanceServiceClient { return &instanceServiceClient{cc} } func (c *instanceServiceClient) GetInstanceProfile(ctx context.Context, in *GetInstanceProfileRequest, opts ...grpc.CallOption) (*InstanceProfile, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(InstanceProfile) err := c.cc.Invoke(ctx, InstanceService_GetInstanceProfile_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *instanceServiceClient) GetInstanceSetting(ctx context.Context, in *GetInstanceSettingRequest, opts ...grpc.CallOption) (*InstanceSetting, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(InstanceSetting) err := c.cc.Invoke(ctx, InstanceService_GetInstanceSetting_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *instanceServiceClient) UpdateInstanceSetting(ctx context.Context, in *UpdateInstanceSettingRequest, opts ...grpc.CallOption) (*InstanceSetting, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(InstanceSetting) err := c.cc.Invoke(ctx, InstanceService_UpdateInstanceSetting_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } // InstanceServiceServer is the server API for InstanceService service. // All implementations must embed UnimplementedInstanceServiceServer // for forward compatibility. type InstanceServiceServer interface { // Gets the instance profile. GetInstanceProfile(context.Context, *GetInstanceProfileRequest) (*InstanceProfile, error) // Gets an instance setting. GetInstanceSetting(context.Context, *GetInstanceSettingRequest) (*InstanceSetting, error) // Updates an instance setting. UpdateInstanceSetting(context.Context, *UpdateInstanceSettingRequest) (*InstanceSetting, error) mustEmbedUnimplementedInstanceServiceServer() } // UnimplementedInstanceServiceServer 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 UnimplementedInstanceServiceServer struct{} func (UnimplementedInstanceServiceServer) GetInstanceProfile(context.Context, *GetInstanceProfileRequest) (*InstanceProfile, error) { return nil, status.Errorf(codes.Unimplemented, "method GetInstanceProfile not implemented") } func (UnimplementedInstanceServiceServer) GetInstanceSetting(context.Context, *GetInstanceSettingRequest) (*InstanceSetting, error) { return nil, status.Errorf(codes.Unimplemented, "method GetInstanceSetting not implemented") } func (UnimplementedInstanceServiceServer) UpdateInstanceSetting(context.Context, *UpdateInstanceSettingRequest) (*InstanceSetting, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateInstanceSetting not implemented") } func (UnimplementedInstanceServiceServer) mustEmbedUnimplementedInstanceServiceServer() {} func (UnimplementedInstanceServiceServer) testEmbeddedByValue() {} // UnsafeInstanceServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to InstanceServiceServer will // result in compilation errors. type UnsafeInstanceServiceServer interface { mustEmbedUnimplementedInstanceServiceServer() } func RegisterInstanceServiceServer(s grpc.ServiceRegistrar, srv InstanceServiceServer) { // If the following call pancis, it indicates UnimplementedInstanceServiceServer 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(&InstanceService_ServiceDesc, srv) } func _InstanceService_GetInstanceProfile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetInstanceProfileRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(InstanceServiceServer).GetInstanceProfile(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: InstanceService_GetInstanceProfile_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(InstanceServiceServer).GetInstanceProfile(ctx, req.(*GetInstanceProfileRequest)) } return interceptor(ctx, in, info, handler) } func _InstanceService_GetInstanceSetting_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetInstanceSettingRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(InstanceServiceServer).GetInstanceSetting(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: InstanceService_GetInstanceSetting_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(InstanceServiceServer).GetInstanceSetting(ctx, req.(*GetInstanceSettingRequest)) } return interceptor(ctx, in, info, handler) } func _InstanceService_UpdateInstanceSetting_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(UpdateInstanceSettingRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(InstanceServiceServer).UpdateInstanceSetting(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: InstanceService_UpdateInstanceSetting_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(InstanceServiceServer).UpdateInstanceSetting(ctx, req.(*UpdateInstanceSettingRequest)) } return interceptor(ctx, in, info, handler) } // InstanceService_ServiceDesc is the grpc.ServiceDesc for InstanceService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var InstanceService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "memos.api.v1.InstanceService", HandlerType: (*InstanceServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "GetInstanceProfile", Handler: _InstanceService_GetInstanceProfile_Handler, }, { MethodName: "GetInstanceSetting", Handler: _InstanceService_GetInstanceSetting_Handler, }, { MethodName: "UpdateInstanceSetting", Handler: _InstanceService_UpdateInstanceSetting_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "api/v1/instance_service.proto", }