github.com/Azure/aad-pod-identity@v1.8.17/pkg/apis/aadpodidentity/aadpodidentity_deepcopy_generated.go (about)

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  /*
     5  Copyright The Kubernetes 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 aadpodidentity
    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 *AzureAssignedIdentity) DeepCopyInto(out *AzureAssignedIdentity) {
    30  	*out = *in
    31  	out.TypeMeta = in.TypeMeta
    32  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    33  	in.Spec.DeepCopyInto(&out.Spec)
    34  	in.Status.DeepCopyInto(&out.Status)
    35  	return
    36  }
    37  
    38  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureAssignedIdentity.
    39  func (in *AzureAssignedIdentity) DeepCopy() *AzureAssignedIdentity {
    40  	if in == nil {
    41  		return nil
    42  	}
    43  	out := new(AzureAssignedIdentity)
    44  	in.DeepCopyInto(out)
    45  	return out
    46  }
    47  
    48  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    49  func (in *AzureAssignedIdentity) DeepCopyObject() runtime.Object {
    50  	if c := in.DeepCopy(); c != nil {
    51  		return c
    52  	}
    53  	return nil
    54  }
    55  
    56  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    57  func (in *AzureAssignedIdentityList) DeepCopyInto(out *AzureAssignedIdentityList) {
    58  	*out = *in
    59  	out.TypeMeta = in.TypeMeta
    60  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    61  	if in.Items != nil {
    62  		in, out := &in.Items, &out.Items
    63  		*out = make([]AzureAssignedIdentity, len(*in))
    64  		for i := range *in {
    65  			(*in)[i].DeepCopyInto(&(*out)[i])
    66  		}
    67  	}
    68  	return
    69  }
    70  
    71  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureAssignedIdentityList.
    72  func (in *AzureAssignedIdentityList) DeepCopy() *AzureAssignedIdentityList {
    73  	if in == nil {
    74  		return nil
    75  	}
    76  	out := new(AzureAssignedIdentityList)
    77  	in.DeepCopyInto(out)
    78  	return out
    79  }
    80  
    81  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    82  func (in *AzureAssignedIdentityList) DeepCopyObject() runtime.Object {
    83  	if c := in.DeepCopy(); c != nil {
    84  		return c
    85  	}
    86  	return nil
    87  }
    88  
    89  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    90  func (in *AzureAssignedIdentitySpec) DeepCopyInto(out *AzureAssignedIdentitySpec) {
    91  	*out = *in
    92  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    93  	if in.AzureIdentityRef != nil {
    94  		in, out := &in.AzureIdentityRef, &out.AzureIdentityRef
    95  		*out = new(AzureIdentity)
    96  		(*in).DeepCopyInto(*out)
    97  	}
    98  	if in.AzureBindingRef != nil {
    99  		in, out := &in.AzureBindingRef, &out.AzureBindingRef
   100  		*out = new(AzureIdentityBinding)
   101  		(*in).DeepCopyInto(*out)
   102  	}
   103  	if in.Replicas != nil {
   104  		in, out := &in.Replicas, &out.Replicas
   105  		*out = new(int32)
   106  		**out = **in
   107  	}
   108  	return
   109  }
   110  
   111  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureAssignedIdentitySpec.
   112  func (in *AzureAssignedIdentitySpec) DeepCopy() *AzureAssignedIdentitySpec {
   113  	if in == nil {
   114  		return nil
   115  	}
   116  	out := new(AzureAssignedIdentitySpec)
   117  	in.DeepCopyInto(out)
   118  	return out
   119  }
   120  
   121  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   122  func (in *AzureAssignedIdentityStatus) DeepCopyInto(out *AzureAssignedIdentityStatus) {
   123  	*out = *in
   124  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   125  	return
   126  }
   127  
   128  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureAssignedIdentityStatus.
   129  func (in *AzureAssignedIdentityStatus) DeepCopy() *AzureAssignedIdentityStatus {
   130  	if in == nil {
   131  		return nil
   132  	}
   133  	out := new(AzureAssignedIdentityStatus)
   134  	in.DeepCopyInto(out)
   135  	return out
   136  }
   137  
   138  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   139  func (in *AzureIdentity) DeepCopyInto(out *AzureIdentity) {
   140  	*out = *in
   141  	out.TypeMeta = in.TypeMeta
   142  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   143  	in.Spec.DeepCopyInto(&out.Spec)
   144  	in.Status.DeepCopyInto(&out.Status)
   145  	return
   146  }
   147  
   148  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIdentity.
   149  func (in *AzureIdentity) DeepCopy() *AzureIdentity {
   150  	if in == nil {
   151  		return nil
   152  	}
   153  	out := new(AzureIdentity)
   154  	in.DeepCopyInto(out)
   155  	return out
   156  }
   157  
   158  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   159  func (in *AzureIdentity) DeepCopyObject() runtime.Object {
   160  	if c := in.DeepCopy(); c != nil {
   161  		return c
   162  	}
   163  	return nil
   164  }
   165  
   166  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   167  func (in *AzureIdentityBinding) DeepCopyInto(out *AzureIdentityBinding) {
   168  	*out = *in
   169  	out.TypeMeta = in.TypeMeta
   170  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   171  	in.Spec.DeepCopyInto(&out.Spec)
   172  	in.Status.DeepCopyInto(&out.Status)
   173  	return
   174  }
   175  
   176  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIdentityBinding.
   177  func (in *AzureIdentityBinding) DeepCopy() *AzureIdentityBinding {
   178  	if in == nil {
   179  		return nil
   180  	}
   181  	out := new(AzureIdentityBinding)
   182  	in.DeepCopyInto(out)
   183  	return out
   184  }
   185  
   186  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   187  func (in *AzureIdentityBinding) DeepCopyObject() runtime.Object {
   188  	if c := in.DeepCopy(); c != nil {
   189  		return c
   190  	}
   191  	return nil
   192  }
   193  
   194  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   195  func (in *AzureIdentityBindingList) DeepCopyInto(out *AzureIdentityBindingList) {
   196  	*out = *in
   197  	out.TypeMeta = in.TypeMeta
   198  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   199  	if in.Items != nil {
   200  		in, out := &in.Items, &out.Items
   201  		*out = make([]AzureIdentityBinding, len(*in))
   202  		for i := range *in {
   203  			(*in)[i].DeepCopyInto(&(*out)[i])
   204  		}
   205  	}
   206  	return
   207  }
   208  
   209  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIdentityBindingList.
   210  func (in *AzureIdentityBindingList) DeepCopy() *AzureIdentityBindingList {
   211  	if in == nil {
   212  		return nil
   213  	}
   214  	out := new(AzureIdentityBindingList)
   215  	in.DeepCopyInto(out)
   216  	return out
   217  }
   218  
   219  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   220  func (in *AzureIdentityBindingList) DeepCopyObject() runtime.Object {
   221  	if c := in.DeepCopy(); c != nil {
   222  		return c
   223  	}
   224  	return nil
   225  }
   226  
   227  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   228  func (in *AzureIdentityBindingSpec) DeepCopyInto(out *AzureIdentityBindingSpec) {
   229  	*out = *in
   230  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   231  	return
   232  }
   233  
   234  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIdentityBindingSpec.
   235  func (in *AzureIdentityBindingSpec) DeepCopy() *AzureIdentityBindingSpec {
   236  	if in == nil {
   237  		return nil
   238  	}
   239  	out := new(AzureIdentityBindingSpec)
   240  	in.DeepCopyInto(out)
   241  	return out
   242  }
   243  
   244  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   245  func (in *AzureIdentityBindingStatus) DeepCopyInto(out *AzureIdentityBindingStatus) {
   246  	*out = *in
   247  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   248  	return
   249  }
   250  
   251  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIdentityBindingStatus.
   252  func (in *AzureIdentityBindingStatus) DeepCopy() *AzureIdentityBindingStatus {
   253  	if in == nil {
   254  		return nil
   255  	}
   256  	out := new(AzureIdentityBindingStatus)
   257  	in.DeepCopyInto(out)
   258  	return out
   259  }
   260  
   261  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   262  func (in *AzureIdentityList) DeepCopyInto(out *AzureIdentityList) {
   263  	*out = *in
   264  	out.TypeMeta = in.TypeMeta
   265  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   266  	if in.Items != nil {
   267  		in, out := &in.Items, &out.Items
   268  		*out = make([]AzureIdentity, len(*in))
   269  		for i := range *in {
   270  			(*in)[i].DeepCopyInto(&(*out)[i])
   271  		}
   272  	}
   273  	return
   274  }
   275  
   276  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIdentityList.
   277  func (in *AzureIdentityList) DeepCopy() *AzureIdentityList {
   278  	if in == nil {
   279  		return nil
   280  	}
   281  	out := new(AzureIdentityList)
   282  	in.DeepCopyInto(out)
   283  	return out
   284  }
   285  
   286  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   287  func (in *AzureIdentityList) DeepCopyObject() runtime.Object {
   288  	if c := in.DeepCopy(); c != nil {
   289  		return c
   290  	}
   291  	return nil
   292  }
   293  
   294  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   295  func (in *AzureIdentitySpec) DeepCopyInto(out *AzureIdentitySpec) {
   296  	*out = *in
   297  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   298  	out.ClientPassword = in.ClientPassword
   299  	if in.Replicas != nil {
   300  		in, out := &in.Replicas, &out.Replicas
   301  		*out = new(int32)
   302  		**out = **in
   303  	}
   304  	return
   305  }
   306  
   307  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIdentitySpec.
   308  func (in *AzureIdentitySpec) DeepCopy() *AzureIdentitySpec {
   309  	if in == nil {
   310  		return nil
   311  	}
   312  	out := new(AzureIdentitySpec)
   313  	in.DeepCopyInto(out)
   314  	return out
   315  }
   316  
   317  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   318  func (in *AzureIdentityStatus) DeepCopyInto(out *AzureIdentityStatus) {
   319  	*out = *in
   320  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   321  	return
   322  }
   323  
   324  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIdentityStatus.
   325  func (in *AzureIdentityStatus) DeepCopy() *AzureIdentityStatus {
   326  	if in == nil {
   327  		return nil
   328  	}
   329  	out := new(AzureIdentityStatus)
   330  	in.DeepCopyInto(out)
   331  	return out
   332  }
   333  
   334  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   335  func (in *AzurePodIdentityException) DeepCopyInto(out *AzurePodIdentityException) {
   336  	*out = *in
   337  	out.TypeMeta = in.TypeMeta
   338  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   339  	in.Spec.DeepCopyInto(&out.Spec)
   340  	in.Status.DeepCopyInto(&out.Status)
   341  	return
   342  }
   343  
   344  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzurePodIdentityException.
   345  func (in *AzurePodIdentityException) DeepCopy() *AzurePodIdentityException {
   346  	if in == nil {
   347  		return nil
   348  	}
   349  	out := new(AzurePodIdentityException)
   350  	in.DeepCopyInto(out)
   351  	return out
   352  }
   353  
   354  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   355  func (in *AzurePodIdentityException) DeepCopyObject() runtime.Object {
   356  	if c := in.DeepCopy(); c != nil {
   357  		return c
   358  	}
   359  	return nil
   360  }
   361  
   362  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   363  func (in *AzurePodIdentityExceptionList) DeepCopyInto(out *AzurePodIdentityExceptionList) {
   364  	*out = *in
   365  	out.TypeMeta = in.TypeMeta
   366  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   367  	if in.Items != nil {
   368  		in, out := &in.Items, &out.Items
   369  		*out = make([]AzurePodIdentityException, len(*in))
   370  		for i := range *in {
   371  			(*in)[i].DeepCopyInto(&(*out)[i])
   372  		}
   373  	}
   374  	return
   375  }
   376  
   377  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzurePodIdentityExceptionList.
   378  func (in *AzurePodIdentityExceptionList) DeepCopy() *AzurePodIdentityExceptionList {
   379  	if in == nil {
   380  		return nil
   381  	}
   382  	out := new(AzurePodIdentityExceptionList)
   383  	in.DeepCopyInto(out)
   384  	return out
   385  }
   386  
   387  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   388  func (in *AzurePodIdentityExceptionList) DeepCopyObject() runtime.Object {
   389  	if c := in.DeepCopy(); c != nil {
   390  		return c
   391  	}
   392  	return nil
   393  }
   394  
   395  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   396  func (in *AzurePodIdentityExceptionSpec) DeepCopyInto(out *AzurePodIdentityExceptionSpec) {
   397  	*out = *in
   398  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   399  	if in.PodLabels != nil {
   400  		in, out := &in.PodLabels, &out.PodLabels
   401  		*out = make(map[string]string, len(*in))
   402  		for key, val := range *in {
   403  			(*out)[key] = val
   404  		}
   405  	}
   406  	return
   407  }
   408  
   409  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzurePodIdentityExceptionSpec.
   410  func (in *AzurePodIdentityExceptionSpec) DeepCopy() *AzurePodIdentityExceptionSpec {
   411  	if in == nil {
   412  		return nil
   413  	}
   414  	out := new(AzurePodIdentityExceptionSpec)
   415  	in.DeepCopyInto(out)
   416  	return out
   417  }
   418  
   419  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   420  func (in *AzurePodIdentityExceptionStatus) DeepCopyInto(out *AzurePodIdentityExceptionStatus) {
   421  	*out = *in
   422  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   423  	return
   424  }
   425  
   426  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzurePodIdentityExceptionStatus.
   427  func (in *AzurePodIdentityExceptionStatus) DeepCopy() *AzurePodIdentityExceptionStatus {
   428  	if in == nil {
   429  		return nil
   430  	}
   431  	out := new(AzurePodIdentityExceptionStatus)
   432  	in.DeepCopyInto(out)
   433  	return out
   434  }