Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PostgresTeamLister ¶ added in v1.6.0
type PostgresTeamLister interface { // List lists all PostgresTeams in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.PostgresTeam, err error) // PostgresTeams returns an object that can list and get PostgresTeams. PostgresTeams(namespace string) PostgresTeamNamespaceLister PostgresTeamListerExpansion }
PostgresTeamLister helps list PostgresTeams. All objects returned here must be treated as read-only.
func NewPostgresTeamLister ¶ added in v1.6.0
func NewPostgresTeamLister(indexer cache.Indexer) PostgresTeamLister
NewPostgresTeamLister returns a new PostgresTeamLister.
type PostgresTeamListerExpansion ¶ added in v1.6.0
type PostgresTeamListerExpansion interface{}
PostgresTeamListerExpansion allows custom methods to be added to PostgresTeamLister.
type PostgresTeamNamespaceLister ¶ added in v1.6.0
type PostgresTeamNamespaceLister interface { // List lists all PostgresTeams in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.PostgresTeam, err error) // Get retrieves the PostgresTeam from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.PostgresTeam, error) PostgresTeamNamespaceListerExpansion }
PostgresTeamNamespaceLister helps list and get PostgresTeams. All objects returned here must be treated as read-only.
type PostgresTeamNamespaceListerExpansion ¶ added in v1.6.0
type PostgresTeamNamespaceListerExpansion interface{}
PostgresTeamNamespaceListerExpansion allows custom methods to be added to PostgresTeamNamespaceLister.
type PostgresqlLister ¶
type PostgresqlLister interface { // List lists all Postgresqls in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Postgresql, err error) // Postgresqls returns an object that can list and get Postgresqls. Postgresqls(namespace string) PostgresqlNamespaceLister PostgresqlListerExpansion }
PostgresqlLister helps list Postgresqls. All objects returned here must be treated as read-only.
func NewPostgresqlLister ¶
func NewPostgresqlLister(indexer cache.Indexer) PostgresqlLister
NewPostgresqlLister returns a new PostgresqlLister.
type PostgresqlListerExpansion ¶
type PostgresqlListerExpansion interface{}
PostgresqlListerExpansion allows custom methods to be added to PostgresqlLister.
type PostgresqlNamespaceLister ¶
type PostgresqlNamespaceLister interface { // List lists all Postgresqls in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Postgresql, err error) // Get retrieves the Postgresql from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Postgresql, error) PostgresqlNamespaceListerExpansion }
PostgresqlNamespaceLister helps list and get Postgresqls. All objects returned here must be treated as read-only.
type PostgresqlNamespaceListerExpansion ¶
type PostgresqlNamespaceListerExpansion interface{}
PostgresqlNamespaceListerExpansion allows custom methods to be added to PostgresqlNamespaceLister.