Documentation ¶
Overview ¶
This package has the automatically generated typed clients.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterCIDRExpansion ¶
type ClusterCIDRExpansion interface{}
type ClusterCIDRInterface ¶
type ClusterCIDRInterface interface { Create(ctx context.Context, clusterCIDR *v1alpha1.ClusterCIDR, opts v1.CreateOptions) (*v1alpha1.ClusterCIDR, error) Update(ctx context.Context, clusterCIDR *v1alpha1.ClusterCIDR, opts v1.UpdateOptions) (*v1alpha1.ClusterCIDR, error) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ClusterCIDR, error) List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ClusterCIDRList, error) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ClusterCIDR, err error) Apply(ctx context.Context, clusterCIDR *networkingv1alpha1.ClusterCIDRApplyConfiguration, opts v1.ApplyOptions) (result *v1alpha1.ClusterCIDR, err error) ClusterCIDRExpansion }
ClusterCIDRInterface has methods to work with ClusterCIDR resources.
type ClusterCIDRsGetter ¶
type ClusterCIDRsGetter interface {
ClusterCIDRs() ClusterCIDRInterface
}
ClusterCIDRsGetter has a method to return a ClusterCIDRInterface. A group's client should implement this interface.
type IPAddressExpansion ¶ added in v0.27.0
type IPAddressExpansion interface{}
type IPAddressInterface ¶ added in v0.27.0
type IPAddressInterface interface { Create(ctx context.Context, iPAddress *v1alpha1.IPAddress, opts v1.CreateOptions) (*v1alpha1.IPAddress, error) Update(ctx context.Context, iPAddress *v1alpha1.IPAddress, opts v1.UpdateOptions) (*v1alpha1.IPAddress, error) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.IPAddress, error) List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.IPAddressList, error) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.IPAddress, err error) Apply(ctx context.Context, iPAddress *networkingv1alpha1.IPAddressApplyConfiguration, opts v1.ApplyOptions) (result *v1alpha1.IPAddress, err error) IPAddressExpansion }
IPAddressInterface has methods to work with IPAddress resources.
type IPAddressesGetter ¶ added in v0.27.0
type IPAddressesGetter interface {
IPAddresses() IPAddressInterface
}
IPAddressesGetter has a method to return a IPAddressInterface. A group's client should implement this interface.
type NetworkingV1alpha1Client ¶
type NetworkingV1alpha1Client struct {
// contains filtered or unexported fields
}
NetworkingV1alpha1Client is used to interact with features provided by the networking.k8s.io group.
func New ¶
func New(c rest.Interface) *NetworkingV1alpha1Client
New creates a new NetworkingV1alpha1Client for the given RESTClient.
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*NetworkingV1alpha1Client, error)
NewForConfig creates a new NetworkingV1alpha1Client for the given config. NewForConfig is equivalent to NewForConfigAndClient(c, httpClient), where httpClient was generated with rest.HTTPClientFor(c).
func NewForConfigAndClient ¶
NewForConfigAndClient creates a new NetworkingV1alpha1Client for the given config and http client. Note the http client provided takes precedence over the configured transport values.
func NewForConfigOrDie ¶
func NewForConfigOrDie(c *rest.Config) *NetworkingV1alpha1Client
NewForConfigOrDie creates a new NetworkingV1alpha1Client for the given config and panics if there is an error in the config.
func (*NetworkingV1alpha1Client) ClusterCIDRs ¶
func (c *NetworkingV1alpha1Client) ClusterCIDRs() ClusterCIDRInterface
func (*NetworkingV1alpha1Client) IPAddresses ¶ added in v0.27.0
func (c *NetworkingV1alpha1Client) IPAddresses() IPAddressInterface
func (*NetworkingV1alpha1Client) RESTClient ¶
func (c *NetworkingV1alpha1Client) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
type NetworkingV1alpha1Interface ¶
type NetworkingV1alpha1Interface interface { RESTClient() rest.Interface ClusterCIDRsGetter IPAddressesGetter }