mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
500744bb94
Also adds a hack go script to print the embedded CRDs, for developer use. Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
268 lines
7.2 KiB
Go
268 lines
7.2 KiB
Go
//go:build !ignore_autogenerated
|
|
// +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 main. DO NOT EDIT.
|
|
|
|
package v1
|
|
|
|
import (
|
|
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 *Addon) DeepCopyInto(out *Addon) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Spec = in.Spec
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Addon.
|
|
func (in *Addon) DeepCopy() *Addon {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Addon)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Addon) 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 *AddonList) DeepCopyInto(out *AddonList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Addon, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddonList.
|
|
func (in *AddonList) DeepCopy() *AddonList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(AddonList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *AddonList) 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 *AddonSpec) DeepCopyInto(out *AddonSpec) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddonSpec.
|
|
func (in *AddonSpec) DeepCopy() *AddonSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(AddonSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ETCDSnapshotError) DeepCopyInto(out *ETCDSnapshotError) {
|
|
*out = *in
|
|
if in.Time != nil {
|
|
in, out := &in.Time, &out.Time
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
if in.Message != nil {
|
|
in, out := &in.Message, &out.Message
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDSnapshotError.
|
|
func (in *ETCDSnapshotError) DeepCopy() *ETCDSnapshotError {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ETCDSnapshotError)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ETCDSnapshotFile) DeepCopyInto(out *ETCDSnapshotFile) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDSnapshotFile.
|
|
func (in *ETCDSnapshotFile) DeepCopy() *ETCDSnapshotFile {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ETCDSnapshotFile)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ETCDSnapshotFile) 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 *ETCDSnapshotFileList) DeepCopyInto(out *ETCDSnapshotFileList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]ETCDSnapshotFile, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDSnapshotFileList.
|
|
func (in *ETCDSnapshotFileList) DeepCopy() *ETCDSnapshotFileList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ETCDSnapshotFileList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ETCDSnapshotFileList) 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 *ETCDSnapshotS3) DeepCopyInto(out *ETCDSnapshotS3) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDSnapshotS3.
|
|
func (in *ETCDSnapshotS3) DeepCopy() *ETCDSnapshotS3 {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ETCDSnapshotS3)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ETCDSnapshotSpec) DeepCopyInto(out *ETCDSnapshotSpec) {
|
|
*out = *in
|
|
if in.Metadata != nil {
|
|
in, out := &in.Metadata, &out.Metadata
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.S3 != nil {
|
|
in, out := &in.S3, &out.S3
|
|
*out = new(ETCDSnapshotS3)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDSnapshotSpec.
|
|
func (in *ETCDSnapshotSpec) DeepCopy() *ETCDSnapshotSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ETCDSnapshotSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ETCDSnapshotStatus) DeepCopyInto(out *ETCDSnapshotStatus) {
|
|
*out = *in
|
|
if in.Size != nil {
|
|
in, out := &in.Size, &out.Size
|
|
x := (*in).DeepCopy()
|
|
*out = &x
|
|
}
|
|
if in.CreationTime != nil {
|
|
in, out := &in.CreationTime, &out.CreationTime
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
if in.ReadyToUse != nil {
|
|
in, out := &in.ReadyToUse, &out.ReadyToUse
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.Error != nil {
|
|
in, out := &in.Error, &out.Error
|
|
*out = new(ETCDSnapshotError)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDSnapshotStatus.
|
|
func (in *ETCDSnapshotStatus) DeepCopy() *ETCDSnapshotStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ETCDSnapshotStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|