blob: 8ac0566a2e6b5beba14658637224694253b52cbc [file] [log] [blame]
Matteo Scandoloa4285862020-12-01 18:10:10 -08001/*
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 "context"
23
24 v1 "k8s.io/api/authorization/v1"
25 metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
26 scheme "k8s.io/client-go/kubernetes/scheme"
27 rest "k8s.io/client-go/rest"
28)
29
30// SubjectAccessReviewsGetter has a method to return a SubjectAccessReviewInterface.
31// A group's client should implement this interface.
32type SubjectAccessReviewsGetter interface {
33 SubjectAccessReviews() SubjectAccessReviewInterface
34}
35
36// SubjectAccessReviewInterface has methods to work with SubjectAccessReview resources.
37type SubjectAccessReviewInterface interface {
38 Create(ctx context.Context, subjectAccessReview *v1.SubjectAccessReview, opts metav1.CreateOptions) (*v1.SubjectAccessReview, error)
39 SubjectAccessReviewExpansion
40}
41
42// subjectAccessReviews implements SubjectAccessReviewInterface
43type subjectAccessReviews struct {
44 client rest.Interface
45}
46
47// newSubjectAccessReviews returns a SubjectAccessReviews
48func newSubjectAccessReviews(c *AuthorizationV1Client) *subjectAccessReviews {
49 return &subjectAccessReviews{
50 client: c.RESTClient(),
51 }
52}
53
54// Create takes the representation of a subjectAccessReview and creates it. Returns the server's representation of the subjectAccessReview, and an error, if there is any.
55func (c *subjectAccessReviews) Create(ctx context.Context, subjectAccessReview *v1.SubjectAccessReview, opts metav1.CreateOptions) (result *v1.SubjectAccessReview, err error) {
56 result = &v1.SubjectAccessReview{}
57 err = c.client.Post().
58 Resource("subjectaccessreviews").
59 VersionedParams(&opts, scheme.ParameterCodec).
60 Body(subjectAccessReview).
61 Do(ctx).
62 Into(result)
63 return
64}