blob: 0a47c44115030214c89d600d6bd86d18dbc2f64b [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/rbac/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// ClusterRolesGetter has a method to return a ClusterRoleInterface.
33// A group's client should implement this interface.
34type ClusterRolesGetter interface {
35 ClusterRoles() ClusterRoleInterface
36}
37
38// ClusterRoleInterface has methods to work with ClusterRole resources.
39type ClusterRoleInterface interface {
40 Create(*v1.ClusterRole) (*v1.ClusterRole, error)
41 Update(*v1.ClusterRole) (*v1.ClusterRole, error)
42 Delete(name string, options *metav1.DeleteOptions) error
43 DeleteCollection(options *metav1.DeleteOptions, listOptions metav1.ListOptions) error
44 Get(name string, options metav1.GetOptions) (*v1.ClusterRole, error)
45 List(opts metav1.ListOptions) (*v1.ClusterRoleList, error)
46 Watch(opts metav1.ListOptions) (watch.Interface, error)
47 Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.ClusterRole, err error)
48 ClusterRoleExpansion
49}
50
51// clusterRoles implements ClusterRoleInterface
52type clusterRoles struct {
53 client rest.Interface
54}
55
56// newClusterRoles returns a ClusterRoles
57func newClusterRoles(c *RbacV1Client) *clusterRoles {
58 return &clusterRoles{
59 client: c.RESTClient(),
60 }
61}
62
63// Get takes name of the clusterRole, and returns the corresponding clusterRole object, and an error if there is any.
64func (c *clusterRoles) Get(name string, options metav1.GetOptions) (result *v1.ClusterRole, err error) {
65 result = &v1.ClusterRole{}
66 err = c.client.Get().
67 Resource("clusterroles").
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 ClusterRoles that match those selectors.
76func (c *clusterRoles) List(opts metav1.ListOptions) (result *v1.ClusterRoleList, err error) {
77 var timeout time.Duration
78 if opts.TimeoutSeconds != nil {
79 timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
80 }
81 result = &v1.ClusterRoleList{}
82 err = c.client.Get().
83 Resource("clusterroles").
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 clusterRoles.
92func (c *clusterRoles) Watch(opts metav1.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("clusterroles").
100 VersionedParams(&opts, scheme.ParameterCodec).
101 Timeout(timeout).
102 Watch()
103}
104
105// Create takes the representation of a clusterRole and creates it. Returns the server's representation of the clusterRole, and an error, if there is any.
106func (c *clusterRoles) Create(clusterRole *v1.ClusterRole) (result *v1.ClusterRole, err error) {
107 result = &v1.ClusterRole{}
108 err = c.client.Post().
109 Resource("clusterroles").
110 Body(clusterRole).
111 Do().
112 Into(result)
113 return
114}
115
116// Update takes the representation of a clusterRole and updates it. Returns the server's representation of the clusterRole, and an error, if there is any.
117func (c *clusterRoles) Update(clusterRole *v1.ClusterRole) (result *v1.ClusterRole, err error) {
118 result = &v1.ClusterRole{}
119 err = c.client.Put().
120 Resource("clusterroles").
121 Name(clusterRole.Name).
122 Body(clusterRole).
123 Do().
124 Into(result)
125 return
126}
127
128// Delete takes name of the clusterRole and deletes it. Returns an error if one occurs.
129func (c *clusterRoles) Delete(name string, options *metav1.DeleteOptions) error {
130 return c.client.Delete().
131 Resource("clusterroles").
132 Name(name).
133 Body(options).
134 Do().
135 Error()
136}
137
138// DeleteCollection deletes a collection of objects.
139func (c *clusterRoles) DeleteCollection(options *metav1.DeleteOptions, listOptions metav1.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("clusterroles").
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 clusterRole.
154func (c *clusterRoles) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.ClusterRole, err error) {
155 result = &v1.ClusterRole{}
156 err = c.client.Patch(pt).
157 Resource("clusterroles").
158 SubResource(subresources...).
159 Name(name).
160 Body(data).
161 Do().
162 Into(result)
163 return
164}