Documentation ¶
Index ¶
- type CertificateInterface
- type CertificateRequestInterface
- type Client
- func (c *Client) CertificateRequests(namespace string) CertificateRequestInterface
- func (c *Client) Certificates(namespace string) CertificateInterface
- func (c *Client) CloudFrontInvalidations(namespace string) CloudFrontInvalidationInterface
- func (c *Client) CloudFronts(namespace string) CloudFrontInterface
- type ClientInterface
- type CloudFrontInterface
- type CloudFrontInvalidationInterface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CertificateInterface ¶
type CertificateInterface interface { List(opts metav1.ListOptions) (*awsv1beta1.CertificateList, error) Get(name string, options metav1.GetOptions) (*awsv1beta1.Certificate, error) Create(*awsv1beta1.Certificate) (*awsv1beta1.Certificate, error) Watch(opts metav1.ListOptions) (watch.Interface, error) }
CertificateInterface declares interactions with the Certificate objects.
type CertificateRequestInterface ¶
type CertificateRequestInterface interface { List(opts metav1.ListOptions) (*awsv1beta1.CertificateRequestList, error) Get(name string, options metav1.GetOptions) (*awsv1beta1.CertificateRequest, error) Create(*awsv1beta1.CertificateRequest) (*awsv1beta1.CertificateRequest, error) Watch(opts metav1.ListOptions) (watch.Interface, error) }
CertificateRequestInterface declares interactions with the CertificateRequest objects.
type Client ¶
Client for interacting with Operator objects.
func NewForConfig ¶
NewForConfig returns a client for interacting with AWS objects.
func (*Client) CertificateRequests ¶
func (c *Client) CertificateRequests(namespace string) CertificateRequestInterface
CertificateRequests within a namespace.
func (*Client) Certificates ¶
func (c *Client) Certificates(namespace string) CertificateInterface
Certificates within a namespace.
func (*Client) CloudFrontInvalidations ¶
func (c *Client) CloudFrontInvalidations(namespace string) CloudFrontInvalidationInterface
CloudFrontInvalidations within a namespace.
func (*Client) CloudFronts ¶
func (c *Client) CloudFronts(namespace string) CloudFrontInterface
CloudFronts within a namespace.
type ClientInterface ¶
type ClientInterface interface { Certificates(namespace string) CertificateInterface CertificateRequests(namespace string) CertificateRequestInterface CloudFronts(namespace string) CloudFrontInterface CloudFrontInvalidations(namespace string) CloudFrontInvalidationInterface }
ClientInterface for interacting with AWS subclients.
type CloudFrontInterface ¶
type CloudFrontInterface interface { List(opts metav1.ListOptions) (*awsv1beta1.CloudFrontList, error) Get(name string, options metav1.GetOptions) (*awsv1beta1.CloudFront, error) Create(*awsv1beta1.CloudFront) (*awsv1beta1.CloudFront, error) Watch(opts metav1.ListOptions) (watch.Interface, error) }
CloudFrontInterface declares interactions with the CloudFront objects.
type CloudFrontInvalidationInterface ¶
type CloudFrontInvalidationInterface interface { List(opts metav1.ListOptions) (*awsv1beta1.CloudFrontInvalidationList, error) Get(name string, options metav1.GetOptions) (*awsv1beta1.CloudFrontInvalidation, error) Create(*awsv1beta1.CloudFrontInvalidation) (*awsv1beta1.CloudFrontInvalidation, error) Watch(opts metav1.ListOptions) (watch.Interface, error) }
CloudFrontInvalidationInterface declares interactions with the CloudFrontInvalidation objects.