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 *v1.Dogu, opts metav1.CreateOptions) (*v1.Dogu, error)
Update(ctx context.Context, dogu *v1.Dogu, opts metav1.UpdateOptions) (*v1.Dogu, error)
UpdateSpecWithRetry(ctx context.Context, dogu *v1.Dogu, modifySpecFn func(spec v1.DoguSpec) v1.DoguSpec, opts metav1.UpdateOptions) (result *v1.Dogu, err error)
UpdateStatus(ctx context.Context, dogu *v1.Dogu, opts metav1.UpdateOptions) (*v1.Dogu, error)
UpdateStatusWithRetry(ctx context.Context, dogu *v1.Dogu, modifyStatusFn func(v1.DoguStatus) v1.DoguStatus, opts metav1.UpdateOptions) (result *v1.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) (*v1.Dogu, error)
List(ctx context.Context, opts metav1.ListOptions) (*v1.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 *v1.Dogu, err error)
}
type DoguRestartInterface ¶ added in v1.0.0
type DoguRestartInterface interface {
Create(ctx context.Context, dogu *v1.DoguRestart, opts metav1.CreateOptions) (*v1.DoguRestart, error)
Update(ctx context.Context, dogu *v1.DoguRestart, opts metav1.UpdateOptions) (*v1.DoguRestart, error)
UpdateSpecWithRetry(ctx context.Context, doguRestart *v1.DoguRestart, modifySpecFn func(spec v1.DoguRestartSpec) v1.DoguRestartSpec, opts metav1.UpdateOptions) (result *v1.DoguRestart, err error)
UpdateStatus(ctx context.Context, dogu *v1.DoguRestart, opts metav1.UpdateOptions) (*v1.DoguRestart, error)
UpdateStatusWithRetry(ctx context.Context, doguRestart *v1.DoguRestart, modifyStatusFn func(v1.DoguRestartStatus) v1.DoguRestartStatus, opts metav1.UpdateOptions) (result *v1.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) (*v1.DoguRestart, error)
List(ctx context.Context, opts metav1.ListOptions) (*v1.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 *v1.DoguRestart, err error)
}
type EcoSystemV1Alpha1Client ¶
type EcoSystemV1Alpha1Client struct {
// contains filtered or unexported fields
}
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*EcoSystemV1Alpha1Client, error)
func (*EcoSystemV1Alpha1Client) DoguRestarts ¶ added in v1.0.0
func (c *EcoSystemV1Alpha1Client) DoguRestarts(namespace string) DoguRestartInterface
func (*EcoSystemV1Alpha1Client) Dogus ¶
func (c *EcoSystemV1Alpha1Client) Dogus(namespace string) DoguInterface
type EcoSystemV1Alpha1Interface ¶
type EcoSystemV1Alpha1Interface interface {
Dogus(namespace string) DoguInterface
DoguRestarts(namespace string) DoguRestartInterface
}
Click to show internal directories.
Click to hide internal directories.