Documentation ¶
Overview ¶
This package has the automatically generated typed clients.
Index ¶
- type BindingExpansion
- type BindingInterface
- type BindingsGetter
- type BrokerExpansion
- type BrokerInterface
- type BrokersGetter
- type InstanceExpansion
- type InstanceInterface
- type InstancesGetter
- type ServiceClassExpansion
- type ServiceClassInterface
- type ServiceClassesGetter
- type ServicecatalogClient
- func (c *ServicecatalogClient) Bindings(namespace string) BindingInterface
- func (c *ServicecatalogClient) Brokers() BrokerInterface
- func (c *ServicecatalogClient) Instances(namespace string) InstanceInterface
- func (c *ServicecatalogClient) RESTClient() rest.Interface
- func (c *ServicecatalogClient) ServiceClasses() ServiceClassInterface
- type ServicecatalogInterface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BindingExpansion ¶
type BindingExpansion interface{}
type BindingInterface ¶
type BindingInterface interface { Create(*servicecatalog.Binding) (*servicecatalog.Binding, error) Update(*servicecatalog.Binding) (*servicecatalog.Binding, error) UpdateStatus(*servicecatalog.Binding) (*servicecatalog.Binding, error) Delete(name string, options *v1.DeleteOptions) error DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error Get(name string, options v1.GetOptions) (*servicecatalog.Binding, error) List(opts v1.ListOptions) (*servicecatalog.BindingList, error) Watch(opts v1.ListOptions) (watch.Interface, error) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *servicecatalog.Binding, err error) BindingExpansion }
BindingInterface has methods to work with Binding resources.
type BindingsGetter ¶
type BindingsGetter interface {
Bindings(namespace string) BindingInterface
}
BindingsGetter has a method to return a BindingInterface. A group's client should implement this interface.
type BrokerExpansion ¶
type BrokerExpansion interface{}
type BrokerInterface ¶
type BrokerInterface interface { Create(*servicecatalog.Broker) (*servicecatalog.Broker, error) Update(*servicecatalog.Broker) (*servicecatalog.Broker, error) UpdateStatus(*servicecatalog.Broker) (*servicecatalog.Broker, error) Delete(name string, options *v1.DeleteOptions) error DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error Get(name string, options v1.GetOptions) (*servicecatalog.Broker, error) List(opts v1.ListOptions) (*servicecatalog.BrokerList, error) Watch(opts v1.ListOptions) (watch.Interface, error) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *servicecatalog.Broker, err error) BrokerExpansion }
BrokerInterface has methods to work with Broker resources.
type BrokersGetter ¶
type BrokersGetter interface {
Brokers() BrokerInterface
}
BrokersGetter has a method to return a BrokerInterface. A group's client should implement this interface.
type InstanceExpansion ¶
type InstanceExpansion interface{}
type InstanceInterface ¶
type InstanceInterface interface { Create(*servicecatalog.Instance) (*servicecatalog.Instance, error) Update(*servicecatalog.Instance) (*servicecatalog.Instance, error) UpdateStatus(*servicecatalog.Instance) (*servicecatalog.Instance, error) Delete(name string, options *v1.DeleteOptions) error DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error Get(name string, options v1.GetOptions) (*servicecatalog.Instance, error) List(opts v1.ListOptions) (*servicecatalog.InstanceList, error) Watch(opts v1.ListOptions) (watch.Interface, error) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *servicecatalog.Instance, err error) InstanceExpansion }
InstanceInterface has methods to work with Instance resources.
type InstancesGetter ¶
type InstancesGetter interface {
Instances(namespace string) InstanceInterface
}
InstancesGetter has a method to return a InstanceInterface. A group's client should implement this interface.
type ServiceClassExpansion ¶
type ServiceClassExpansion interface{}
type ServiceClassInterface ¶
type ServiceClassInterface interface { Create(*servicecatalog.ServiceClass) (*servicecatalog.ServiceClass, error) Update(*servicecatalog.ServiceClass) (*servicecatalog.ServiceClass, error) Delete(name string, options *v1.DeleteOptions) error DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error Get(name string, options v1.GetOptions) (*servicecatalog.ServiceClass, error) List(opts v1.ListOptions) (*servicecatalog.ServiceClassList, error) Watch(opts v1.ListOptions) (watch.Interface, error) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *servicecatalog.ServiceClass, err error) ServiceClassExpansion }
ServiceClassInterface has methods to work with ServiceClass resources.
type ServiceClassesGetter ¶
type ServiceClassesGetter interface {
ServiceClasses() ServiceClassInterface
}
ServiceClassesGetter has a method to return a ServiceClassInterface. A group's client should implement this interface.
type ServicecatalogClient ¶
type ServicecatalogClient struct {
// contains filtered or unexported fields
}
ServicecatalogClient is used to interact with features provided by the servicecatalog.k8s.io group.
func New ¶
func New(c rest.Interface) *ServicecatalogClient
New creates a new ServicecatalogClient for the given RESTClient.
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*ServicecatalogClient, error)
NewForConfig creates a new ServicecatalogClient for the given config.
func NewForConfigOrDie ¶
func NewForConfigOrDie(c *rest.Config) *ServicecatalogClient
NewForConfigOrDie creates a new ServicecatalogClient for the given config and panics if there is an error in the config.
func (*ServicecatalogClient) Bindings ¶
func (c *ServicecatalogClient) Bindings(namespace string) BindingInterface
func (*ServicecatalogClient) Brokers ¶
func (c *ServicecatalogClient) Brokers() BrokerInterface
func (*ServicecatalogClient) Instances ¶
func (c *ServicecatalogClient) Instances(namespace string) InstanceInterface
func (*ServicecatalogClient) RESTClient ¶
func (c *ServicecatalogClient) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
func (*ServicecatalogClient) ServiceClasses ¶
func (c *ServicecatalogClient) ServiceClasses() ServiceClassInterface
type ServicecatalogInterface ¶
type ServicecatalogInterface interface { RESTClient() rest.Interface BindingsGetter BrokersGetter InstancesGetter ServiceClassesGetter }