update dependencies (#6267)
Signed-off-by: hongming <coder.scala@gmail.com>
This commit is contained in:
37
vendor/k8s.io/component-base/logs/api/v1/zz_generated.deepcopy.go
generated
vendored
37
vendor/k8s.io/component-base/logs/api/v1/zz_generated.deepcopy.go
generated
vendored
@@ -24,6 +24,7 @@ package v1
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *FormatOptions) DeepCopyInto(out *FormatOptions) {
|
||||
*out = *in
|
||||
in.Text.DeepCopyInto(&out.Text)
|
||||
in.JSON.DeepCopyInto(&out.JSON)
|
||||
return
|
||||
}
|
||||
@@ -41,7 +42,7 @@ func (in *FormatOptions) DeepCopy() *FormatOptions {
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *JSONOptions) DeepCopyInto(out *JSONOptions) {
|
||||
*out = *in
|
||||
in.InfoBufferSize.DeepCopyInto(&out.InfoBufferSize)
|
||||
in.OutputRoutingOptions.DeepCopyInto(&out.OutputRoutingOptions)
|
||||
return
|
||||
}
|
||||
|
||||
@@ -78,6 +79,40 @@ func (in *LoggingConfiguration) DeepCopy() *LoggingConfiguration {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *OutputRoutingOptions) DeepCopyInto(out *OutputRoutingOptions) {
|
||||
*out = *in
|
||||
in.InfoBufferSize.DeepCopyInto(&out.InfoBufferSize)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OutputRoutingOptions.
|
||||
func (in *OutputRoutingOptions) DeepCopy() *OutputRoutingOptions {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(OutputRoutingOptions)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *TextOptions) DeepCopyInto(out *TextOptions) {
|
||||
*out = *in
|
||||
in.OutputRoutingOptions.DeepCopyInto(&out.OutputRoutingOptions)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TextOptions.
|
||||
func (in *TextOptions) DeepCopy() *TextOptions {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(TextOptions)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *TimeOrMetaDuration) DeepCopyInto(out *TimeOrMetaDuration) {
|
||||
*out = *in
|
||||
|
||||
Reference in New Issue
Block a user