blob: 0e0839fb508ef763a47cc2ee24353c5f36fe8867 [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 "time"
23
24 v1 "k8s.io/api/autoscaling/v1"
25 metav1 "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.
34type HorizontalPodAutoscalersGetter interface {
35 HorizontalPodAutoscalers(namespace string) HorizontalPodAutoscalerInterface
36}
37
38// HorizontalPodAutoscalerInterface has methods to work with HorizontalPodAutoscaler resources.
39type HorizontalPodAutoscalerInterface interface {
40 Create(*v1.HorizontalPodAutoscaler) (*v1.HorizontalPodAutoscaler, error)
41 Update(*v1.HorizontalPodAutoscaler) (*v1.HorizontalPodAutoscaler, error)
42 UpdateStatus(*v1.HorizontalPodAutoscaler) (*v1.HorizontalPodAutoscaler, error)
43 Delete(name string, options *metav1.DeleteOptions) error
44 DeleteCollection(options *metav1.DeleteOptions, listOptions metav1.ListOptions) error
45 Get(name string, options metav1.GetOptions) (*v1.HorizontalPodAutoscaler, error)
46 List(opts metav1.ListOptions) (*v1.HorizontalPodAutoscalerList, error)
47 Watch(opts metav1.ListOptions) (watch.Interface, error)
48 Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.HorizontalPodAutoscaler, err error)
49 HorizontalPodAutoscalerExpansion
50}
51
52// horizontalPodAutoscalers implements HorizontalPodAutoscalerInterface
53type horizontalPodAutoscalers struct {
54 client rest.Interface
55 ns string
56}
57
58// newHorizontalPodAutoscalers returns a HorizontalPodAutoscalers
59func newHorizontalPodAutoscalers(c *AutoscalingV1Client, 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.
67func (c *horizontalPodAutoscalers) Get(name string, options metav1.GetOptions) (result *v1.HorizontalPodAutoscaler, err error) {
68 result = &v1.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.
80func (c *horizontalPodAutoscalers) List(opts metav1.ListOptions) (result *v1.HorizontalPodAutoscalerList, err error) {
81 var timeout time.Duration
82 if opts.TimeoutSeconds != nil {
83 timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
84 }
85 result = &v1.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.
97func (c *horizontalPodAutoscalers) Watch(opts metav1.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.
112func (c *horizontalPodAutoscalers) Create(horizontalPodAutoscaler *v1.HorizontalPodAutoscaler) (result *v1.HorizontalPodAutoscaler, err error) {
113 result = &v1.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.
124func (c *horizontalPodAutoscalers) Update(horizontalPodAutoscaler *v1.HorizontalPodAutoscaler) (result *v1.HorizontalPodAutoscaler, err error) {
125 result = &v1.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
139func (c *horizontalPodAutoscalers) UpdateStatus(horizontalPodAutoscaler *v1.HorizontalPodAutoscaler) (result *v1.HorizontalPodAutoscaler, err error) {
140 result = &v1.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.
153func (c *horizontalPodAutoscalers) Delete(name string, options *metav1.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.
164func (c *horizontalPodAutoscalers) DeleteCollection(options *metav1.DeleteOptions, listOptions metav1.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.
180func (c *horizontalPodAutoscalers) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.HorizontalPodAutoscaler, err error) {
181 result = &v1.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}