mirror of
https://github.com/morten-olsen/homelab-nuclei-operator.git
synced 2026-02-08 02:16:23 +01:00
240 lines
6.5 KiB
Go
240 lines
6.5 KiB
Go
//go:build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2025.
|
|
|
|
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 v1alpha1
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Finding) DeepCopyInto(out *Finding) {
|
|
*out = *in
|
|
if in.ExtractedResults != nil {
|
|
in, out := &in.ExtractedResults, &out.ExtractedResults
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Reference != nil {
|
|
in, out := &in.Reference, &out.Reference
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Tags != nil {
|
|
in, out := &in.Tags, &out.Tags
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
in.Timestamp.DeepCopyInto(&out.Timestamp)
|
|
if in.Metadata != nil {
|
|
in, out := &in.Metadata, &out.Metadata
|
|
*out = new(runtime.RawExtension)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Finding.
|
|
func (in *Finding) DeepCopy() *Finding {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Finding)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NucleiScan) DeepCopyInto(out *NucleiScan) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NucleiScan.
|
|
func (in *NucleiScan) DeepCopy() *NucleiScan {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NucleiScan)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *NucleiScan) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NucleiScanList) DeepCopyInto(out *NucleiScanList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]NucleiScan, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NucleiScanList.
|
|
func (in *NucleiScanList) DeepCopy() *NucleiScanList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NucleiScanList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *NucleiScanList) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NucleiScanSpec) DeepCopyInto(out *NucleiScanSpec) {
|
|
*out = *in
|
|
out.SourceRef = in.SourceRef
|
|
if in.Targets != nil {
|
|
in, out := &in.Targets, &out.Targets
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Templates != nil {
|
|
in, out := &in.Templates, &out.Templates
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Severity != nil {
|
|
in, out := &in.Severity, &out.Severity
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NucleiScanSpec.
|
|
func (in *NucleiScanSpec) DeepCopy() *NucleiScanSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NucleiScanSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NucleiScanStatus) DeepCopyInto(out *NucleiScanStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.LastScanTime != nil {
|
|
in, out := &in.LastScanTime, &out.LastScanTime
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
if in.CompletionTime != nil {
|
|
in, out := &in.CompletionTime, &out.CompletionTime
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
if in.NextScheduledTime != nil {
|
|
in, out := &in.NextScheduledTime, &out.NextScheduledTime
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
if in.Summary != nil {
|
|
in, out := &in.Summary, &out.Summary
|
|
*out = new(ScanSummary)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Findings != nil {
|
|
in, out := &in.Findings, &out.Findings
|
|
*out = make([]Finding, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.LastRetryTime != nil {
|
|
in, out := &in.LastRetryTime, &out.LastRetryTime
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NucleiScanStatus.
|
|
func (in *NucleiScanStatus) DeepCopy() *NucleiScanStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NucleiScanStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ScanSummary) DeepCopyInto(out *ScanSummary) {
|
|
*out = *in
|
|
if in.FindingsBySeverity != nil {
|
|
in, out := &in.FindingsBySeverity, &out.FindingsBySeverity
|
|
*out = make(map[string]int, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScanSummary.
|
|
func (in *ScanSummary) DeepCopy() *ScanSummary {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ScanSummary)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SourceReference) DeepCopyInto(out *SourceReference) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SourceReference.
|
|
func (in *SourceReference) DeepCopy() *SourceReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SourceReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|