Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EventGetter ¶
type EventGetter interface {
Event() EventInterface
}
type EventInterface ¶
type EventInterface interface { Create(ctx context.Context, event *meta.Event, opts meta.CreateOptions) (*meta.Event, error) Update(ctx context.Context, event *meta.Event, opts meta.UpdateOptions) (*meta.Event, error) Delete(ctx context.Context, name string, opts meta.DeleteOptions) error DeleteCollection(ctx context.Context, opts meta.DeleteOptions, listOpts meta.ListOptions) error Get(ctx context.Context, name string, opts meta.GetOptions) (*meta.Event, error) List(ctx context.Context, opts meta.ListOptions) (*meta.EventList, error) Watch(ctx context.Context, opts meta.ListOptions) (watch.Interface, error) Patch(ctx context.Context, name string, pt string, data []byte, opts meta.PatchOptions, subresources ...string) (result *meta.Event, err error) }
type EventsV1Client ¶
type EventsV1Client struct {
// contains filtered or unexported fields
}
EventsV1Client is used to interact with features provided by the apps group.
func New ¶
func New(c rest.Interface) *EventsV1Client
New creates a new EventsV1Client for the given RESTClient.
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*EventsV1Client, error)
NewForConfig creates a new EventsV1Client for the given config. NewForConfig is equivalent to NewForConfigAndClient(c, httpClient), where httpClient was generated with rest.HTTPClientFor(c).
func NewForConfigAndClient ¶
NewForConfigAndClient creates a new EventsV1Client for the given config and http client. Note the http client provided takes precedence over the configured transport values.
func NewForConfigOrDie ¶
func NewForConfigOrDie(c *rest.Config) *EventsV1Client
NewForConfigOrDie creates a new EventsV1Client for the given config and panics if there is an error in the config.
func (*EventsV1Client) Event ¶
func (c *EventsV1Client) Event() EventInterface
func (*EventsV1Client) RESTClient ¶
func (c *EventsV1Client) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
type EventsV1Interface ¶
type EventsV1Interface interface { RESTClient() rest.Interface EventGetter }