blob: 86cf9bf1807b1651744329fc8de62a7bc04abc84 [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 v1beta1
20
21import (
22 "time"
23
24 v1beta1 "k8s.io/api/storage/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// CSIDriversGetter has a method to return a CSIDriverInterface.
33// A group's client should implement this interface.
34type CSIDriversGetter interface {
35 CSIDrivers() CSIDriverInterface
36}
37
38// CSIDriverInterface has methods to work with CSIDriver resources.
39type CSIDriverInterface interface {
40 Create(*v1beta1.CSIDriver) (*v1beta1.CSIDriver, error)
41 Update(*v1beta1.CSIDriver) (*v1beta1.CSIDriver, error)
42 Delete(name string, options *v1.DeleteOptions) error
43 DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error
44 Get(name string, options v1.GetOptions) (*v1beta1.CSIDriver, error)
45 List(opts v1.ListOptions) (*v1beta1.CSIDriverList, error)
46 Watch(opts v1.ListOptions) (watch.Interface, error)
47 Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1beta1.CSIDriver, err error)
48 CSIDriverExpansion
49}
50
51// cSIDrivers implements CSIDriverInterface
52type cSIDrivers struct {
53 client rest.Interface
54}
55
56// newCSIDrivers returns a CSIDrivers
57func newCSIDrivers(c *StorageV1beta1Client) *cSIDrivers {
58 return &cSIDrivers{
59 client: c.RESTClient(),
60 }
61}
62
63// Get takes name of the cSIDriver, and returns the corresponding cSIDriver object, and an error if there is any.
64func (c *cSIDrivers) Get(name string, options v1.GetOptions) (result *v1beta1.CSIDriver, err error) {
65 result = &v1beta1.CSIDriver{}
66 err = c.client.Get().
67 Resource("csidrivers").
68 Name(name).
69 VersionedParams(&options, scheme.ParameterCodec).
70 Do().
71 Into(result)
72 return
73}
74
75// List takes label and field selectors, and returns the list of CSIDrivers that match those selectors.
76func (c *cSIDrivers) List(opts v1.ListOptions) (result *v1beta1.CSIDriverList, err error) {
77 var timeout time.Duration
78 if opts.TimeoutSeconds != nil {
79 timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
80 }
81 result = &v1beta1.CSIDriverList{}
82 err = c.client.Get().
83 Resource("csidrivers").
84 VersionedParams(&opts, scheme.ParameterCodec).
85 Timeout(timeout).
86 Do().
87 Into(result)
88 return
89}
90
91// Watch returns a watch.Interface that watches the requested cSIDrivers.
92func (c *cSIDrivers) Watch(opts v1.ListOptions) (watch.Interface, error) {
93 var timeout time.Duration
94 if opts.TimeoutSeconds != nil {
95 timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
96 }
97 opts.Watch = true
98 return c.client.Get().
99 Resource("csidrivers").
100 VersionedParams(&opts, scheme.ParameterCodec).
101 Timeout(timeout).
102 Watch()
103}
104
105// Create takes the representation of a cSIDriver and creates it. Returns the server's representation of the cSIDriver, and an error, if there is any.
106func (c *cSIDrivers) Create(cSIDriver *v1beta1.CSIDriver) (result *v1beta1.CSIDriver, err error) {
107 result = &v1beta1.CSIDriver{}
108 err = c.client.Post().
109 Resource("csidrivers").
110 Body(cSIDriver).
111 Do().
112 Into(result)
113 return
114}
115
116// Update takes the representation of a cSIDriver and updates it. Returns the server's representation of the cSIDriver, and an error, if there is any.
117func (c *cSIDrivers) Update(cSIDriver *v1beta1.CSIDriver) (result *v1beta1.CSIDriver, err error) {
118 result = &v1beta1.CSIDriver{}
119 err = c.client.Put().
120 Resource("csidrivers").
121 Name(cSIDriver.Name).
122 Body(cSIDriver).
123 Do().
124 Into(result)
125 return
126}
127
128// Delete takes name of the cSIDriver and deletes it. Returns an error if one occurs.
129func (c *cSIDrivers) Delete(name string, options *v1.DeleteOptions) error {
130 return c.client.Delete().
131 Resource("csidrivers").
132 Name(name).
133 Body(options).
134 Do().
135 Error()
136}
137
138// DeleteCollection deletes a collection of objects.
139func (c *cSIDrivers) DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error {
140 var timeout time.Duration
141 if listOptions.TimeoutSeconds != nil {
142 timeout = time.Duration(*listOptions.TimeoutSeconds) * time.Second
143 }
144 return c.client.Delete().
145 Resource("csidrivers").
146 VersionedParams(&listOptions, scheme.ParameterCodec).
147 Timeout(timeout).
148 Body(options).
149 Do().
150 Error()
151}
152
153// Patch applies the patch and returns the patched cSIDriver.
154func (c *cSIDrivers) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1beta1.CSIDriver, err error) {
155 result = &v1beta1.CSIDriver{}
156 err = c.client.Patch(pt).
157 Resource("csidrivers").
158 SubResource(subresources...).
159 Name(name).
160 Body(data).
161 Do().
162 Into(result)
163 return
164}