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.Project) error
Update(entity *v1.Project) error
Delete(name string) error
Get(name string) (*v1.Project, error)
List(q *Query) ([]*v1.Project, error)
RawList(q *Query) ([][]byte, error)
MetadataList(q *Query) ([]api.Entity, error)
RawMetadataList(q *Query) ([][]byte, error)
}
type Query ¶
type Query struct {
databaseModel.Query
// NamePrefix is a prefix of the project.metadata.name that is used to filter the list of the project.
// NamePrefix can be empty in case you want to return the full list of project available.
NamePrefix string `query:"name"`
MetadataOnly bool `query:"metadata_only"`
}
func (*Query) GetMetadataOnlyQueryParam ¶ added in v0.46.0
func (*Query) IsRawMetadataQueryAllowed ¶ added in v0.46.0
func (*Query) IsRawQueryAllowed ¶ added in v0.46.0
Click to show internal directories.
Click to hide internal directories.