blob: 6f68e4ac55b1ec700deb6f37336fd9ac89c69c91 [file] [log] [blame]
sslobodrd046be82019-01-16 10:02:22 -05001// +build !ignore_autogenerated
2
3/*
4Copyright The Kubernetes Authors.
5
6Licensed under the Apache License, Version 2.0 (the "License");
7you may not use this file except in compliance with the License.
8You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS,
14WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15See the License for the specific language governing permissions and
16limitations under the License.
17*/
18
19// Code generated by deepcopy-gen. DO NOT EDIT.
20
21package v1beta1
22
23import (
24 runtime "k8s.io/apimachinery/pkg/runtime"
25)
26
27// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
28func (in *PriorityClass) DeepCopyInto(out *PriorityClass) {
29 *out = *in
30 out.TypeMeta = in.TypeMeta
31 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
32 return
33}
34
35// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityClass.
36func (in *PriorityClass) DeepCopy() *PriorityClass {
37 if in == nil {
38 return nil
39 }
40 out := new(PriorityClass)
41 in.DeepCopyInto(out)
42 return out
43}
44
45// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
46func (in *PriorityClass) DeepCopyObject() runtime.Object {
47 if c := in.DeepCopy(); c != nil {
48 return c
49 }
50 return nil
51}
52
53// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
54func (in *PriorityClassList) DeepCopyInto(out *PriorityClassList) {
55 *out = *in
56 out.TypeMeta = in.TypeMeta
57 out.ListMeta = in.ListMeta
58 if in.Items != nil {
59 in, out := &in.Items, &out.Items
60 *out = make([]PriorityClass, len(*in))
61 for i := range *in {
62 (*in)[i].DeepCopyInto(&(*out)[i])
63 }
64 }
65 return
66}
67
68// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityClassList.
69func (in *PriorityClassList) DeepCopy() *PriorityClassList {
70 if in == nil {
71 return nil
72 }
73 out := new(PriorityClassList)
74 in.DeepCopyInto(out)
75 return out
76}
77
78// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
79func (in *PriorityClassList) DeepCopyObject() runtime.Object {
80 if c := in.DeepCopy(); c != nil {
81 return c
82 }
83 return nil
84}