-
Notifications
You must be signed in to change notification settings - Fork 1
/
zz_generated.deepcopy.go
73 lines (64 loc) · 1.96 KB
/
zz_generated.deepcopy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//go:build !ignore_autogenerated
// Code generated by controller-gen. DO NOT EDIT.
package duty
import ()
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Lookup) DeepCopyInto(out *Lookup) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Lookup.
func (in *Lookup) DeepCopy() *Lookup {
if in == nil {
return nil
}
out := new(Lookup)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RelationshipSelector) DeepCopyInto(out *RelationshipSelector) {
*out = *in
if in.Labels != nil {
in, out := &in.Labels, &out.Labels
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RelationshipSelector.
func (in *RelationshipSelector) DeepCopy() *RelationshipSelector {
if in == nil {
return nil
}
out := new(RelationshipSelector)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RelationshipSelectorTemplate) DeepCopyInto(out *RelationshipSelectorTemplate) {
*out = *in
out.ID = in.ID
out.ExternalID = in.ExternalID
out.Name = in.Name
out.Namespace = in.Namespace
out.Type = in.Type
out.Agent = in.Agent
out.Scope = in.Scope
if in.Labels != nil {
in, out := &in.Labels, &out.Labels
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RelationshipSelectorTemplate.
func (in *RelationshipSelectorTemplate) DeepCopy() *RelationshipSelectorTemplate {
if in == nil {
return nil
}
out := new(RelationshipSelectorTemplate)
in.DeepCopyInto(out)
return out
}