| //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 api |
| |
| // 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) |
| } |
| |
| // 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 Conditions) DeepCopyInto(out *Conditions) { |
| { |
| in := &in |
| *out = make(Conditions, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Conditions. |
| func (in Conditions) DeepCopy() Conditions { |
| if in == nil { |
| return nil |
| } |
| out := new(Conditions) |
| in.DeepCopyInto(out) |
| return *out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *Status) DeepCopyInto(out *Status) { |
| *out = *in |
| if in.Conditions != nil { |
| in, out := &in.Conditions, &out.Conditions |
| *out = make(Conditions, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Status. |
| func (in *Status) DeepCopy() *Status { |
| if in == nil { |
| return nil |
| } |
| out := new(Status) |
| in.DeepCopyInto(out) |
| return out |
| } |