dashboards

package
v0.0.0-...-0d7e006 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 13, 2026 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	DashboardsService_GetAll_FullMethodName    = "/dashboards.v1.DashboardsService/GetAll"
	DashboardsService_GetMy_FullMethodName     = "/dashboards.v1.DashboardsService/GetMy"
	DashboardsService_GetByUUID_FullMethodName = "/dashboards.v1.DashboardsService/GetByUUID"
	DashboardsService_Create_FullMethodName    = "/dashboards.v1.DashboardsService/Create"
	DashboardsService_Update_FullMethodName    = "/dashboards.v1.DashboardsService/Update"
	DashboardsService_Delete_FullMethodName    = "/dashboards.v1.DashboardsService/Delete"
	DashboardsService_Search_FullMethodName    = "/dashboards.v1.DashboardsService/Search"
)

Variables

View Source
var DashboardsService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "dashboards.v1.DashboardsService",
	HandlerType: (*DashboardsServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetAll",
			Handler:    _DashboardsService_GetAll_Handler,
		},
		{
			MethodName: "GetMy",
			Handler:    _DashboardsService_GetMy_Handler,
		},
		{
			MethodName: "GetByUUID",
			Handler:    _DashboardsService_GetByUUID_Handler,
		},
		{
			MethodName: "Create",
			Handler:    _DashboardsService_Create_Handler,
		},
		{
			MethodName: "Update",
			Handler:    _DashboardsService_Update_Handler,
		},
		{
			MethodName: "Delete",
			Handler:    _DashboardsService_Delete_Handler,
		},
		{
			MethodName: "Search",
			Handler:    _DashboardsService_Search_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "dashboards/v1/dashboards.proto",
}

DashboardsService_ServiceDesc is the grpc.ServiceDesc for DashboardsService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_dashboards_v1_dashboards_proto protoreflect.FileDescriptor

Functions

func RegisterDashboardsServiceServer

func RegisterDashboardsServiceServer(s grpc.ServiceRegistrar, srv DashboardsServiceServer)

Types

type CreateRequest

type CreateRequest struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Meta string `protobuf:"bytes,2,opt,name=meta,proto3" json:"meta,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateRequest) Descriptor deprecated

func (*CreateRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateRequest.ProtoReflect.Descriptor instead.

func (*CreateRequest) GetMeta

func (x *CreateRequest) GetMeta() string

func (*CreateRequest) GetName

func (x *CreateRequest) GetName() string

func (*CreateRequest) ProtoMessage

func (*CreateRequest) ProtoMessage()

func (*CreateRequest) ProtoReflect

func (x *CreateRequest) ProtoReflect() protoreflect.Message

func (*CreateRequest) Reset

func (x *CreateRequest) Reset()

func (*CreateRequest) String

func (x *CreateRequest) String() string

type CreateResponse

type CreateResponse struct {
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateResponse) Descriptor deprecated

func (*CreateResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateResponse.ProtoReflect.Descriptor instead.

func (*CreateResponse) GetUuid

func (x *CreateResponse) GetUuid() string

func (*CreateResponse) ProtoMessage

func (*CreateResponse) ProtoMessage()

func (*CreateResponse) ProtoReflect

func (x *CreateResponse) ProtoReflect() protoreflect.Message

func (*CreateResponse) Reset

func (x *CreateResponse) Reset()

func (*CreateResponse) String

func (x *CreateResponse) String() string

type DashboardsServiceClient

type DashboardsServiceClient interface {
	GetAll(ctx context.Context, in *GetAllRequest, opts ...grpc.CallOption) (*GetAllResponse, error)
	GetMy(ctx context.Context, in *GetMyRequest, opts ...grpc.CallOption) (*GetMyResponse, error)
	GetByUUID(ctx context.Context, in *GetByUUIDRequest, opts ...grpc.CallOption) (*GetByUUIDResponse, error)
	Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error)
	Update(ctx context.Context, in *UpdateRequest, opts ...grpc.CallOption) (*UpdateResponse, error)
	Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error)
	Search(ctx context.Context, in *SearchRequest, opts ...grpc.CallOption) (*SearchResponse, error)
}

DashboardsServiceClient is the client API for DashboardsService 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 DashboardsServiceServer

DashboardsServiceServer is the server API for DashboardsService service. All implementations should embed UnimplementedDashboardsServiceServer for forward compatibility

type DeleteRequest

type DeleteRequest struct {
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteRequest) Descriptor deprecated

func (*DeleteRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteRequest.ProtoReflect.Descriptor instead.

func (*DeleteRequest) GetUuid

func (x *DeleteRequest) GetUuid() string

func (*DeleteRequest) ProtoMessage

func (*DeleteRequest) ProtoMessage()

func (*DeleteRequest) ProtoReflect

func (x *DeleteRequest) ProtoReflect() protoreflect.Message

func (*DeleteRequest) Reset

func (x *DeleteRequest) Reset()

func (*DeleteRequest) String

func (x *DeleteRequest) String() string

type DeleteResponse

type DeleteResponse struct {
	// contains filtered or unexported fields
}

func (*DeleteResponse) Descriptor deprecated

func (*DeleteResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteResponse.ProtoReflect.Descriptor instead.

func (*DeleteResponse) ProtoMessage

func (*DeleteResponse) ProtoMessage()

func (*DeleteResponse) ProtoReflect

func (x *DeleteResponse) ProtoReflect() protoreflect.Message

func (*DeleteResponse) Reset

func (x *DeleteResponse) Reset()

func (*DeleteResponse) String

func (x *DeleteResponse) String() string

type GetAllRequest

type GetAllRequest struct {
	Limit  int32 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
	Offset int32 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAllRequest) Descriptor deprecated

func (*GetAllRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAllRequest.ProtoReflect.Descriptor instead.

func (*GetAllRequest) GetLimit

func (x *GetAllRequest) GetLimit() int32

func (*GetAllRequest) GetOffset

func (x *GetAllRequest) GetOffset() int32

func (*GetAllRequest) ProtoMessage

func (*GetAllRequest) ProtoMessage()

func (*GetAllRequest) ProtoReflect

func (x *GetAllRequest) ProtoReflect() protoreflect.Message

func (*GetAllRequest) Reset

func (x *GetAllRequest) Reset()

func (*GetAllRequest) String

func (x *GetAllRequest) String() string

type GetAllResponse

type GetAllResponse struct {
	Dashboards []*GetAllResponse_Dashboard `protobuf:"bytes,1,rep,name=dashboards,proto3" json:"dashboards,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAllResponse) Descriptor deprecated

func (*GetAllResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetAllResponse.ProtoReflect.Descriptor instead.

func (*GetAllResponse) GetDashboards

func (x *GetAllResponse) GetDashboards() []*GetAllResponse_Dashboard

func (*GetAllResponse) ProtoMessage

func (*GetAllResponse) ProtoMessage()

func (*GetAllResponse) ProtoReflect

func (x *GetAllResponse) ProtoReflect() protoreflect.Message

func (*GetAllResponse) Reset

func (x *GetAllResponse) Reset()

func (*GetAllResponse) String

func (x *GetAllResponse) String() string

type GetAllResponse_Dashboard

type GetAllResponse_Dashboard struct {
	Uuid      string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Name      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	OwnerName string `protobuf:"bytes,3,opt,name=owner_name,json=ownerName,proto3" json:"owner_name,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAllResponse_Dashboard) Descriptor deprecated

func (*GetAllResponse_Dashboard) Descriptor() ([]byte, []int)

Deprecated: Use GetAllResponse_Dashboard.ProtoReflect.Descriptor instead.

func (*GetAllResponse_Dashboard) GetName

func (x *GetAllResponse_Dashboard) GetName() string

func (*GetAllResponse_Dashboard) GetOwnerName

func (x *GetAllResponse_Dashboard) GetOwnerName() string

func (*GetAllResponse_Dashboard) GetUuid

func (x *GetAllResponse_Dashboard) GetUuid() string

func (*GetAllResponse_Dashboard) ProtoMessage

func (*GetAllResponse_Dashboard) ProtoMessage()

func (*GetAllResponse_Dashboard) ProtoReflect

func (x *GetAllResponse_Dashboard) ProtoReflect() protoreflect.Message

func (*GetAllResponse_Dashboard) Reset

func (x *GetAllResponse_Dashboard) Reset()

func (*GetAllResponse_Dashboard) String

func (x *GetAllResponse_Dashboard) String() string

type GetByUUIDRequest

type GetByUUIDRequest struct {
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// contains filtered or unexported fields
}

func (*GetByUUIDRequest) Descriptor deprecated

func (*GetByUUIDRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetByUUIDRequest.ProtoReflect.Descriptor instead.

func (*GetByUUIDRequest) GetUuid

func (x *GetByUUIDRequest) GetUuid() string

func (*GetByUUIDRequest) ProtoMessage

func (*GetByUUIDRequest) ProtoMessage()

func (*GetByUUIDRequest) ProtoReflect

func (x *GetByUUIDRequest) ProtoReflect() protoreflect.Message

func (*GetByUUIDRequest) Reset

func (x *GetByUUIDRequest) Reset()

func (*GetByUUIDRequest) String

func (x *GetByUUIDRequest) String() string

type GetByUUIDResponse

type GetByUUIDResponse struct {
	Name      string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Meta      string `protobuf:"bytes,2,opt,name=meta,proto3" json:"meta,omitempty"`
	OwnerName string `protobuf:"bytes,3,opt,name=owner_name,json=ownerName,proto3" json:"owner_name,omitempty"`
	// contains filtered or unexported fields
}

func (*GetByUUIDResponse) Descriptor deprecated

func (*GetByUUIDResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetByUUIDResponse.ProtoReflect.Descriptor instead.

func (*GetByUUIDResponse) GetMeta

func (x *GetByUUIDResponse) GetMeta() string

func (*GetByUUIDResponse) GetName

func (x *GetByUUIDResponse) GetName() string

func (*GetByUUIDResponse) GetOwnerName

func (x *GetByUUIDResponse) GetOwnerName() string

func (*GetByUUIDResponse) ProtoMessage

func (*GetByUUIDResponse) ProtoMessage()

func (*GetByUUIDResponse) ProtoReflect

func (x *GetByUUIDResponse) ProtoReflect() protoreflect.Message

func (*GetByUUIDResponse) Reset

func (x *GetByUUIDResponse) Reset()

func (*GetByUUIDResponse) String

func (x *GetByUUIDResponse) String() string

type GetMyRequest

type GetMyRequest struct {
	Limit  int32 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
	Offset int32 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMyRequest) Descriptor deprecated

func (*GetMyRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetMyRequest.ProtoReflect.Descriptor instead.

func (*GetMyRequest) GetLimit

func (x *GetMyRequest) GetLimit() int32

func (*GetMyRequest) GetOffset

func (x *GetMyRequest) GetOffset() int32

func (*GetMyRequest) ProtoMessage

func (*GetMyRequest) ProtoMessage()

func (*GetMyRequest) ProtoReflect

func (x *GetMyRequest) ProtoReflect() protoreflect.Message

func (*GetMyRequest) Reset

func (x *GetMyRequest) Reset()

func (*GetMyRequest) String

func (x *GetMyRequest) String() string

type GetMyResponse

type GetMyResponse struct {
	Dashboards []*GetMyResponse_Dashboard `protobuf:"bytes,1,rep,name=dashboards,proto3" json:"dashboards,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMyResponse) Descriptor deprecated

func (*GetMyResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetMyResponse.ProtoReflect.Descriptor instead.

func (*GetMyResponse) GetDashboards

func (x *GetMyResponse) GetDashboards() []*GetMyResponse_Dashboard

func (*GetMyResponse) ProtoMessage

func (*GetMyResponse) ProtoMessage()

func (*GetMyResponse) ProtoReflect

func (x *GetMyResponse) ProtoReflect() protoreflect.Message

func (*GetMyResponse) Reset

func (x *GetMyResponse) Reset()

func (*GetMyResponse) String

func (x *GetMyResponse) String() string

type GetMyResponse_Dashboard

type GetMyResponse_Dashboard struct {
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMyResponse_Dashboard) Descriptor deprecated

func (*GetMyResponse_Dashboard) Descriptor() ([]byte, []int)

Deprecated: Use GetMyResponse_Dashboard.ProtoReflect.Descriptor instead.

func (*GetMyResponse_Dashboard) GetName

func (x *GetMyResponse_Dashboard) GetName() string

func (*GetMyResponse_Dashboard) GetUuid

func (x *GetMyResponse_Dashboard) GetUuid() string

func (*GetMyResponse_Dashboard) ProtoMessage

func (*GetMyResponse_Dashboard) ProtoMessage()

func (*GetMyResponse_Dashboard) ProtoReflect

func (x *GetMyResponse_Dashboard) ProtoReflect() protoreflect.Message

func (*GetMyResponse_Dashboard) Reset

func (x *GetMyResponse_Dashboard) Reset()

func (*GetMyResponse_Dashboard) String

func (x *GetMyResponse_Dashboard) String() string

type SearchRequest

type SearchRequest struct {
	Query  string                `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	Limit  int32                 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Offset int32                 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Filter *SearchRequest_Filter `protobuf:"bytes,4,opt,name=filter,proto3,oneof" json:"filter,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchRequest) Descriptor deprecated

func (*SearchRequest) Descriptor() ([]byte, []int)

Deprecated: Use SearchRequest.ProtoReflect.Descriptor instead.

func (*SearchRequest) GetFilter

func (x *SearchRequest) GetFilter() *SearchRequest_Filter

func (*SearchRequest) GetLimit

func (x *SearchRequest) GetLimit() int32

func (*SearchRequest) GetOffset

func (x *SearchRequest) GetOffset() int32

func (*SearchRequest) GetQuery

func (x *SearchRequest) GetQuery() string

func (*SearchRequest) ProtoMessage

func (*SearchRequest) ProtoMessage()

func (*SearchRequest) ProtoReflect

func (x *SearchRequest) ProtoReflect() protoreflect.Message

func (*SearchRequest) Reset

func (x *SearchRequest) Reset()

func (*SearchRequest) String

func (x *SearchRequest) String() string

type SearchRequest_Filter

type SearchRequest_Filter struct {
	OwnerName *string `protobuf:"bytes,1,opt,name=owner_name,json=ownerName,proto3,oneof" json:"owner_name,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchRequest_Filter) Descriptor deprecated

func (*SearchRequest_Filter) Descriptor() ([]byte, []int)

Deprecated: Use SearchRequest_Filter.ProtoReflect.Descriptor instead.

func (*SearchRequest_Filter) GetOwnerName

func (x *SearchRequest_Filter) GetOwnerName() string

func (*SearchRequest_Filter) ProtoMessage

func (*SearchRequest_Filter) ProtoMessage()

func (*SearchRequest_Filter) ProtoReflect

func (x *SearchRequest_Filter) ProtoReflect() protoreflect.Message

func (*SearchRequest_Filter) Reset

func (x *SearchRequest_Filter) Reset()

func (*SearchRequest_Filter) String

func (x *SearchRequest_Filter) String() string

type SearchResponse

type SearchResponse struct {
	Dashboards []*SearchResponse_Dashboard `protobuf:"bytes,1,rep,name=dashboards,proto3" json:"dashboards,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchResponse) Descriptor deprecated

func (*SearchResponse) Descriptor() ([]byte, []int)

Deprecated: Use SearchResponse.ProtoReflect.Descriptor instead.

func (*SearchResponse) GetDashboards

func (x *SearchResponse) GetDashboards() []*SearchResponse_Dashboard

func (*SearchResponse) ProtoMessage

func (*SearchResponse) ProtoMessage()

func (*SearchResponse) ProtoReflect

func (x *SearchResponse) ProtoReflect() protoreflect.Message

func (*SearchResponse) Reset

func (x *SearchResponse) Reset()

func (*SearchResponse) String

func (x *SearchResponse) String() string

type SearchResponse_Dashboard

type SearchResponse_Dashboard struct {
	Uuid      string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Name      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	OwnerName string `protobuf:"bytes,3,opt,name=owner_name,json=ownerName,proto3" json:"owner_name,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchResponse_Dashboard) Descriptor deprecated

func (*SearchResponse_Dashboard) Descriptor() ([]byte, []int)

Deprecated: Use SearchResponse_Dashboard.ProtoReflect.Descriptor instead.

func (*SearchResponse_Dashboard) GetName

func (x *SearchResponse_Dashboard) GetName() string

func (*SearchResponse_Dashboard) GetOwnerName

func (x *SearchResponse_Dashboard) GetOwnerName() string

func (*SearchResponse_Dashboard) GetUuid

func (x *SearchResponse_Dashboard) GetUuid() string

func (*SearchResponse_Dashboard) ProtoMessage

func (*SearchResponse_Dashboard) ProtoMessage()

func (*SearchResponse_Dashboard) ProtoReflect

func (x *SearchResponse_Dashboard) ProtoReflect() protoreflect.Message

func (*SearchResponse_Dashboard) Reset

func (x *SearchResponse_Dashboard) Reset()

func (*SearchResponse_Dashboard) String

func (x *SearchResponse_Dashboard) String() string

type UnimplementedDashboardsServiceServer

type UnimplementedDashboardsServiceServer struct {
}

UnimplementedDashboardsServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedDashboardsServiceServer) Create

func (UnimplementedDashboardsServiceServer) Delete

func (UnimplementedDashboardsServiceServer) GetAll

func (UnimplementedDashboardsServiceServer) GetByUUID

func (UnimplementedDashboardsServiceServer) GetMy

func (UnimplementedDashboardsServiceServer) Search

func (UnimplementedDashboardsServiceServer) Update

type UnsafeDashboardsServiceServer

type UnsafeDashboardsServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeDashboardsServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to DashboardsServiceServer will result in compilation errors.

type UpdateRequest

type UpdateRequest struct {
	Uuid string  `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
	Meta *string `protobuf:"bytes,3,opt,name=meta,proto3,oneof" json:"meta,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateRequest) Descriptor deprecated

func (*UpdateRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateRequest.ProtoReflect.Descriptor instead.

func (*UpdateRequest) GetMeta

func (x *UpdateRequest) GetMeta() string

func (*UpdateRequest) GetName

func (x *UpdateRequest) GetName() string

func (*UpdateRequest) GetUuid

func (x *UpdateRequest) GetUuid() string

func (*UpdateRequest) ProtoMessage

func (*UpdateRequest) ProtoMessage()

func (*UpdateRequest) ProtoReflect

func (x *UpdateRequest) ProtoReflect() protoreflect.Message

func (*UpdateRequest) Reset

func (x *UpdateRequest) Reset()

func (*UpdateRequest) String

func (x *UpdateRequest) String() string

type UpdateResponse

type UpdateResponse struct {
	// contains filtered or unexported fields
}

func (*UpdateResponse) Descriptor deprecated

func (*UpdateResponse) Descriptor() ([]byte, []int)

Deprecated: Use UpdateResponse.ProtoReflect.Descriptor instead.

func (*UpdateResponse) ProtoMessage

func (*UpdateResponse) ProtoMessage()

func (*UpdateResponse) ProtoReflect

func (x *UpdateResponse) ProtoReflect() protoreflect.Message

func (*UpdateResponse) Reset

func (x *UpdateResponse) Reset()

func (*UpdateResponse) String

func (x *UpdateResponse) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL