mirror of
https://github.com/rancher/types.git
synced 2025-08-31 21:00:16 +00:00
update vendor
This commit is contained in:
@@ -184,6 +184,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*ClusterLoggingSpec).DeepCopyInto(out.(*ClusterLoggingSpec))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&ClusterLoggingSpec{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*ClusterLoggingStatus).DeepCopyInto(out.(*ClusterLoggingStatus))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&ClusterLoggingStatus{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*ClusterPipeline).DeepCopyInto(out.(*ClusterPipeline))
|
||||
return nil
|
||||
@@ -432,10 +436,6 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*LoggingCondition).DeepCopyInto(out.(*LoggingCondition))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&LoggingCondition{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*LoggingStatus).DeepCopyInto(out.(*LoggingStatus))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&LoggingStatus{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*LoggingSystemImages).DeepCopyInto(out.(*LoggingSystemImages))
|
||||
return nil
|
||||
@@ -676,6 +676,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*ProjectLoggingSpec).DeepCopyInto(out.(*ProjectLoggingSpec))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&ProjectLoggingSpec{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*ProjectLoggingStatus).DeepCopyInto(out.(*ProjectLoggingStatus))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&ProjectLoggingStatus{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*ProjectNetworkPolicy).DeepCopyInto(out.(*ProjectNetworkPolicy))
|
||||
return nil
|
||||
@@ -1973,6 +1977,28 @@ func (in *ClusterLoggingSpec) DeepCopy() *ClusterLoggingSpec {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ClusterLoggingStatus) DeepCopyInto(out *ClusterLoggingStatus) {
|
||||
*out = *in
|
||||
if in.Conditions != nil {
|
||||
in, out := &in.Conditions, &out.Conditions
|
||||
*out = make([]LoggingCondition, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
in.AppliedSpec.DeepCopyInto(&out.AppliedSpec)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterLoggingStatus.
|
||||
func (in *ClusterLoggingStatus) DeepCopy() *ClusterLoggingStatus {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ClusterLoggingStatus)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ClusterPipeline) DeepCopyInto(out *ClusterPipeline) {
|
||||
*out = *in
|
||||
@@ -3642,27 +3668,6 @@ func (in *LoggingCondition) DeepCopy() *LoggingCondition {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *LoggingStatus) DeepCopyInto(out *LoggingStatus) {
|
||||
*out = *in
|
||||
if in.Conditions != nil {
|
||||
in, out := &in.Conditions, &out.Conditions
|
||||
*out = make([]LoggingCondition, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingStatus.
|
||||
func (in *LoggingStatus) DeepCopy() *LoggingStatus {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(LoggingStatus)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *LoggingSystemImages) DeepCopyInto(out *LoggingSystemImages) {
|
||||
*out = *in
|
||||
@@ -5452,6 +5457,28 @@ func (in *ProjectLoggingSpec) DeepCopy() *ProjectLoggingSpec {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ProjectLoggingStatus) DeepCopyInto(out *ProjectLoggingStatus) {
|
||||
*out = *in
|
||||
if in.Conditions != nil {
|
||||
in, out := &in.Conditions, &out.Conditions
|
||||
*out = make([]LoggingCondition, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
in.AppliedSpec.DeepCopyInto(&out.AppliedSpec)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectLoggingStatus.
|
||||
func (in *ProjectLoggingStatus) DeepCopy() *ProjectLoggingStatus {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ProjectLoggingStatus)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ProjectNetworkPolicy) DeepCopyInto(out *ProjectNetworkPolicy) {
|
||||
*out = *in
|
||||
|
Reference in New Issue
Block a user