034efc3682
Data structure representing plugin configurations should be a part of airshipctl API module. Plugin implementations will reside in document package. Change-Id: Id2e359b747a16a5573052cfb05c1148d346db508 Relates-To: #322
529 lines
15 KiB
Go
529 lines
15 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
// Code generated by controller-gen. DO NOT EDIT.
|
|
|
|
package v1alpha1
|
|
|
|
import (
|
|
"k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ApplyConfig) DeepCopyInto(out *ApplyConfig) {
|
|
*out = *in
|
|
out.WaitOptions = in.WaitOptions
|
|
out.PruneOptions = in.PruneOptions
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplyConfig.
|
|
func (in *ApplyConfig) DeepCopy() *ApplyConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ApplyConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ApplyPruneOptions) DeepCopyInto(out *ApplyPruneOptions) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplyPruneOptions.
|
|
func (in *ApplyPruneOptions) DeepCopy() *ApplyPruneOptions {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ApplyPruneOptions)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ApplyWaitOptions) DeepCopyInto(out *ApplyWaitOptions) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplyWaitOptions.
|
|
func (in *ApplyWaitOptions) DeepCopy() *ApplyWaitOptions {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ApplyWaitOptions)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Builder) DeepCopyInto(out *Builder) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Builder.
|
|
func (in *Builder) DeepCopy() *Builder {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Builder)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Cluster) DeepCopyInto(out *Cluster) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Cluster.
|
|
func (in *Cluster) DeepCopy() *Cluster {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Cluster)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ClusterMap) DeepCopyInto(out *ClusterMap) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
if in.Map != nil {
|
|
in, out := &in.Map, &out.Map
|
|
*out = make(map[string]*Cluster, len(*in))
|
|
for key, val := range *in {
|
|
var outVal *Cluster
|
|
if val == nil {
|
|
(*out)[key] = nil
|
|
} else {
|
|
in, out := &val, &outVal
|
|
*out = new(Cluster)
|
|
**out = **in
|
|
}
|
|
(*out)[key] = outVal
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterMap.
|
|
func (in *ClusterMap) DeepCopy() *ClusterMap {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClusterMap)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ClusterMap) 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 *Clusterctl) DeepCopyInto(out *Clusterctl) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
if in.Providers != nil {
|
|
in, out := &in.Providers, &out.Providers
|
|
*out = make([]*Provider, len(*in))
|
|
for i := range *in {
|
|
if (*in)[i] != nil {
|
|
in, out := &(*in)[i], &(*out)[i]
|
|
*out = new(Provider)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
}
|
|
if in.InitOptions != nil {
|
|
in, out := &in.InitOptions, &out.InitOptions
|
|
*out = new(InitOptions)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.MoveOptions != nil {
|
|
in, out := &in.MoveOptions, &out.MoveOptions
|
|
*out = new(MoveOptions)
|
|
**out = **in
|
|
}
|
|
if in.AdditionalComponentVariables != nil {
|
|
in, out := &in.AdditionalComponentVariables, &out.AdditionalComponentVariables
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Clusterctl.
|
|
func (in *Clusterctl) DeepCopy() *Clusterctl {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Clusterctl)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Clusterctl) 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 *Container) DeepCopyInto(out *Container) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Container.
|
|
func (in *Container) DeepCopy() *Container {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Container)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ImageConfiguration) DeepCopyInto(out *ImageConfiguration) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
if in.Container != nil {
|
|
in, out := &in.Container, &out.Container
|
|
*out = new(Container)
|
|
**out = **in
|
|
}
|
|
if in.Builder != nil {
|
|
in, out := &in.Builder, &out.Builder
|
|
*out = new(Builder)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageConfiguration.
|
|
func (in *ImageConfiguration) DeepCopy() *ImageConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ImageConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ImageConfiguration) 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 *InitOptions) DeepCopyInto(out *InitOptions) {
|
|
*out = *in
|
|
if in.BootstrapProviders != nil {
|
|
in, out := &in.BootstrapProviders, &out.BootstrapProviders
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.InfrastructureProviders != nil {
|
|
in, out := &in.InfrastructureProviders, &out.InfrastructureProviders
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ControlPlaneProviders != nil {
|
|
in, out := &in.ControlPlaneProviders, &out.ControlPlaneProviders
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.KubeConfigRef != nil {
|
|
in, out := &in.KubeConfigRef, &out.KubeConfigRef
|
|
*out = new(v1.ObjectReference)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InitOptions.
|
|
func (in *InitOptions) DeepCopy() *InitOptions {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InitOptions)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeConfig) DeepCopyInto(out *KubeConfig) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Config.DeepCopyInto(&out.Config)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeConfig.
|
|
func (in *KubeConfig) DeepCopy() *KubeConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *KubeConfig) 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 *KubernetesApply) DeepCopyInto(out *KubernetesApply) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Config = in.Config
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesApply.
|
|
func (in *KubernetesApply) DeepCopy() *KubernetesApply {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubernetesApply)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *KubernetesApply) 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 *MoveOptions) DeepCopyInto(out *MoveOptions) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MoveOptions.
|
|
func (in *MoveOptions) DeepCopy() *MoveOptions {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MoveOptions)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Phase) DeepCopyInto(out *Phase) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Config.DeepCopyInto(&out.Config)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Phase.
|
|
func (in *Phase) DeepCopy() *Phase {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Phase)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Phase) 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 *PhaseConfig) DeepCopyInto(out *PhaseConfig) {
|
|
*out = *in
|
|
if in.ExecutorRef != nil {
|
|
in, out := &in.ExecutorRef, &out.ExecutorRef
|
|
*out = new(v1.ObjectReference)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhaseConfig.
|
|
func (in *PhaseConfig) DeepCopy() *PhaseConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PhaseConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PhaseGroup) DeepCopyInto(out *PhaseGroup) {
|
|
*out = *in
|
|
if in.Phases != nil {
|
|
in, out := &in.Phases, &out.Phases
|
|
*out = make([]PhaseGroupStep, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhaseGroup.
|
|
func (in *PhaseGroup) DeepCopy() *PhaseGroup {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PhaseGroup)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PhaseGroupStep) DeepCopyInto(out *PhaseGroupStep) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhaseGroupStep.
|
|
func (in *PhaseGroupStep) DeepCopy() *PhaseGroupStep {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PhaseGroupStep)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PhasePlan) DeepCopyInto(out *PhasePlan) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
if in.PhaseGroups != nil {
|
|
in, out := &in.PhaseGroups, &out.PhaseGroups
|
|
*out = make([]PhaseGroup, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhasePlan.
|
|
func (in *PhasePlan) DeepCopy() *PhasePlan {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PhasePlan)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *PhasePlan) 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 *Provider) DeepCopyInto(out *Provider) {
|
|
*out = *in
|
|
if in.Versions != nil {
|
|
in, out := &in.Versions, &out.Versions
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Provider.
|
|
func (in *Provider) DeepCopy() *Provider {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Provider)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *RemoteDirectConfiguration) DeepCopyInto(out *RemoteDirectConfiguration) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RemoteDirectConfiguration.
|
|
func (in *RemoteDirectConfiguration) DeepCopy() *RemoteDirectConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(RemoteDirectConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *RemoteDirectConfiguration) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplacementTransformer.
|
|
func (in *ReplacementTransformer) DeepCopy() *ReplacementTransformer {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ReplacementTransformer)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ReplacementTransformer) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Templater.
|
|
func (in *Templater) DeepCopy() *Templater {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Templater)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Templater) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|