mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-06-11 09:53:38 -04:00
607 lines
17 KiB
Go
Generated
607 lines
17 KiB
Go
Generated
//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 scheduling
|
|
|
|
import (
|
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
core "k8s.io/kubernetes/pkg/apis/core"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *AllDisruptionMode) DeepCopyInto(out *AllDisruptionMode) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AllDisruptionMode.
|
|
func (in *AllDisruptionMode) DeepCopy() *AllDisruptionMode {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(AllDisruptionMode)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *BasicSchedulingPolicy) DeepCopyInto(out *BasicSchedulingPolicy) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicSchedulingPolicy.
|
|
func (in *BasicSchedulingPolicy) DeepCopy() *BasicSchedulingPolicy {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(BasicSchedulingPolicy)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DisruptionMode) DeepCopyInto(out *DisruptionMode) {
|
|
*out = *in
|
|
if in.Single != nil {
|
|
in, out := &in.Single, &out.Single
|
|
*out = new(SingleDisruptionMode)
|
|
**out = **in
|
|
}
|
|
if in.All != nil {
|
|
in, out := &in.All, &out.All
|
|
*out = new(AllDisruptionMode)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DisruptionMode.
|
|
func (in *DisruptionMode) DeepCopy() *DisruptionMode {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DisruptionMode)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GangSchedulingPolicy) DeepCopyInto(out *GangSchedulingPolicy) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GangSchedulingPolicy.
|
|
func (in *GangSchedulingPolicy) DeepCopy() *GangSchedulingPolicy {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GangSchedulingPolicy)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PodGroup) DeepCopyInto(out *PodGroup) {
|
|
*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 PodGroup.
|
|
func (in *PodGroup) DeepCopy() *PodGroup {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroup)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *PodGroup) 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 *PodGroupList) DeepCopyInto(out *PodGroupList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]PodGroup, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodGroupList.
|
|
func (in *PodGroupList) DeepCopy() *PodGroupList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroupList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *PodGroupList) 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 *PodGroupResourceClaim) DeepCopyInto(out *PodGroupResourceClaim) {
|
|
*out = *in
|
|
if in.ResourceClaimName != nil {
|
|
in, out := &in.ResourceClaimName, &out.ResourceClaimName
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.ResourceClaimTemplateName != nil {
|
|
in, out := &in.ResourceClaimTemplateName, &out.ResourceClaimTemplateName
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodGroupResourceClaim.
|
|
func (in *PodGroupResourceClaim) DeepCopy() *PodGroupResourceClaim {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroupResourceClaim)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PodGroupResourceClaimStatus) DeepCopyInto(out *PodGroupResourceClaimStatus) {
|
|
*out = *in
|
|
if in.ResourceClaimName != nil {
|
|
in, out := &in.ResourceClaimName, &out.ResourceClaimName
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodGroupResourceClaimStatus.
|
|
func (in *PodGroupResourceClaimStatus) DeepCopy() *PodGroupResourceClaimStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroupResourceClaimStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PodGroupSchedulingConstraints) DeepCopyInto(out *PodGroupSchedulingConstraints) {
|
|
*out = *in
|
|
if in.Topology != nil {
|
|
in, out := &in.Topology, &out.Topology
|
|
*out = make([]TopologyConstraint, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodGroupSchedulingConstraints.
|
|
func (in *PodGroupSchedulingConstraints) DeepCopy() *PodGroupSchedulingConstraints {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroupSchedulingConstraints)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PodGroupSchedulingPolicy) DeepCopyInto(out *PodGroupSchedulingPolicy) {
|
|
*out = *in
|
|
if in.Basic != nil {
|
|
in, out := &in.Basic, &out.Basic
|
|
*out = new(BasicSchedulingPolicy)
|
|
**out = **in
|
|
}
|
|
if in.Gang != nil {
|
|
in, out := &in.Gang, &out.Gang
|
|
*out = new(GangSchedulingPolicy)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodGroupSchedulingPolicy.
|
|
func (in *PodGroupSchedulingPolicy) DeepCopy() *PodGroupSchedulingPolicy {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroupSchedulingPolicy)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PodGroupSpec) DeepCopyInto(out *PodGroupSpec) {
|
|
*out = *in
|
|
if in.PodGroupTemplateRef != nil {
|
|
in, out := &in.PodGroupTemplateRef, &out.PodGroupTemplateRef
|
|
*out = new(PodGroupTemplateReference)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
in.SchedulingPolicy.DeepCopyInto(&out.SchedulingPolicy)
|
|
if in.SchedulingConstraints != nil {
|
|
in, out := &in.SchedulingConstraints, &out.SchedulingConstraints
|
|
*out = new(PodGroupSchedulingConstraints)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.ResourceClaims != nil {
|
|
in, out := &in.ResourceClaims, &out.ResourceClaims
|
|
*out = make([]PodGroupResourceClaim, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.DisruptionMode != nil {
|
|
in, out := &in.DisruptionMode, &out.DisruptionMode
|
|
*out = new(DisruptionMode)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Priority != nil {
|
|
in, out := &in.Priority, &out.Priority
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodGroupSpec.
|
|
func (in *PodGroupSpec) DeepCopy() *PodGroupSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroupSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PodGroupStatus) DeepCopyInto(out *PodGroupStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.ResourceClaimStatuses != nil {
|
|
in, out := &in.ResourceClaimStatuses, &out.ResourceClaimStatuses
|
|
*out = make([]PodGroupResourceClaimStatus, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodGroupStatus.
|
|
func (in *PodGroupStatus) DeepCopy() *PodGroupStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroupStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PodGroupTemplate) DeepCopyInto(out *PodGroupTemplate) {
|
|
*out = *in
|
|
in.SchedulingPolicy.DeepCopyInto(&out.SchedulingPolicy)
|
|
if in.SchedulingConstraints != nil {
|
|
in, out := &in.SchedulingConstraints, &out.SchedulingConstraints
|
|
*out = new(PodGroupSchedulingConstraints)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.ResourceClaims != nil {
|
|
in, out := &in.ResourceClaims, &out.ResourceClaims
|
|
*out = make([]PodGroupResourceClaim, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.DisruptionMode != nil {
|
|
in, out := &in.DisruptionMode, &out.DisruptionMode
|
|
*out = new(DisruptionMode)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Priority != nil {
|
|
in, out := &in.Priority, &out.Priority
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodGroupTemplate.
|
|
func (in *PodGroupTemplate) DeepCopy() *PodGroupTemplate {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroupTemplate)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PodGroupTemplateReference) DeepCopyInto(out *PodGroupTemplateReference) {
|
|
*out = *in
|
|
if in.Workload != nil {
|
|
in, out := &in.Workload, &out.Workload
|
|
*out = new(WorkloadPodGroupTemplateReference)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodGroupTemplateReference.
|
|
func (in *PodGroupTemplateReference) DeepCopy() *PodGroupTemplateReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodGroupTemplateReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PriorityClass) DeepCopyInto(out *PriorityClass) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
if in.PreemptionPolicy != nil {
|
|
in, out := &in.PreemptionPolicy, &out.PreemptionPolicy
|
|
*out = new(core.PreemptionPolicy)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityClass.
|
|
func (in *PriorityClass) DeepCopy() *PriorityClass {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PriorityClass)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *PriorityClass) 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 *PriorityClassList) DeepCopyInto(out *PriorityClassList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]PriorityClass, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityClassList.
|
|
func (in *PriorityClassList) DeepCopy() *PriorityClassList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PriorityClassList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *PriorityClassList) 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 *SingleDisruptionMode) DeepCopyInto(out *SingleDisruptionMode) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SingleDisruptionMode.
|
|
func (in *SingleDisruptionMode) DeepCopy() *SingleDisruptionMode {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SingleDisruptionMode)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *TopologyConstraint) DeepCopyInto(out *TopologyConstraint) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TopologyConstraint.
|
|
func (in *TopologyConstraint) DeepCopy() *TopologyConstraint {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(TopologyConstraint)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *TypedLocalObjectReference) DeepCopyInto(out *TypedLocalObjectReference) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TypedLocalObjectReference.
|
|
func (in *TypedLocalObjectReference) DeepCopy() *TypedLocalObjectReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(TypedLocalObjectReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Workload) DeepCopyInto(out *Workload) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Workload.
|
|
func (in *Workload) DeepCopy() *Workload {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Workload)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Workload) 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 *WorkloadList) DeepCopyInto(out *WorkloadList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Workload, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkloadList.
|
|
func (in *WorkloadList) DeepCopy() *WorkloadList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(WorkloadList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *WorkloadList) 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 *WorkloadPodGroupTemplateReference) DeepCopyInto(out *WorkloadPodGroupTemplateReference) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkloadPodGroupTemplateReference.
|
|
func (in *WorkloadPodGroupTemplateReference) DeepCopy() *WorkloadPodGroupTemplateReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(WorkloadPodGroupTemplateReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *WorkloadSpec) DeepCopyInto(out *WorkloadSpec) {
|
|
*out = *in
|
|
if in.ControllerRef != nil {
|
|
in, out := &in.ControllerRef, &out.ControllerRef
|
|
*out = new(TypedLocalObjectReference)
|
|
**out = **in
|
|
}
|
|
if in.PodGroupTemplates != nil {
|
|
in, out := &in.PodGroupTemplates, &out.PodGroupTemplates
|
|
*out = make([]PodGroupTemplate, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkloadSpec.
|
|
func (in *WorkloadSpec) DeepCopy() *WorkloadSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(WorkloadSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|