Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CertificateSigningRequestClusterInterface ¶
type CertificateSigningRequestClusterInterface interface { Cluster(logicalcluster.Path) certificatesv1beta1client.CertificateSigningRequestInterface List(ctx context.Context, opts metav1.ListOptions) (*certificatesv1beta1.CertificateSigningRequestList, error) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) }
CertificateSigningRequestClusterInterface can operate on CertificateSigningRequests across all clusters, or scope down to one cluster and return a certificatesv1beta1client.CertificateSigningRequestInterface.
type CertificateSigningRequestsClusterGetter ¶
type CertificateSigningRequestsClusterGetter interface {
CertificateSigningRequests() CertificateSigningRequestClusterInterface
}
CertificateSigningRequestsClusterGetter has a method to return a CertificateSigningRequestClusterInterface. A group's cluster client should implement this interface.
type CertificatesV1beta1ClusterClient ¶
type CertificatesV1beta1ClusterClient struct {
// contains filtered or unexported fields
}
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*CertificatesV1beta1ClusterClient, error)
NewForConfig creates a new CertificatesV1beta1ClusterClient for the given config. NewForConfig is equivalent to NewForConfigAndClient(c, httpClient), where httpClient was generated with rest.HTTPClientFor(c).
func NewForConfigAndClient ¶
func NewForConfigAndClient(c *rest.Config, h *http.Client) (*CertificatesV1beta1ClusterClient, error)
NewForConfigAndClient creates a new CertificatesV1beta1ClusterClient 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) *CertificatesV1beta1ClusterClient
NewForConfigOrDie creates a new CertificatesV1beta1ClusterClient for the given config and panics if there is an error in the config.
func (*CertificatesV1beta1ClusterClient) CertificateSigningRequests ¶
func (c *CertificatesV1beta1ClusterClient) CertificateSigningRequests() CertificateSigningRequestClusterInterface
func (*CertificatesV1beta1ClusterClient) Cluster ¶
func (c *CertificatesV1beta1ClusterClient) Cluster(clusterPath logicalcluster.Path) certificatesv1beta1.CertificatesV1beta1Interface
type CertificatesV1beta1ClusterInterface ¶
type CertificatesV1beta1ClusterInterface interface { CertificatesV1beta1ClusterScoper CertificateSigningRequestsClusterGetter }
type CertificatesV1beta1ClusterScoper ¶
type CertificatesV1beta1ClusterScoper interface {
Cluster(logicalcluster.Path) certificatesv1beta1.CertificatesV1beta1Interface
}