| //go:build !ignore_autogenerated |
| // +build !ignore_autogenerated |
| |
| // Copyright 2023 Red Hat, Inc. and/or its affiliates |
| // |
| // 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 v1alpha08 |
| |
| import ( |
| "github.com/serverlessworkflow/sdk-go/v2/model" |
| v1 "k8s.io/apimachinery/pkg/apis/meta/v1" |
| "k8s.io/apimachinery/pkg/runtime" |
| "knative.dev/pkg/apis" |
| ) |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *BuildPlatformTemplate) DeepCopyInto(out *BuildPlatformTemplate) { |
| *out = *in |
| if in.Timeout != nil { |
| in, out := &in.Timeout, &out.Timeout |
| *out = new(v1.Duration) |
| **out = **in |
| } |
| if in.BuildStrategyOptions != nil { |
| in, out := &in.BuildStrategyOptions, &out.BuildStrategyOptions |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| out.Registry = in.Registry |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildPlatformTemplate. |
| func (in *BuildPlatformTemplate) DeepCopy() *BuildPlatformTemplate { |
| if in == nil { |
| return nil |
| } |
| out := new(BuildPlatformTemplate) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *BuildTemplate) DeepCopyInto(out *BuildTemplate) { |
| *out = *in |
| out.Timeout = in.Timeout |
| in.Resources.DeepCopyInto(&out.Resources) |
| if in.Arguments != nil { |
| in, out := &in.Arguments, &out.Arguments |
| *out = make([]string, len(*in)) |
| copy(*out, *in) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildTemplate. |
| func (in *BuildTemplate) DeepCopy() *BuildTemplate { |
| if in == nil { |
| return nil |
| } |
| out := new(BuildTemplate) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ConfigMapWorkflowResource) DeepCopyInto(out *ConfigMapWorkflowResource) { |
| *out = *in |
| out.ConfigMap = in.ConfigMap |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigMapWorkflowResource. |
| func (in *ConfigMapWorkflowResource) DeepCopy() *ConfigMapWorkflowResource { |
| if in == nil { |
| return nil |
| } |
| out := new(ConfigMapWorkflowResource) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ConfigurationSpec) DeepCopyInto(out *ConfigurationSpec) { |
| *out = *in |
| out.Value = in.Value |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationSpec. |
| func (in *ConfigurationSpec) DeepCopy() *ConfigurationSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(ConfigurationSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *Flow) DeepCopyInto(out *Flow) { |
| *out = *in |
| if in.Start != nil { |
| in, out := &in.Start, &out.Start |
| *out = new(model.Start) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Annotations != nil { |
| in, out := &in.Annotations, &out.Annotations |
| *out = make([]string, len(*in)) |
| copy(*out, *in) |
| } |
| if in.DataInputSchema != nil { |
| in, out := &in.DataInputSchema, &out.DataInputSchema |
| *out = new(model.DataInputSchema) |
| **out = **in |
| } |
| if in.Secrets != nil { |
| in, out := &in.Secrets, &out.Secrets |
| *out = make(model.Secrets, len(*in)) |
| copy(*out, *in) |
| } |
| if in.Constants != nil { |
| in, out := &in.Constants, &out.Constants |
| *out = new(model.Constants) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Timeouts != nil { |
| in, out := &in.Timeouts, &out.Timeouts |
| *out = new(model.Timeouts) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Errors != nil { |
| in, out := &in.Errors, &out.Errors |
| *out = make(model.Errors, len(*in)) |
| copy(*out, *in) |
| } |
| if in.Metadata != nil { |
| in, out := &in.Metadata, &out.Metadata |
| *out = make(model.Metadata, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = *val.DeepCopy() |
| } |
| } |
| if in.Auth != nil { |
| in, out := &in.Auth, &out.Auth |
| *out = make(model.Auths, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.States != nil { |
| in, out := &in.States, &out.States |
| *out = make([]model.State, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.Events != nil { |
| in, out := &in.Events, &out.Events |
| *out = make(model.Events, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.Functions != nil { |
| in, out := &in.Functions, &out.Functions |
| *out = make(model.Functions, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.Retries != nil { |
| in, out := &in.Retries, &out.Retries |
| *out = make(model.Retries, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Flow. |
| func (in *Flow) DeepCopy() *Flow { |
| if in == nil { |
| return nil |
| } |
| out := new(Flow) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *PlatformCondition) DeepCopyInto(out *PlatformCondition) { |
| *out = *in |
| in.LastUpdateTime.DeepCopyInto(&out.LastUpdateTime) |
| in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PlatformCondition. |
| func (in *PlatformCondition) DeepCopy() *PlatformCondition { |
| if in == nil { |
| return nil |
| } |
| out := new(PlatformCondition) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *RegistrySpec) DeepCopyInto(out *RegistrySpec) { |
| *out = *in |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RegistrySpec. |
| func (in *RegistrySpec) DeepCopy() *RegistrySpec { |
| if in == nil { |
| return nil |
| } |
| out := new(RegistrySpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SonataFlow) DeepCopyInto(out *SonataFlow) { |
| *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 SonataFlow. |
| func (in *SonataFlow) DeepCopy() *SonataFlow { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlow) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *SonataFlow) 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 *SonataFlowBuild) DeepCopyInto(out *SonataFlowBuild) { |
| *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 SonataFlowBuild. |
| func (in *SonataFlowBuild) DeepCopy() *SonataFlowBuild { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowBuild) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *SonataFlowBuild) 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 *SonataFlowBuildList) DeepCopyInto(out *SonataFlowBuildList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]SonataFlowBuild, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SonataFlowBuildList. |
| func (in *SonataFlowBuildList) DeepCopy() *SonataFlowBuildList { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowBuildList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *SonataFlowBuildList) 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 *SonataFlowBuildSpec) DeepCopyInto(out *SonataFlowBuildSpec) { |
| *out = *in |
| in.BuildTemplate.DeepCopyInto(&out.BuildTemplate) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SonataFlowBuildSpec. |
| func (in *SonataFlowBuildSpec) DeepCopy() *SonataFlowBuildSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowBuildSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SonataFlowBuildStatus) DeepCopyInto(out *SonataFlowBuildStatus) { |
| *out = *in |
| in.InnerBuild.DeepCopyInto(&out.InnerBuild) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SonataFlowBuildStatus. |
| func (in *SonataFlowBuildStatus) DeepCopy() *SonataFlowBuildStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowBuildStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SonataFlowList) DeepCopyInto(out *SonataFlowList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]SonataFlow, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SonataFlowList. |
| func (in *SonataFlowList) DeepCopy() *SonataFlowList { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *SonataFlowList) 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 *SonataFlowPlatform) DeepCopyInto(out *SonataFlowPlatform) { |
| *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 SonataFlowPlatform. |
| func (in *SonataFlowPlatform) DeepCopy() *SonataFlowPlatform { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowPlatform) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *SonataFlowPlatform) 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 *SonataFlowPlatformList) DeepCopyInto(out *SonataFlowPlatformList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]SonataFlowPlatform, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SonataFlowPlatformList. |
| func (in *SonataFlowPlatformList) DeepCopy() *SonataFlowPlatformList { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowPlatformList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *SonataFlowPlatformList) 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 *SonataFlowPlatformSpec) DeepCopyInto(out *SonataFlowPlatformSpec) { |
| *out = *in |
| in.BuildTemplate.DeepCopyInto(&out.BuildTemplate) |
| in.BuildPlatform.DeepCopyInto(&out.BuildPlatform) |
| out.Configuration = in.Configuration |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SonataFlowPlatformSpec. |
| func (in *SonataFlowPlatformSpec) DeepCopy() *SonataFlowPlatformSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowPlatformSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SonataFlowPlatformStatus) DeepCopyInto(out *SonataFlowPlatformStatus) { |
| *out = *in |
| if in.Conditions != nil { |
| in, out := &in.Conditions, &out.Conditions |
| *out = make([]PlatformCondition, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.Info != nil { |
| in, out := &in.Info, &out.Info |
| *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 SonataFlowPlatformStatus. |
| func (in *SonataFlowPlatformStatus) DeepCopy() *SonataFlowPlatformStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowPlatformStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SonataFlowSpec) DeepCopyInto(out *SonataFlowSpec) { |
| *out = *in |
| in.Flow.DeepCopyInto(&out.Flow) |
| in.Resources.DeepCopyInto(&out.Resources) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SonataFlowSpec. |
| func (in *SonataFlowSpec) DeepCopy() *SonataFlowSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SonataFlowStatus) DeepCopyInto(out *SonataFlowStatus) { |
| *out = *in |
| in.Status.DeepCopyInto(&out.Status) |
| in.Address.DeepCopyInto(&out.Address) |
| in.LastTimeRecoverAttempt.DeepCopyInto(&out.LastTimeRecoverAttempt) |
| if in.Endpoint != nil { |
| in, out := &in.Endpoint, &out.Endpoint |
| *out = new(apis.URL) |
| (*in).DeepCopyInto(*out) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SonataFlowStatus. |
| func (in *SonataFlowStatus) DeepCopy() *SonataFlowStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(SonataFlowStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *WorkflowResources) DeepCopyInto(out *WorkflowResources) { |
| *out = *in |
| if in.ConfigMaps != nil { |
| in, out := &in.ConfigMaps, &out.ConfigMaps |
| *out = make([]ConfigMapWorkflowResource, len(*in)) |
| copy(*out, *in) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkflowResources. |
| func (in *WorkflowResources) DeepCopy() *WorkflowResources { |
| if in == nil { |
| return nil |
| } |
| out := new(WorkflowResources) |
| in.DeepCopyInto(out) |
| return out |
| } |