-
Notifications
You must be signed in to change notification settings - Fork 39.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sample-apiserver: update generated code
- Loading branch information
Showing
74 changed files
with
277 additions
and
801 deletions.
There are no files selected for viewing
185 changes: 185 additions & 0 deletions
185
staging/src/k8s.io/sample-apiserver/pkg/apis/wardle/v1alpha1/zz_generated.conversions.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
// +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 conversion-gen. Do not edit it manually! | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
conversion "k8s.io/apimachinery/pkg/conversion" | ||
runtime "k8s.io/apimachinery/pkg/runtime" | ||
wardle "k8s.io/sample-apiserver/pkg/apis/wardle" | ||
unsafe "unsafe" | ||
) | ||
|
||
func init() { | ||
localSchemeBuilder.Register(RegisterConversions) | ||
} | ||
|
||
// RegisterConversions adds conversion functions to the given scheme. | ||
// Public to allow building arbitrary schemes. | ||
func RegisterConversions(scheme *runtime.Scheme) error { | ||
return scheme.AddGeneratedConversionFuncs( | ||
Convert_v1alpha1_Fischer_To_wardle_Fischer, | ||
Convert_wardle_Fischer_To_v1alpha1_Fischer, | ||
Convert_v1alpha1_FischerList_To_wardle_FischerList, | ||
Convert_wardle_FischerList_To_v1alpha1_FischerList, | ||
Convert_v1alpha1_Flunder_To_wardle_Flunder, | ||
Convert_wardle_Flunder_To_v1alpha1_Flunder, | ||
Convert_v1alpha1_FlunderList_To_wardle_FlunderList, | ||
Convert_wardle_FlunderList_To_v1alpha1_FlunderList, | ||
Convert_v1alpha1_FlunderSpec_To_wardle_FlunderSpec, | ||
Convert_wardle_FlunderSpec_To_v1alpha1_FlunderSpec, | ||
Convert_v1alpha1_FlunderStatus_To_wardle_FlunderStatus, | ||
Convert_wardle_FlunderStatus_To_v1alpha1_FlunderStatus, | ||
) | ||
} | ||
|
||
func autoConvert_v1alpha1_Fischer_To_wardle_Fischer(in *Fischer, out *wardle.Fischer, s conversion.Scope) error { | ||
out.ObjectMeta = in.ObjectMeta | ||
out.DisallowedFlunders = *(*[]string)(unsafe.Pointer(&in.DisallowedFlunders)) | ||
return nil | ||
} | ||
|
||
// Convert_v1alpha1_Fischer_To_wardle_Fischer is an autogenerated conversion function. | ||
func Convert_v1alpha1_Fischer_To_wardle_Fischer(in *Fischer, out *wardle.Fischer, s conversion.Scope) error { | ||
return autoConvert_v1alpha1_Fischer_To_wardle_Fischer(in, out, s) | ||
} | ||
|
||
func autoConvert_wardle_Fischer_To_v1alpha1_Fischer(in *wardle.Fischer, out *Fischer, s conversion.Scope) error { | ||
out.ObjectMeta = in.ObjectMeta | ||
out.DisallowedFlunders = *(*[]string)(unsafe.Pointer(&in.DisallowedFlunders)) | ||
return nil | ||
} | ||
|
||
// Convert_wardle_Fischer_To_v1alpha1_Fischer is an autogenerated conversion function. | ||
func Convert_wardle_Fischer_To_v1alpha1_Fischer(in *wardle.Fischer, out *Fischer, s conversion.Scope) error { | ||
return autoConvert_wardle_Fischer_To_v1alpha1_Fischer(in, out, s) | ||
} | ||
|
||
func autoConvert_v1alpha1_FischerList_To_wardle_FischerList(in *FischerList, out *wardle.FischerList, s conversion.Scope) error { | ||
out.ListMeta = in.ListMeta | ||
out.Items = *(*[]wardle.Fischer)(unsafe.Pointer(&in.Items)) | ||
return nil | ||
} | ||
|
||
// Convert_v1alpha1_FischerList_To_wardle_FischerList is an autogenerated conversion function. | ||
func Convert_v1alpha1_FischerList_To_wardle_FischerList(in *FischerList, out *wardle.FischerList, s conversion.Scope) error { | ||
return autoConvert_v1alpha1_FischerList_To_wardle_FischerList(in, out, s) | ||
} | ||
|
||
func autoConvert_wardle_FischerList_To_v1alpha1_FischerList(in *wardle.FischerList, out *FischerList, s conversion.Scope) error { | ||
out.ListMeta = in.ListMeta | ||
out.Items = *(*[]Fischer)(unsafe.Pointer(&in.Items)) | ||
return nil | ||
} | ||
|
||
// Convert_wardle_FischerList_To_v1alpha1_FischerList is an autogenerated conversion function. | ||
func Convert_wardle_FischerList_To_v1alpha1_FischerList(in *wardle.FischerList, out *FischerList, s conversion.Scope) error { | ||
return autoConvert_wardle_FischerList_To_v1alpha1_FischerList(in, out, s) | ||
} | ||
|
||
func autoConvert_v1alpha1_Flunder_To_wardle_Flunder(in *Flunder, out *wardle.Flunder, s conversion.Scope) error { | ||
out.ObjectMeta = in.ObjectMeta | ||
if err := Convert_v1alpha1_FlunderSpec_To_wardle_FlunderSpec(&in.Spec, &out.Spec, s); err != nil { | ||
return err | ||
} | ||
if err := Convert_v1alpha1_FlunderStatus_To_wardle_FlunderStatus(&in.Status, &out.Status, s); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
// Convert_v1alpha1_Flunder_To_wardle_Flunder is an autogenerated conversion function. | ||
func Convert_v1alpha1_Flunder_To_wardle_Flunder(in *Flunder, out *wardle.Flunder, s conversion.Scope) error { | ||
return autoConvert_v1alpha1_Flunder_To_wardle_Flunder(in, out, s) | ||
} | ||
|
||
func autoConvert_wardle_Flunder_To_v1alpha1_Flunder(in *wardle.Flunder, out *Flunder, s conversion.Scope) error { | ||
out.ObjectMeta = in.ObjectMeta | ||
if err := Convert_wardle_FlunderSpec_To_v1alpha1_FlunderSpec(&in.Spec, &out.Spec, s); err != nil { | ||
return err | ||
} | ||
if err := Convert_wardle_FlunderStatus_To_v1alpha1_FlunderStatus(&in.Status, &out.Status, s); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
// Convert_wardle_Flunder_To_v1alpha1_Flunder is an autogenerated conversion function. | ||
func Convert_wardle_Flunder_To_v1alpha1_Flunder(in *wardle.Flunder, out *Flunder, s conversion.Scope) error { | ||
return autoConvert_wardle_Flunder_To_v1alpha1_Flunder(in, out, s) | ||
} | ||
|
||
func autoConvert_v1alpha1_FlunderList_To_wardle_FlunderList(in *FlunderList, out *wardle.FlunderList, s conversion.Scope) error { | ||
out.ListMeta = in.ListMeta | ||
out.Items = *(*[]wardle.Flunder)(unsafe.Pointer(&in.Items)) | ||
return nil | ||
} | ||
|
||
// Convert_v1alpha1_FlunderList_To_wardle_FlunderList is an autogenerated conversion function. | ||
func Convert_v1alpha1_FlunderList_To_wardle_FlunderList(in *FlunderList, out *wardle.FlunderList, s conversion.Scope) error { | ||
return autoConvert_v1alpha1_FlunderList_To_wardle_FlunderList(in, out, s) | ||
} | ||
|
||
func autoConvert_wardle_FlunderList_To_v1alpha1_FlunderList(in *wardle.FlunderList, out *FlunderList, s conversion.Scope) error { | ||
out.ListMeta = in.ListMeta | ||
out.Items = *(*[]Flunder)(unsafe.Pointer(&in.Items)) | ||
return nil | ||
} | ||
|
||
// Convert_wardle_FlunderList_To_v1alpha1_FlunderList is an autogenerated conversion function. | ||
func Convert_wardle_FlunderList_To_v1alpha1_FlunderList(in *wardle.FlunderList, out *FlunderList, s conversion.Scope) error { | ||
return autoConvert_wardle_FlunderList_To_v1alpha1_FlunderList(in, out, s) | ||
} | ||
|
||
func autoConvert_v1alpha1_FlunderSpec_To_wardle_FlunderSpec(in *FlunderSpec, out *wardle.FlunderSpec, s conversion.Scope) error { | ||
return nil | ||
} | ||
|
||
// Convert_v1alpha1_FlunderSpec_To_wardle_FlunderSpec is an autogenerated conversion function. | ||
func Convert_v1alpha1_FlunderSpec_To_wardle_FlunderSpec(in *FlunderSpec, out *wardle.FlunderSpec, s conversion.Scope) error { | ||
return autoConvert_v1alpha1_FlunderSpec_To_wardle_FlunderSpec(in, out, s) | ||
} | ||
|
||
func autoConvert_wardle_FlunderSpec_To_v1alpha1_FlunderSpec(in *wardle.FlunderSpec, out *FlunderSpec, s conversion.Scope) error { | ||
return nil | ||
} | ||
|
||
// Convert_wardle_FlunderSpec_To_v1alpha1_FlunderSpec is an autogenerated conversion function. | ||
func Convert_wardle_FlunderSpec_To_v1alpha1_FlunderSpec(in *wardle.FlunderSpec, out *FlunderSpec, s conversion.Scope) error { | ||
return autoConvert_wardle_FlunderSpec_To_v1alpha1_FlunderSpec(in, out, s) | ||
} | ||
|
||
func autoConvert_v1alpha1_FlunderStatus_To_wardle_FlunderStatus(in *FlunderStatus, out *wardle.FlunderStatus, s conversion.Scope) error { | ||
return nil | ||
} | ||
|
||
// Convert_v1alpha1_FlunderStatus_To_wardle_FlunderStatus is an autogenerated conversion function. | ||
func Convert_v1alpha1_FlunderStatus_To_wardle_FlunderStatus(in *FlunderStatus, out *wardle.FlunderStatus, s conversion.Scope) error { | ||
return autoConvert_v1alpha1_FlunderStatus_To_wardle_FlunderStatus(in, out, s) | ||
} | ||
|
||
func autoConvert_wardle_FlunderStatus_To_v1alpha1_FlunderStatus(in *wardle.FlunderStatus, out *FlunderStatus, s conversion.Scope) error { | ||
return nil | ||
} | ||
|
||
// Convert_wardle_FlunderStatus_To_v1alpha1_FlunderStatus is an autogenerated conversion function. | ||
func Convert_wardle_FlunderStatus_To_v1alpha1_FlunderStatus(in *wardle.FlunderStatus, out *FlunderStatus, s conversion.Scope) error { | ||
return autoConvert_wardle_FlunderStatus_To_v1alpha1_FlunderStatus(in, out, s) | ||
} |
32 changes: 32 additions & 0 deletions
32
staging/src/k8s.io/sample-apiserver/pkg/apis/wardle/v1alpha1/zz_generated.defaults.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// +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 defaulter-gen. Do not edit it manually! | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
runtime "k8s.io/apimachinery/pkg/runtime" | ||
) | ||
|
||
// RegisterDefaults adds defaulters functions to the given scheme. | ||
// Public to allow building arbitrary schemes. | ||
// All generated defaulters are covering - they call all nested defaulters. | ||
func RegisterDefaults(scheme *runtime.Scheme) error { | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.