| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // +build !ignore_autogenerated
- /*
- Copyright The Kubernetes Authors.
- 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 deepcopy-gen. DO NOT EDIT.
- package v1beta1
- import (
- v1 "k8s.io/api/core/v1"
- runtime "k8s.io/apimachinery/pkg/runtime"
- )
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *Configuration) DeepCopyInto(out *Configuration) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- if in.LimitedResources != nil {
- in, out := &in.LimitedResources, &out.LimitedResources
- *out = make([]LimitedResource, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Configuration.
- func (in *Configuration) DeepCopy() *Configuration {
- if in == nil {
- return nil
- }
- out := new(Configuration)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *Configuration) 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 *LimitedResource) DeepCopyInto(out *LimitedResource) {
- *out = *in
- if in.MatchContains != nil {
- in, out := &in.MatchContains, &out.MatchContains
- *out = make([]string, len(*in))
- copy(*out, *in)
- }
- if in.MatchScopes != nil {
- in, out := &in.MatchScopes, &out.MatchScopes
- *out = make([]v1.ScopedResourceSelectorRequirement, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LimitedResource.
- func (in *LimitedResource) DeepCopy() *LimitedResource {
- if in == nil {
- return nil
- }
- out := new(LimitedResource)
- in.DeepCopyInto(out)
- return out
- }
|