Documentation ¶
Overview ¶
This package has the automatically generated typed clients.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterQueueExpansion ¶
type ClusterQueueExpansion interface{}
type ClusterQueueInterface ¶
type ClusterQueueInterface interface { Create(ctx context.Context, clusterQueue *v1alpha1.ClusterQueue, opts v1.CreateOptions) (*v1alpha1.ClusterQueue, error) Update(ctx context.Context, clusterQueue *v1alpha1.ClusterQueue, opts v1.UpdateOptions) (*v1alpha1.ClusterQueue, error) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ClusterQueue, error) List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ClusterQueueList, error) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ClusterQueue, err error) Apply(ctx context.Context, clusterQueue *visibilityv1alpha1.ClusterQueueApplyConfiguration, opts v1.ApplyOptions) (result *v1alpha1.ClusterQueue, err error) GetPendingWorkloadsSummary(ctx context.Context, clusterQueueName string, options v1.GetOptions) (*v1alpha1.PendingWorkloadsSummary, error) ClusterQueueExpansion }
ClusterQueueInterface has methods to work with ClusterQueue resources.
type ClusterQueuesGetter ¶
type ClusterQueuesGetter interface {
ClusterQueues() ClusterQueueInterface
}
ClusterQueuesGetter has a method to return a ClusterQueueInterface. A group's client should implement this interface.
type LocalQueueExpansion ¶
type LocalQueueExpansion interface{}
type LocalQueueInterface ¶
type LocalQueueInterface interface { Create(ctx context.Context, localQueue *v1alpha1.LocalQueue, opts v1.CreateOptions) (*v1alpha1.LocalQueue, error) Update(ctx context.Context, localQueue *v1alpha1.LocalQueue, opts v1.UpdateOptions) (*v1alpha1.LocalQueue, error) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.LocalQueue, error) List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.LocalQueueList, error) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.LocalQueue, err error) Apply(ctx context.Context, localQueue *visibilityv1alpha1.LocalQueueApplyConfiguration, opts v1.ApplyOptions) (result *v1alpha1.LocalQueue, err error) GetPendingWorkloadsSummary(ctx context.Context, localQueueName string, options v1.GetOptions) (*v1alpha1.PendingWorkloadsSummary, error) LocalQueueExpansion }
LocalQueueInterface has methods to work with LocalQueue resources.
type LocalQueuesGetter ¶
type LocalQueuesGetter interface {
LocalQueues(namespace string) LocalQueueInterface
}
LocalQueuesGetter has a method to return a LocalQueueInterface. A group's client should implement this interface.
type VisibilityV1alpha1Client ¶
type VisibilityV1alpha1Client struct {
// contains filtered or unexported fields
}
VisibilityV1alpha1Client is used to interact with features provided by the visibility.kueue.x-k8s.io group.
func New ¶
func New(c rest.Interface) *VisibilityV1alpha1Client
New creates a new VisibilityV1alpha1Client for the given RESTClient.
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*VisibilityV1alpha1Client, error)
NewForConfig creates a new VisibilityV1alpha1Client 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 VisibilityV1alpha1Client 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) *VisibilityV1alpha1Client
NewForConfigOrDie creates a new VisibilityV1alpha1Client for the given config and panics if there is an error in the config.
func (*VisibilityV1alpha1Client) ClusterQueues ¶
func (c *VisibilityV1alpha1Client) ClusterQueues() ClusterQueueInterface
func (*VisibilityV1alpha1Client) LocalQueues ¶
func (c *VisibilityV1alpha1Client) LocalQueues(namespace string) LocalQueueInterface
func (*VisibilityV1alpha1Client) RESTClient ¶
func (c *VisibilityV1alpha1Client) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
type VisibilityV1alpha1Interface ¶
type VisibilityV1alpha1Interface interface { RESTClient() rest.Interface ClusterQueuesGetter LocalQueuesGetter }