Documentation ¶
Index ¶
- type CassandraAutoscalerLister
- type CassandraAutoscalerListerExpansion
- type CassandraAutoscalerNamespaceLister
- type CassandraAutoscalerNamespaceListerExpansion
- type ClickHouseAutoscalerLister
- type ClickHouseAutoscalerListerExpansion
- type ClickHouseAutoscalerNamespaceLister
- type ClickHouseAutoscalerNamespaceListerExpansion
- type DruidAutoscalerLister
- type DruidAutoscalerListerExpansion
- type DruidAutoscalerNamespaceLister
- type DruidAutoscalerNamespaceListerExpansion
- type ElasticsearchAutoscalerLister
- type ElasticsearchAutoscalerListerExpansion
- type ElasticsearchAutoscalerNamespaceLister
- type ElasticsearchAutoscalerNamespaceListerExpansion
- type EtcdAutoscalerLister
- type EtcdAutoscalerListerExpansion
- type EtcdAutoscalerNamespaceLister
- type EtcdAutoscalerNamespaceListerExpansion
- type FerretDBAutoscalerLister
- type FerretDBAutoscalerListerExpansion
- type FerretDBAutoscalerNamespaceLister
- type FerretDBAutoscalerNamespaceListerExpansion
- type KafkaAutoscalerLister
- type KafkaAutoscalerListerExpansion
- type KafkaAutoscalerNamespaceLister
- type KafkaAutoscalerNamespaceListerExpansion
- type MSSQLServerAutoscalerLister
- type MSSQLServerAutoscalerListerExpansion
- type MSSQLServerAutoscalerNamespaceLister
- type MSSQLServerAutoscalerNamespaceListerExpansion
- type MariaDBAutoscalerLister
- type MariaDBAutoscalerListerExpansion
- type MariaDBAutoscalerNamespaceLister
- type MariaDBAutoscalerNamespaceListerExpansion
- type MemcachedAutoscalerLister
- type MemcachedAutoscalerListerExpansion
- type MemcachedAutoscalerNamespaceLister
- type MemcachedAutoscalerNamespaceListerExpansion
- type MongoDBAutoscalerLister
- type MongoDBAutoscalerListerExpansion
- type MongoDBAutoscalerNamespaceLister
- type MongoDBAutoscalerNamespaceListerExpansion
- type MySQLAutoscalerLister
- type MySQLAutoscalerListerExpansion
- type MySQLAutoscalerNamespaceLister
- type MySQLAutoscalerNamespaceListerExpansion
- type PerconaXtraDBAutoscalerLister
- type PerconaXtraDBAutoscalerListerExpansion
- type PerconaXtraDBAutoscalerNamespaceLister
- type PerconaXtraDBAutoscalerNamespaceListerExpansion
- type PgBouncerAutoscalerLister
- type PgBouncerAutoscalerListerExpansion
- type PgBouncerAutoscalerNamespaceLister
- type PgBouncerAutoscalerNamespaceListerExpansion
- type PgpoolAutoscalerLister
- type PgpoolAutoscalerListerExpansion
- type PgpoolAutoscalerNamespaceLister
- type PgpoolAutoscalerNamespaceListerExpansion
- type PostgresAutoscalerLister
- type PostgresAutoscalerListerExpansion
- type PostgresAutoscalerNamespaceLister
- type PostgresAutoscalerNamespaceListerExpansion
- type ProxySQLAutoscalerLister
- type ProxySQLAutoscalerListerExpansion
- type ProxySQLAutoscalerNamespaceLister
- type ProxySQLAutoscalerNamespaceListerExpansion
- type RabbitMQAutoscalerLister
- type RabbitMQAutoscalerListerExpansion
- type RabbitMQAutoscalerNamespaceLister
- type RabbitMQAutoscalerNamespaceListerExpansion
- type RedisAutoscalerLister
- type RedisAutoscalerListerExpansion
- type RedisAutoscalerNamespaceLister
- type RedisAutoscalerNamespaceListerExpansion
- type RedisSentinelAutoscalerLister
- type RedisSentinelAutoscalerListerExpansion
- type RedisSentinelAutoscalerNamespaceLister
- type RedisSentinelAutoscalerNamespaceListerExpansion
- type SinglestoreAutoscalerLister
- type SinglestoreAutoscalerListerExpansion
- type SinglestoreAutoscalerNamespaceLister
- type SinglestoreAutoscalerNamespaceListerExpansion
- type SolrAutoscalerLister
- type SolrAutoscalerListerExpansion
- type SolrAutoscalerNamespaceLister
- type SolrAutoscalerNamespaceListerExpansion
- type ZooKeeperAutoscalerLister
- type ZooKeeperAutoscalerListerExpansion
- type ZooKeeperAutoscalerNamespaceLister
- type ZooKeeperAutoscalerNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CassandraAutoscalerLister ¶ added in v0.48.0
type CassandraAutoscalerLister interface { // List lists all CassandraAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.CassandraAutoscaler, err error) // CassandraAutoscalers returns an object that can list and get CassandraAutoscalers. CassandraAutoscalers(namespace string) CassandraAutoscalerNamespaceLister CassandraAutoscalerListerExpansion }
CassandraAutoscalerLister helps list CassandraAutoscalers. All objects returned here must be treated as read-only.
func NewCassandraAutoscalerLister ¶ added in v0.48.0
func NewCassandraAutoscalerLister(indexer cache.Indexer) CassandraAutoscalerLister
NewCassandraAutoscalerLister returns a new CassandraAutoscalerLister.
type CassandraAutoscalerListerExpansion ¶ added in v0.48.0
type CassandraAutoscalerListerExpansion interface{}
CassandraAutoscalerListerExpansion allows custom methods to be added to CassandraAutoscalerLister.
type CassandraAutoscalerNamespaceLister ¶ added in v0.48.0
type CassandraAutoscalerNamespaceLister interface { // List lists all CassandraAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.CassandraAutoscaler, err error) // Get retrieves the CassandraAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.CassandraAutoscaler, error) CassandraAutoscalerNamespaceListerExpansion }
CassandraAutoscalerNamespaceLister helps list and get CassandraAutoscalers. All objects returned here must be treated as read-only.
type CassandraAutoscalerNamespaceListerExpansion ¶ added in v0.48.0
type CassandraAutoscalerNamespaceListerExpansion interface{}
CassandraAutoscalerNamespaceListerExpansion allows custom methods to be added to CassandraAutoscalerNamespaceLister.
type ClickHouseAutoscalerLister ¶ added in v0.47.0
type ClickHouseAutoscalerLister interface { // List lists all ClickHouseAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ClickHouseAutoscaler, err error) // ClickHouseAutoscalers returns an object that can list and get ClickHouseAutoscalers. ClickHouseAutoscalers(namespace string) ClickHouseAutoscalerNamespaceLister ClickHouseAutoscalerListerExpansion }
ClickHouseAutoscalerLister helps list ClickHouseAutoscalers. All objects returned here must be treated as read-only.
func NewClickHouseAutoscalerLister ¶ added in v0.47.0
func NewClickHouseAutoscalerLister(indexer cache.Indexer) ClickHouseAutoscalerLister
NewClickHouseAutoscalerLister returns a new ClickHouseAutoscalerLister.
type ClickHouseAutoscalerListerExpansion ¶ added in v0.47.0
type ClickHouseAutoscalerListerExpansion interface{}
ClickHouseAutoscalerListerExpansion allows custom methods to be added to ClickHouseAutoscalerLister.
type ClickHouseAutoscalerNamespaceLister ¶ added in v0.47.0
type ClickHouseAutoscalerNamespaceLister interface { // List lists all ClickHouseAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ClickHouseAutoscaler, err error) // Get retrieves the ClickHouseAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ClickHouseAutoscaler, error) ClickHouseAutoscalerNamespaceListerExpansion }
ClickHouseAutoscalerNamespaceLister helps list and get ClickHouseAutoscalers. All objects returned here must be treated as read-only.
type ClickHouseAutoscalerNamespaceListerExpansion ¶ added in v0.47.0
type ClickHouseAutoscalerNamespaceListerExpansion interface{}
ClickHouseAutoscalerNamespaceListerExpansion allows custom methods to be added to ClickHouseAutoscalerNamespaceLister.
type DruidAutoscalerLister ¶ added in v0.46.0
type DruidAutoscalerLister interface { // List lists all DruidAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DruidAutoscaler, err error) // DruidAutoscalers returns an object that can list and get DruidAutoscalers. DruidAutoscalers(namespace string) DruidAutoscalerNamespaceLister DruidAutoscalerListerExpansion }
DruidAutoscalerLister helps list DruidAutoscalers. All objects returned here must be treated as read-only.
func NewDruidAutoscalerLister ¶ added in v0.46.0
func NewDruidAutoscalerLister(indexer cache.Indexer) DruidAutoscalerLister
NewDruidAutoscalerLister returns a new DruidAutoscalerLister.
type DruidAutoscalerListerExpansion ¶ added in v0.46.0
type DruidAutoscalerListerExpansion interface{}
DruidAutoscalerListerExpansion allows custom methods to be added to DruidAutoscalerLister.
type DruidAutoscalerNamespaceLister ¶ added in v0.46.0
type DruidAutoscalerNamespaceLister interface { // List lists all DruidAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DruidAutoscaler, err error) // Get retrieves the DruidAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DruidAutoscaler, error) DruidAutoscalerNamespaceListerExpansion }
DruidAutoscalerNamespaceLister helps list and get DruidAutoscalers. All objects returned here must be treated as read-only.
type DruidAutoscalerNamespaceListerExpansion ¶ added in v0.46.0
type DruidAutoscalerNamespaceListerExpansion interface{}
DruidAutoscalerNamespaceListerExpansion allows custom methods to be added to DruidAutoscalerNamespaceLister.
type ElasticsearchAutoscalerLister ¶
type ElasticsearchAutoscalerLister interface { // List lists all ElasticsearchAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ElasticsearchAutoscaler, err error) // ElasticsearchAutoscalers returns an object that can list and get ElasticsearchAutoscalers. ElasticsearchAutoscalers(namespace string) ElasticsearchAutoscalerNamespaceLister ElasticsearchAutoscalerListerExpansion }
ElasticsearchAutoscalerLister helps list ElasticsearchAutoscalers. All objects returned here must be treated as read-only.
func NewElasticsearchAutoscalerLister ¶
func NewElasticsearchAutoscalerLister(indexer cache.Indexer) ElasticsearchAutoscalerLister
NewElasticsearchAutoscalerLister returns a new ElasticsearchAutoscalerLister.
type ElasticsearchAutoscalerListerExpansion ¶
type ElasticsearchAutoscalerListerExpansion interface{}
ElasticsearchAutoscalerListerExpansion allows custom methods to be added to ElasticsearchAutoscalerLister.
type ElasticsearchAutoscalerNamespaceLister ¶
type ElasticsearchAutoscalerNamespaceLister interface { // List lists all ElasticsearchAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ElasticsearchAutoscaler, err error) // Get retrieves the ElasticsearchAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ElasticsearchAutoscaler, error) ElasticsearchAutoscalerNamespaceListerExpansion }
ElasticsearchAutoscalerNamespaceLister helps list and get ElasticsearchAutoscalers. All objects returned here must be treated as read-only.
type ElasticsearchAutoscalerNamespaceListerExpansion ¶
type ElasticsearchAutoscalerNamespaceListerExpansion interface{}
ElasticsearchAutoscalerNamespaceListerExpansion allows custom methods to be added to ElasticsearchAutoscalerNamespaceLister.
type EtcdAutoscalerLister ¶
type EtcdAutoscalerLister interface { // List lists all EtcdAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EtcdAutoscaler, err error) // EtcdAutoscalers returns an object that can list and get EtcdAutoscalers. EtcdAutoscalers(namespace string) EtcdAutoscalerNamespaceLister EtcdAutoscalerListerExpansion }
EtcdAutoscalerLister helps list EtcdAutoscalers. All objects returned here must be treated as read-only.
func NewEtcdAutoscalerLister ¶
func NewEtcdAutoscalerLister(indexer cache.Indexer) EtcdAutoscalerLister
NewEtcdAutoscalerLister returns a new EtcdAutoscalerLister.
type EtcdAutoscalerListerExpansion ¶
type EtcdAutoscalerListerExpansion interface{}
EtcdAutoscalerListerExpansion allows custom methods to be added to EtcdAutoscalerLister.
type EtcdAutoscalerNamespaceLister ¶
type EtcdAutoscalerNamespaceLister interface { // List lists all EtcdAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EtcdAutoscaler, err error) // Get retrieves the EtcdAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.EtcdAutoscaler, error) EtcdAutoscalerNamespaceListerExpansion }
EtcdAutoscalerNamespaceLister helps list and get EtcdAutoscalers. All objects returned here must be treated as read-only.
type EtcdAutoscalerNamespaceListerExpansion ¶
type EtcdAutoscalerNamespaceListerExpansion interface{}
EtcdAutoscalerNamespaceListerExpansion allows custom methods to be added to EtcdAutoscalerNamespaceLister.
type FerretDBAutoscalerLister ¶ added in v0.47.0
type FerretDBAutoscalerLister interface { // List lists all FerretDBAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.FerretDBAutoscaler, err error) // FerretDBAutoscalers returns an object that can list and get FerretDBAutoscalers. FerretDBAutoscalers(namespace string) FerretDBAutoscalerNamespaceLister FerretDBAutoscalerListerExpansion }
FerretDBAutoscalerLister helps list FerretDBAutoscalers. All objects returned here must be treated as read-only.
func NewFerretDBAutoscalerLister ¶ added in v0.47.0
func NewFerretDBAutoscalerLister(indexer cache.Indexer) FerretDBAutoscalerLister
NewFerretDBAutoscalerLister returns a new FerretDBAutoscalerLister.
type FerretDBAutoscalerListerExpansion ¶ added in v0.47.0
type FerretDBAutoscalerListerExpansion interface{}
FerretDBAutoscalerListerExpansion allows custom methods to be added to FerretDBAutoscalerLister.
type FerretDBAutoscalerNamespaceLister ¶ added in v0.47.0
type FerretDBAutoscalerNamespaceLister interface { // List lists all FerretDBAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.FerretDBAutoscaler, err error) // Get retrieves the FerretDBAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.FerretDBAutoscaler, error) FerretDBAutoscalerNamespaceListerExpansion }
FerretDBAutoscalerNamespaceLister helps list and get FerretDBAutoscalers. All objects returned here must be treated as read-only.
type FerretDBAutoscalerNamespaceListerExpansion ¶ added in v0.47.0
type FerretDBAutoscalerNamespaceListerExpansion interface{}
FerretDBAutoscalerNamespaceListerExpansion allows custom methods to be added to FerretDBAutoscalerNamespaceLister.
type KafkaAutoscalerLister ¶ added in v0.44.0
type KafkaAutoscalerLister interface { // List lists all KafkaAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.KafkaAutoscaler, err error) // KafkaAutoscalers returns an object that can list and get KafkaAutoscalers. KafkaAutoscalers(namespace string) KafkaAutoscalerNamespaceLister KafkaAutoscalerListerExpansion }
KafkaAutoscalerLister helps list KafkaAutoscalers. All objects returned here must be treated as read-only.
func NewKafkaAutoscalerLister ¶ added in v0.44.0
func NewKafkaAutoscalerLister(indexer cache.Indexer) KafkaAutoscalerLister
NewKafkaAutoscalerLister returns a new KafkaAutoscalerLister.
type KafkaAutoscalerListerExpansion ¶ added in v0.44.0
type KafkaAutoscalerListerExpansion interface{}
KafkaAutoscalerListerExpansion allows custom methods to be added to KafkaAutoscalerLister.
type KafkaAutoscalerNamespaceLister ¶ added in v0.44.0
type KafkaAutoscalerNamespaceLister interface { // List lists all KafkaAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.KafkaAutoscaler, err error) // Get retrieves the KafkaAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.KafkaAutoscaler, error) KafkaAutoscalerNamespaceListerExpansion }
KafkaAutoscalerNamespaceLister helps list and get KafkaAutoscalers. All objects returned here must be treated as read-only.
type KafkaAutoscalerNamespaceListerExpansion ¶ added in v0.44.0
type KafkaAutoscalerNamespaceListerExpansion interface{}
KafkaAutoscalerNamespaceListerExpansion allows custom methods to be added to KafkaAutoscalerNamespaceLister.
type MSSQLServerAutoscalerLister ¶ added in v0.47.0
type MSSQLServerAutoscalerLister interface { // List lists all MSSQLServerAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MSSQLServerAutoscaler, err error) // MSSQLServerAutoscalers returns an object that can list and get MSSQLServerAutoscalers. MSSQLServerAutoscalers(namespace string) MSSQLServerAutoscalerNamespaceLister MSSQLServerAutoscalerListerExpansion }
MSSQLServerAutoscalerLister helps list MSSQLServerAutoscalers. All objects returned here must be treated as read-only.
func NewMSSQLServerAutoscalerLister ¶ added in v0.47.0
func NewMSSQLServerAutoscalerLister(indexer cache.Indexer) MSSQLServerAutoscalerLister
NewMSSQLServerAutoscalerLister returns a new MSSQLServerAutoscalerLister.
type MSSQLServerAutoscalerListerExpansion ¶ added in v0.47.0
type MSSQLServerAutoscalerListerExpansion interface{}
MSSQLServerAutoscalerListerExpansion allows custom methods to be added to MSSQLServerAutoscalerLister.
type MSSQLServerAutoscalerNamespaceLister ¶ added in v0.47.0
type MSSQLServerAutoscalerNamespaceLister interface { // List lists all MSSQLServerAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MSSQLServerAutoscaler, err error) // Get retrieves the MSSQLServerAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.MSSQLServerAutoscaler, error) MSSQLServerAutoscalerNamespaceListerExpansion }
MSSQLServerAutoscalerNamespaceLister helps list and get MSSQLServerAutoscalers. All objects returned here must be treated as read-only.
type MSSQLServerAutoscalerNamespaceListerExpansion ¶ added in v0.47.0
type MSSQLServerAutoscalerNamespaceListerExpansion interface{}
MSSQLServerAutoscalerNamespaceListerExpansion allows custom methods to be added to MSSQLServerAutoscalerNamespaceLister.
type MariaDBAutoscalerLister ¶
type MariaDBAutoscalerLister interface { // List lists all MariaDBAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MariaDBAutoscaler, err error) // MariaDBAutoscalers returns an object that can list and get MariaDBAutoscalers. MariaDBAutoscalers(namespace string) MariaDBAutoscalerNamespaceLister MariaDBAutoscalerListerExpansion }
MariaDBAutoscalerLister helps list MariaDBAutoscalers. All objects returned here must be treated as read-only.
func NewMariaDBAutoscalerLister ¶
func NewMariaDBAutoscalerLister(indexer cache.Indexer) MariaDBAutoscalerLister
NewMariaDBAutoscalerLister returns a new MariaDBAutoscalerLister.
type MariaDBAutoscalerListerExpansion ¶
type MariaDBAutoscalerListerExpansion interface{}
MariaDBAutoscalerListerExpansion allows custom methods to be added to MariaDBAutoscalerLister.
type MariaDBAutoscalerNamespaceLister ¶
type MariaDBAutoscalerNamespaceLister interface { // List lists all MariaDBAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MariaDBAutoscaler, err error) // Get retrieves the MariaDBAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.MariaDBAutoscaler, error) MariaDBAutoscalerNamespaceListerExpansion }
MariaDBAutoscalerNamespaceLister helps list and get MariaDBAutoscalers. All objects returned here must be treated as read-only.
type MariaDBAutoscalerNamespaceListerExpansion ¶
type MariaDBAutoscalerNamespaceListerExpansion interface{}
MariaDBAutoscalerNamespaceListerExpansion allows custom methods to be added to MariaDBAutoscalerNamespaceLister.
type MemcachedAutoscalerLister ¶
type MemcachedAutoscalerLister interface { // List lists all MemcachedAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MemcachedAutoscaler, err error) // MemcachedAutoscalers returns an object that can list and get MemcachedAutoscalers. MemcachedAutoscalers(namespace string) MemcachedAutoscalerNamespaceLister MemcachedAutoscalerListerExpansion }
MemcachedAutoscalerLister helps list MemcachedAutoscalers. All objects returned here must be treated as read-only.
func NewMemcachedAutoscalerLister ¶
func NewMemcachedAutoscalerLister(indexer cache.Indexer) MemcachedAutoscalerLister
NewMemcachedAutoscalerLister returns a new MemcachedAutoscalerLister.
type MemcachedAutoscalerListerExpansion ¶
type MemcachedAutoscalerListerExpansion interface{}
MemcachedAutoscalerListerExpansion allows custom methods to be added to MemcachedAutoscalerLister.
type MemcachedAutoscalerNamespaceLister ¶
type MemcachedAutoscalerNamespaceLister interface { // List lists all MemcachedAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MemcachedAutoscaler, err error) // Get retrieves the MemcachedAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.MemcachedAutoscaler, error) MemcachedAutoscalerNamespaceListerExpansion }
MemcachedAutoscalerNamespaceLister helps list and get MemcachedAutoscalers. All objects returned here must be treated as read-only.
type MemcachedAutoscalerNamespaceListerExpansion ¶
type MemcachedAutoscalerNamespaceListerExpansion interface{}
MemcachedAutoscalerNamespaceListerExpansion allows custom methods to be added to MemcachedAutoscalerNamespaceLister.
type MongoDBAutoscalerLister ¶
type MongoDBAutoscalerLister interface { // List lists all MongoDBAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MongoDBAutoscaler, err error) // MongoDBAutoscalers returns an object that can list and get MongoDBAutoscalers. MongoDBAutoscalers(namespace string) MongoDBAutoscalerNamespaceLister MongoDBAutoscalerListerExpansion }
MongoDBAutoscalerLister helps list MongoDBAutoscalers. All objects returned here must be treated as read-only.
func NewMongoDBAutoscalerLister ¶
func NewMongoDBAutoscalerLister(indexer cache.Indexer) MongoDBAutoscalerLister
NewMongoDBAutoscalerLister returns a new MongoDBAutoscalerLister.
type MongoDBAutoscalerListerExpansion ¶
type MongoDBAutoscalerListerExpansion interface{}
MongoDBAutoscalerListerExpansion allows custom methods to be added to MongoDBAutoscalerLister.
type MongoDBAutoscalerNamespaceLister ¶
type MongoDBAutoscalerNamespaceLister interface { // List lists all MongoDBAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MongoDBAutoscaler, err error) // Get retrieves the MongoDBAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.MongoDBAutoscaler, error) MongoDBAutoscalerNamespaceListerExpansion }
MongoDBAutoscalerNamespaceLister helps list and get MongoDBAutoscalers. All objects returned here must be treated as read-only.
type MongoDBAutoscalerNamespaceListerExpansion ¶
type MongoDBAutoscalerNamespaceListerExpansion interface{}
MongoDBAutoscalerNamespaceListerExpansion allows custom methods to be added to MongoDBAutoscalerNamespaceLister.
type MySQLAutoscalerLister ¶
type MySQLAutoscalerLister interface { // List lists all MySQLAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MySQLAutoscaler, err error) // MySQLAutoscalers returns an object that can list and get MySQLAutoscalers. MySQLAutoscalers(namespace string) MySQLAutoscalerNamespaceLister MySQLAutoscalerListerExpansion }
MySQLAutoscalerLister helps list MySQLAutoscalers. All objects returned here must be treated as read-only.
func NewMySQLAutoscalerLister ¶
func NewMySQLAutoscalerLister(indexer cache.Indexer) MySQLAutoscalerLister
NewMySQLAutoscalerLister returns a new MySQLAutoscalerLister.
type MySQLAutoscalerListerExpansion ¶
type MySQLAutoscalerListerExpansion interface{}
MySQLAutoscalerListerExpansion allows custom methods to be added to MySQLAutoscalerLister.
type MySQLAutoscalerNamespaceLister ¶
type MySQLAutoscalerNamespaceLister interface { // List lists all MySQLAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.MySQLAutoscaler, err error) // Get retrieves the MySQLAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.MySQLAutoscaler, error) MySQLAutoscalerNamespaceListerExpansion }
MySQLAutoscalerNamespaceLister helps list and get MySQLAutoscalers. All objects returned here must be treated as read-only.
type MySQLAutoscalerNamespaceListerExpansion ¶
type MySQLAutoscalerNamespaceListerExpansion interface{}
MySQLAutoscalerNamespaceListerExpansion allows custom methods to be added to MySQLAutoscalerNamespaceLister.
type PerconaXtraDBAutoscalerLister ¶
type PerconaXtraDBAutoscalerLister interface { // List lists all PerconaXtraDBAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.PerconaXtraDBAutoscaler, err error) // PerconaXtraDBAutoscalers returns an object that can list and get PerconaXtraDBAutoscalers. PerconaXtraDBAutoscalers(namespace string) PerconaXtraDBAutoscalerNamespaceLister PerconaXtraDBAutoscalerListerExpansion }
PerconaXtraDBAutoscalerLister helps list PerconaXtraDBAutoscalers. All objects returned here must be treated as read-only.
func NewPerconaXtraDBAutoscalerLister ¶
func NewPerconaXtraDBAutoscalerLister(indexer cache.Indexer) PerconaXtraDBAutoscalerLister
NewPerconaXtraDBAutoscalerLister returns a new PerconaXtraDBAutoscalerLister.
type PerconaXtraDBAutoscalerListerExpansion ¶
type PerconaXtraDBAutoscalerListerExpansion interface{}
PerconaXtraDBAutoscalerListerExpansion allows custom methods to be added to PerconaXtraDBAutoscalerLister.
type PerconaXtraDBAutoscalerNamespaceLister ¶
type PerconaXtraDBAutoscalerNamespaceLister interface { // List lists all PerconaXtraDBAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.PerconaXtraDBAutoscaler, err error) // Get retrieves the PerconaXtraDBAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.PerconaXtraDBAutoscaler, error) PerconaXtraDBAutoscalerNamespaceListerExpansion }
PerconaXtraDBAutoscalerNamespaceLister helps list and get PerconaXtraDBAutoscalers. All objects returned here must be treated as read-only.
type PerconaXtraDBAutoscalerNamespaceListerExpansion ¶
type PerconaXtraDBAutoscalerNamespaceListerExpansion interface{}
PerconaXtraDBAutoscalerNamespaceListerExpansion allows custom methods to be added to PerconaXtraDBAutoscalerNamespaceLister.
type PgBouncerAutoscalerLister ¶
type PgBouncerAutoscalerLister interface { // List lists all PgBouncerAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.PgBouncerAutoscaler, err error) // PgBouncerAutoscalers returns an object that can list and get PgBouncerAutoscalers. PgBouncerAutoscalers(namespace string) PgBouncerAutoscalerNamespaceLister PgBouncerAutoscalerListerExpansion }
PgBouncerAutoscalerLister helps list PgBouncerAutoscalers. All objects returned here must be treated as read-only.
func NewPgBouncerAutoscalerLister ¶
func NewPgBouncerAutoscalerLister(indexer cache.Indexer) PgBouncerAutoscalerLister
NewPgBouncerAutoscalerLister returns a new PgBouncerAutoscalerLister.
type PgBouncerAutoscalerListerExpansion ¶
type PgBouncerAutoscalerListerExpansion interface{}
PgBouncerAutoscalerListerExpansion allows custom methods to be added to PgBouncerAutoscalerLister.
type PgBouncerAutoscalerNamespaceLister ¶
type PgBouncerAutoscalerNamespaceLister interface { // List lists all PgBouncerAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.PgBouncerAutoscaler, err error) // Get retrieves the PgBouncerAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.PgBouncerAutoscaler, error) PgBouncerAutoscalerNamespaceListerExpansion }
PgBouncerAutoscalerNamespaceLister helps list and get PgBouncerAutoscalers. All objects returned here must be treated as read-only.
type PgBouncerAutoscalerNamespaceListerExpansion ¶
type PgBouncerAutoscalerNamespaceListerExpansion interface{}
PgBouncerAutoscalerNamespaceListerExpansion allows custom methods to be added to PgBouncerAutoscalerNamespaceLister.
type PgpoolAutoscalerLister ¶ added in v0.46.0
type PgpoolAutoscalerLister interface { // List lists all PgpoolAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.PgpoolAutoscaler, err error) // PgpoolAutoscalers returns an object that can list and get PgpoolAutoscalers. PgpoolAutoscalers(namespace string) PgpoolAutoscalerNamespaceLister PgpoolAutoscalerListerExpansion }
PgpoolAutoscalerLister helps list PgpoolAutoscalers. All objects returned here must be treated as read-only.
func NewPgpoolAutoscalerLister ¶ added in v0.46.0
func NewPgpoolAutoscalerLister(indexer cache.Indexer) PgpoolAutoscalerLister
NewPgpoolAutoscalerLister returns a new PgpoolAutoscalerLister.
type PgpoolAutoscalerListerExpansion ¶ added in v0.46.0
type PgpoolAutoscalerListerExpansion interface{}
PgpoolAutoscalerListerExpansion allows custom methods to be added to PgpoolAutoscalerLister.
type PgpoolAutoscalerNamespaceLister ¶ added in v0.46.0
type PgpoolAutoscalerNamespaceLister interface { // List lists all PgpoolAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.PgpoolAutoscaler, err error) // Get retrieves the PgpoolAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.PgpoolAutoscaler, error) PgpoolAutoscalerNamespaceListerExpansion }
PgpoolAutoscalerNamespaceLister helps list and get PgpoolAutoscalers. All objects returned here must be treated as read-only.
type PgpoolAutoscalerNamespaceListerExpansion ¶ added in v0.46.0
type PgpoolAutoscalerNamespaceListerExpansion interface{}
PgpoolAutoscalerNamespaceListerExpansion allows custom methods to be added to PgpoolAutoscalerNamespaceLister.
type PostgresAutoscalerLister ¶
type PostgresAutoscalerLister interface { // List lists all PostgresAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.PostgresAutoscaler, err error) // PostgresAutoscalers returns an object that can list and get PostgresAutoscalers. PostgresAutoscalers(namespace string) PostgresAutoscalerNamespaceLister PostgresAutoscalerListerExpansion }
PostgresAutoscalerLister helps list PostgresAutoscalers. All objects returned here must be treated as read-only.
func NewPostgresAutoscalerLister ¶
func NewPostgresAutoscalerLister(indexer cache.Indexer) PostgresAutoscalerLister
NewPostgresAutoscalerLister returns a new PostgresAutoscalerLister.
type PostgresAutoscalerListerExpansion ¶
type PostgresAutoscalerListerExpansion interface{}
PostgresAutoscalerListerExpansion allows custom methods to be added to PostgresAutoscalerLister.
type PostgresAutoscalerNamespaceLister ¶
type PostgresAutoscalerNamespaceLister interface { // List lists all PostgresAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.PostgresAutoscaler, err error) // Get retrieves the PostgresAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.PostgresAutoscaler, error) PostgresAutoscalerNamespaceListerExpansion }
PostgresAutoscalerNamespaceLister helps list and get PostgresAutoscalers. All objects returned here must be treated as read-only.
type PostgresAutoscalerNamespaceListerExpansion ¶
type PostgresAutoscalerNamespaceListerExpansion interface{}
PostgresAutoscalerNamespaceListerExpansion allows custom methods to be added to PostgresAutoscalerNamespaceLister.
type ProxySQLAutoscalerLister ¶
type ProxySQLAutoscalerLister interface { // List lists all ProxySQLAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ProxySQLAutoscaler, err error) // ProxySQLAutoscalers returns an object that can list and get ProxySQLAutoscalers. ProxySQLAutoscalers(namespace string) ProxySQLAutoscalerNamespaceLister ProxySQLAutoscalerListerExpansion }
ProxySQLAutoscalerLister helps list ProxySQLAutoscalers. All objects returned here must be treated as read-only.
func NewProxySQLAutoscalerLister ¶
func NewProxySQLAutoscalerLister(indexer cache.Indexer) ProxySQLAutoscalerLister
NewProxySQLAutoscalerLister returns a new ProxySQLAutoscalerLister.
type ProxySQLAutoscalerListerExpansion ¶
type ProxySQLAutoscalerListerExpansion interface{}
ProxySQLAutoscalerListerExpansion allows custom methods to be added to ProxySQLAutoscalerLister.
type ProxySQLAutoscalerNamespaceLister ¶
type ProxySQLAutoscalerNamespaceLister interface { // List lists all ProxySQLAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ProxySQLAutoscaler, err error) // Get retrieves the ProxySQLAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ProxySQLAutoscaler, error) ProxySQLAutoscalerNamespaceListerExpansion }
ProxySQLAutoscalerNamespaceLister helps list and get ProxySQLAutoscalers. All objects returned here must be treated as read-only.
type ProxySQLAutoscalerNamespaceListerExpansion ¶
type ProxySQLAutoscalerNamespaceListerExpansion interface{}
ProxySQLAutoscalerNamespaceListerExpansion allows custom methods to be added to ProxySQLAutoscalerNamespaceLister.
type RabbitMQAutoscalerLister ¶ added in v0.45.0
type RabbitMQAutoscalerLister interface { // List lists all RabbitMQAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RabbitMQAutoscaler, err error) // RabbitMQAutoscalers returns an object that can list and get RabbitMQAutoscalers. RabbitMQAutoscalers(namespace string) RabbitMQAutoscalerNamespaceLister RabbitMQAutoscalerListerExpansion }
RabbitMQAutoscalerLister helps list RabbitMQAutoscalers. All objects returned here must be treated as read-only.
func NewRabbitMQAutoscalerLister ¶ added in v0.45.0
func NewRabbitMQAutoscalerLister(indexer cache.Indexer) RabbitMQAutoscalerLister
NewRabbitMQAutoscalerLister returns a new RabbitMQAutoscalerLister.
type RabbitMQAutoscalerListerExpansion ¶ added in v0.45.0
type RabbitMQAutoscalerListerExpansion interface{}
RabbitMQAutoscalerListerExpansion allows custom methods to be added to RabbitMQAutoscalerLister.
type RabbitMQAutoscalerNamespaceLister ¶ added in v0.45.0
type RabbitMQAutoscalerNamespaceLister interface { // List lists all RabbitMQAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RabbitMQAutoscaler, err error) // Get retrieves the RabbitMQAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.RabbitMQAutoscaler, error) RabbitMQAutoscalerNamespaceListerExpansion }
RabbitMQAutoscalerNamespaceLister helps list and get RabbitMQAutoscalers. All objects returned here must be treated as read-only.
type RabbitMQAutoscalerNamespaceListerExpansion ¶ added in v0.45.0
type RabbitMQAutoscalerNamespaceListerExpansion interface{}
RabbitMQAutoscalerNamespaceListerExpansion allows custom methods to be added to RabbitMQAutoscalerNamespaceLister.
type RedisAutoscalerLister ¶
type RedisAutoscalerLister interface { // List lists all RedisAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RedisAutoscaler, err error) // RedisAutoscalers returns an object that can list and get RedisAutoscalers. RedisAutoscalers(namespace string) RedisAutoscalerNamespaceLister RedisAutoscalerListerExpansion }
RedisAutoscalerLister helps list RedisAutoscalers. All objects returned here must be treated as read-only.
func NewRedisAutoscalerLister ¶
func NewRedisAutoscalerLister(indexer cache.Indexer) RedisAutoscalerLister
NewRedisAutoscalerLister returns a new RedisAutoscalerLister.
type RedisAutoscalerListerExpansion ¶
type RedisAutoscalerListerExpansion interface{}
RedisAutoscalerListerExpansion allows custom methods to be added to RedisAutoscalerLister.
type RedisAutoscalerNamespaceLister ¶
type RedisAutoscalerNamespaceLister interface { // List lists all RedisAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RedisAutoscaler, err error) // Get retrieves the RedisAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.RedisAutoscaler, error) RedisAutoscalerNamespaceListerExpansion }
RedisAutoscalerNamespaceLister helps list and get RedisAutoscalers. All objects returned here must be treated as read-only.
type RedisAutoscalerNamespaceListerExpansion ¶
type RedisAutoscalerNamespaceListerExpansion interface{}
RedisAutoscalerNamespaceListerExpansion allows custom methods to be added to RedisAutoscalerNamespaceLister.
type RedisSentinelAutoscalerLister ¶ added in v0.29.0
type RedisSentinelAutoscalerLister interface { // List lists all RedisSentinelAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RedisSentinelAutoscaler, err error) // RedisSentinelAutoscalers returns an object that can list and get RedisSentinelAutoscalers. RedisSentinelAutoscalers(namespace string) RedisSentinelAutoscalerNamespaceLister RedisSentinelAutoscalerListerExpansion }
RedisSentinelAutoscalerLister helps list RedisSentinelAutoscalers. All objects returned here must be treated as read-only.
func NewRedisSentinelAutoscalerLister ¶ added in v0.29.0
func NewRedisSentinelAutoscalerLister(indexer cache.Indexer) RedisSentinelAutoscalerLister
NewRedisSentinelAutoscalerLister returns a new RedisSentinelAutoscalerLister.
type RedisSentinelAutoscalerListerExpansion ¶ added in v0.29.0
type RedisSentinelAutoscalerListerExpansion interface{}
RedisSentinelAutoscalerListerExpansion allows custom methods to be added to RedisSentinelAutoscalerLister.
type RedisSentinelAutoscalerNamespaceLister ¶ added in v0.29.0
type RedisSentinelAutoscalerNamespaceLister interface { // List lists all RedisSentinelAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RedisSentinelAutoscaler, err error) // Get retrieves the RedisSentinelAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.RedisSentinelAutoscaler, error) RedisSentinelAutoscalerNamespaceListerExpansion }
RedisSentinelAutoscalerNamespaceLister helps list and get RedisSentinelAutoscalers. All objects returned here must be treated as read-only.
type RedisSentinelAutoscalerNamespaceListerExpansion ¶ added in v0.29.0
type RedisSentinelAutoscalerNamespaceListerExpansion interface{}
RedisSentinelAutoscalerNamespaceListerExpansion allows custom methods to be added to RedisSentinelAutoscalerNamespaceLister.
type SinglestoreAutoscalerLister ¶ added in v0.46.0
type SinglestoreAutoscalerLister interface { // List lists all SinglestoreAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.SinglestoreAutoscaler, err error) // SinglestoreAutoscalers returns an object that can list and get SinglestoreAutoscalers. SinglestoreAutoscalers(namespace string) SinglestoreAutoscalerNamespaceLister SinglestoreAutoscalerListerExpansion }
SinglestoreAutoscalerLister helps list SinglestoreAutoscalers. All objects returned here must be treated as read-only.
func NewSinglestoreAutoscalerLister ¶ added in v0.46.0
func NewSinglestoreAutoscalerLister(indexer cache.Indexer) SinglestoreAutoscalerLister
NewSinglestoreAutoscalerLister returns a new SinglestoreAutoscalerLister.
type SinglestoreAutoscalerListerExpansion ¶ added in v0.46.0
type SinglestoreAutoscalerListerExpansion interface{}
SinglestoreAutoscalerListerExpansion allows custom methods to be added to SinglestoreAutoscalerLister.
type SinglestoreAutoscalerNamespaceLister ¶ added in v0.46.0
type SinglestoreAutoscalerNamespaceLister interface { // List lists all SinglestoreAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.SinglestoreAutoscaler, err error) // Get retrieves the SinglestoreAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.SinglestoreAutoscaler, error) SinglestoreAutoscalerNamespaceListerExpansion }
SinglestoreAutoscalerNamespaceLister helps list and get SinglestoreAutoscalers. All objects returned here must be treated as read-only.
type SinglestoreAutoscalerNamespaceListerExpansion ¶ added in v0.46.0
type SinglestoreAutoscalerNamespaceListerExpansion interface{}
SinglestoreAutoscalerNamespaceListerExpansion allows custom methods to be added to SinglestoreAutoscalerNamespaceLister.
type SolrAutoscalerLister ¶ added in v0.47.0
type SolrAutoscalerLister interface { // List lists all SolrAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.SolrAutoscaler, err error) // SolrAutoscalers returns an object that can list and get SolrAutoscalers. SolrAutoscalers(namespace string) SolrAutoscalerNamespaceLister SolrAutoscalerListerExpansion }
SolrAutoscalerLister helps list SolrAutoscalers. All objects returned here must be treated as read-only.
func NewSolrAutoscalerLister ¶ added in v0.47.0
func NewSolrAutoscalerLister(indexer cache.Indexer) SolrAutoscalerLister
NewSolrAutoscalerLister returns a new SolrAutoscalerLister.
type SolrAutoscalerListerExpansion ¶ added in v0.47.0
type SolrAutoscalerListerExpansion interface{}
SolrAutoscalerListerExpansion allows custom methods to be added to SolrAutoscalerLister.
type SolrAutoscalerNamespaceLister ¶ added in v0.47.0
type SolrAutoscalerNamespaceLister interface { // List lists all SolrAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.SolrAutoscaler, err error) // Get retrieves the SolrAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.SolrAutoscaler, error) SolrAutoscalerNamespaceListerExpansion }
SolrAutoscalerNamespaceLister helps list and get SolrAutoscalers. All objects returned here must be treated as read-only.
type SolrAutoscalerNamespaceListerExpansion ¶ added in v0.47.0
type SolrAutoscalerNamespaceListerExpansion interface{}
SolrAutoscalerNamespaceListerExpansion allows custom methods to be added to SolrAutoscalerNamespaceLister.
type ZooKeeperAutoscalerLister ¶ added in v0.47.0
type ZooKeeperAutoscalerLister interface { // List lists all ZooKeeperAutoscalers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ZooKeeperAutoscaler, err error) // ZooKeeperAutoscalers returns an object that can list and get ZooKeeperAutoscalers. ZooKeeperAutoscalers(namespace string) ZooKeeperAutoscalerNamespaceLister ZooKeeperAutoscalerListerExpansion }
ZooKeeperAutoscalerLister helps list ZooKeeperAutoscalers. All objects returned here must be treated as read-only.
func NewZooKeeperAutoscalerLister ¶ added in v0.47.0
func NewZooKeeperAutoscalerLister(indexer cache.Indexer) ZooKeeperAutoscalerLister
NewZooKeeperAutoscalerLister returns a new ZooKeeperAutoscalerLister.
type ZooKeeperAutoscalerListerExpansion ¶ added in v0.47.0
type ZooKeeperAutoscalerListerExpansion interface{}
ZooKeeperAutoscalerListerExpansion allows custom methods to be added to ZooKeeperAutoscalerLister.
type ZooKeeperAutoscalerNamespaceLister ¶ added in v0.47.0
type ZooKeeperAutoscalerNamespaceLister interface { // List lists all ZooKeeperAutoscalers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ZooKeeperAutoscaler, err error) // Get retrieves the ZooKeeperAutoscaler from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ZooKeeperAutoscaler, error) ZooKeeperAutoscalerNamespaceListerExpansion }
ZooKeeperAutoscalerNamespaceLister helps list and get ZooKeeperAutoscalers. All objects returned here must be treated as read-only.
type ZooKeeperAutoscalerNamespaceListerExpansion ¶ added in v0.47.0
type ZooKeeperAutoscalerNamespaceListerExpansion interface{}
ZooKeeperAutoscalerNamespaceListerExpansion allows custom methods to be added to ZooKeeperAutoscalerNamespaceLister.
Source Files ¶
- cassandraautoscaler.go
- clickhouseautoscaler.go
- druidautoscaler.go
- elasticsearchautoscaler.go
- etcdautoscaler.go
- expansion_generated.go
- ferretdbautoscaler.go
- kafkaautoscaler.go
- mariadbautoscaler.go
- memcachedautoscaler.go
- mongodbautoscaler.go
- mssqlserverautoscaler.go
- mysqlautoscaler.go
- perconaxtradbautoscaler.go
- pgbouncerautoscaler.go
- pgpoolautoscaler.go
- postgresautoscaler.go
- proxysqlautoscaler.go
- rabbitmqautoscaler.go
- redisautoscaler.go
- redissentinelautoscaler.go
- singlestoreautoscaler.go
- solrautoscaler.go
- zookeeperautoscaler.go