Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DAO ¶
type DAO interface {
Create(entity *v1.GlobalVariable) error
Update(entity *v1.GlobalVariable) error
Delete(name string) error
Get(name string) (*v1.GlobalVariable, error)
List(q databaseModel.Query) ([]*v1.GlobalVariable, error)
}
type Query ¶
type Query struct {
databaseModel.Query
// NamePrefix is a prefix of the GlobalVariable.metadata.name that is used to filter the list of the GlobalVariable.
// NamePrefix can be empty in case you want to return the full list of GlobalVariable available.
NamePrefix string `query:"name"`
}
type Service ¶
type Service interface {
shared.ToolboxService
}
Click to show internal directories.
Click to hide internal directories.