blob: de8864e22abec1d5fdb23ea8ab8df30a4d1fe00a [file] [log] [blame]
Zack Williamse940c7a2019-08-21 14:25:39 -07001/*
2Copyright The Kubernetes Authors.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17// Code generated by client-gen. DO NOT EDIT.
18
19package v1
20
21import (
22 v1 "k8s.io/api/authentication/v1"
Zack Williamse940c7a2019-08-21 14:25:39 -070023 "k8s.io/client-go/kubernetes/scheme"
24 rest "k8s.io/client-go/rest"
25)
26
27type AuthenticationV1Interface interface {
28 RESTClient() rest.Interface
29 TokenReviewsGetter
30}
31
32// AuthenticationV1Client is used to interact with features provided by the authentication.k8s.io group.
33type AuthenticationV1Client struct {
34 restClient rest.Interface
35}
36
37func (c *AuthenticationV1Client) TokenReviews() TokenReviewInterface {
38 return newTokenReviews(c)
39}
40
41// NewForConfig creates a new AuthenticationV1Client for the given config.
42func NewForConfig(c *rest.Config) (*AuthenticationV1Client, error) {
43 config := *c
44 if err := setConfigDefaults(&config); err != nil {
45 return nil, err
46 }
47 client, err := rest.RESTClientFor(&config)
48 if err != nil {
49 return nil, err
50 }
51 return &AuthenticationV1Client{client}, nil
52}
53
54// NewForConfigOrDie creates a new AuthenticationV1Client for the given config and
55// panics if there is an error in the config.
56func NewForConfigOrDie(c *rest.Config) *AuthenticationV1Client {
57 client, err := NewForConfig(c)
58 if err != nil {
59 panic(err)
60 }
61 return client
62}
63
64// New creates a new AuthenticationV1Client for the given RESTClient.
65func New(c rest.Interface) *AuthenticationV1Client {
66 return &AuthenticationV1Client{c}
67}
68
69func setConfigDefaults(config *rest.Config) error {
70 gv := v1.SchemeGroupVersion
71 config.GroupVersion = &gv
72 config.APIPath = "/apis"
David Bainbridge86971522019-09-26 22:09:39 +000073 config.NegotiatedSerializer = scheme.Codecs.WithoutConversion()
Zack Williamse940c7a2019-08-21 14:25:39 -070074
75 if config.UserAgent == "" {
76 config.UserAgent = rest.DefaultKubernetesUserAgent()
77 }
78
79 return nil
80}
81
82// RESTClient returns a RESTClient that is used to communicate
83// with API server by this client implementation.
84func (c *AuthenticationV1Client) RESTClient() rest.Interface {
85 if c == nil {
86 return nil
87 }
88 return c.restClient
89}