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 AcmeV1Client ¶
type AcmeV1Client struct {
// contains filtered or unexported fields
}
AcmeV1Client is used to interact with features provided by the acme.cert-manager.io group.
func New ¶
func New(c rest.Interface) *AcmeV1Client
New creates a new AcmeV1Client for the given RESTClient.
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*AcmeV1Client, error)
NewForConfig creates a new AcmeV1Client 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 AcmeV1Client 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) *AcmeV1Client
NewForConfigOrDie creates a new AcmeV1Client for the given config and panics if there is an error in the config.
func (*AcmeV1Client) Challenges ¶
func (c *AcmeV1Client) Challenges(namespace string) ChallengeInterface
func (*AcmeV1Client) Orders ¶
func (c *AcmeV1Client) Orders(namespace string) OrderInterface
func (*AcmeV1Client) RESTClient ¶
func (c *AcmeV1Client) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
type AcmeV1Interface ¶
type AcmeV1Interface interface { RESTClient() rest.Interface ChallengesGetter OrdersGetter }
type ChallengeExpansion ¶
type ChallengeExpansion interface{}
type ChallengeInterface ¶
type ChallengeInterface interface { Create(ctx context.Context, challenge *v1.Challenge, opts metav1.CreateOptions) (*v1.Challenge, error) Update(ctx context.Context, challenge *v1.Challenge, opts metav1.UpdateOptions) (*v1.Challenge, error) UpdateStatus(ctx context.Context, challenge *v1.Challenge, opts metav1.UpdateOptions) (*v1.Challenge, 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.Challenge, error) List(ctx context.Context, opts metav1.ListOptions) (*v1.ChallengeList, 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.Challenge, err error) ChallengeExpansion }
ChallengeInterface has methods to work with Challenge resources.
type ChallengesGetter ¶
type ChallengesGetter interface {
Challenges(namespace string) ChallengeInterface
}
ChallengesGetter has a method to return a ChallengeInterface. A group's client should implement this interface.
type OrderExpansion ¶
type OrderExpansion interface{}
type OrderInterface ¶
type OrderInterface interface { Create(ctx context.Context, order *v1.Order, opts metav1.CreateOptions) (*v1.Order, error) Update(ctx context.Context, order *v1.Order, opts metav1.UpdateOptions) (*v1.Order, error) UpdateStatus(ctx context.Context, order *v1.Order, opts metav1.UpdateOptions) (*v1.Order, 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.Order, error) List(ctx context.Context, opts metav1.ListOptions) (*v1.OrderList, 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.Order, err error) OrderExpansion }
OrderInterface has methods to work with Order resources.
type OrdersGetter ¶
type OrdersGetter interface {
Orders(namespace string) OrderInterface
}
OrdersGetter has a method to return a OrderInterface. A group's client should implement this interface.