ingress-nginx-helm/vendor/k8s.io/api/batch/v1/zz_generated.deepcopy.go

189 lines
5 KiB
Go
Raw Normal View History

2017-04-01 14:42:02 +00:00
// +build !ignore_autogenerated
/*
2018-07-12 17:19:04 +00:00
Copyright The Kubernetes Authors.
2017-04-01 14:42:02 +00:00
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.
*/
2018-03-23 16:35:19 +00:00
// Code generated by deepcopy-gen. DO NOT EDIT.
2017-04-01 14:42:02 +00:00
package v1
import (
2018-09-27 17:20:02 +00:00
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2017-04-01 14:42:02 +00:00
runtime "k8s.io/apimachinery/pkg/runtime"
)
2017-07-31 20:35:10 +00:00
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Job) DeepCopyInto(out *Job) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)
in.Status.DeepCopyInto(&out.Status)
return
}
2017-09-29 17:12:14 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Job.
func (in *Job) DeepCopy() *Job {
if in == nil {
2017-07-31 20:35:10 +00:00
return nil
}
out := new(Job)
2017-09-29 17:12:14 +00:00
in.DeepCopyInto(out)
2017-07-31 20:35:10 +00:00
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
2017-09-29 17:12:14 +00:00
func (in *Job) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
2017-07-31 20:35:10 +00:00
return c
2017-04-01 14:42:02 +00:00
}
2018-03-23 16:35:19 +00:00
return nil
2017-04-01 14:42:02 +00:00
}
2017-07-31 20:35:10 +00:00
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *JobCondition) DeepCopyInto(out *JobCondition) {
*out = *in
in.LastProbeTime.DeepCopyInto(&out.LastProbeTime)
in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
return
}
2017-09-29 17:12:14 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobCondition.
func (in *JobCondition) DeepCopy() *JobCondition {
if in == nil {
2017-04-01 14:42:02 +00:00
return nil
}
2017-07-31 20:35:10 +00:00
out := new(JobCondition)
2017-09-29 17:12:14 +00:00
in.DeepCopyInto(out)
2017-07-31 20:35:10 +00:00
return out
2017-04-01 14:42:02 +00:00
}
2017-07-31 20:35:10 +00:00
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *JobList) DeepCopyInto(out *JobList) {
*out = *in
out.TypeMeta = in.TypeMeta
2019-06-24 13:07:24 +00:00
in.ListMeta.DeepCopyInto(&out.ListMeta)
2017-07-31 20:35:10 +00:00
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]Job, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
2017-04-01 14:42:02 +00:00
}
2017-07-31 20:35:10 +00:00
}
return
}
2017-09-29 17:12:14 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobList.
func (in *JobList) DeepCopy() *JobList {
if in == nil {
2017-04-01 14:42:02 +00:00
return nil
}
2017-07-31 20:35:10 +00:00
out := new(JobList)
2017-09-29 17:12:14 +00:00
in.DeepCopyInto(out)
2017-07-31 20:35:10 +00:00
return out
2017-04-01 14:42:02 +00:00
}
2017-07-31 20:35:10 +00:00
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
2017-09-29 17:12:14 +00:00
func (in *JobList) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
2017-07-31 20:35:10 +00:00
return c
}
2018-03-23 16:35:19 +00:00
return nil
2017-07-31 20:35:10 +00:00
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *JobSpec) DeepCopyInto(out *JobSpec) {
*out = *in
if in.Parallelism != nil {
in, out := &in.Parallelism, &out.Parallelism
2018-09-27 17:20:02 +00:00
*out = new(int32)
**out = **in
2017-07-31 20:35:10 +00:00
}
if in.Completions != nil {
in, out := &in.Completions, &out.Completions
2018-09-27 17:20:02 +00:00
*out = new(int32)
**out = **in
2017-07-31 20:35:10 +00:00
}
if in.ActiveDeadlineSeconds != nil {
in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
2018-09-27 17:20:02 +00:00
*out = new(int64)
**out = **in
2017-07-31 20:35:10 +00:00
}
2017-09-29 17:12:14 +00:00
if in.BackoffLimit != nil {
in, out := &in.BackoffLimit, &out.BackoffLimit
2018-09-27 17:20:02 +00:00
*out = new(int32)
**out = **in
2017-09-29 17:12:14 +00:00
}
2017-07-31 20:35:10 +00:00
if in.Selector != nil {
in, out := &in.Selector, &out.Selector
2018-09-27 17:20:02 +00:00
*out = new(metav1.LabelSelector)
(*in).DeepCopyInto(*out)
2017-07-31 20:35:10 +00:00
}
if in.ManualSelector != nil {
in, out := &in.ManualSelector, &out.ManualSelector
2018-09-27 17:20:02 +00:00
*out = new(bool)
**out = **in
2017-07-31 20:35:10 +00:00
}
in.Template.DeepCopyInto(&out.Template)
2018-09-27 17:20:02 +00:00
if in.TTLSecondsAfterFinished != nil {
in, out := &in.TTLSecondsAfterFinished, &out.TTLSecondsAfterFinished
*out = new(int32)
**out = **in
}
2017-07-31 20:35:10 +00:00
return
}
2017-09-29 17:12:14 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobSpec.
func (in *JobSpec) DeepCopy() *JobSpec {
if in == nil {
2017-04-01 14:42:02 +00:00
return nil
}
2017-07-31 20:35:10 +00:00
out := new(JobSpec)
2017-09-29 17:12:14 +00:00
in.DeepCopyInto(out)
2017-07-31 20:35:10 +00:00
return out
2017-04-01 14:42:02 +00:00
}
2017-07-31 20:35:10 +00:00
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *JobStatus) DeepCopyInto(out *JobStatus) {
*out = *in
if in.Conditions != nil {
in, out := &in.Conditions, &out.Conditions
*out = make([]JobCondition, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
2017-04-01 14:42:02 +00:00
}
2017-07-31 20:35:10 +00:00
}
if in.StartTime != nil {
in, out := &in.StartTime, &out.StartTime
2018-09-27 17:20:02 +00:00
*out = (*in).DeepCopy()
2017-07-31 20:35:10 +00:00
}
if in.CompletionTime != nil {
in, out := &in.CompletionTime, &out.CompletionTime
2018-09-27 17:20:02 +00:00
*out = (*in).DeepCopy()
2017-07-31 20:35:10 +00:00
}
return
}
2017-09-29 17:12:14 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobStatus.
func (in *JobStatus) DeepCopy() *JobStatus {
if in == nil {
2017-04-01 14:42:02 +00:00
return nil
}
2017-07-31 20:35:10 +00:00
out := new(JobStatus)
2017-09-29 17:12:14 +00:00
in.DeepCopyInto(out)
2017-07-31 20:35:10 +00:00
return out
2017-04-01 14:42:02 +00:00
}