Documentation ¶
Index ¶
- Constants
- type Client
- func (c *Client) Create(ingress *edgev1beta1.Ingress) (*edgev1beta1.Ingress, error)
- func (c *Client) Delete(name string, options *metav1.DeleteOptions) error
- func (c *Client) Exists(name string, opts metav1.GetOptions) (bool, error)
- func (c *Client) Get(name string, opts metav1.GetOptions) (*edgev1beta1.Ingress, error)
- func (c *Client) List(opts metav1.ListOptions) (*edgev1beta1.IngressList, error)
- func (c *Client) Update(ingress *edgev1beta1.Ingress) (*edgev1beta1.Ingress, error)
- func (c *Client) Watch(opts metav1.ListOptions) (watch.Interface, error)
- type Interface
Constants ¶
View Source
const Kind = "Ingress"
Kind of object this client handles.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
Client for interacting with Ingress objects.
func (*Client) Create ¶
func (c *Client) Create(ingress *edgev1beta1.Ingress) (*edgev1beta1.Ingress, error)
Create a Ingress.
func (*Client) Delete ¶
func (c *Client) Delete(name string, options *metav1.DeleteOptions) error
Delete a Ingress.
func (*Client) Get ¶
func (c *Client) Get(name string, opts metav1.GetOptions) (*edgev1beta1.Ingress, error)
Get a Ingress.
func (*Client) List ¶
func (c *Client) List(opts metav1.ListOptions) (*edgev1beta1.IngressList, error)
List all Ingresses.
func (*Client) Update ¶
func (c *Client) Update(ingress *edgev1beta1.Ingress) (*edgev1beta1.Ingress, error)
Update a Ingress.
type Interface ¶
type Interface interface { List(opts metav1.ListOptions) (*edgev1beta1.IngressList, error) Get(name string, opts metav1.GetOptions) (*edgev1beta1.Ingress, error) Exists(name string, opts metav1.GetOptions) (bool, error) Create(*edgev1beta1.Ingress) (*edgev1beta1.Ingress, error) Update(*edgev1beta1.Ingress) (*edgev1beta1.Ingress, error) Delete(name string, opts *metav1.DeleteOptions) error Watch(opts metav1.ListOptions) (watch.Interface, error) }
Interface declares interactions with the Ingress objects.
Click to show internal directories.
Click to hide internal directories.