| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- //go:build !ignore_autogenerated
- /*
- Copyright © The ESO 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
- https://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 v2alpha1
- import (
- "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- )
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *BackendObjectReference) DeepCopyInto(out *BackendObjectReference) {
- *out = *in
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendObjectReference.
- func (in *BackendObjectReference) DeepCopy() *BackendObjectReference {
- if in == nil {
- return nil
- }
- out := new(BackendObjectReference)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ClusterProviderStore) DeepCopyInto(out *ClusterProviderStore) {
- *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 ClusterProviderStore.
- func (in *ClusterProviderStore) DeepCopy() *ClusterProviderStore {
- if in == nil {
- return nil
- }
- out := new(ClusterProviderStore)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ClusterProviderStore) 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 *ClusterProviderStoreList) DeepCopyInto(out *ClusterProviderStoreList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]ClusterProviderStore, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterProviderStoreList.
- func (in *ClusterProviderStoreList) DeepCopy() *ClusterProviderStoreList {
- if in == nil {
- return nil
- }
- out := new(ClusterProviderStoreList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ClusterProviderStoreList) 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 *ClusterProviderStoreSpec) DeepCopyInto(out *ClusterProviderStoreSpec) {
- *out = *in
- out.RuntimeRef = in.RuntimeRef
- out.BackendRef = in.BackendRef
- if in.Conditions != nil {
- in, out := &in.Conditions, &out.Conditions
- *out = make([]StoreNamespaceCondition, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterProviderStoreSpec.
- func (in *ClusterProviderStoreSpec) DeepCopy() *ClusterProviderStoreSpec {
- if in == nil {
- return nil
- }
- out := new(ClusterProviderStoreSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ClusterProviderStoreValidator) DeepCopyInto(out *ClusterProviderStoreValidator) {
- *out = *in
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterProviderStoreValidator.
- func (in *ClusterProviderStoreValidator) DeepCopy() *ClusterProviderStoreValidator {
- if in == nil {
- return nil
- }
- out := new(ClusterProviderStoreValidator)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ProviderStore) DeepCopyInto(out *ProviderStore) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
- out.Spec = in.Spec
- in.Status.DeepCopyInto(&out.Status)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStore.
- func (in *ProviderStore) DeepCopy() *ProviderStore {
- if in == nil {
- return nil
- }
- out := new(ProviderStore)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ProviderStore) 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 *ProviderStoreCondition) DeepCopyInto(out *ProviderStoreCondition) {
- *out = *in
- in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreCondition.
- func (in *ProviderStoreCondition) DeepCopy() *ProviderStoreCondition {
- if in == nil {
- return nil
- }
- out := new(ProviderStoreCondition)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ProviderStoreList) DeepCopyInto(out *ProviderStoreList) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.ListMeta.DeepCopyInto(&out.ListMeta)
- if in.Items != nil {
- in, out := &in.Items, &out.Items
- *out = make([]ProviderStore, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreList.
- func (in *ProviderStoreList) DeepCopy() *ProviderStoreList {
- if in == nil {
- return nil
- }
- out := new(ProviderStoreList)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *ProviderStoreList) 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 *ProviderStoreSpec) DeepCopyInto(out *ProviderStoreSpec) {
- *out = *in
- out.RuntimeRef = in.RuntimeRef
- out.BackendRef = in.BackendRef
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreSpec.
- func (in *ProviderStoreSpec) DeepCopy() *ProviderStoreSpec {
- if in == nil {
- return nil
- }
- out := new(ProviderStoreSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ProviderStoreStatus) DeepCopyInto(out *ProviderStoreStatus) {
- *out = *in
- if in.Conditions != nil {
- in, out := &in.Conditions, &out.Conditions
- *out = make([]ProviderStoreCondition, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreStatus.
- func (in *ProviderStoreStatus) DeepCopy() *ProviderStoreStatus {
- if in == nil {
- return nil
- }
- out := new(ProviderStoreStatus)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ProviderStoreValidator) DeepCopyInto(out *ProviderStoreValidator) {
- *out = *in
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreValidator.
- func (in *ProviderStoreValidator) DeepCopy() *ProviderStoreValidator {
- if in == nil {
- return nil
- }
- out := new(ProviderStoreValidator)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *StoreNamespaceCondition) DeepCopyInto(out *StoreNamespaceCondition) {
- *out = *in
- if in.NamespaceSelector != nil {
- in, out := &in.NamespaceSelector, &out.NamespaceSelector
- *out = new(v1.LabelSelector)
- (*in).DeepCopyInto(*out)
- }
- if in.Namespaces != nil {
- in, out := &in.Namespaces, &out.Namespaces
- *out = make([]string, len(*in))
- copy(*out, *in)
- }
- if in.NamespaceRegexes != nil {
- in, out := &in.NamespaceRegexes, &out.NamespaceRegexes
- *out = make([]string, len(*in))
- copy(*out, *in)
- }
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StoreNamespaceCondition.
- func (in *StoreNamespaceCondition) DeepCopy() *StoreNamespaceCondition {
- if in == nil {
- return nil
- }
- out := new(StoreNamespaceCondition)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *StoreRuntimeRef) DeepCopyInto(out *StoreRuntimeRef) {
- *out = *in
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StoreRuntimeRef.
- func (in *StoreRuntimeRef) DeepCopy() *StoreRuntimeRef {
- if in == nil {
- return nil
- }
- out := new(StoreRuntimeRef)
- in.DeepCopyInto(out)
- return out
- }
|