1
0
mirror of https://github.com/rancher/types.git synced 2025-09-16 14:59:16 +00:00

generated changes

This commit is contained in:
Murali Paluru
2020-02-21 23:10:00 +05:30
parent 36ee6103df
commit 2a517d6e08
17 changed files with 246 additions and 30 deletions

View File

@@ -929,7 +929,7 @@ func (in *CisBenchmarkVersion) DeepCopyInto(out *CisBenchmarkVersion) {
out.Namespaced = in.Namespaced
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
out.Info = in.Info
in.Info.DeepCopyInto(&out.Info)
return
}
@@ -954,6 +954,20 @@ func (in *CisBenchmarkVersion) DeepCopyObject() runtime.Object {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CisBenchmarkVersionInfo) DeepCopyInto(out *CisBenchmarkVersionInfo) {
*out = *in
if in.SkippedChecks != nil {
in, out := &in.SkippedChecks, &out.SkippedChecks
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.NotApplicableChecks != nil {
in, out := &in.NotApplicableChecks, &out.NotApplicableChecks
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}
@@ -1098,6 +1112,22 @@ func (in *CisScanConfig) DeepCopy() *CisScanConfig {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CisScanStatus) DeepCopyInto(out *CisScanStatus) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CisScanStatus.
func (in *CisScanStatus) DeepCopy() *CisScanStatus {
if in == nil {
return nil
}
out := new(CisScanStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CloudCredential) DeepCopyInto(out *CloudCredential) {
*out = *in
@@ -1470,6 +1500,11 @@ func (in *ClusterAlertRuleSpec) DeepCopyInto(out *ClusterAlertRuleSpec) {
*out = new(MetricRule)
**out = **in
}
if in.ClusterScanRule != nil {
in, out := &in.ClusterScanRule, &out.ClusterScanRule
*out = new(ClusterScanRule)
**out = **in
}
return
}
@@ -2125,6 +2160,22 @@ func (in *ClusterScanList) DeepCopyObject() runtime.Object {
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ClusterScanRule) DeepCopyInto(out *ClusterScanRule) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterScanRule.
func (in *ClusterScanRule) DeepCopy() *ClusterScanRule {
if in == nil {
return nil
}
out := new(ClusterScanRule)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ClusterScanSpec) DeepCopyInto(out *ClusterScanSpec) {
*out = *in
@@ -2150,6 +2201,11 @@ func (in *ClusterScanStatus) DeepCopyInto(out *ClusterScanStatus) {
*out = make([]ClusterScanCondition, len(*in))
copy(*out, *in)
}
if in.CisScanStatus != nil {
in, out := &in.CisScanStatus, &out.CisScanStatus
*out = new(CisScanStatus)
**out = **in
}
return
}
@@ -2223,6 +2279,11 @@ func (in *ClusterSpecBase) DeepCopyInto(out *ClusterSpecBase) {
**out = **in
}
out.LocalClusterAuthEndpoint = in.LocalClusterAuthEndpoint
if in.ScheduledClusterScan != nil {
in, out := &in.ScheduledClusterScan, &out.ScheduledClusterScan
*out = new(ScheduledClusterScan)
(*in).DeepCopyInto(*out)
}
return
}
@@ -2310,6 +2371,11 @@ func (in *ClusterStatus) DeepCopyInto(out *ClusterStatus) {
(*out)[key] = val
}
}
if in.ScheduledClusterScanStatus != nil {
in, out := &in.ScheduledClusterScanStatus, &out.ScheduledClusterScanStatus
*out = new(ScheduledClusterScanStatus)
**out = **in
}
return
}
@@ -8835,6 +8901,64 @@ func (in *SaveAsTemplateOutput) DeepCopy() *SaveAsTemplateOutput {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ScheduledClusterScan) DeepCopyInto(out *ScheduledClusterScan) {
*out = *in
if in.ScheduleConfig != nil {
in, out := &in.ScheduleConfig, &out.ScheduleConfig
*out = new(ScheduledClusterScanConfig)
**out = **in
}
if in.ScanConfig != nil {
in, out := &in.ScanConfig, &out.ScanConfig
*out = new(ClusterScanConfig)
(*in).DeepCopyInto(*out)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScheduledClusterScan.
func (in *ScheduledClusterScan) DeepCopy() *ScheduledClusterScan {
if in == nil {
return nil
}
out := new(ScheduledClusterScan)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ScheduledClusterScanConfig) DeepCopyInto(out *ScheduledClusterScanConfig) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScheduledClusterScanConfig.
func (in *ScheduledClusterScanConfig) DeepCopy() *ScheduledClusterScanConfig {
if in == nil {
return nil
}
out := new(ScheduledClusterScanConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ScheduledClusterScanStatus) DeepCopyInto(out *ScheduledClusterScanStatus) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScheduledClusterScanStatus.
func (in *ScheduledClusterScanStatus) DeepCopy() *ScheduledClusterScanStatus {
if in == nil {
return nil
}
out := new(ScheduledClusterScanStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SchedulerService) DeepCopyInto(out *SchedulerService) {
*out = *in