/*
|
Copyright The Kubernetes Authors.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
you may not use this file except in compliance with the License.
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
distributed under the License is distributed on an "AS IS" BASIS,
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
See the License for the specific language governing permissions and
|
limitations under the License.
|
*/
|
|
// Code generated by client-gen. DO NOT EDIT.
|
|
package fake
|
|
import (
|
"context"
|
|
v1 "k8s.io/api/authentication/v1"
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
schema "k8s.io/apimachinery/pkg/runtime/schema"
|
testing "k8s.io/client-go/testing"
|
)
|
|
// FakeTokenReviews implements TokenReviewInterface
|
type FakeTokenReviews struct {
|
Fake *FakeAuthenticationV1
|
}
|
|
var tokenreviewsResource = schema.GroupVersionResource{Group: "authentication.k8s.io", Version: "v1", Resource: "tokenreviews"}
|
|
var tokenreviewsKind = schema.GroupVersionKind{Group: "authentication.k8s.io", Version: "v1", Kind: "TokenReview"}
|
|
// Create takes the representation of a tokenReview and creates it. Returns the server's representation of the tokenReview, and an error, if there is any.
|
func (c *FakeTokenReviews) Create(ctx context.Context, tokenReview *v1.TokenReview, opts metav1.CreateOptions) (result *v1.TokenReview, err error) {
|
obj, err := c.Fake.
|
Invokes(testing.NewRootCreateAction(tokenreviewsResource, tokenReview), &v1.TokenReview{})
|
if obj == nil {
|
return nil, err
|
}
|
return obj.(*v1.TokenReview), err
|
}
|