Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DoguInterface ¶
type DoguInterface interface {
Create(ctx context.Context, dogu *v2.Dogu, opts metav1.CreateOptions) (*v2.Dogu, error)
Update(ctx context.Context, dogu *v2.Dogu, opts metav1.UpdateOptions) (*v2.Dogu, error)
UpdateSpecWithRetry(ctx context.Context, dogu *v2.Dogu, modifySpecFn func(spec v2.DoguSpec) v2.DoguSpec, opts metav1.UpdateOptions) (result *v2.Dogu, err error)
UpdateStatus(ctx context.Context, dogu *v2.Dogu, opts metav1.UpdateOptions) (*v2.Dogu, error)
UpdateStatusWithRetry(ctx context.Context, dogu *v2.Dogu, modifyStatusFn func(v2.DoguStatus) v2.DoguStatus, opts metav1.UpdateOptions) (result *v2.Dogu, err error)
Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error
Get(ctx context.Context, name string, opts metav1.GetOptions) (*v2.Dogu, error)
List(ctx context.Context, opts metav1.ListOptions) (*v2.DoguList, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v2.Dogu, err error)
}
type DoguRestartInterface ¶
type DoguRestartInterface interface {
Create(ctx context.Context, dogu *v2.DoguRestart, opts metav1.CreateOptions) (*v2.DoguRestart, error)
Update(ctx context.Context, dogu *v2.DoguRestart, opts metav1.UpdateOptions) (*v2.DoguRestart, error)
UpdateSpecWithRetry(ctx context.Context, doguRestart *v2.DoguRestart, modifySpecFn func(spec v2.DoguRestartSpec) v2.DoguRestartSpec, opts metav1.UpdateOptions) (result *v2.DoguRestart, err error)
UpdateStatus(ctx context.Context, dogu *v2.DoguRestart, opts metav1.UpdateOptions) (*v2.DoguRestart, error)
UpdateStatusWithRetry(ctx context.Context, doguRestart *v2.DoguRestart, modifyStatusFn func(v2.DoguRestartStatus) v2.DoguRestartStatus, opts metav1.UpdateOptions) (result *v2.DoguRestart, err error)
Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error
Get(ctx context.Context, name string, opts metav1.GetOptions) (*v2.DoguRestart, error)
List(ctx context.Context, opts metav1.ListOptions) (*v2.DoguRestartList, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v2.DoguRestart, err error)
}
type EcoSystemV2Client ¶
type EcoSystemV2Client struct {
// contains filtered or unexported fields
}
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*EcoSystemV2Client, error)
func (*EcoSystemV2Client) DoguRestarts ¶
func (c *EcoSystemV2Client) DoguRestarts(namespace string) DoguRestartInterface
func (*EcoSystemV2Client) Dogus ¶
func (c *EcoSystemV2Client) Dogus(namespace string) DoguInterface
type EcoSystemV2Interface ¶
type EcoSystemV2Interface interface {
Dogus(namespace string) DoguInterface
DoguRestarts(namespace string) DoguRestartInterface
}
Click to show internal directories.
Click to hide internal directories.