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 v1beta1
22
23import (
24	v1 "k8s.io/api/core/v1"
25	runtime "k8s.io/apimachinery/pkg/runtime"
26)
27
28// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
29func (in *Event) DeepCopyInto(out *Event) {
30	*out = *in
31	out.TypeMeta = in.TypeMeta
32	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
33	in.EventTime.DeepCopyInto(&out.EventTime)
34	if in.Series != nil {
35		in, out := &in.Series, &out.Series
36		*out = new(EventSeries)
37		(*in).DeepCopyInto(*out)
38	}
39	out.Regarding = in.Regarding
40	if in.Related != nil {
41		in, out := &in.Related, &out.Related
42		*out = new(v1.ObjectReference)
43		**out = **in
44	}
45	out.DeprecatedSource = in.DeprecatedSource
46	in.DeprecatedFirstTimestamp.DeepCopyInto(&out.DeprecatedFirstTimestamp)
47	in.DeprecatedLastTimestamp.DeepCopyInto(&out.DeprecatedLastTimestamp)
48	return
49}
50
51// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Event.
52func (in *Event) DeepCopy() *Event {
53	if in == nil {
54		return nil
55	}
56	out := new(Event)
57	in.DeepCopyInto(out)
58	return out
59}
60
61// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
62func (in *Event) DeepCopyObject() runtime.Object {
63	if c := in.DeepCopy(); c != nil {
64		return c
65	}
66	return nil
67}
68
69// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
70func (in *EventList) DeepCopyInto(out *EventList) {
71	*out = *in
72	out.TypeMeta = in.TypeMeta
73	out.ListMeta = in.ListMeta
74	if in.Items != nil {
75		in, out := &in.Items, &out.Items
76		*out = make([]Event, len(*in))
77		for i := range *in {
78			(*in)[i].DeepCopyInto(&(*out)[i])
79		}
80	}
81	return
82}
83
84// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EventList.
85func (in *EventList) DeepCopy() *EventList {
86	if in == nil {
87		return nil
88	}
89	out := new(EventList)
90	in.DeepCopyInto(out)
91	return out
92}
93
94// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
95func (in *EventList) DeepCopyObject() runtime.Object {
96	if c := in.DeepCopy(); c != nil {
97		return c
98	}
99	return nil
100}
101
102// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
103func (in *EventSeries) DeepCopyInto(out *EventSeries) {
104	*out = *in
105	in.LastObservedTime.DeepCopyInto(&out.LastObservedTime)
106	return
107}
108
109// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EventSeries.
110func (in *EventSeries) DeepCopy() *EventSeries {
111	if in == nil {
112		return nil
113	}
114	out := new(EventSeries)
115	in.DeepCopyInto(out)
116	return out
117}
118