Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
func (*Client) Configurations ¶
func (c *Client) Configurations() ConfigurationInterface
func (*Client) Stacks ¶
func (c *Client) Stacks() StackInterface
func (*Client) Versions ¶
func (c *Client) Versions() VersionsInterface
type ConfigurationInterface ¶
type ConfigurationInterface interface { List(ctx context.Context, opts metav1.ListOptions) (*v1beta2.ConfigurationList, error) Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta2.Configuration, error) Create(ctx context.Context, configuration *v1beta2.Configuration) (*v1beta2.Configuration, error) Update(ctx context.Context, configuration *v1beta2.Configuration) (*v1beta2.Configuration, error) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) Delete(ctx context.Context, name string) error }
type StackInterface ¶
type StackInterface interface { List(ctx context.Context, opts metav1.ListOptions) (*v1beta2.StackList, error) Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta2.Stack, error) Create(ctx context.Context, stack *v1beta2.Stack) (*v1beta2.Stack, error) Update(ctx context.Context, stack *v1beta2.Stack) (*v1beta2.Stack, error) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) Delete(ctx context.Context, name string) error }
type VersionsInterface ¶
type VersionsInterface interface { List(ctx context.Context, opts metav1.ListOptions) (*v1beta2.VersionsList, error) Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta2.Versions, error) Create(ctx context.Context, versions *v1beta2.Versions) (*v1beta2.Versions, error) Update(ctx context.Context, versions *v1beta2.Versions) (*v1beta2.Versions, error) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) Delete(ctx context.Context, name string) error }
Click to show internal directories.
Click to hide internal directories.