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 AcmeV1alpha2Client ¶
type AcmeV1alpha2Client struct {
// contains filtered or unexported fields
}
AcmeV1alpha2Client is used to interact with features provided by the acme.cert-manager.io group.
func New ¶
func New(c rest.Interface) *AcmeV1alpha2Client
New creates a new AcmeV1alpha2Client for the given RESTClient.
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*AcmeV1alpha2Client, error)
NewForConfig creates a new AcmeV1alpha2Client for the given config.
func NewForConfigOrDie ¶
func NewForConfigOrDie(c *rest.Config) *AcmeV1alpha2Client
NewForConfigOrDie creates a new AcmeV1alpha2Client for the given config and panics if there is an error in the config.
func (*AcmeV1alpha2Client) Challenges ¶
func (c *AcmeV1alpha2Client) Challenges(namespace string) ChallengeInterface
func (*AcmeV1alpha2Client) Orders ¶
func (c *AcmeV1alpha2Client) Orders(namespace string) OrderInterface
func (*AcmeV1alpha2Client) RESTClient ¶
func (c *AcmeV1alpha2Client) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
type AcmeV1alpha2Interface ¶
type AcmeV1alpha2Interface interface { RESTClient() rest.Interface ChallengesGetter OrdersGetter }
type ChallengeExpansion ¶
type ChallengeExpansion interface{}
type ChallengeInterface ¶
type ChallengeInterface interface { Create(*v1alpha2.Challenge) (*v1alpha2.Challenge, error) Update(*v1alpha2.Challenge) (*v1alpha2.Challenge, error) UpdateStatus(*v1alpha2.Challenge) (*v1alpha2.Challenge, error) Delete(name string, options *v1.DeleteOptions) error DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error Get(name string, options v1.GetOptions) (*v1alpha2.Challenge, error) List(opts v1.ListOptions) (*v1alpha2.ChallengeList, error) Watch(opts v1.ListOptions) (watch.Interface, error) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha2.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(*v1alpha2.Order) (*v1alpha2.Order, error) Update(*v1alpha2.Order) (*v1alpha2.Order, error) UpdateStatus(*v1alpha2.Order) (*v1alpha2.Order, error) Delete(name string, options *v1.DeleteOptions) error DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error Get(name string, options v1.GetOptions) (*v1alpha2.Order, error) List(opts v1.ListOptions) (*v1alpha2.OrderList, error) Watch(opts v1.ListOptions) (watch.Interface, error) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha2.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.