Documentation
¶
Index ¶
- type AuthorizationRuleLister
- type AuthorizationRuleListerExpansion
- type AuthorizationRuleNamespaceLister
- type AuthorizationRuleNamespaceListerExpansion
- type ClusterLister
- type ClusterListerExpansion
- type ClusterNamespaceLister
- type ClusterNamespaceListerExpansion
- type ConsumerGroupLister
- type ConsumerGroupListerExpansion
- type ConsumerGroupNamespaceLister
- type ConsumerGroupNamespaceListerExpansion
- type EventhubLister
- type EventhubListerExpansion
- type EventhubNamespaceLister
- type EventhubNamespaceListerExpansion
- type NamespaceAuthorizationRuleLister
- type NamespaceAuthorizationRuleListerExpansion
- type NamespaceAuthorizationRuleNamespaceLister
- type NamespaceAuthorizationRuleNamespaceListerExpansion
- type NamespaceCustomerManagedKeyLister
- type NamespaceCustomerManagedKeyListerExpansion
- type NamespaceCustomerManagedKeyNamespaceLister
- type NamespaceCustomerManagedKeyNamespaceListerExpansion
- type NamespaceDisasterRecoveryConfigLister
- type NamespaceDisasterRecoveryConfigListerExpansion
- type NamespaceDisasterRecoveryConfigNamespaceLister
- type NamespaceDisasterRecoveryConfigNamespaceListerExpansion
- type NamespaceLister
- type NamespaceListerExpansion
- type NamespaceNamespaceLister
- type NamespaceNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthorizationRuleLister ¶
type AuthorizationRuleLister interface { // List lists all AuthorizationRules in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AuthorizationRule, err error) // AuthorizationRules returns an object that can list and get AuthorizationRules. AuthorizationRules(namespace string) AuthorizationRuleNamespaceLister AuthorizationRuleListerExpansion }
AuthorizationRuleLister helps list AuthorizationRules. All objects returned here must be treated as read-only.
func NewAuthorizationRuleLister ¶
func NewAuthorizationRuleLister(indexer cache.Indexer) AuthorizationRuleLister
NewAuthorizationRuleLister returns a new AuthorizationRuleLister.
type AuthorizationRuleListerExpansion ¶
type AuthorizationRuleListerExpansion interface{}
AuthorizationRuleListerExpansion allows custom methods to be added to AuthorizationRuleLister.
type AuthorizationRuleNamespaceLister ¶
type AuthorizationRuleNamespaceLister interface { // List lists all AuthorizationRules in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AuthorizationRule, err error) // Get retrieves the AuthorizationRule from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.AuthorizationRule, error) AuthorizationRuleNamespaceListerExpansion }
AuthorizationRuleNamespaceLister helps list and get AuthorizationRules. All objects returned here must be treated as read-only.
type AuthorizationRuleNamespaceListerExpansion ¶
type AuthorizationRuleNamespaceListerExpansion interface{}
AuthorizationRuleNamespaceListerExpansion allows custom methods to be added to AuthorizationRuleNamespaceLister.
type ClusterLister ¶
type ClusterLister interface { // List lists all Clusters in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Cluster, err error) // Clusters returns an object that can list and get Clusters. Clusters(namespace string) ClusterNamespaceLister ClusterListerExpansion }
ClusterLister helps list Clusters. All objects returned here must be treated as read-only.
func NewClusterLister ¶
func NewClusterLister(indexer cache.Indexer) ClusterLister
NewClusterLister returns a new ClusterLister.
type ClusterListerExpansion ¶
type ClusterListerExpansion interface{}
ClusterListerExpansion allows custom methods to be added to ClusterLister.
type ClusterNamespaceLister ¶
type ClusterNamespaceLister interface { // List lists all Clusters in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Cluster, err error) // Get retrieves the Cluster from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Cluster, error) ClusterNamespaceListerExpansion }
ClusterNamespaceLister helps list and get Clusters. All objects returned here must be treated as read-only.
type ClusterNamespaceListerExpansion ¶
type ClusterNamespaceListerExpansion interface{}
ClusterNamespaceListerExpansion allows custom methods to be added to ClusterNamespaceLister.
type ConsumerGroupLister ¶
type ConsumerGroupLister interface { // List lists all ConsumerGroups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ConsumerGroup, err error) // ConsumerGroups returns an object that can list and get ConsumerGroups. ConsumerGroups(namespace string) ConsumerGroupNamespaceLister ConsumerGroupListerExpansion }
ConsumerGroupLister helps list ConsumerGroups. All objects returned here must be treated as read-only.
func NewConsumerGroupLister ¶
func NewConsumerGroupLister(indexer cache.Indexer) ConsumerGroupLister
NewConsumerGroupLister returns a new ConsumerGroupLister.
type ConsumerGroupListerExpansion ¶
type ConsumerGroupListerExpansion interface{}
ConsumerGroupListerExpansion allows custom methods to be added to ConsumerGroupLister.
type ConsumerGroupNamespaceLister ¶
type ConsumerGroupNamespaceLister interface { // List lists all ConsumerGroups in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ConsumerGroup, err error) // Get retrieves the ConsumerGroup from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ConsumerGroup, error) ConsumerGroupNamespaceListerExpansion }
ConsumerGroupNamespaceLister helps list and get ConsumerGroups. All objects returned here must be treated as read-only.
type ConsumerGroupNamespaceListerExpansion ¶
type ConsumerGroupNamespaceListerExpansion interface{}
ConsumerGroupNamespaceListerExpansion allows custom methods to be added to ConsumerGroupNamespaceLister.
type EventhubLister ¶
type EventhubLister interface { // List lists all Eventhubs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Eventhub, err error) // Eventhubs returns an object that can list and get Eventhubs. Eventhubs(namespace string) EventhubNamespaceLister EventhubListerExpansion }
EventhubLister helps list Eventhubs. All objects returned here must be treated as read-only.
func NewEventhubLister ¶
func NewEventhubLister(indexer cache.Indexer) EventhubLister
NewEventhubLister returns a new EventhubLister.
type EventhubListerExpansion ¶
type EventhubListerExpansion interface{}
EventhubListerExpansion allows custom methods to be added to EventhubLister.
type EventhubNamespaceLister ¶
type EventhubNamespaceLister interface { // List lists all Eventhubs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Eventhub, err error) // Get retrieves the Eventhub from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Eventhub, error) EventhubNamespaceListerExpansion }
EventhubNamespaceLister helps list and get Eventhubs. All objects returned here must be treated as read-only.
type EventhubNamespaceListerExpansion ¶
type EventhubNamespaceListerExpansion interface{}
EventhubNamespaceListerExpansion allows custom methods to be added to EventhubNamespaceLister.
type NamespaceAuthorizationRuleLister ¶
type NamespaceAuthorizationRuleLister interface { // List lists all NamespaceAuthorizationRules in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NamespaceAuthorizationRule, err error) // NamespaceAuthorizationRules returns an object that can list and get NamespaceAuthorizationRules. NamespaceAuthorizationRules(namespace string) NamespaceAuthorizationRuleNamespaceLister NamespaceAuthorizationRuleListerExpansion }
NamespaceAuthorizationRuleLister helps list NamespaceAuthorizationRules. All objects returned here must be treated as read-only.
func NewNamespaceAuthorizationRuleLister ¶
func NewNamespaceAuthorizationRuleLister(indexer cache.Indexer) NamespaceAuthorizationRuleLister
NewNamespaceAuthorizationRuleLister returns a new NamespaceAuthorizationRuleLister.
type NamespaceAuthorizationRuleListerExpansion ¶
type NamespaceAuthorizationRuleListerExpansion interface{}
NamespaceAuthorizationRuleListerExpansion allows custom methods to be added to NamespaceAuthorizationRuleLister.
type NamespaceAuthorizationRuleNamespaceLister ¶
type NamespaceAuthorizationRuleNamespaceLister interface { // List lists all NamespaceAuthorizationRules in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NamespaceAuthorizationRule, err error) // Get retrieves the NamespaceAuthorizationRule from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.NamespaceAuthorizationRule, error) NamespaceAuthorizationRuleNamespaceListerExpansion }
NamespaceAuthorizationRuleNamespaceLister helps list and get NamespaceAuthorizationRules. All objects returned here must be treated as read-only.
type NamespaceAuthorizationRuleNamespaceListerExpansion ¶
type NamespaceAuthorizationRuleNamespaceListerExpansion interface{}
NamespaceAuthorizationRuleNamespaceListerExpansion allows custom methods to be added to NamespaceAuthorizationRuleNamespaceLister.
type NamespaceCustomerManagedKeyLister ¶
type NamespaceCustomerManagedKeyLister interface { // List lists all NamespaceCustomerManagedKeys in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NamespaceCustomerManagedKey, err error) // NamespaceCustomerManagedKeys returns an object that can list and get NamespaceCustomerManagedKeys. NamespaceCustomerManagedKeys(namespace string) NamespaceCustomerManagedKeyNamespaceLister NamespaceCustomerManagedKeyListerExpansion }
NamespaceCustomerManagedKeyLister helps list NamespaceCustomerManagedKeys. All objects returned here must be treated as read-only.
func NewNamespaceCustomerManagedKeyLister ¶
func NewNamespaceCustomerManagedKeyLister(indexer cache.Indexer) NamespaceCustomerManagedKeyLister
NewNamespaceCustomerManagedKeyLister returns a new NamespaceCustomerManagedKeyLister.
type NamespaceCustomerManagedKeyListerExpansion ¶
type NamespaceCustomerManagedKeyListerExpansion interface{}
NamespaceCustomerManagedKeyListerExpansion allows custom methods to be added to NamespaceCustomerManagedKeyLister.
type NamespaceCustomerManagedKeyNamespaceLister ¶
type NamespaceCustomerManagedKeyNamespaceLister interface { // List lists all NamespaceCustomerManagedKeys in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NamespaceCustomerManagedKey, err error) // Get retrieves the NamespaceCustomerManagedKey from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.NamespaceCustomerManagedKey, error) NamespaceCustomerManagedKeyNamespaceListerExpansion }
NamespaceCustomerManagedKeyNamespaceLister helps list and get NamespaceCustomerManagedKeys. All objects returned here must be treated as read-only.
type NamespaceCustomerManagedKeyNamespaceListerExpansion ¶
type NamespaceCustomerManagedKeyNamespaceListerExpansion interface{}
NamespaceCustomerManagedKeyNamespaceListerExpansion allows custom methods to be added to NamespaceCustomerManagedKeyNamespaceLister.
type NamespaceDisasterRecoveryConfigLister ¶
type NamespaceDisasterRecoveryConfigLister interface { // List lists all NamespaceDisasterRecoveryConfigs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NamespaceDisasterRecoveryConfig, err error) // NamespaceDisasterRecoveryConfigs returns an object that can list and get NamespaceDisasterRecoveryConfigs. NamespaceDisasterRecoveryConfigs(namespace string) NamespaceDisasterRecoveryConfigNamespaceLister NamespaceDisasterRecoveryConfigListerExpansion }
NamespaceDisasterRecoveryConfigLister helps list NamespaceDisasterRecoveryConfigs. All objects returned here must be treated as read-only.
func NewNamespaceDisasterRecoveryConfigLister ¶
func NewNamespaceDisasterRecoveryConfigLister(indexer cache.Indexer) NamespaceDisasterRecoveryConfigLister
NewNamespaceDisasterRecoveryConfigLister returns a new NamespaceDisasterRecoveryConfigLister.
type NamespaceDisasterRecoveryConfigListerExpansion ¶
type NamespaceDisasterRecoveryConfigListerExpansion interface{}
NamespaceDisasterRecoveryConfigListerExpansion allows custom methods to be added to NamespaceDisasterRecoveryConfigLister.
type NamespaceDisasterRecoveryConfigNamespaceLister ¶
type NamespaceDisasterRecoveryConfigNamespaceLister interface { // List lists all NamespaceDisasterRecoveryConfigs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NamespaceDisasterRecoveryConfig, err error) // Get retrieves the NamespaceDisasterRecoveryConfig from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.NamespaceDisasterRecoveryConfig, error) NamespaceDisasterRecoveryConfigNamespaceListerExpansion }
NamespaceDisasterRecoveryConfigNamespaceLister helps list and get NamespaceDisasterRecoveryConfigs. All objects returned here must be treated as read-only.
type NamespaceDisasterRecoveryConfigNamespaceListerExpansion ¶
type NamespaceDisasterRecoveryConfigNamespaceListerExpansion interface{}
NamespaceDisasterRecoveryConfigNamespaceListerExpansion allows custom methods to be added to NamespaceDisasterRecoveryConfigNamespaceLister.
type NamespaceLister ¶ added in v0.1.1
type NamespaceLister interface { // List lists all Namespaces in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Namespace, err error) // Namespaces returns an object that can list and get Namespaces. Namespaces(namespace string) NamespaceNamespaceLister NamespaceListerExpansion }
NamespaceLister helps list Namespaces. All objects returned here must be treated as read-only.
func NewNamespaceLister ¶ added in v0.1.1
func NewNamespaceLister(indexer cache.Indexer) NamespaceLister
NewNamespaceLister returns a new NamespaceLister.
type NamespaceListerExpansion ¶ added in v0.1.1
type NamespaceListerExpansion interface{}
NamespaceListerExpansion allows custom methods to be added to NamespaceLister.
type NamespaceNamespaceLister ¶ added in v0.1.1
type NamespaceNamespaceLister interface { // List lists all Namespaces in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Namespace, err error) // Get retrieves the Namespace from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Namespace, error) NamespaceNamespaceListerExpansion }
NamespaceNamespaceLister helps list and get Namespaces. All objects returned here must be treated as read-only.
type NamespaceNamespaceListerExpansion ¶ added in v0.1.1
type NamespaceNamespaceListerExpansion interface{}
NamespaceNamespaceListerExpansion allows custom methods to be added to NamespaceNamespaceLister.