knative.dev/pkg@v0.0.0-20260602142205-ac97e43f6622/apis/duck/v1alpha1/zz_generated.deepcopy.go (about)

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  /*
     5  Copyright 2022 The Knative Authors
     6  
     7  Licensed under the Apache License, Version 2.0 (the "License");
     8  you may not use this file except in compliance with the License.
     9  You may obtain a copy of the License at
    10  
    11      http://www.apache.org/licenses/LICENSE-2.0
    12  
    13  Unless required by applicable law or agreed to in writing, software
    14  distributed under the License is distributed on an "AS IS" BASIS,
    15  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    16  See the License for the specific language governing permissions and
    17  limitations under the License.
    18  */
    19  
    20  // Code generated by deepcopy-gen. DO NOT EDIT.
    21  
    22  package v1alpha1
    23  
    24  import (
    25  	runtime "k8s.io/apimachinery/pkg/runtime"
    26  )
    27  
    28  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    29  func (in *AddressStatus) DeepCopyInto(out *AddressStatus) {
    30  	*out = *in
    31  	if in.Address != nil {
    32  		in, out := &in.Address, &out.Address
    33  		*out = new(Addressable)
    34  		(*in).DeepCopyInto(*out)
    35  	}
    36  	if in.Addresses != nil {
    37  		in, out := &in.Addresses, &out.Addresses
    38  		*out = make([]Addressable, len(*in))
    39  		for i := range *in {
    40  			(*in)[i].DeepCopyInto(&(*out)[i])
    41  		}
    42  	}
    43  	return
    44  }
    45  
    46  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddressStatus.
    47  func (in *AddressStatus) DeepCopy() *AddressStatus {
    48  	if in == nil {
    49  		return nil
    50  	}
    51  	out := new(AddressStatus)
    52  	in.DeepCopyInto(out)
    53  	return out
    54  }
    55  
    56  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    57  func (in *Addressable) DeepCopyInto(out *Addressable) {
    58  	*out = *in
    59  	in.Addressable.DeepCopyInto(&out.Addressable)
    60  	return
    61  }
    62  
    63  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Addressable.
    64  func (in *Addressable) DeepCopy() *Addressable {
    65  	if in == nil {
    66  		return nil
    67  	}
    68  	out := new(Addressable)
    69  	in.DeepCopyInto(out)
    70  	return out
    71  }
    72  
    73  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    74  func (in *AddressableType) DeepCopyInto(out *AddressableType) {
    75  	*out = *in
    76  	out.TypeMeta = in.TypeMeta
    77  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    78  	in.Status.DeepCopyInto(&out.Status)
    79  	return
    80  }
    81  
    82  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddressableType.
    83  func (in *AddressableType) DeepCopy() *AddressableType {
    84  	if in == nil {
    85  		return nil
    86  	}
    87  	out := new(AddressableType)
    88  	in.DeepCopyInto(out)
    89  	return out
    90  }
    91  
    92  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    93  func (in *AddressableType) DeepCopyObject() runtime.Object {
    94  	if c := in.DeepCopy(); c != nil {
    95  		return c
    96  	}
    97  	return nil
    98  }
    99  
   100  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   101  func (in *AddressableTypeList) DeepCopyInto(out *AddressableTypeList) {
   102  	*out = *in
   103  	out.TypeMeta = in.TypeMeta
   104  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   105  	if in.Items != nil {
   106  		in, out := &in.Items, &out.Items
   107  		*out = make([]AddressableType, len(*in))
   108  		for i := range *in {
   109  			(*in)[i].DeepCopyInto(&(*out)[i])
   110  		}
   111  	}
   112  	return
   113  }
   114  
   115  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddressableTypeList.
   116  func (in *AddressableTypeList) DeepCopy() *AddressableTypeList {
   117  	if in == nil {
   118  		return nil
   119  	}
   120  	out := new(AddressableTypeList)
   121  	in.DeepCopyInto(out)
   122  	return out
   123  }
   124  
   125  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   126  func (in *AddressableTypeList) DeepCopyObject() runtime.Object {
   127  	if c := in.DeepCopy(); c != nil {
   128  		return c
   129  	}
   130  	return nil
   131  }
   132  
   133  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   134  func (in *Binding) DeepCopyInto(out *Binding) {
   135  	*out = *in
   136  	out.TypeMeta = in.TypeMeta
   137  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   138  	in.Spec.DeepCopyInto(&out.Spec)
   139  	return
   140  }
   141  
   142  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Binding.
   143  func (in *Binding) DeepCopy() *Binding {
   144  	if in == nil {
   145  		return nil
   146  	}
   147  	out := new(Binding)
   148  	in.DeepCopyInto(out)
   149  	return out
   150  }
   151  
   152  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   153  func (in *Binding) DeepCopyObject() runtime.Object {
   154  	if c := in.DeepCopy(); c != nil {
   155  		return c
   156  	}
   157  	return nil
   158  }
   159  
   160  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   161  func (in *BindingList) DeepCopyInto(out *BindingList) {
   162  	*out = *in
   163  	out.TypeMeta = in.TypeMeta
   164  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   165  	if in.Items != nil {
   166  		in, out := &in.Items, &out.Items
   167  		*out = make([]Binding, len(*in))
   168  		for i := range *in {
   169  			(*in)[i].DeepCopyInto(&(*out)[i])
   170  		}
   171  	}
   172  	return
   173  }
   174  
   175  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BindingList.
   176  func (in *BindingList) DeepCopy() *BindingList {
   177  	if in == nil {
   178  		return nil
   179  	}
   180  	out := new(BindingList)
   181  	in.DeepCopyInto(out)
   182  	return out
   183  }
   184  
   185  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   186  func (in *BindingList) DeepCopyObject() runtime.Object {
   187  	if c := in.DeepCopy(); c != nil {
   188  		return c
   189  	}
   190  	return nil
   191  }
   192  
   193  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   194  func (in *BindingSpec) DeepCopyInto(out *BindingSpec) {
   195  	*out = *in
   196  	in.Subject.DeepCopyInto(&out.Subject)
   197  	return
   198  }
   199  
   200  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BindingSpec.
   201  func (in *BindingSpec) DeepCopy() *BindingSpec {
   202  	if in == nil {
   203  		return nil
   204  	}
   205  	out := new(BindingSpec)
   206  	in.DeepCopyInto(out)
   207  	return out
   208  }
   209  
   210  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   211  func (in *LegacyTarget) DeepCopyInto(out *LegacyTarget) {
   212  	*out = *in
   213  	out.TypeMeta = in.TypeMeta
   214  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   215  	out.Status = in.Status
   216  	return
   217  }
   218  
   219  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LegacyTarget.
   220  func (in *LegacyTarget) DeepCopy() *LegacyTarget {
   221  	if in == nil {
   222  		return nil
   223  	}
   224  	out := new(LegacyTarget)
   225  	in.DeepCopyInto(out)
   226  	return out
   227  }
   228  
   229  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   230  func (in *LegacyTarget) DeepCopyObject() runtime.Object {
   231  	if c := in.DeepCopy(); c != nil {
   232  		return c
   233  	}
   234  	return nil
   235  }
   236  
   237  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   238  func (in *LegacyTargetList) DeepCopyInto(out *LegacyTargetList) {
   239  	*out = *in
   240  	out.TypeMeta = in.TypeMeta
   241  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   242  	if in.Items != nil {
   243  		in, out := &in.Items, &out.Items
   244  		*out = make([]LegacyTarget, len(*in))
   245  		for i := range *in {
   246  			(*in)[i].DeepCopyInto(&(*out)[i])
   247  		}
   248  	}
   249  	return
   250  }
   251  
   252  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LegacyTargetList.
   253  func (in *LegacyTargetList) DeepCopy() *LegacyTargetList {
   254  	if in == nil {
   255  		return nil
   256  	}
   257  	out := new(LegacyTargetList)
   258  	in.DeepCopyInto(out)
   259  	return out
   260  }
   261  
   262  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   263  func (in *LegacyTargetList) DeepCopyObject() runtime.Object {
   264  	if c := in.DeepCopy(); c != nil {
   265  		return c
   266  	}
   267  	return nil
   268  }
   269  
   270  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   271  func (in *LegacyTargetable) DeepCopyInto(out *LegacyTargetable) {
   272  	*out = *in
   273  	return
   274  }
   275  
   276  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LegacyTargetable.
   277  func (in *LegacyTargetable) DeepCopy() *LegacyTargetable {
   278  	if in == nil {
   279  		return nil
   280  	}
   281  	out := new(LegacyTargetable)
   282  	in.DeepCopyInto(out)
   283  	return out
   284  }
   285  
   286  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   287  func (in *Target) DeepCopyInto(out *Target) {
   288  	*out = *in
   289  	out.TypeMeta = in.TypeMeta
   290  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   291  	in.Status.DeepCopyInto(&out.Status)
   292  	return
   293  }
   294  
   295  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Target.
   296  func (in *Target) DeepCopy() *Target {
   297  	if in == nil {
   298  		return nil
   299  	}
   300  	out := new(Target)
   301  	in.DeepCopyInto(out)
   302  	return out
   303  }
   304  
   305  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   306  func (in *Target) DeepCopyObject() runtime.Object {
   307  	if c := in.DeepCopy(); c != nil {
   308  		return c
   309  	}
   310  	return nil
   311  }
   312  
   313  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   314  func (in *TargetList) DeepCopyInto(out *TargetList) {
   315  	*out = *in
   316  	out.TypeMeta = in.TypeMeta
   317  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   318  	if in.Items != nil {
   319  		in, out := &in.Items, &out.Items
   320  		*out = make([]Target, len(*in))
   321  		for i := range *in {
   322  			(*in)[i].DeepCopyInto(&(*out)[i])
   323  		}
   324  	}
   325  	return
   326  }
   327  
   328  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TargetList.
   329  func (in *TargetList) DeepCopy() *TargetList {
   330  	if in == nil {
   331  		return nil
   332  	}
   333  	out := new(TargetList)
   334  	in.DeepCopyInto(out)
   335  	return out
   336  }
   337  
   338  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   339  func (in *TargetList) DeepCopyObject() runtime.Object {
   340  	if c := in.DeepCopy(); c != nil {
   341  		return c
   342  	}
   343  	return nil
   344  }
   345  
   346  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   347  func (in *TargetStatus) DeepCopyInto(out *TargetStatus) {
   348  	*out = *in
   349  	if in.Targetable != nil {
   350  		in, out := &in.Targetable, &out.Targetable
   351  		*out = new(Targetable)
   352  		**out = **in
   353  	}
   354  	return
   355  }
   356  
   357  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TargetStatus.
   358  func (in *TargetStatus) DeepCopy() *TargetStatus {
   359  	if in == nil {
   360  		return nil
   361  	}
   362  	out := new(TargetStatus)
   363  	in.DeepCopyInto(out)
   364  	return out
   365  }
   366  
   367  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   368  func (in *Targetable) DeepCopyInto(out *Targetable) {
   369  	*out = *in
   370  	return
   371  }
   372  
   373  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Targetable.
   374  func (in *Targetable) DeepCopy() *Targetable {
   375  	if in == nil {
   376  		return nil
   377  	}
   378  	out := new(Targetable)
   379  	in.DeepCopyInto(out)
   380  	return out
   381  }