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