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