revert codegen
This commit is contained in:
parent
a74c7fdecb
commit
70da322f96
|
|
@ -35,7 +35,7 @@ import (
|
||||||
|
|
||||||
var scheme = runtime.NewScheme()
|
var scheme = runtime.NewScheme()
|
||||||
var codecs = serializer.NewCodecFactory(scheme)
|
var codecs = serializer.NewCodecFactory(scheme)
|
||||||
|
var parameterCodec = runtime.NewParameterCodec(scheme)
|
||||||
var localSchemeBuilder = runtime.SchemeBuilder{
|
var localSchemeBuilder = runtime.SchemeBuilder{
|
||||||
acidv1.AddToScheme,
|
acidv1.AddToScheme,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -32,10 +32,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// PostgresqlLister helps list Postgresqls.
|
// PostgresqlLister helps list Postgresqls.
|
||||||
// All objects returned here must be treated as read-only.
|
|
||||||
type PostgresqlLister interface {
|
type PostgresqlLister interface {
|
||||||
// List lists all Postgresqls in the indexer.
|
// 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)
|
List(selector labels.Selector) (ret []*v1.Postgresql, err error)
|
||||||
// Postgresqls returns an object that can list and get Postgresqls.
|
// Postgresqls returns an object that can list and get Postgresqls.
|
||||||
Postgresqls(namespace string) PostgresqlNamespaceLister
|
Postgresqls(namespace string) PostgresqlNamespaceLister
|
||||||
|
|
@ -66,13 +64,10 @@ func (s *postgresqlLister) Postgresqls(namespace string) PostgresqlNamespaceList
|
||||||
}
|
}
|
||||||
|
|
||||||
// PostgresqlNamespaceLister helps list and get Postgresqls.
|
// PostgresqlNamespaceLister helps list and get Postgresqls.
|
||||||
// All objects returned here must be treated as read-only.
|
|
||||||
type PostgresqlNamespaceLister interface {
|
type PostgresqlNamespaceLister interface {
|
||||||
// List lists all Postgresqls in the indexer for a given namespace.
|
// 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)
|
List(selector labels.Selector) (ret []*v1.Postgresql, err error)
|
||||||
// Get retrieves the Postgresql from the indexer for a given namespace and name.
|
// 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)
|
Get(name string) (*v1.Postgresql, error)
|
||||||
PostgresqlNamespaceListerExpansion
|
PostgresqlNamespaceListerExpansion
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue