2022-03-01 01:58:48 +00:00
|
|
|
// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
2021-02-09 15:46:38 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
// Code generated by client-gen. DO NOT EDIT.
|
|
|
|
|
|
|
|
package versioned
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2022-03-01 01:58:48 +00:00
|
|
|
"net/http"
|
2021-02-09 15:46:38 +00:00
|
|
|
|
|
|
|
configv1alpha1 "go.pinniped.dev/generated/latest/client/supervisor/clientset/versioned/typed/config/v1alpha1"
|
|
|
|
idpv1alpha1 "go.pinniped.dev/generated/latest/client/supervisor/clientset/versioned/typed/idp/v1alpha1"
|
2022-06-03 23:22:15 +00:00
|
|
|
oauthv1alpha1 "go.pinniped.dev/generated/latest/client/supervisor/clientset/versioned/typed/oauth/v1alpha1"
|
2021-02-09 15:46:38 +00:00
|
|
|
discovery "k8s.io/client-go/discovery"
|
|
|
|
rest "k8s.io/client-go/rest"
|
|
|
|
flowcontrol "k8s.io/client-go/util/flowcontrol"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Interface interface {
|
|
|
|
Discovery() discovery.DiscoveryInterface
|
|
|
|
ConfigV1alpha1() configv1alpha1.ConfigV1alpha1Interface
|
|
|
|
IDPV1alpha1() idpv1alpha1.IDPV1alpha1Interface
|
2022-06-03 23:22:15 +00:00
|
|
|
OauthV1alpha1() oauthv1alpha1.OauthV1alpha1Interface
|
2021-02-09 15:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clientset contains the clients for groups. Each group has exactly one
|
|
|
|
// version included in a Clientset.
|
|
|
|
type Clientset struct {
|
|
|
|
*discovery.DiscoveryClient
|
|
|
|
configV1alpha1 *configv1alpha1.ConfigV1alpha1Client
|
|
|
|
iDPV1alpha1 *idpv1alpha1.IDPV1alpha1Client
|
2022-06-03 23:22:15 +00:00
|
|
|
oauthV1alpha1 *oauthv1alpha1.OauthV1alpha1Client
|
2021-02-09 15:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ConfigV1alpha1 retrieves the ConfigV1alpha1Client
|
|
|
|
func (c *Clientset) ConfigV1alpha1() configv1alpha1.ConfigV1alpha1Interface {
|
|
|
|
return c.configV1alpha1
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDPV1alpha1 retrieves the IDPV1alpha1Client
|
|
|
|
func (c *Clientset) IDPV1alpha1() idpv1alpha1.IDPV1alpha1Interface {
|
|
|
|
return c.iDPV1alpha1
|
|
|
|
}
|
|
|
|
|
2022-06-03 23:22:15 +00:00
|
|
|
// OauthV1alpha1 retrieves the OauthV1alpha1Client
|
|
|
|
func (c *Clientset) OauthV1alpha1() oauthv1alpha1.OauthV1alpha1Interface {
|
|
|
|
return c.oauthV1alpha1
|
|
|
|
}
|
|
|
|
|
2021-02-09 15:46:38 +00:00
|
|
|
// Discovery retrieves the DiscoveryClient
|
|
|
|
func (c *Clientset) Discovery() discovery.DiscoveryInterface {
|
|
|
|
if c == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return c.DiscoveryClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewForConfig creates a new Clientset for the given config.
|
|
|
|
// If config's RateLimiter is not set and QPS and Burst are acceptable,
|
|
|
|
// NewForConfig will generate a rate-limiter in configShallowCopy.
|
2022-03-01 01:58:48 +00:00
|
|
|
// NewForConfig is equivalent to NewForConfigAndClient(c, httpClient),
|
|
|
|
// where httpClient was generated with rest.HTTPClientFor(c).
|
2021-02-09 15:46:38 +00:00
|
|
|
func NewForConfig(c *rest.Config) (*Clientset, error) {
|
|
|
|
configShallowCopy := *c
|
2022-03-01 01:58:48 +00:00
|
|
|
|
2022-06-06 23:01:26 +00:00
|
|
|
if configShallowCopy.UserAgent == "" {
|
|
|
|
configShallowCopy.UserAgent = rest.DefaultKubernetesUserAgent()
|
|
|
|
}
|
|
|
|
|
2022-03-01 01:58:48 +00:00
|
|
|
// share the transport between all clients
|
|
|
|
httpClient, err := rest.HTTPClientFor(&configShallowCopy)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return NewForConfigAndClient(&configShallowCopy, httpClient)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewForConfigAndClient creates a new Clientset for the given config and http client.
|
|
|
|
// Note the http client provided takes precedence over the configured transport values.
|
|
|
|
// If config's RateLimiter is not set and QPS and Burst are acceptable,
|
|
|
|
// NewForConfigAndClient will generate a rate-limiter in configShallowCopy.
|
|
|
|
func NewForConfigAndClient(c *rest.Config, httpClient *http.Client) (*Clientset, error) {
|
|
|
|
configShallowCopy := *c
|
2021-02-09 15:46:38 +00:00
|
|
|
if configShallowCopy.RateLimiter == nil && configShallowCopy.QPS > 0 {
|
|
|
|
if configShallowCopy.Burst <= 0 {
|
|
|
|
return nil, fmt.Errorf("burst is required to be greater than 0 when RateLimiter is not set and QPS is set to greater than 0")
|
|
|
|
}
|
|
|
|
configShallowCopy.RateLimiter = flowcontrol.NewTokenBucketRateLimiter(configShallowCopy.QPS, configShallowCopy.Burst)
|
|
|
|
}
|
2022-03-01 01:58:48 +00:00
|
|
|
|
2021-02-09 15:46:38 +00:00
|
|
|
var cs Clientset
|
|
|
|
var err error
|
2022-03-01 01:58:48 +00:00
|
|
|
cs.configV1alpha1, err = configv1alpha1.NewForConfigAndClient(&configShallowCopy, httpClient)
|
2021-02-09 15:46:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-03-01 01:58:48 +00:00
|
|
|
cs.iDPV1alpha1, err = idpv1alpha1.NewForConfigAndClient(&configShallowCopy, httpClient)
|
2021-02-09 15:46:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-06-03 23:22:15 +00:00
|
|
|
cs.oauthV1alpha1, err = oauthv1alpha1.NewForConfigAndClient(&configShallowCopy, httpClient)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-02-09 15:46:38 +00:00
|
|
|
|
2022-03-01 01:58:48 +00:00
|
|
|
cs.DiscoveryClient, err = discovery.NewDiscoveryClientForConfigAndClient(&configShallowCopy, httpClient)
|
2021-02-09 15:46:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &cs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewForConfigOrDie creates a new Clientset for the given config and
|
|
|
|
// panics if there is an error in the config.
|
|
|
|
func NewForConfigOrDie(c *rest.Config) *Clientset {
|
2022-03-01 01:58:48 +00:00
|
|
|
cs, err := NewForConfig(c)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return cs
|
2021-02-09 15:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// New creates a new Clientset for the given RESTClient.
|
|
|
|
func New(c rest.Interface) *Clientset {
|
|
|
|
var cs Clientset
|
|
|
|
cs.configV1alpha1 = configv1alpha1.New(c)
|
|
|
|
cs.iDPV1alpha1 = idpv1alpha1.New(c)
|
2022-06-03 23:22:15 +00:00
|
|
|
cs.oauthV1alpha1 = oauthv1alpha1.New(c)
|
2021-02-09 15:46:38 +00:00
|
|
|
|
|
|
|
cs.DiscoveryClient = discovery.NewDiscoveryClient(c)
|
|
|
|
return &cs
|
|
|
|
}
|