Code refactoring for bpa operator
[icn.git] / cmd / bpa-operator / vendor / k8s.io / client-go / kubernetes / typed / apps / v1 / apps_client.go
1 /*
2 Copyright The Kubernetes Authors.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8     http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 */
16
17 // Code generated by client-gen. DO NOT EDIT.
18
19 package v1
20
21 import (
22         v1 "k8s.io/api/apps/v1"
23         serializer "k8s.io/apimachinery/pkg/runtime/serializer"
24         "k8s.io/client-go/kubernetes/scheme"
25         rest "k8s.io/client-go/rest"
26 )
27
28 type AppsV1Interface interface {
29         RESTClient() rest.Interface
30         ControllerRevisionsGetter
31         DaemonSetsGetter
32         DeploymentsGetter
33         ReplicaSetsGetter
34         StatefulSetsGetter
35 }
36
37 // AppsV1Client is used to interact with features provided by the apps group.
38 type AppsV1Client struct {
39         restClient rest.Interface
40 }
41
42 func (c *AppsV1Client) ControllerRevisions(namespace string) ControllerRevisionInterface {
43         return newControllerRevisions(c, namespace)
44 }
45
46 func (c *AppsV1Client) DaemonSets(namespace string) DaemonSetInterface {
47         return newDaemonSets(c, namespace)
48 }
49
50 func (c *AppsV1Client) Deployments(namespace string) DeploymentInterface {
51         return newDeployments(c, namespace)
52 }
53
54 func (c *AppsV1Client) ReplicaSets(namespace string) ReplicaSetInterface {
55         return newReplicaSets(c, namespace)
56 }
57
58 func (c *AppsV1Client) StatefulSets(namespace string) StatefulSetInterface {
59         return newStatefulSets(c, namespace)
60 }
61
62 // NewForConfig creates a new AppsV1Client for the given config.
63 func NewForConfig(c *rest.Config) (*AppsV1Client, error) {
64         config := *c
65         if err := setConfigDefaults(&config); err != nil {
66                 return nil, err
67         }
68         client, err := rest.RESTClientFor(&config)
69         if err != nil {
70                 return nil, err
71         }
72         return &AppsV1Client{client}, nil
73 }
74
75 // NewForConfigOrDie creates a new AppsV1Client for the given config and
76 // panics if there is an error in the config.
77 func NewForConfigOrDie(c *rest.Config) *AppsV1Client {
78         client, err := NewForConfig(c)
79         if err != nil {
80                 panic(err)
81         }
82         return client
83 }
84
85 // New creates a new AppsV1Client for the given RESTClient.
86 func New(c rest.Interface) *AppsV1Client {
87         return &AppsV1Client{c}
88 }
89
90 func setConfigDefaults(config *rest.Config) error {
91         gv := v1.SchemeGroupVersion
92         config.GroupVersion = &gv
93         config.APIPath = "/apis"
94         config.NegotiatedSerializer = serializer.DirectCodecFactory{CodecFactory: scheme.Codecs}
95
96         if config.UserAgent == "" {
97                 config.UserAgent = rest.DefaultKubernetesUserAgent()
98         }
99
100         return nil
101 }
102
103 // RESTClient returns a RESTClient that is used to communicate
104 // with API server by this client implementation.
105 func (c *AppsV1Client) RESTClient() rest.Interface {
106         if c == nil {
107                 return nil
108         }
109         return c.restClient
110 }