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