forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zz_generated.deepcopy.go
75 lines (68 loc) · 2.2 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
74
75
// +build !ignore_autogenerated_openshift
// This file was autogenerated by deepcopy-gen. Do not edit it manually!
package v1
import (
conversion "k8s.io/apimachinery/pkg/conversion"
runtime "k8s.io/apimachinery/pkg/runtime"
reflect "reflect"
)
func init() {
SchemeBuilder.Register(RegisterDeepCopies)
}
// RegisterDeepCopies adds deep-copy functions to the given scheme. Public
// to allow building arbitrary schemes.
func RegisterDeepCopies(scheme *runtime.Scheme) error {
return scheme.AddGeneratedDeepCopyFuncs(
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ProjectLimitBySelector, InType: reflect.TypeOf(&ProjectLimitBySelector{})},
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ProjectRequestLimitConfig, InType: reflect.TypeOf(&ProjectRequestLimitConfig{})},
)
}
// DeepCopy_v1_ProjectLimitBySelector is an autogenerated deepcopy function.
func DeepCopy_v1_ProjectLimitBySelector(in interface{}, out interface{}, c *conversion.Cloner) error {
{
in := in.(*ProjectLimitBySelector)
out := out.(*ProjectLimitBySelector)
*out = *in
if in.Selector != nil {
in, out := &in.Selector, &out.Selector
*out = make(map[string]string)
for key, val := range *in {
(*out)[key] = val
}
}
if in.MaxProjects != nil {
in, out := &in.MaxProjects, &out.MaxProjects
*out = new(int)
**out = **in
}
return nil
}
}
// DeepCopy_v1_ProjectRequestLimitConfig is an autogenerated deepcopy function.
func DeepCopy_v1_ProjectRequestLimitConfig(in interface{}, out interface{}, c *conversion.Cloner) error {
{
in := in.(*ProjectRequestLimitConfig)
out := out.(*ProjectRequestLimitConfig)
*out = *in
if in.Limits != nil {
in, out := &in.Limits, &out.Limits
*out = make([]ProjectLimitBySelector, len(*in))
for i := range *in {
if err := DeepCopy_v1_ProjectLimitBySelector(&(*in)[i], &(*out)[i], c); err != nil {
return err
}
}
}
if in.MaxProjectsForSystemUsers != nil {
in, out := &in.MaxProjectsForSystemUsers, &out.MaxProjectsForSystemUsers
*out = new(int)
**out = **in
}
if in.MaxProjectsForServiceAccounts != nil {
in, out := &in.MaxProjectsForServiceAccounts, &out.MaxProjectsForServiceAccounts
*out = new(int)
**out = **in
}
return nil
}
}