1
0
mirror of https://github.com/rancher/types.git synced 2025-09-17 07:19:17 +00:00

generate code

This commit is contained in:
Aiwantaozi
2018-12-21 15:18:19 +08:00
committed by Craig Jellick
parent 8bcbea18a1
commit 771d9ad9fa
8 changed files with 264 additions and 97 deletions

View File

@@ -1213,7 +1213,8 @@ func (in *ClusterLoggingList) DeepCopyObject() runtime.Object {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ClusterLoggingSpec) DeepCopyInto(out *ClusterLoggingSpec) {
*out = *in
in.LoggingCommonSpec.DeepCopyInto(&out.LoggingCommonSpec)
in.LoggingTargets.DeepCopyInto(&out.LoggingTargets)
in.LoggingCommonField.DeepCopyInto(&out.LoggingCommonField)
return
}
@@ -1622,6 +1623,23 @@ func (in *ClusterStatus) DeepCopy() *ClusterStatus {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ClusterTestInput) DeepCopyInto(out *ClusterTestInput) {
*out = *in
in.LoggingTargets.DeepCopyInto(&out.LoggingTargets)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterTestInput.
func (in *ClusterTestInput) DeepCopy() *ClusterTestInput {
if in == nil {
return nil
}
out := new(ClusterTestInput)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CommonGroupField) DeepCopyInto(out *CommonGroupField) {
*out = *in
@@ -1856,6 +1874,22 @@ func (in *CustomConfig) DeepCopy() *CustomConfig {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CustomTargetConfig) DeepCopyInto(out *CustomTargetConfig) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomTargetConfig.
func (in *CustomTargetConfig) DeepCopy() *CustomTargetConfig {
if in == nil {
return nil
}
out := new(CustomTargetConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DiskVsphereOpts) DeepCopyInto(out *DiskVsphereOpts) {
*out = *in
@@ -3572,7 +3606,7 @@ func (in *LocalConfig) DeepCopyObject() runtime.Object {
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *LoggingCommonSpec) DeepCopyInto(out *LoggingCommonSpec) {
func (in *LoggingCommonField) DeepCopyInto(out *LoggingCommonField) {
*out = *in
if in.OutputTags != nil {
in, out := &in.OutputTags, &out.OutputTags
@@ -3581,40 +3615,15 @@ func (in *LoggingCommonSpec) DeepCopyInto(out *LoggingCommonSpec) {
(*out)[key] = val
}
}
if in.ElasticsearchConfig != nil {
in, out := &in.ElasticsearchConfig, &out.ElasticsearchConfig
*out = new(ElasticsearchConfig)
**out = **in
}
if in.SplunkConfig != nil {
in, out := &in.SplunkConfig, &out.SplunkConfig
*out = new(SplunkConfig)
**out = **in
}
if in.KafkaConfig != nil {
in, out := &in.KafkaConfig, &out.KafkaConfig
*out = new(KafkaConfig)
(*in).DeepCopyInto(*out)
}
if in.SyslogConfig != nil {
in, out := &in.SyslogConfig, &out.SyslogConfig
*out = new(SyslogConfig)
**out = **in
}
if in.FluentForwarderConfig != nil {
in, out := &in.FluentForwarderConfig, &out.FluentForwarderConfig
*out = new(FluentForwarderConfig)
(*in).DeepCopyInto(*out)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingCommonSpec.
func (in *LoggingCommonSpec) DeepCopy() *LoggingCommonSpec {
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingCommonField.
func (in *LoggingCommonField) DeepCopy() *LoggingCommonField {
if in == nil {
return nil
}
out := new(LoggingCommonSpec)
out := new(LoggingCommonField)
in.DeepCopyInto(out)
return out
}
@@ -3651,6 +3660,52 @@ func (in *LoggingSystemImages) DeepCopy() *LoggingSystemImages {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *LoggingTargets) DeepCopyInto(out *LoggingTargets) {
*out = *in
if in.ElasticsearchConfig != nil {
in, out := &in.ElasticsearchConfig, &out.ElasticsearchConfig
*out = new(ElasticsearchConfig)
**out = **in
}
if in.SplunkConfig != nil {
in, out := &in.SplunkConfig, &out.SplunkConfig
*out = new(SplunkConfig)
**out = **in
}
if in.KafkaConfig != nil {
in, out := &in.KafkaConfig, &out.KafkaConfig
*out = new(KafkaConfig)
(*in).DeepCopyInto(*out)
}
if in.SyslogConfig != nil {
in, out := &in.SyslogConfig, &out.SyslogConfig
*out = new(SyslogConfig)
**out = **in
}
if in.FluentForwarderConfig != nil {
in, out := &in.FluentForwarderConfig, &out.FluentForwarderConfig
*out = new(FluentForwarderConfig)
(*in).DeepCopyInto(*out)
}
if in.CustomTargetConfig != nil {
in, out := &in.CustomTargetConfig, &out.CustomTargetConfig
*out = new(CustomTargetConfig)
**out = **in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingTargets.
func (in *LoggingTargets) DeepCopy() *LoggingTargets {
if in == nil {
return nil
}
out := new(LoggingTargets)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in MapStringInterface) DeepCopyInto(out *MapStringInterface) {
{
@@ -5926,7 +5981,8 @@ func (in *ProjectLoggingList) DeepCopyObject() runtime.Object {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ProjectLoggingSpec) DeepCopyInto(out *ProjectLoggingSpec) {
*out = *in
in.LoggingCommonSpec.DeepCopyInto(&out.LoggingCommonSpec)
in.LoggingTargets.DeepCopyInto(&out.LoggingTargets)
in.LoggingCommonField.DeepCopyInto(&out.LoggingCommonField)
return
}
@@ -6284,6 +6340,23 @@ func (in *ProjectStatus) DeepCopy() *ProjectStatus {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ProjectTestInput) DeepCopyInto(out *ProjectTestInput) {
*out = *in
in.LoggingTargets.DeepCopyInto(&out.LoggingTargets)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectTestInput.
func (in *ProjectTestInput) DeepCopy() *ProjectTestInput {
if in == nil {
return nil
}
out := new(ProjectTestInput)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PublicEndpoint) DeepCopyInto(out *PublicEndpoint) {
*out = *in