2022-04-23 09:01:19 +00:00
|
|
|
//go:build !ignore_autogenerated
|
2019-01-18 01:50:10 +00:00
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
|
|
|
/*
|
|
|
|
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 deepcopy-gen. DO NOT EDIT.
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
package v1
|
2019-01-18 01:50:10 +00:00
|
|
|
|
|
|
|
import (
|
2021-05-15 10:08:31 +00:00
|
|
|
corev1 "k8s.io/api/core/v1"
|
2019-01-18 01:50:10 +00:00
|
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2021-05-15 10:08:31 +00:00
|
|
|
func (in *Event) DeepCopyInto(out *Event) {
|
2019-01-18 01:50:10 +00:00
|
|
|
*out = *in
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
2021-05-15 10:08:31 +00:00
|
|
|
in.EventTime.DeepCopyInto(&out.EventTime)
|
|
|
|
if in.Series != nil {
|
|
|
|
in, out := &in.Series, &out.Series
|
|
|
|
*out = new(EventSeries)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
out.Regarding = in.Regarding
|
|
|
|
if in.Related != nil {
|
|
|
|
in, out := &in.Related, &out.Related
|
|
|
|
*out = new(corev1.ObjectReference)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
out.DeprecatedSource = in.DeprecatedSource
|
|
|
|
in.DeprecatedFirstTimestamp.DeepCopyInto(&out.DeprecatedFirstTimestamp)
|
|
|
|
in.DeprecatedLastTimestamp.DeepCopyInto(&out.DeprecatedLastTimestamp)
|
2019-01-18 01:50:10 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Event.
|
|
|
|
func (in *Event) DeepCopy() *Event {
|
2019-01-18 01:50:10 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2021-05-15 10:08:31 +00:00
|
|
|
out := new(Event)
|
2019-01-18 01:50:10 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
2021-05-15 10:08:31 +00:00
|
|
|
func (in *Event) DeepCopyObject() runtime.Object {
|
2019-01-18 01:50:10 +00:00
|
|
|
if c := in.DeepCopy(); c != nil {
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2021-05-15 10:08:31 +00:00
|
|
|
func (in *EventList) DeepCopyInto(out *EventList) {
|
2019-01-18 01:50:10 +00:00
|
|
|
*out = *in
|
|
|
|
out.TypeMeta = in.TypeMeta
|
2021-05-15 10:08:31 +00:00
|
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
2019-01-18 01:50:10 +00:00
|
|
|
if in.Items != nil {
|
|
|
|
in, out := &in.Items, &out.Items
|
2021-05-15 10:08:31 +00:00
|
|
|
*out = make([]Event, len(*in))
|
2019-01-18 01:50:10 +00:00
|
|
|
for i := range *in {
|
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EventList.
|
|
|
|
func (in *EventList) DeepCopy() *EventList {
|
2019-01-18 01:50:10 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2021-05-15 10:08:31 +00:00
|
|
|
out := new(EventList)
|
2019-01-18 01:50:10 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
2021-05-15 10:08:31 +00:00
|
|
|
func (in *EventList) DeepCopyObject() runtime.Object {
|
2019-01-18 01:50:10 +00:00
|
|
|
if c := in.DeepCopy(); c != nil {
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2021-05-15 10:08:31 +00:00
|
|
|
func (in *EventSeries) DeepCopyInto(out *EventSeries) {
|
2019-01-18 01:50:10 +00:00
|
|
|
*out = *in
|
2021-05-15 10:08:31 +00:00
|
|
|
in.LastObservedTime.DeepCopyInto(&out.LastObservedTime)
|
2019-01-18 01:50:10 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EventSeries.
|
|
|
|
func (in *EventSeries) DeepCopy() *EventSeries {
|
2019-01-18 01:50:10 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2021-05-15 10:08:31 +00:00
|
|
|
out := new(EventSeries)
|
2019-01-18 01:50:10 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|