Documentation
¶
Index ¶
Constants ¶
View Source
const (
Equals string = "="
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SearchResult ¶
type SearchStorage ¶ added in v0.1.4
type SearchStorage interface {
Search(ctx context.Context, queries []Query) (*SearchResult, error)
SearchByString(ctx context.Context, queryString string) (*SearchResult, error)
}
type SearchStorageGetter ¶ added in v0.1.4
type SearchStorageGetter interface {
GetSearchStorage() (SearchStorage, error)
}
type Storage ¶
type Storage interface {
Get(ctx context.Context, cluster string, obj runtime.Object) error
Create(ctx context.Context, cluster string, obj runtime.Object) error
Update(ctx context.Context, cluster string, obj runtime.Object) error
Delete(ctx context.Context, cluster string, obj runtime.Object) error
}
Click to show internal directories.
Click to hide internal directories.