blob: 0286c93fe6a19007a5075b958c719a738a0c1af2 [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 v1beta1
20
21import (
22 "context"
23
24 v1beta1 "k8s.io/api/authorization/v1beta1"
25 v1 "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// SelfSubjectAccessReviewsGetter has a method to return a SelfSubjectAccessReviewInterface.
31// A group's client should implement this interface.
32type SelfSubjectAccessReviewsGetter interface {
33 SelfSubjectAccessReviews() SelfSubjectAccessReviewInterface
34}
35
36// SelfSubjectAccessReviewInterface has methods to work with SelfSubjectAccessReview resources.
37type SelfSubjectAccessReviewInterface interface {
38 Create(ctx context.Context, selfSubjectAccessReview *v1beta1.SelfSubjectAccessReview, opts v1.CreateOptions) (*v1beta1.SelfSubjectAccessReview, error)
39 SelfSubjectAccessReviewExpansion
40}
41
42// selfSubjectAccessReviews implements SelfSubjectAccessReviewInterface
43type selfSubjectAccessReviews struct {
44 client rest.Interface
45}
46
47// newSelfSubjectAccessReviews returns a SelfSubjectAccessReviews
48func newSelfSubjectAccessReviews(c *AuthorizationV1beta1Client) *selfSubjectAccessReviews {
49 return &selfSubjectAccessReviews{
50 client: c.RESTClient(),
51 }
52}
53
54// Create takes the representation of a selfSubjectAccessReview and creates it. Returns the server's representation of the selfSubjectAccessReview, and an error, if there is any.
55func (c *selfSubjectAccessReviews) Create(ctx context.Context, selfSubjectAccessReview *v1beta1.SelfSubjectAccessReview, opts v1.CreateOptions) (result *v1beta1.SelfSubjectAccessReview, err error) {
56 result = &v1beta1.SelfSubjectAccessReview{}
57 err = c.client.Post().
58 Resource("selfsubjectaccessreviews").
59 VersionedParams(&opts, scheme.ParameterCodec).
60 Body(selfSubjectAccessReview).
61 Do(ctx).
62 Into(result)
63 return
64}