Remove BPA from Makefile
[icn.git] / cmd / bpa-operator / vendor / k8s.io / client-go / kubernetes / typed / autoscaling / v2beta1 / horizontalpodautoscaler.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 v2beta1
20
21 import (
22         "time"
23
24         v2beta1 "k8s.io/api/autoscaling/v2beta1"
25         v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
26         types "k8s.io/apimachinery/pkg/types"
27         watch "k8s.io/apimachinery/pkg/watch"
28         scheme "k8s.io/client-go/kubernetes/scheme"
29         rest "k8s.io/client-go/rest"
30 )
31
32 // HorizontalPodAutoscalersGetter has a method to return a HorizontalPodAutoscalerInterface.
33 // A group's client should implement this interface.
34 type HorizontalPodAutoscalersGetter interface {
35         HorizontalPodAutoscalers(namespace string) HorizontalPodAutoscalerInterface
36 }
37
38 // HorizontalPodAutoscalerInterface has methods to work with HorizontalPodAutoscaler resources.
39 type HorizontalPodAutoscalerInterface interface {
40         Create(*v2beta1.HorizontalPodAutoscaler) (*v2beta1.HorizontalPodAutoscaler, error)
41         Update(*v2beta1.HorizontalPodAutoscaler) (*v2beta1.HorizontalPodAutoscaler, error)
42         UpdateStatus(*v2beta1.HorizontalPodAutoscaler) (*v2beta1.HorizontalPodAutoscaler, error)
43         Delete(name string, options *v1.DeleteOptions) error
44         DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error
45         Get(name string, options v1.GetOptions) (*v2beta1.HorizontalPodAutoscaler, error)
46         List(opts v1.ListOptions) (*v2beta1.HorizontalPodAutoscalerList, error)
47         Watch(opts v1.ListOptions) (watch.Interface, error)
48         Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v2beta1.HorizontalPodAutoscaler, err error)
49         HorizontalPodAutoscalerExpansion
50 }
51
52 // horizontalPodAutoscalers implements HorizontalPodAutoscalerInterface
53 type horizontalPodAutoscalers struct {
54         client rest.Interface
55         ns     string
56 }
57
58 // newHorizontalPodAutoscalers returns a HorizontalPodAutoscalers
59 func newHorizontalPodAutoscalers(c *AutoscalingV2beta1Client, namespace string) *horizontalPodAutoscalers {
60         return &horizontalPodAutoscalers{
61                 client: c.RESTClient(),
62                 ns:     namespace,
63         }
64 }
65
66 // Get takes name of the horizontalPodAutoscaler, and returns the corresponding horizontalPodAutoscaler object, and an error if there is any.
67 func (c *horizontalPodAutoscalers) Get(name string, options v1.GetOptions) (result *v2beta1.HorizontalPodAutoscaler, err error) {
68         result = &v2beta1.HorizontalPodAutoscaler{}
69         err = c.client.Get().
70                 Namespace(c.ns).
71                 Resource("horizontalpodautoscalers").
72                 Name(name).
73                 VersionedParams(&options, scheme.ParameterCodec).
74                 Do().
75                 Into(result)
76         return
77 }
78
79 // List takes label and field selectors, and returns the list of HorizontalPodAutoscalers that match those selectors.
80 func (c *horizontalPodAutoscalers) List(opts v1.ListOptions) (result *v2beta1.HorizontalPodAutoscalerList, err error) {
81         var timeout time.Duration
82         if opts.TimeoutSeconds != nil {
83                 timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
84         }
85         result = &v2beta1.HorizontalPodAutoscalerList{}
86         err = c.client.Get().
87                 Namespace(c.ns).
88                 Resource("horizontalpodautoscalers").
89                 VersionedParams(&opts, scheme.ParameterCodec).
90                 Timeout(timeout).
91                 Do().
92                 Into(result)
93         return
94 }
95
96 // Watch returns a watch.Interface that watches the requested horizontalPodAutoscalers.
97 func (c *horizontalPodAutoscalers) Watch(opts v1.ListOptions) (watch.Interface, error) {
98         var timeout time.Duration
99         if opts.TimeoutSeconds != nil {
100                 timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
101         }
102         opts.Watch = true
103         return c.client.Get().
104                 Namespace(c.ns).
105                 Resource("horizontalpodautoscalers").
106                 VersionedParams(&opts, scheme.ParameterCodec).
107                 Timeout(timeout).
108                 Watch()
109 }
110
111 // Create takes the representation of a horizontalPodAutoscaler and creates it.  Returns the server's representation of the horizontalPodAutoscaler, and an error, if there is any.
112 func (c *horizontalPodAutoscalers) Create(horizontalPodAutoscaler *v2beta1.HorizontalPodAutoscaler) (result *v2beta1.HorizontalPodAutoscaler, err error) {
113         result = &v2beta1.HorizontalPodAutoscaler{}
114         err = c.client.Post().
115                 Namespace(c.ns).
116                 Resource("horizontalpodautoscalers").
117                 Body(horizontalPodAutoscaler).
118                 Do().
119                 Into(result)
120         return
121 }
122
123 // Update takes the representation of a horizontalPodAutoscaler and updates it. Returns the server's representation of the horizontalPodAutoscaler, and an error, if there is any.
124 func (c *horizontalPodAutoscalers) Update(horizontalPodAutoscaler *v2beta1.HorizontalPodAutoscaler) (result *v2beta1.HorizontalPodAutoscaler, err error) {
125         result = &v2beta1.HorizontalPodAutoscaler{}
126         err = c.client.Put().
127                 Namespace(c.ns).
128                 Resource("horizontalpodautoscalers").
129                 Name(horizontalPodAutoscaler.Name).
130                 Body(horizontalPodAutoscaler).
131                 Do().
132                 Into(result)
133         return
134 }
135
136 // UpdateStatus was generated because the type contains a Status member.
137 // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
138
139 func (c *horizontalPodAutoscalers) UpdateStatus(horizontalPodAutoscaler *v2beta1.HorizontalPodAutoscaler) (result *v2beta1.HorizontalPodAutoscaler, err error) {
140         result = &v2beta1.HorizontalPodAutoscaler{}
141         err = c.client.Put().
142                 Namespace(c.ns).
143                 Resource("horizontalpodautoscalers").
144                 Name(horizontalPodAutoscaler.Name).
145                 SubResource("status").
146                 Body(horizontalPodAutoscaler).
147                 Do().
148                 Into(result)
149         return
150 }
151
152 // Delete takes name of the horizontalPodAutoscaler and deletes it. Returns an error if one occurs.
153 func (c *horizontalPodAutoscalers) Delete(name string, options *v1.DeleteOptions) error {
154         return c.client.Delete().
155                 Namespace(c.ns).
156                 Resource("horizontalpodautoscalers").
157                 Name(name).
158                 Body(options).
159                 Do().
160                 Error()
161 }
162
163 // DeleteCollection deletes a collection of objects.
164 func (c *horizontalPodAutoscalers) DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error {
165         var timeout time.Duration
166         if listOptions.TimeoutSeconds != nil {
167                 timeout = time.Duration(*listOptions.TimeoutSeconds) * time.Second
168         }
169         return c.client.Delete().
170                 Namespace(c.ns).
171                 Resource("horizontalpodautoscalers").
172                 VersionedParams(&listOptions, scheme.ParameterCodec).
173                 Timeout(timeout).
174                 Body(options).
175                 Do().
176                 Error()
177 }
178
179 // Patch applies the patch and returns the patched horizontalPodAutoscaler.
180 func (c *horizontalPodAutoscalers) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v2beta1.HorizontalPodAutoscaler, err error) {
181         result = &v2beta1.HorizontalPodAutoscaler{}
182         err = c.client.Patch(pt).
183                 Namespace(c.ns).
184                 Resource("horizontalpodautoscalers").
185                 SubResource(subresources...).
186                 Name(name).
187                 Body(data).
188                 Do().
189                 Into(result)
190         return
191 }