Code refactoring for bpa operator
[icn.git] / cmd / bpa-operator / vendor / k8s.io / client-go / kubernetes / typed / extensions / v1beta1 / daemonset.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 v1beta1
20
21 import (
22         "time"
23
24         v1beta1 "k8s.io/api/extensions/v1beta1"
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 // DaemonSetsGetter has a method to return a DaemonSetInterface.
33 // A group's client should implement this interface.
34 type DaemonSetsGetter interface {
35         DaemonSets(namespace string) DaemonSetInterface
36 }
37
38 // DaemonSetInterface has methods to work with DaemonSet resources.
39 type DaemonSetInterface interface {
40         Create(*v1beta1.DaemonSet) (*v1beta1.DaemonSet, error)
41         Update(*v1beta1.DaemonSet) (*v1beta1.DaemonSet, error)
42         UpdateStatus(*v1beta1.DaemonSet) (*v1beta1.DaemonSet, 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) (*v1beta1.DaemonSet, error)
46         List(opts v1.ListOptions) (*v1beta1.DaemonSetList, error)
47         Watch(opts v1.ListOptions) (watch.Interface, error)
48         Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1beta1.DaemonSet, err error)
49         DaemonSetExpansion
50 }
51
52 // daemonSets implements DaemonSetInterface
53 type daemonSets struct {
54         client rest.Interface
55         ns     string
56 }
57
58 // newDaemonSets returns a DaemonSets
59 func newDaemonSets(c *ExtensionsV1beta1Client, namespace string) *daemonSets {
60         return &daemonSets{
61                 client: c.RESTClient(),
62                 ns:     namespace,
63         }
64 }
65
66 // Get takes name of the daemonSet, and returns the corresponding daemonSet object, and an error if there is any.
67 func (c *daemonSets) Get(name string, options v1.GetOptions) (result *v1beta1.DaemonSet, err error) {
68         result = &v1beta1.DaemonSet{}
69         err = c.client.Get().
70                 Namespace(c.ns).
71                 Resource("daemonsets").
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 DaemonSets that match those selectors.
80 func (c *daemonSets) List(opts v1.ListOptions) (result *v1beta1.DaemonSetList, err error) {
81         var timeout time.Duration
82         if opts.TimeoutSeconds != nil {
83                 timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
84         }
85         result = &v1beta1.DaemonSetList{}
86         err = c.client.Get().
87                 Namespace(c.ns).
88                 Resource("daemonsets").
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 daemonSets.
97 func (c *daemonSets) 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("daemonsets").
106                 VersionedParams(&opts, scheme.ParameterCodec).
107                 Timeout(timeout).
108                 Watch()
109 }
110
111 // Create takes the representation of a daemonSet and creates it.  Returns the server's representation of the daemonSet, and an error, if there is any.
112 func (c *daemonSets) Create(daemonSet *v1beta1.DaemonSet) (result *v1beta1.DaemonSet, err error) {
113         result = &v1beta1.DaemonSet{}
114         err = c.client.Post().
115                 Namespace(c.ns).
116                 Resource("daemonsets").
117                 Body(daemonSet).
118                 Do().
119                 Into(result)
120         return
121 }
122
123 // Update takes the representation of a daemonSet and updates it. Returns the server's representation of the daemonSet, and an error, if there is any.
124 func (c *daemonSets) Update(daemonSet *v1beta1.DaemonSet) (result *v1beta1.DaemonSet, err error) {
125         result = &v1beta1.DaemonSet{}
126         err = c.client.Put().
127                 Namespace(c.ns).
128                 Resource("daemonsets").
129                 Name(daemonSet.Name).
130                 Body(daemonSet).
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 *daemonSets) UpdateStatus(daemonSet *v1beta1.DaemonSet) (result *v1beta1.DaemonSet, err error) {
140         result = &v1beta1.DaemonSet{}
141         err = c.client.Put().
142                 Namespace(c.ns).
143                 Resource("daemonsets").
144                 Name(daemonSet.Name).
145                 SubResource("status").
146                 Body(daemonSet).
147                 Do().
148                 Into(result)
149         return
150 }
151
152 // Delete takes name of the daemonSet and deletes it. Returns an error if one occurs.
153 func (c *daemonSets) Delete(name string, options *v1.DeleteOptions) error {
154         return c.client.Delete().
155                 Namespace(c.ns).
156                 Resource("daemonsets").
157                 Name(name).
158                 Body(options).
159                 Do().
160                 Error()
161 }
162
163 // DeleteCollection deletes a collection of objects.
164 func (c *daemonSets) 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("daemonsets").
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 daemonSet.
180 func (c *daemonSets) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1beta1.DaemonSet, err error) {
181         result = &v1beta1.DaemonSet{}
182         err = c.client.Patch(pt).
183                 Namespace(c.ns).
184                 Resource("daemonsets").
185                 SubResource(subresources...).
186                 Name(name).
187                 Body(data).
188                 Do().
189                 Into(result)
190         return
191 }