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 fake
20
21import (
22	v1beta1 "k8s.io/api/node/v1beta1"
23	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
24	labels "k8s.io/apimachinery/pkg/labels"
25	schema "k8s.io/apimachinery/pkg/runtime/schema"
26	types "k8s.io/apimachinery/pkg/types"
27	watch "k8s.io/apimachinery/pkg/watch"
28	testing "k8s.io/client-go/testing"
29)
30
31// FakeRuntimeClasses implements RuntimeClassInterface
32type FakeRuntimeClasses struct {
33	Fake *FakeNodeV1beta1
34}
35
36var runtimeclassesResource = schema.GroupVersionResource{Group: "node.k8s.io", Version: "v1beta1", Resource: "runtimeclasses"}
37
38var runtimeclassesKind = schema.GroupVersionKind{Group: "node.k8s.io", Version: "v1beta1", Kind: "RuntimeClass"}
39
40// Get takes name of the runtimeClass, and returns the corresponding runtimeClass object, and an error if there is any.
41func (c *FakeRuntimeClasses) Get(name string, options v1.GetOptions) (result *v1beta1.RuntimeClass, err error) {
42	obj, err := c.Fake.
43		Invokes(testing.NewRootGetAction(runtimeclassesResource, name), &v1beta1.RuntimeClass{})
44	if obj == nil {
45		return nil, err
46	}
47	return obj.(*v1beta1.RuntimeClass), err
48}
49
50// List takes label and field selectors, and returns the list of RuntimeClasses that match those selectors.
51func (c *FakeRuntimeClasses) List(opts v1.ListOptions) (result *v1beta1.RuntimeClassList, err error) {
52	obj, err := c.Fake.
53		Invokes(testing.NewRootListAction(runtimeclassesResource, runtimeclassesKind, opts), &v1beta1.RuntimeClassList{})
54	if obj == nil {
55		return nil, err
56	}
57
58	label, _, _ := testing.ExtractFromListOptions(opts)
59	if label == nil {
60		label = labels.Everything()
61	}
62	list := &v1beta1.RuntimeClassList{ListMeta: obj.(*v1beta1.RuntimeClassList).ListMeta}
63	for _, item := range obj.(*v1beta1.RuntimeClassList).Items {
64		if label.Matches(labels.Set(item.Labels)) {
65			list.Items = append(list.Items, item)
66		}
67	}
68	return list, err
69}
70
71// Watch returns a watch.Interface that watches the requested runtimeClasses.
72func (c *FakeRuntimeClasses) Watch(opts v1.ListOptions) (watch.Interface, error) {
73	return c.Fake.
74		InvokesWatch(testing.NewRootWatchAction(runtimeclassesResource, opts))
75}
76
77// Create takes the representation of a runtimeClass and creates it.  Returns the server's representation of the runtimeClass, and an error, if there is any.
78func (c *FakeRuntimeClasses) Create(runtimeClass *v1beta1.RuntimeClass) (result *v1beta1.RuntimeClass, err error) {
79	obj, err := c.Fake.
80		Invokes(testing.NewRootCreateAction(runtimeclassesResource, runtimeClass), &v1beta1.RuntimeClass{})
81	if obj == nil {
82		return nil, err
83	}
84	return obj.(*v1beta1.RuntimeClass), err
85}
86
87// Update takes the representation of a runtimeClass and updates it. Returns the server's representation of the runtimeClass, and an error, if there is any.
88func (c *FakeRuntimeClasses) Update(runtimeClass *v1beta1.RuntimeClass) (result *v1beta1.RuntimeClass, err error) {
89	obj, err := c.Fake.
90		Invokes(testing.NewRootUpdateAction(runtimeclassesResource, runtimeClass), &v1beta1.RuntimeClass{})
91	if obj == nil {
92		return nil, err
93	}
94	return obj.(*v1beta1.RuntimeClass), err
95}
96
97// Delete takes name of the runtimeClass and deletes it. Returns an error if one occurs.
98func (c *FakeRuntimeClasses) Delete(name string, options *v1.DeleteOptions) error {
99	_, err := c.Fake.
100		Invokes(testing.NewRootDeleteAction(runtimeclassesResource, name), &v1beta1.RuntimeClass{})
101	return err
102}
103
104// DeleteCollection deletes a collection of objects.
105func (c *FakeRuntimeClasses) DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error {
106	action := testing.NewRootDeleteCollectionAction(runtimeclassesResource, listOptions)
107
108	_, err := c.Fake.Invokes(action, &v1beta1.RuntimeClassList{})
109	return err
110}
111
112// Patch applies the patch and returns the patched runtimeClass.
113func (c *FakeRuntimeClasses) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1beta1.RuntimeClass, err error) {
114	obj, err := c.Fake.
115		Invokes(testing.NewRootPatchSubresourceAction(runtimeclassesResource, name, pt, data, subresources...), &v1beta1.RuntimeClass{})
116	if obj == nil {
117		return nil, err
118	}
119	return obj.(*v1beta1.RuntimeClass), err
120}
121