123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- //go:build !ignore_autogenerated
- // +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.
- package v1
- import (
- corev1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- runtime "k8s.io/apimachinery/pkg/runtime"
- types "k8s.io/apimachinery/pkg/types"
- )
- // 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
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJob.
- func (in *CronJob) DeepCopy() *CronJob {
- if in == nil {
- return nil
- }
- out := new(CronJob)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *CronJob) DeepCopyObject() runtime.Object {
- 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.
- func (in *CronJobList) DeepCopyInto(out *CronJobList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.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])
- }
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJobList.
- func (in *CronJobList) DeepCopy() *CronJobList {
- if in == nil {
- return nil
- }
- out := new(CronJobList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *CronJobList) DeepCopyObject() runtime.Object {
- 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.
- func (in *CronJobSpec) DeepCopyInto(out *CronJobSpec) {
- *out = *in
- if in.TimeZone != nil {
- in, out := &in.TimeZone, &out.TimeZone
- *out = new(string)
- **out = **in
- }
- if in.StartingDeadlineSeconds != nil {
- in, out := &in.StartingDeadlineSeconds, &out.StartingDeadlineSeconds
- *out = new(int64)
- **out = **in
- }
- if in.Suspend != nil {
- in, out := &in.Suspend, &out.Suspend
- *out = new(bool)
- **out = **in
- }
- in.JobTemplate.DeepCopyInto(&out.JobTemplate)
- if in.SuccessfulJobsHistoryLimit != nil {
- in, out := &in.SuccessfulJobsHistoryLimit, &out.SuccessfulJobsHistoryLimit
- *out = new(int32)
- **out = **in
- }
- if in.FailedJobsHistoryLimit != nil {
- in, out := &in.FailedJobsHistoryLimit, &out.FailedJobsHistoryLimit
- *out = new(int32)
- **out = **in
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJobSpec.
- func (in *CronJobSpec) DeepCopy() *CronJobSpec {
- if in == nil {
- return nil
- }
- out := new(CronJobSpec)
- in.DeepCopyInto(out)
- return out
- }
- // 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
- *out = make([]corev1.ObjectReference, len(*in))
- copy(*out, *in)
- }
- if in.LastScheduleTime != nil {
- in, out := &in.LastScheduleTime, &out.LastScheduleTime
- *out = (*in).DeepCopy()
- }
- if in.LastSuccessfulTime != nil {
- in, out := &in.LastSuccessfulTime, &out.LastSuccessfulTime
- *out = (*in).DeepCopy()
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJobStatus.
- func (in *CronJobStatus) DeepCopy() *CronJobStatus {
- if in == nil {
- return nil
- }
- out := new(CronJobStatus)
- in.DeepCopyInto(out)
- return out
- }
- // 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
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Job.
- func (in *Job) DeepCopy() *Job {
- if in == nil {
- return nil
- }
- out := new(Job)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *Job) DeepCopyObject() runtime.Object {
- 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.
- func (in *JobCondition) DeepCopyInto(out *JobCondition) {
- *out = *in
- in.LastProbeTime.DeepCopyInto(&out.LastProbeTime)
- in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobCondition.
- func (in *JobCondition) DeepCopy() *JobCondition {
- if in == nil {
- return nil
- }
- out := new(JobCondition)
- in.DeepCopyInto(out)
- 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
- in.ListMeta.DeepCopyInto(&out.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])
- }
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobList.
- func (in *JobList) DeepCopy() *JobList {
- if in == nil {
- return nil
- }
- out := new(JobList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *JobList) DeepCopyObject() runtime.Object {
- 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.
- func (in *JobSpec) DeepCopyInto(out *JobSpec) {
- *out = *in
- if in.Parallelism != nil {
- in, out := &in.Parallelism, &out.Parallelism
- *out = new(int32)
- **out = **in
- }
- if in.Completions != nil {
- in, out := &in.Completions, &out.Completions
- *out = new(int32)
- **out = **in
- }
- if in.ActiveDeadlineSeconds != nil {
- in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
- *out = new(int64)
- **out = **in
- }
- if in.PodFailurePolicy != nil {
- in, out := &in.PodFailurePolicy, &out.PodFailurePolicy
- *out = new(PodFailurePolicy)
- (*in).DeepCopyInto(*out)
- }
- if in.BackoffLimit != nil {
- in, out := &in.BackoffLimit, &out.BackoffLimit
- *out = new(int32)
- **out = **in
- }
- if in.BackoffLimitPerIndex != nil {
- in, out := &in.BackoffLimitPerIndex, &out.BackoffLimitPerIndex
- *out = new(int32)
- **out = **in
- }
- if in.MaxFailedIndexes != nil {
- in, out := &in.MaxFailedIndexes, &out.MaxFailedIndexes
- *out = new(int32)
- **out = **in
- }
- if in.Selector != nil {
- in, out := &in.Selector, &out.Selector
- *out = new(metav1.LabelSelector)
- (*in).DeepCopyInto(*out)
- }
- if in.ManualSelector != nil {
- in, out := &in.ManualSelector, &out.ManualSelector
- *out = new(bool)
- **out = **in
- }
- in.Template.DeepCopyInto(&out.Template)
- if in.TTLSecondsAfterFinished != nil {
- in, out := &in.TTLSecondsAfterFinished, &out.TTLSecondsAfterFinished
- *out = new(int32)
- **out = **in
- }
- if in.CompletionMode != nil {
- in, out := &in.CompletionMode, &out.CompletionMode
- *out = new(CompletionMode)
- **out = **in
- }
- if in.Suspend != nil {
- in, out := &in.Suspend, &out.Suspend
- *out = new(bool)
- **out = **in
- }
- if in.PodReplacementPolicy != nil {
- in, out := &in.PodReplacementPolicy, &out.PodReplacementPolicy
- *out = new(PodReplacementPolicy)
- **out = **in
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobSpec.
- func (in *JobSpec) DeepCopy() *JobSpec {
- if in == nil {
- return nil
- }
- out := new(JobSpec)
- in.DeepCopyInto(out)
- return out
- }
- // 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])
- }
- }
- if in.StartTime != nil {
- in, out := &in.StartTime, &out.StartTime
- *out = (*in).DeepCopy()
- }
- if in.CompletionTime != nil {
- in, out := &in.CompletionTime, &out.CompletionTime
- *out = (*in).DeepCopy()
- }
- if in.Terminating != nil {
- in, out := &in.Terminating, &out.Terminating
- *out = new(int32)
- **out = **in
- }
- if in.FailedIndexes != nil {
- in, out := &in.FailedIndexes, &out.FailedIndexes
- *out = new(string)
- **out = **in
- }
- if in.UncountedTerminatedPods != nil {
- in, out := &in.UncountedTerminatedPods, &out.UncountedTerminatedPods
- *out = new(UncountedTerminatedPods)
- (*in).DeepCopyInto(*out)
- }
- if in.Ready != nil {
- in, out := &in.Ready, &out.Ready
- *out = new(int32)
- **out = **in
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobStatus.
- func (in *JobStatus) DeepCopy() *JobStatus {
- if in == nil {
- return nil
- }
- out := new(JobStatus)
- in.DeepCopyInto(out)
- return out
- }
- // 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
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobTemplateSpec.
- func (in *JobTemplateSpec) DeepCopy() *JobTemplateSpec {
- if in == nil {
- return nil
- }
- out := new(JobTemplateSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PodFailurePolicy) DeepCopyInto(out *PodFailurePolicy) {
- *out = *in
- if in.Rules != nil {
- in, out := &in.Rules, &out.Rules
- *out = make([]PodFailurePolicyRule, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodFailurePolicy.
- func (in *PodFailurePolicy) DeepCopy() *PodFailurePolicy {
- if in == nil {
- return nil
- }
- out := new(PodFailurePolicy)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PodFailurePolicyOnExitCodesRequirement) DeepCopyInto(out *PodFailurePolicyOnExitCodesRequirement) {
- *out = *in
- if in.ContainerName != nil {
- in, out := &in.ContainerName, &out.ContainerName
- *out = new(string)
- **out = **in
- }
- if in.Values != nil {
- in, out := &in.Values, &out.Values
- *out = make([]int32, len(*in))
- copy(*out, *in)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodFailurePolicyOnExitCodesRequirement.
- func (in *PodFailurePolicyOnExitCodesRequirement) DeepCopy() *PodFailurePolicyOnExitCodesRequirement {
- if in == nil {
- return nil
- }
- out := new(PodFailurePolicyOnExitCodesRequirement)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PodFailurePolicyOnPodConditionsPattern) DeepCopyInto(out *PodFailurePolicyOnPodConditionsPattern) {
- *out = *in
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodFailurePolicyOnPodConditionsPattern.
- func (in *PodFailurePolicyOnPodConditionsPattern) DeepCopy() *PodFailurePolicyOnPodConditionsPattern {
- if in == nil {
- return nil
- }
- out := new(PodFailurePolicyOnPodConditionsPattern)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PodFailurePolicyRule) DeepCopyInto(out *PodFailurePolicyRule) {
- *out = *in
- if in.OnExitCodes != nil {
- in, out := &in.OnExitCodes, &out.OnExitCodes
- *out = new(PodFailurePolicyOnExitCodesRequirement)
- (*in).DeepCopyInto(*out)
- }
- if in.OnPodConditions != nil {
- in, out := &in.OnPodConditions, &out.OnPodConditions
- *out = make([]PodFailurePolicyOnPodConditionsPattern, len(*in))
- copy(*out, *in)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodFailurePolicyRule.
- func (in *PodFailurePolicyRule) DeepCopy() *PodFailurePolicyRule {
- if in == nil {
- return nil
- }
- out := new(PodFailurePolicyRule)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *UncountedTerminatedPods) DeepCopyInto(out *UncountedTerminatedPods) {
- *out = *in
- if in.Succeeded != nil {
- in, out := &in.Succeeded, &out.Succeeded
- *out = make([]types.UID, len(*in))
- copy(*out, *in)
- }
- if in.Failed != nil {
- in, out := &in.Failed, &out.Failed
- *out = make([]types.UID, len(*in))
- copy(*out, *in)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UncountedTerminatedPods.
- func (in *UncountedTerminatedPods) DeepCopy() *UncountedTerminatedPods {
- if in == nil {
- return nil
- }
- out := new(UncountedTerminatedPods)
- in.DeepCopyInto(out)
- return out
- }
|