1// +build !ignore_autogenerated
2
3/*
4Copyright The Kubernetes Authors.
5
6Licensed under the Apache License, Version 2.0 (the "License");
7you may not use this file except in compliance with the License.
8You may obtain a copy of the License at
9
10    http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS,
14WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15See the License for the specific language governing permissions and
16limitations under the License.
17*/
18
19// Code generated by deepcopy-gen. DO NOT EDIT.
20
21package eventratelimit
22
23import (
24	runtime "k8s.io/apimachinery/pkg/runtime"
25)
26
27// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
28func (in *Configuration) DeepCopyInto(out *Configuration) {
29	*out = *in
30	out.TypeMeta = in.TypeMeta
31	if in.Limits != nil {
32		in, out := &in.Limits, &out.Limits
33		*out = make([]Limit, len(*in))
34		copy(*out, *in)
35	}
36	return
37}
38
39// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Configuration.
40func (in *Configuration) DeepCopy() *Configuration {
41	if in == nil {
42		return nil
43	}
44	out := new(Configuration)
45	in.DeepCopyInto(out)
46	return out
47}
48
49// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
50func (in *Configuration) DeepCopyObject() runtime.Object {
51	if c := in.DeepCopy(); c != nil {
52		return c
53	}
54	return nil
55}
56
57// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
58func (in *Limit) DeepCopyInto(out *Limit) {
59	*out = *in
60	return
61}
62
63// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Limit.
64func (in *Limit) DeepCopy() *Limit {
65	if in == nil {
66		return nil
67	}
68	out := new(Limit)
69	in.DeepCopyInto(out)
70	return out
71}
72