File tree Expand file tree Collapse file tree 2 files changed +70
-0
lines changed
pkg/image/admission/imagequalify/api Expand file tree Collapse file tree 2 files changed +70
-0
lines changed Original file line number Diff line number Diff line change
1
+ // +build !ignore_autogenerated_openshift
2
+
3
+ // This file was autogenerated by deepcopy-gen. Do not edit it manually!
4
+
5
+ package v1
6
+
7
+ import (
8
+ runtime "k8s.io/apimachinery/pkg/runtime"
9
+ )
10
+
11
+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
12
+ func (in * ImageQualifyConfig ) DeepCopyInto (out * ImageQualifyConfig ) {
13
+ * out = * in
14
+ out .TypeMeta = in .TypeMeta
15
+ return
16
+ }
17
+
18
+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageQualifyConfig.
19
+ func (in * ImageQualifyConfig ) DeepCopy () * ImageQualifyConfig {
20
+ if in == nil {
21
+ return nil
22
+ }
23
+ out := new (ImageQualifyConfig )
24
+ in .DeepCopyInto (out )
25
+ return out
26
+ }
27
+
28
+ // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
29
+ func (in * ImageQualifyConfig ) DeepCopyObject () runtime.Object {
30
+ if c := in .DeepCopy (); c != nil {
31
+ return c
32
+ } else {
33
+ return nil
34
+ }
35
+ }
Original file line number Diff line number Diff line change
1
+ // +build !ignore_autogenerated_openshift
2
+
3
+ // This file was autogenerated by deepcopy-gen. Do not edit it manually!
4
+
5
+ package api
6
+
7
+ import (
8
+ runtime "k8s.io/apimachinery/pkg/runtime"
9
+ )
10
+
11
+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
12
+ func (in * ImageQualifyConfig ) DeepCopyInto (out * ImageQualifyConfig ) {
13
+ * out = * in
14
+ out .TypeMeta = in .TypeMeta
15
+ return
16
+ }
17
+
18
+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageQualifyConfig.
19
+ func (in * ImageQualifyConfig ) DeepCopy () * ImageQualifyConfig {
20
+ if in == nil {
21
+ return nil
22
+ }
23
+ out := new (ImageQualifyConfig )
24
+ in .DeepCopyInto (out )
25
+ return out
26
+ }
27
+
28
+ // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
29
+ func (in * ImageQualifyConfig ) DeepCopyObject () runtime.Object {
30
+ if c := in .DeepCopy (); c != nil {
31
+ return c
32
+ } else {
33
+ return nil
34
+ }
35
+ }
You can’t perform that action at this time.
0 commit comments