k3s/pkg/apis/batch/zz_generated.deepcopy.go

358 lines
9.6 KiB
Go
Raw Normal View History

// +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.
*/
2018-02-27 01:16:14 +00:00
// Code generated by deepcopy-gen. DO NOT EDIT.
package batch
import (
2017-01-11 14:09:48 +00:00
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
2017-11-09 08:36:32 +00:00
core "k8s.io/kubernetes/pkg/apis/core"
)
2017-07-06 08:07:09 +00:00
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CronJob) DeepCopyInto(out *CronJob) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)
in.Status.DeepCopyInto(&out.Status)
return
}
2017-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJob.
func (in *CronJob) DeepCopy() *CronJob {
if in == nil {
2016-11-01 22:46:23 +00:00
return nil
}
2017-07-06 08:07:09 +00:00
out := new(CronJob)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
2016-11-01 22:46:23 +00:00
}
2017-07-06 08:07:09 +00:00
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
2017-07-31 14:33:00 +00:00
func (in *CronJob) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
2017-07-06 08:07:09 +00:00
return c
}
2018-02-27 01:16:14 +00:00
return nil
2017-07-06 08:07:09 +00:00
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CronJobList) DeepCopyInto(out *CronJobList) {
*out = *in
out.TypeMeta = in.TypeMeta
out.ListMeta = in.ListMeta
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]CronJob, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
2016-11-01 22:46:23 +00:00
}
2017-07-06 08:07:09 +00:00
}
return
}
2017-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJobList.
func (in *CronJobList) DeepCopy() *CronJobList {
if in == nil {
2017-07-06 08:07:09 +00:00
return nil
}
out := new(CronJobList)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
2017-07-31 14:33:00 +00:00
func (in *CronJobList) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
2017-07-06 08:07:09 +00:00
return c
2016-11-01 22:46:23 +00:00
}
2018-02-27 01:16:14 +00:00
return nil
2016-11-01 22:46:23 +00:00
}
2017-07-06 08:07:09 +00:00
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CronJobSpec) DeepCopyInto(out *CronJobSpec) {
*out = *in
if in.StartingDeadlineSeconds != nil {
in, out := &in.StartingDeadlineSeconds, &out.StartingDeadlineSeconds
2018-06-13 07:53:47 +00:00
*out = new(int64)
**out = **in
2017-07-06 08:07:09 +00:00
}
if in.Suspend != nil {
in, out := &in.Suspend, &out.Suspend
2018-06-13 07:53:47 +00:00
*out = new(bool)
**out = **in
2017-07-06 08:07:09 +00:00
}
in.JobTemplate.DeepCopyInto(&out.JobTemplate)
if in.SuccessfulJobsHistoryLimit != nil {
in, out := &in.SuccessfulJobsHistoryLimit, &out.SuccessfulJobsHistoryLimit
2018-06-13 07:53:47 +00:00
*out = new(int32)
**out = **in
2017-07-06 08:07:09 +00:00
}
if in.FailedJobsHistoryLimit != nil {
in, out := &in.FailedJobsHistoryLimit, &out.FailedJobsHistoryLimit
2018-06-13 07:53:47 +00:00
*out = new(int32)
**out = **in
2017-07-06 08:07:09 +00:00
}
return
}
2017-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJobSpec.
func (in *CronJobSpec) DeepCopy() *CronJobSpec {
if in == nil {
2016-11-01 22:46:23 +00:00
return nil
}
2017-07-06 08:07:09 +00:00
out := new(CronJobSpec)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
2016-11-01 22:46:23 +00:00
}
2017-07-06 08:07:09 +00:00
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CronJobStatus) DeepCopyInto(out *CronJobStatus) {
*out = *in
if in.Active != nil {
in, out := &in.Active, &out.Active
2017-11-09 08:36:32 +00:00
*out = make([]core.ObjectReference, len(*in))
2017-07-06 08:07:09 +00:00
copy(*out, *in)
}
if in.LastScheduleTime != nil {
in, out := &in.LastScheduleTime, &out.LastScheduleTime
2018-06-13 07:53:47 +00:00
*out = (*in).DeepCopy()
2017-07-06 08:07:09 +00:00
}
return
}
2017-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJobStatus.
func (in *CronJobStatus) DeepCopy() *CronJobStatus {
if in == nil {
2016-11-01 22:46:23 +00:00
return nil
}
2017-07-06 08:07:09 +00:00
out := new(CronJobStatus)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
2016-11-01 22:46:23 +00:00
}
2017-07-06 08:07:09 +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-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Job.
func (in *Job) DeepCopy() *Job {
if in == nil {
return nil
}
2017-07-06 08:07:09 +00:00
out := new(Job)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
}
2017-07-06 08:07:09 +00:00
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
2017-07-31 14:33:00 +00:00
func (in *Job) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
2017-07-06 08:07:09 +00:00
return c
}
2018-02-27 01:16:14 +00:00
return nil
}
2017-07-06 08:07:09 +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-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobCondition.
func (in *JobCondition) DeepCopy() *JobCondition {
if in == nil {
2017-07-06 08:07:09 +00:00
return nil
}
out := new(JobCondition)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
}
// 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
out.ListMeta = in.ListMeta
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-07-06 08:07:09 +00:00
}
return
}
2017-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobList.
func (in *JobList) DeepCopy() *JobList {
if in == nil {
return nil
}
2017-07-06 08:07:09 +00:00
out := new(JobList)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
}
2017-07-06 08:07:09 +00:00
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
2017-07-31 14:33:00 +00:00
func (in *JobList) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
2017-07-06 08:07:09 +00:00
return c
}
2018-02-27 01:16:14 +00:00
return nil
2017-07-06 08:07:09 +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-06-13 07:53:47 +00:00
*out = new(int32)
**out = **in
2017-07-06 08:07:09 +00:00
}
if in.Completions != nil {
in, out := &in.Completions, &out.Completions
2018-06-13 07:53:47 +00:00
*out = new(int32)
**out = **in
2017-07-06 08:07:09 +00:00
}
if in.ActiveDeadlineSeconds != nil {
in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
2018-06-13 07:53:47 +00:00
*out = new(int64)
**out = **in
2017-07-06 08:07:09 +00:00
}
if in.BackoffLimit != nil {
in, out := &in.BackoffLimit, &out.BackoffLimit
2018-06-13 07:53:47 +00:00
*out = new(int32)
**out = **in
}
2017-07-06 08:07:09 +00:00
if in.Selector != nil {
in, out := &in.Selector, &out.Selector
2018-06-13 07:53:47 +00:00
*out = new(v1.LabelSelector)
(*in).DeepCopyInto(*out)
2017-07-06 08:07:09 +00:00
}
if in.ManualSelector != nil {
in, out := &in.ManualSelector, &out.ManualSelector
2018-06-13 07:53:47 +00:00
*out = new(bool)
**out = **in
2017-07-06 08:07:09 +00:00
}
in.Template.DeepCopyInto(&out.Template)
2018-08-17 20:33:03 +00:00
if in.TTLSecondsAfterFinished != nil {
in, out := &in.TTLSecondsAfterFinished, &out.TTLSecondsAfterFinished
*out = new(int32)
**out = **in
}
2017-07-06 08:07:09 +00:00
return
}
2017-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobSpec.
func (in *JobSpec) DeepCopy() *JobSpec {
if in == nil {
return nil
}
2017-07-06 08:07:09 +00:00
out := new(JobSpec)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
}
2017-07-06 08:07:09 +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-07-06 08:07:09 +00:00
}
if in.StartTime != nil {
in, out := &in.StartTime, &out.StartTime
2018-06-13 07:53:47 +00:00
*out = (*in).DeepCopy()
2017-07-06 08:07:09 +00:00
}
if in.CompletionTime != nil {
in, out := &in.CompletionTime, &out.CompletionTime
2018-06-13 07:53:47 +00:00
*out = (*in).DeepCopy()
2017-07-06 08:07:09 +00:00
}
return
}
2017-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobStatus.
func (in *JobStatus) DeepCopy() *JobStatus {
if in == nil {
return nil
}
2017-07-06 08:07:09 +00:00
out := new(JobStatus)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
}
2017-07-06 08:07:09 +00:00
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *JobTemplate) DeepCopyInto(out *JobTemplate) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Template.DeepCopyInto(&out.Template)
return
}
2017-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobTemplate.
func (in *JobTemplate) DeepCopy() *JobTemplate {
if in == nil {
return nil
}
2017-07-06 08:07:09 +00:00
out := new(JobTemplate)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
}
2017-07-06 08:07:09 +00:00
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
2017-07-31 14:33:00 +00:00
func (in *JobTemplate) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
2017-07-06 08:07:09 +00:00
return c
}
2018-02-27 01:16:14 +00:00
return nil
2017-07-06 08:07:09 +00:00
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *JobTemplateSpec) DeepCopyInto(out *JobTemplateSpec) {
*out = *in
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)
return
}
2017-07-31 14:33:00 +00:00
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobTemplateSpec.
func (in *JobTemplateSpec) DeepCopy() *JobTemplateSpec {
if in == nil {
return nil
}
2017-07-06 08:07:09 +00:00
out := new(JobTemplateSpec)
2017-07-31 14:33:00 +00:00
in.DeepCopyInto(out)
2017-07-06 08:07:09 +00:00
return out
}