123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- // +build !ignore_autogenerated
- /*
- Copyright 2016 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.
- */
- // This file was autogenerated by deepcopy-gen. Do not edit it manually!
- package unversioned
- import (
- conversion "k8s.io/kubernetes/pkg/conversion"
- time "time"
- )
- func DeepCopy_unversioned_APIGroup(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*APIGroup)
- out := out.(*APIGroup)
- out.TypeMeta = in.TypeMeta
- out.Name = in.Name
- if in.Versions != nil {
- in, out := &in.Versions, &out.Versions
- *out = make([]GroupVersionForDiscovery, len(*in))
- for i := range *in {
- (*out)[i] = (*in)[i]
- }
- } else {
- out.Versions = nil
- }
- out.PreferredVersion = in.PreferredVersion
- if in.ServerAddressByClientCIDRs != nil {
- in, out := &in.ServerAddressByClientCIDRs, &out.ServerAddressByClientCIDRs
- *out = make([]ServerAddressByClientCIDR, len(*in))
- for i := range *in {
- (*out)[i] = (*in)[i]
- }
- } else {
- out.ServerAddressByClientCIDRs = nil
- }
- return nil
- }
- }
- func DeepCopy_unversioned_APIGroupList(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*APIGroupList)
- out := out.(*APIGroupList)
- out.TypeMeta = in.TypeMeta
- if in.Groups != nil {
- in, out := &in.Groups, &out.Groups
- *out = make([]APIGroup, len(*in))
- for i := range *in {
- if err := DeepCopy_unversioned_APIGroup(&(*in)[i], &(*out)[i], c); err != nil {
- return err
- }
- }
- } else {
- out.Groups = nil
- }
- return nil
- }
- }
- func DeepCopy_unversioned_APIResource(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*APIResource)
- out := out.(*APIResource)
- out.Name = in.Name
- out.Namespaced = in.Namespaced
- out.Kind = in.Kind
- return nil
- }
- }
- func DeepCopy_unversioned_APIResourceList(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*APIResourceList)
- out := out.(*APIResourceList)
- out.TypeMeta = in.TypeMeta
- out.GroupVersion = in.GroupVersion
- if in.APIResources != nil {
- in, out := &in.APIResources, &out.APIResources
- *out = make([]APIResource, len(*in))
- for i := range *in {
- (*out)[i] = (*in)[i]
- }
- } else {
- out.APIResources = nil
- }
- return nil
- }
- }
- func DeepCopy_unversioned_APIVersions(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*APIVersions)
- out := out.(*APIVersions)
- out.TypeMeta = in.TypeMeta
- if in.Versions != nil {
- in, out := &in.Versions, &out.Versions
- *out = make([]string, len(*in))
- copy(*out, *in)
- } else {
- out.Versions = nil
- }
- if in.ServerAddressByClientCIDRs != nil {
- in, out := &in.ServerAddressByClientCIDRs, &out.ServerAddressByClientCIDRs
- *out = make([]ServerAddressByClientCIDR, len(*in))
- for i := range *in {
- (*out)[i] = (*in)[i]
- }
- } else {
- out.ServerAddressByClientCIDRs = nil
- }
- return nil
- }
- }
- func DeepCopy_unversioned_Duration(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*Duration)
- out := out.(*Duration)
- out.Duration = in.Duration
- return nil
- }
- }
- func DeepCopy_unversioned_ExportOptions(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*ExportOptions)
- out := out.(*ExportOptions)
- out.TypeMeta = in.TypeMeta
- out.Export = in.Export
- out.Exact = in.Exact
- return nil
- }
- }
- func DeepCopy_unversioned_GroupKind(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*GroupKind)
- out := out.(*GroupKind)
- out.Group = in.Group
- out.Kind = in.Kind
- return nil
- }
- }
- func DeepCopy_unversioned_GroupResource(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*GroupResource)
- out := out.(*GroupResource)
- out.Group = in.Group
- out.Resource = in.Resource
- return nil
- }
- }
- func DeepCopy_unversioned_GroupVersion(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*GroupVersion)
- out := out.(*GroupVersion)
- out.Group = in.Group
- out.Version = in.Version
- return nil
- }
- }
- func DeepCopy_unversioned_GroupVersionForDiscovery(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*GroupVersionForDiscovery)
- out := out.(*GroupVersionForDiscovery)
- out.GroupVersion = in.GroupVersion
- out.Version = in.Version
- return nil
- }
- }
- func DeepCopy_unversioned_GroupVersionKind(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*GroupVersionKind)
- out := out.(*GroupVersionKind)
- out.Group = in.Group
- out.Version = in.Version
- out.Kind = in.Kind
- return nil
- }
- }
- func DeepCopy_unversioned_GroupVersionResource(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*GroupVersionResource)
- out := out.(*GroupVersionResource)
- out.Group = in.Group
- out.Version = in.Version
- out.Resource = in.Resource
- return nil
- }
- }
- func DeepCopy_unversioned_LabelSelector(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*LabelSelector)
- out := out.(*LabelSelector)
- if in.MatchLabels != nil {
- in, out := &in.MatchLabels, &out.MatchLabels
- *out = make(map[string]string)
- for key, val := range *in {
- (*out)[key] = val
- }
- } else {
- out.MatchLabels = nil
- }
- if in.MatchExpressions != nil {
- in, out := &in.MatchExpressions, &out.MatchExpressions
- *out = make([]LabelSelectorRequirement, len(*in))
- for i := range *in {
- if err := DeepCopy_unversioned_LabelSelectorRequirement(&(*in)[i], &(*out)[i], c); err != nil {
- return err
- }
- }
- } else {
- out.MatchExpressions = nil
- }
- return nil
- }
- }
- func DeepCopy_unversioned_LabelSelectorRequirement(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*LabelSelectorRequirement)
- out := out.(*LabelSelectorRequirement)
- out.Key = in.Key
- out.Operator = in.Operator
- if in.Values != nil {
- in, out := &in.Values, &out.Values
- *out = make([]string, len(*in))
- copy(*out, *in)
- } else {
- out.Values = nil
- }
- return nil
- }
- }
- func DeepCopy_unversioned_ListMeta(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*ListMeta)
- out := out.(*ListMeta)
- out.SelfLink = in.SelfLink
- out.ResourceVersion = in.ResourceVersion
- return nil
- }
- }
- func DeepCopy_unversioned_Patch(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*Patch)
- out := out.(*Patch)
- _ = in
- _ = out
- return nil
- }
- }
- func DeepCopy_unversioned_RootPaths(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*RootPaths)
- out := out.(*RootPaths)
- if in.Paths != nil {
- in, out := &in.Paths, &out.Paths
- *out = make([]string, len(*in))
- copy(*out, *in)
- } else {
- out.Paths = nil
- }
- return nil
- }
- }
- func DeepCopy_unversioned_ServerAddressByClientCIDR(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*ServerAddressByClientCIDR)
- out := out.(*ServerAddressByClientCIDR)
- out.ClientCIDR = in.ClientCIDR
- out.ServerAddress = in.ServerAddress
- return nil
- }
- }
- func DeepCopy_unversioned_Status(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*Status)
- out := out.(*Status)
- out.TypeMeta = in.TypeMeta
- out.ListMeta = in.ListMeta
- out.Status = in.Status
- out.Message = in.Message
- out.Reason = in.Reason
- if in.Details != nil {
- in, out := &in.Details, &out.Details
- *out = new(StatusDetails)
- if err := DeepCopy_unversioned_StatusDetails(*in, *out, c); err != nil {
- return err
- }
- } else {
- out.Details = nil
- }
- out.Code = in.Code
- return nil
- }
- }
- func DeepCopy_unversioned_StatusCause(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*StatusCause)
- out := out.(*StatusCause)
- out.Type = in.Type
- out.Message = in.Message
- out.Field = in.Field
- return nil
- }
- }
- func DeepCopy_unversioned_StatusDetails(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*StatusDetails)
- out := out.(*StatusDetails)
- out.Name = in.Name
- out.Group = in.Group
- out.Kind = in.Kind
- if in.Causes != nil {
- in, out := &in.Causes, &out.Causes
- *out = make([]StatusCause, len(*in))
- for i := range *in {
- (*out)[i] = (*in)[i]
- }
- } else {
- out.Causes = nil
- }
- out.RetryAfterSeconds = in.RetryAfterSeconds
- return nil
- }
- }
- func DeepCopy_unversioned_Time(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*Time)
- out := out.(*Time)
- if newVal, err := c.DeepCopy(&in.Time); err != nil {
- return err
- } else {
- out.Time = *newVal.(*time.Time)
- }
- return nil
- }
- }
- func DeepCopy_unversioned_Timestamp(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*Timestamp)
- out := out.(*Timestamp)
- out.Seconds = in.Seconds
- out.Nanos = in.Nanos
- return nil
- }
- }
- func DeepCopy_unversioned_TypeMeta(in interface{}, out interface{}, c *conversion.Cloner) error {
- {
- in := in.(*TypeMeta)
- out := out.(*TypeMeta)
- out.Kind = in.Kind
- out.APIVersion = in.APIVersion
- return nil
- }
- }
|