470 lines
14 KiB
Go
470 lines
14 KiB
Go
//go:build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2026.
|
|
|
|
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 controller-gen. DO NOT EDIT.
|
|
|
|
package v1alpha1
|
|
|
|
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 *ClusterBlueprint) DeepCopyInto(out *ClusterBlueprint) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBlueprint.
|
|
func (in *ClusterBlueprint) DeepCopy() *ClusterBlueprint {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClusterBlueprint)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ClusterBlueprint) 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 *ClusterBlueprintList) DeepCopyInto(out *ClusterBlueprintList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]ClusterBlueprint, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBlueprintList.
|
|
func (in *ClusterBlueprintList) DeepCopy() *ClusterBlueprintList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClusterBlueprintList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ClusterBlueprintList) 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 *ClusterBlueprintSpec) DeepCopyInto(out *ClusterBlueprintSpec) {
|
|
*out = *in
|
|
if in.WorkerPools != nil {
|
|
in, out := &in.WorkerPools, &out.WorkerPools
|
|
*out = make([]GenericPoolReq, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBlueprintSpec.
|
|
func (in *ClusterBlueprintSpec) DeepCopy() *ClusterBlueprintSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClusterBlueprintSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ClusterBlueprintStatus) DeepCopyInto(out *ClusterBlueprintStatus) {
|
|
*out = *in
|
|
if in.Identity != nil {
|
|
in, out := &in.Identity, &out.Identity
|
|
*out = new(IdentityStatus)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBlueprintStatus.
|
|
func (in *ClusterBlueprintStatus) DeepCopy() *ClusterBlueprintStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClusterBlueprintStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericPoolReq) DeepCopyInto(out *GenericPoolReq) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericPoolReq.
|
|
func (in *GenericPoolReq) DeepCopy() *GenericPoolReq {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericPoolReq)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *HarvesterBlueprint) DeepCopyInto(out *HarvesterBlueprint) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Spec = in.Spec
|
|
out.Status = in.Status
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HarvesterBlueprint.
|
|
func (in *HarvesterBlueprint) DeepCopy() *HarvesterBlueprint {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(HarvesterBlueprint)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *HarvesterBlueprint) 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 *HarvesterBlueprintList) DeepCopyInto(out *HarvesterBlueprintList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]HarvesterBlueprint, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HarvesterBlueprintList.
|
|
func (in *HarvesterBlueprintList) DeepCopy() *HarvesterBlueprintList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(HarvesterBlueprintList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *HarvesterBlueprintList) 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 *HarvesterBlueprintSpec) DeepCopyInto(out *HarvesterBlueprintSpec) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HarvesterBlueprintSpec.
|
|
func (in *HarvesterBlueprintSpec) DeepCopy() *HarvesterBlueprintSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(HarvesterBlueprintSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *HarvesterBlueprintStatus) DeepCopyInto(out *HarvesterBlueprintStatus) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HarvesterBlueprintStatus.
|
|
func (in *HarvesterBlueprintStatus) DeepCopy() *HarvesterBlueprintStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(HarvesterBlueprintStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *IdentityStatus) DeepCopyInto(out *IdentityStatus) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IdentityStatus.
|
|
func (in *IdentityStatus) DeepCopy() *IdentityStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(IdentityStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfraBlueprint) DeepCopyInto(out *InfraBlueprint) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Spec = in.Spec
|
|
out.Status = in.Status
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfraBlueprint.
|
|
func (in *InfraBlueprint) DeepCopy() *InfraBlueprint {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfraBlueprint)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *InfraBlueprint) 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 *InfraBlueprintList) DeepCopyInto(out *InfraBlueprintList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]InfraBlueprint, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfraBlueprintList.
|
|
func (in *InfraBlueprintList) DeepCopy() *InfraBlueprintList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfraBlueprintList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *InfraBlueprintList) 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 *InfraBlueprintSpec) DeepCopyInto(out *InfraBlueprintSpec) {
|
|
*out = *in
|
|
out.ProviderRef = in.ProviderRef
|
|
out.Quota = in.Quota
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfraBlueprintSpec.
|
|
func (in *InfraBlueprintSpec) DeepCopy() *InfraBlueprintSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfraBlueprintSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfraBlueprintStatus) DeepCopyInto(out *InfraBlueprintStatus) {
|
|
*out = *in
|
|
out.Usage = in.Usage
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfraBlueprintStatus.
|
|
func (in *InfraBlueprintStatus) DeepCopy() *InfraBlueprintStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfraBlueprintStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfraQuota) DeepCopyInto(out *InfraQuota) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfraQuota.
|
|
func (in *InfraQuota) DeepCopy() *InfraQuota {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfraQuota)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfraQuotaStatus) DeepCopyInto(out *InfraQuotaStatus) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfraQuotaStatus.
|
|
func (in *InfraQuotaStatus) DeepCopy() *InfraQuotaStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfraQuotaStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ProviderRef) DeepCopyInto(out *ProviderRef) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderRef.
|
|
func (in *ProviderRef) DeepCopy() *ProviderRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProviderRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *VsphereBlueprint) DeepCopyInto(out *VsphereBlueprint) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Spec = in.Spec
|
|
out.Status = in.Status
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VsphereBlueprint.
|
|
func (in *VsphereBlueprint) DeepCopy() *VsphereBlueprint {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VsphereBlueprint)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *VsphereBlueprint) 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 *VsphereBlueprintList) DeepCopyInto(out *VsphereBlueprintList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]VsphereBlueprint, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VsphereBlueprintList.
|
|
func (in *VsphereBlueprintList) DeepCopy() *VsphereBlueprintList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VsphereBlueprintList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *VsphereBlueprintList) 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 *VsphereBlueprintSpec) DeepCopyInto(out *VsphereBlueprintSpec) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VsphereBlueprintSpec.
|
|
func (in *VsphereBlueprintSpec) DeepCopy() *VsphereBlueprintSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VsphereBlueprintSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *VsphereBlueprintStatus) DeepCopyInto(out *VsphereBlueprintStatus) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VsphereBlueprintStatus.
|
|
func (in *VsphereBlueprintStatus) DeepCopy() *VsphereBlueprintStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VsphereBlueprintStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|