403 lines
11 KiB
Go
Generated
403 lines
11 KiB
Go
Generated
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2018 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 controller-gen. DO NOT EDIT.
|
|
|
|
package v1beta1
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Application) DeepCopyInto(out *Application) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Application.
|
|
func (in *Application) DeepCopy() *Application {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Application)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Application) 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 *ApplicationList) DeepCopyInto(out *ApplicationList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Application, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationList.
|
|
func (in *ApplicationList) DeepCopy() *ApplicationList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ApplicationList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ApplicationList) 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 *ApplicationSpec) DeepCopyInto(out *ApplicationSpec) {
|
|
*out = *in
|
|
if in.ComponentGroupKinds != nil {
|
|
in, out := &in.ComponentGroupKinds, &out.ComponentGroupKinds
|
|
*out = make([]v1.GroupKind, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
in.Descriptor.DeepCopyInto(&out.Descriptor)
|
|
if in.Selector != nil {
|
|
in, out := &in.Selector, &out.Selector
|
|
*out = new(v1.LabelSelector)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Info != nil {
|
|
in, out := &in.Info, &out.Info
|
|
*out = make([]InfoItem, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSpec.
|
|
func (in *ApplicationSpec) DeepCopy() *ApplicationSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ApplicationSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ApplicationStatus) DeepCopyInto(out *ApplicationStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
in.ComponentList.DeepCopyInto(&out.ComponentList)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationStatus.
|
|
func (in *ApplicationStatus) DeepCopy() *ApplicationStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ApplicationStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ComponentList) DeepCopyInto(out *ComponentList) {
|
|
*out = *in
|
|
if in.Objects != nil {
|
|
in, out := &in.Objects, &out.Objects
|
|
*out = make([]ObjectStatus, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComponentList.
|
|
func (in *ComponentList) DeepCopy() *ComponentList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ComponentList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Condition) DeepCopyInto(out *Condition) {
|
|
*out = *in
|
|
in.LastUpdateTime.DeepCopyInto(&out.LastUpdateTime)
|
|
in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Condition.
|
|
func (in *Condition) DeepCopy() *Condition {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Condition)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ConfigMapKeySelector) DeepCopyInto(out *ConfigMapKeySelector) {
|
|
*out = *in
|
|
out.ObjectReference = in.ObjectReference
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigMapKeySelector.
|
|
func (in *ConfigMapKeySelector) DeepCopy() *ConfigMapKeySelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ConfigMapKeySelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ContactData) DeepCopyInto(out *ContactData) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContactData.
|
|
func (in *ContactData) DeepCopy() *ContactData {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ContactData)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Descriptor) DeepCopyInto(out *Descriptor) {
|
|
*out = *in
|
|
if in.Icons != nil {
|
|
in, out := &in.Icons, &out.Icons
|
|
*out = make([]ImageSpec, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Maintainers != nil {
|
|
in, out := &in.Maintainers, &out.Maintainers
|
|
*out = make([]ContactData, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Owners != nil {
|
|
in, out := &in.Owners, &out.Owners
|
|
*out = make([]ContactData, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Keywords != nil {
|
|
in, out := &in.Keywords, &out.Keywords
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Links != nil {
|
|
in, out := &in.Links, &out.Links
|
|
*out = make([]Link, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Descriptor.
|
|
func (in *Descriptor) DeepCopy() *Descriptor {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Descriptor)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ImageSpec) DeepCopyInto(out *ImageSpec) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageSpec.
|
|
func (in *ImageSpec) DeepCopy() *ImageSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ImageSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfoItem) DeepCopyInto(out *InfoItem) {
|
|
*out = *in
|
|
if in.ValueFrom != nil {
|
|
in, out := &in.ValueFrom, &out.ValueFrom
|
|
*out = new(InfoItemSource)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfoItem.
|
|
func (in *InfoItem) DeepCopy() *InfoItem {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfoItem)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfoItemSource) DeepCopyInto(out *InfoItemSource) {
|
|
*out = *in
|
|
if in.SecretKeyRef != nil {
|
|
in, out := &in.SecretKeyRef, &out.SecretKeyRef
|
|
*out = new(SecretKeySelector)
|
|
**out = **in
|
|
}
|
|
if in.ConfigMapKeyRef != nil {
|
|
in, out := &in.ConfigMapKeyRef, &out.ConfigMapKeyRef
|
|
*out = new(ConfigMapKeySelector)
|
|
**out = **in
|
|
}
|
|
if in.ServiceRef != nil {
|
|
in, out := &in.ServiceRef, &out.ServiceRef
|
|
*out = new(ServiceSelector)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.IngressRef != nil {
|
|
in, out := &in.IngressRef, &out.IngressRef
|
|
*out = new(IngressSelector)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfoItemSource.
|
|
func (in *InfoItemSource) DeepCopy() *InfoItemSource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfoItemSource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *IngressSelector) DeepCopyInto(out *IngressSelector) {
|
|
*out = *in
|
|
out.ObjectReference = in.ObjectReference
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressSelector.
|
|
func (in *IngressSelector) DeepCopy() *IngressSelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(IngressSelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Link) DeepCopyInto(out *Link) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Link.
|
|
func (in *Link) DeepCopy() *Link {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Link)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ObjectStatus) DeepCopyInto(out *ObjectStatus) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObjectStatus.
|
|
func (in *ObjectStatus) DeepCopy() *ObjectStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ObjectStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SecretKeySelector) DeepCopyInto(out *SecretKeySelector) {
|
|
*out = *in
|
|
out.ObjectReference = in.ObjectReference
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretKeySelector.
|
|
func (in *SecretKeySelector) DeepCopy() *SecretKeySelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SecretKeySelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ServiceSelector) DeepCopyInto(out *ServiceSelector) {
|
|
*out = *in
|
|
out.ObjectReference = in.ObjectReference
|
|
if in.Port != nil {
|
|
in, out := &in.Port, &out.Port
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSelector.
|
|
func (in *ServiceSelector) DeepCopy() *ServiceSelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ServiceSelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|