summaryrefslogtreecommitdiff
path: root/vendor/k8s.io/apimachinery/pkg/apis/meta/v1alpha1/zz_generated.deepcopy.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/k8s.io/apimachinery/pkg/apis/meta/v1alpha1/zz_generated.deepcopy.go')
-rw-r--r--vendor/k8s.io/apimachinery/pkg/apis/meta/v1alpha1/zz_generated.deepcopy.go164
1 files changed, 164 insertions, 0 deletions
diff --git a/vendor/k8s.io/apimachinery/pkg/apis/meta/v1alpha1/zz_generated.deepcopy.go b/vendor/k8s.io/apimachinery/pkg/apis/meta/v1alpha1/zz_generated.deepcopy.go
new file mode 100644
index 000000000..ef8a117df
--- /dev/null
+++ b/vendor/k8s.io/apimachinery/pkg/apis/meta/v1alpha1/zz_generated.deepcopy.go
@@ -0,0 +1,164 @@
+// +build !ignore_autogenerated
+
+/*
+Copyright 2017 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 v1alpha1
+
+import (
+ v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
+ conversion "k8s.io/apimachinery/pkg/conversion"
+ runtime "k8s.io/apimachinery/pkg/runtime"
+ reflect "reflect"
+)
+
+// GetGeneratedDeepCopyFuncs returns the generated funcs, since we aren't registering them.
+func GetGeneratedDeepCopyFuncs() []conversion.GeneratedDeepCopyFunc {
+ return []conversion.GeneratedDeepCopyFunc{
+ {Fn: DeepCopy_v1alpha1_PartialObjectMetadata, InType: reflect.TypeOf(&PartialObjectMetadata{})},
+ {Fn: DeepCopy_v1alpha1_PartialObjectMetadataList, InType: reflect.TypeOf(&PartialObjectMetadataList{})},
+ {Fn: DeepCopy_v1alpha1_Table, InType: reflect.TypeOf(&Table{})},
+ {Fn: DeepCopy_v1alpha1_TableColumnDefinition, InType: reflect.TypeOf(&TableColumnDefinition{})},
+ {Fn: DeepCopy_v1alpha1_TableOptions, InType: reflect.TypeOf(&TableOptions{})},
+ {Fn: DeepCopy_v1alpha1_TableRow, InType: reflect.TypeOf(&TableRow{})},
+ {Fn: DeepCopy_v1alpha1_TableRowCondition, InType: reflect.TypeOf(&TableRowCondition{})},
+ }
+}
+
+// DeepCopy_v1alpha1_PartialObjectMetadata is an autogenerated deepcopy function.
+func DeepCopy_v1alpha1_PartialObjectMetadata(in interface{}, out interface{}, c *conversion.Cloner) error {
+ {
+ in := in.(*PartialObjectMetadata)
+ out := out.(*PartialObjectMetadata)
+ *out = *in
+ if newVal, err := c.DeepCopy(&in.ObjectMeta); err != nil {
+ return err
+ } else {
+ out.ObjectMeta = *newVal.(*v1.ObjectMeta)
+ }
+ return nil
+ }
+}
+
+// DeepCopy_v1alpha1_PartialObjectMetadataList is an autogenerated deepcopy function.
+func DeepCopy_v1alpha1_PartialObjectMetadataList(in interface{}, out interface{}, c *conversion.Cloner) error {
+ {
+ in := in.(*PartialObjectMetadataList)
+ out := out.(*PartialObjectMetadataList)
+ *out = *in
+ if in.Items != nil {
+ in, out := &in.Items, &out.Items
+ *out = make([]*PartialObjectMetadata, len(*in))
+ for i := range *in {
+ if newVal, err := c.DeepCopy(&(*in)[i]); err != nil {
+ return err
+ } else {
+ (*out)[i] = *newVal.(**PartialObjectMetadata)
+ }
+ }
+ }
+ return nil
+ }
+}
+
+// DeepCopy_v1alpha1_Table is an autogenerated deepcopy function.
+func DeepCopy_v1alpha1_Table(in interface{}, out interface{}, c *conversion.Cloner) error {
+ {
+ in := in.(*Table)
+ out := out.(*Table)
+ *out = *in
+ if in.ColumnDefinitions != nil {
+ in, out := &in.ColumnDefinitions, &out.ColumnDefinitions
+ *out = make([]TableColumnDefinition, len(*in))
+ copy(*out, *in)
+ }
+ if in.Rows != nil {
+ in, out := &in.Rows, &out.Rows
+ *out = make([]TableRow, len(*in))
+ for i := range *in {
+ if newVal, err := c.DeepCopy(&(*in)[i]); err != nil {
+ return err
+ } else {
+ (*out)[i] = *newVal.(*TableRow)
+ }
+ }
+ }
+ return nil
+ }
+}
+
+// DeepCopy_v1alpha1_TableColumnDefinition is an autogenerated deepcopy function.
+func DeepCopy_v1alpha1_TableColumnDefinition(in interface{}, out interface{}, c *conversion.Cloner) error {
+ {
+ in := in.(*TableColumnDefinition)
+ out := out.(*TableColumnDefinition)
+ *out = *in
+ return nil
+ }
+}
+
+// DeepCopy_v1alpha1_TableOptions is an autogenerated deepcopy function.
+func DeepCopy_v1alpha1_TableOptions(in interface{}, out interface{}, c *conversion.Cloner) error {
+ {
+ in := in.(*TableOptions)
+ out := out.(*TableOptions)
+ *out = *in
+ return nil
+ }
+}
+
+// DeepCopy_v1alpha1_TableRow is an autogenerated deepcopy function.
+func DeepCopy_v1alpha1_TableRow(in interface{}, out interface{}, c *conversion.Cloner) error {
+ {
+ in := in.(*TableRow)
+ out := out.(*TableRow)
+ *out = *in
+ if in.Cells != nil {
+ in, out := &in.Cells, &out.Cells
+ *out = make([]interface{}, len(*in))
+ for i := range *in {
+ if newVal, err := c.DeepCopy(&(*in)[i]); err != nil {
+ return err
+ } else {
+ (*out)[i] = *newVal.(*interface{})
+ }
+ }
+ }
+ if in.Conditions != nil {
+ in, out := &in.Conditions, &out.Conditions
+ *out = make([]TableRowCondition, len(*in))
+ copy(*out, *in)
+ }
+ if newVal, err := c.DeepCopy(&in.Object); err != nil {
+ return err
+ } else {
+ out.Object = *newVal.(*runtime.RawExtension)
+ }
+ return nil
+ }
+}
+
+// DeepCopy_v1alpha1_TableRowCondition is an autogenerated deepcopy function.
+func DeepCopy_v1alpha1_TableRowCondition(in interface{}, out interface{}, c *conversion.Cloner) error {
+ {
+ in := in.(*TableRowCondition)
+ out := out.(*TableRowCondition)
+ *out = *in
+ return nil
+ }
+}