...

Source file src/edge-infra.dev/pkg/edge/iam/api/v1alpha1/zz_generated.deepcopy.go

Documentation: edge-infra.dev/pkg/edge/iam/api/v1alpha1

     1  //go:build !ignore_autogenerated
     2  
     3  // Code generated by controller-gen. DO NOT EDIT.
     4  
     5  package v1alpha1
     6  
     7  import (
     8  	"k8s.io/apimachinery/pkg/apis/meta/v1"
     9  	runtime "k8s.io/apimachinery/pkg/runtime"
    10  )
    11  
    12  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    13  func (in *BarcodeSpec) DeepCopyInto(out *BarcodeSpec) {
    14  	*out = *in
    15  }
    16  
    17  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BarcodeSpec.
    18  func (in *BarcodeSpec) DeepCopy() *BarcodeSpec {
    19  	if in == nil {
    20  		return nil
    21  	}
    22  	out := new(BarcodeSpec)
    23  	in.DeepCopyInto(out)
    24  	return out
    25  }
    26  
    27  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    28  func (in *Client) DeepCopyInto(out *Client) {
    29  	*out = *in
    30  	out.TypeMeta = in.TypeMeta
    31  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    32  	in.Spec.DeepCopyInto(&out.Spec)
    33  	in.Status.DeepCopyInto(&out.Status)
    34  }
    35  
    36  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Client.
    37  func (in *Client) DeepCopy() *Client {
    38  	if in == nil {
    39  		return nil
    40  	}
    41  	out := new(Client)
    42  	in.DeepCopyInto(out)
    43  	return out
    44  }
    45  
    46  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    47  func (in *Client) DeepCopyObject() runtime.Object {
    48  	if c := in.DeepCopy(); c != nil {
    49  		return c
    50  	}
    51  	return nil
    52  }
    53  
    54  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    55  func (in *ClientCredentials) DeepCopyInto(out *ClientCredentials) {
    56  	*out = *in
    57  	if in.ID != nil {
    58  		in, out := &in.ID, &out.ID
    59  		*out = make([]byte, len(*in))
    60  		copy(*out, *in)
    61  	}
    62  	if in.Password != nil {
    63  		in, out := &in.Password, &out.Password
    64  		*out = make([]byte, len(*in))
    65  		copy(*out, *in)
    66  	}
    67  }
    68  
    69  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClientCredentials.
    70  func (in *ClientCredentials) DeepCopy() *ClientCredentials {
    71  	if in == nil {
    72  		return nil
    73  	}
    74  	out := new(ClientCredentials)
    75  	in.DeepCopyInto(out)
    76  	return out
    77  }
    78  
    79  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    80  func (in *ClientList) DeepCopyInto(out *ClientList) {
    81  	*out = *in
    82  	out.TypeMeta = in.TypeMeta
    83  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    84  	if in.Items != nil {
    85  		in, out := &in.Items, &out.Items
    86  		*out = make([]Client, len(*in))
    87  		for i := range *in {
    88  			(*in)[i].DeepCopyInto(&(*out)[i])
    89  		}
    90  	}
    91  }
    92  
    93  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClientList.
    94  func (in *ClientList) DeepCopy() *ClientList {
    95  	if in == nil {
    96  		return nil
    97  	}
    98  	out := new(ClientList)
    99  	in.DeepCopyInto(out)
   100  	return out
   101  }
   102  
   103  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   104  func (in *ClientList) DeepCopyObject() runtime.Object {
   105  	if c := in.DeepCopy(); c != nil {
   106  		return c
   107  	}
   108  	return nil
   109  }
   110  
   111  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   112  func (in *ClientSpec) DeepCopyInto(out *ClientSpec) {
   113  	*out = *in
   114  	if in.GrantTypes != nil {
   115  		in, out := &in.GrantTypes, &out.GrantTypes
   116  		*out = make([]string, len(*in))
   117  		copy(*out, *in)
   118  	}
   119  	if in.ResponseTypes != nil {
   120  		in, out := &in.ResponseTypes, &out.ResponseTypes
   121  		*out = make([]string, len(*in))
   122  		copy(*out, *in)
   123  	}
   124  	if in.ResponseModes != nil {
   125  		in, out := &in.ResponseModes, &out.ResponseModes
   126  		*out = make([]string, len(*in))
   127  		copy(*out, *in)
   128  	}
   129  	if in.RedirectURIs != nil {
   130  		in, out := &in.RedirectURIs, &out.RedirectURIs
   131  		*out = make([]string, len(*in))
   132  		copy(*out, *in)
   133  	}
   134  	if in.Audience != nil {
   135  		in, out := &in.Audience, &out.Audience
   136  		*out = make([]string, len(*in))
   137  		copy(*out, *in)
   138  	}
   139  	if in.Roles != nil {
   140  		in, out := &in.Roles, &out.Roles
   141  		*out = make([]string, len(*in))
   142  		copy(*out, *in)
   143  	}
   144  	if in.PrintBarcodeTypes != nil {
   145  		in, out := &in.PrintBarcodeTypes, &out.PrintBarcodeTypes
   146  		*out = make([]string, len(*in))
   147  		copy(*out, *in)
   148  	}
   149  }
   150  
   151  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClientSpec.
   152  func (in *ClientSpec) DeepCopy() *ClientSpec {
   153  	if in == nil {
   154  		return nil
   155  	}
   156  	out := new(ClientSpec)
   157  	in.DeepCopyInto(out)
   158  	return out
   159  }
   160  
   161  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   162  func (in *ClientStatus) DeepCopyInto(out *ClientStatus) {
   163  	*out = *in
   164  	if in.Conditions != nil {
   165  		in, out := &in.Conditions, &out.Conditions
   166  		*out = make([]v1.Condition, len(*in))
   167  		for i := range *in {
   168  			(*in)[i].DeepCopyInto(&(*out)[i])
   169  		}
   170  	}
   171  	out.ReconciliationError = in.ReconciliationError
   172  }
   173  
   174  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClientStatus.
   175  func (in *ClientStatus) DeepCopy() *ClientStatus {
   176  	if in == nil {
   177  		return nil
   178  	}
   179  	out := new(ClientStatus)
   180  	in.DeepCopyInto(out)
   181  	return out
   182  }
   183  
   184  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   185  func (in *EncryptionFields) DeepCopyInto(out *EncryptionFields) {
   186  	*out = *in
   187  }
   188  
   189  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionFields.
   190  func (in *EncryptionFields) DeepCopy() *EncryptionFields {
   191  	if in == nil {
   192  		return nil
   193  	}
   194  	out := new(EncryptionFields)
   195  	in.DeepCopyInto(out)
   196  	return out
   197  }
   198  
   199  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   200  func (in *OktaFields) DeepCopyInto(out *OktaFields) {
   201  	*out = *in
   202  }
   203  
   204  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OktaFields.
   205  func (in *OktaFields) DeepCopy() *OktaFields {
   206  	if in == nil {
   207  		return nil
   208  	}
   209  	out := new(OktaFields)
   210  	in.DeepCopyInto(out)
   211  	return out
   212  }
   213  
   214  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   215  func (in *PINSpec) DeepCopyInto(out *PINSpec) {
   216  	*out = *in
   217  }
   218  
   219  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PINSpec.
   220  func (in *PINSpec) DeepCopy() *PINSpec {
   221  	if in == nil {
   222  		return nil
   223  	}
   224  	out := new(PINSpec)
   225  	in.DeepCopyInto(out)
   226  	return out
   227  }
   228  
   229  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   230  func (in *ProfileSpec) DeepCopyInto(out *ProfileSpec) {
   231  	*out = *in
   232  }
   233  
   234  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfileSpec.
   235  func (in *ProfileSpec) DeepCopy() *ProfileSpec {
   236  	if in == nil {
   237  		return nil
   238  	}
   239  	out := new(ProfileSpec)
   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 *Provider) DeepCopyInto(out *Provider) {
   246  	*out = *in
   247  	out.TypeMeta = in.TypeMeta
   248  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   249  	in.Spec.DeepCopyInto(&out.Spec)
   250  	in.Status.DeepCopyInto(&out.Status)
   251  }
   252  
   253  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Provider.
   254  func (in *Provider) DeepCopy() *Provider {
   255  	if in == nil {
   256  		return nil
   257  	}
   258  	out := new(Provider)
   259  	in.DeepCopyInto(out)
   260  	return out
   261  }
   262  
   263  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   264  func (in *Provider) DeepCopyObject() runtime.Object {
   265  	if c := in.DeepCopy(); c != nil {
   266  		return c
   267  	}
   268  	return nil
   269  }
   270  
   271  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   272  func (in *ProviderList) DeepCopyInto(out *ProviderList) {
   273  	*out = *in
   274  	out.TypeMeta = in.TypeMeta
   275  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   276  	if in.Items != nil {
   277  		in, out := &in.Items, &out.Items
   278  		*out = make([]Provider, len(*in))
   279  		for i := range *in {
   280  			(*in)[i].DeepCopyInto(&(*out)[i])
   281  		}
   282  	}
   283  }
   284  
   285  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderList.
   286  func (in *ProviderList) DeepCopy() *ProviderList {
   287  	if in == nil {
   288  		return nil
   289  	}
   290  	out := new(ProviderList)
   291  	in.DeepCopyInto(out)
   292  	return out
   293  }
   294  
   295  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   296  func (in *ProviderList) DeepCopyObject() runtime.Object {
   297  	if c := in.DeepCopy(); c != nil {
   298  		return c
   299  	}
   300  	return nil
   301  }
   302  
   303  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   304  func (in *ProviderSpec) DeepCopyInto(out *ProviderSpec) {
   305  	*out = *in
   306  	out.PIN = in.PIN
   307  	out.Okta = in.Okta
   308  	out.Encryption = in.Encryption
   309  	out.Barcode = in.Barcode
   310  	out.Profile = in.Profile
   311  	if in.FF != nil {
   312  		in, out := &in.FF, &out.FF
   313  		*out = make(map[string]bool, len(*in))
   314  		for key, val := range *in {
   315  			(*out)[key] = val
   316  		}
   317  	}
   318  }
   319  
   320  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderSpec.
   321  func (in *ProviderSpec) DeepCopy() *ProviderSpec {
   322  	if in == nil {
   323  		return nil
   324  	}
   325  	out := new(ProviderSpec)
   326  	in.DeepCopyInto(out)
   327  	return out
   328  }
   329  
   330  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   331  func (in *ProviderStatus) DeepCopyInto(out *ProviderStatus) {
   332  	*out = *in
   333  	if in.Conditions != nil {
   334  		in, out := &in.Conditions, &out.Conditions
   335  		*out = make([]v1.Condition, len(*in))
   336  		for i := range *in {
   337  			(*in)[i].DeepCopyInto(&(*out)[i])
   338  		}
   339  	}
   340  }
   341  
   342  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStatus.
   343  func (in *ProviderStatus) DeepCopy() *ProviderStatus {
   344  	if in == nil {
   345  		return nil
   346  	}
   347  	out := new(ProviderStatus)
   348  	in.DeepCopyInto(out)
   349  	return out
   350  }
   351  
   352  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   353  func (in *ReconciliationError) DeepCopyInto(out *ReconciliationError) {
   354  	*out = *in
   355  }
   356  
   357  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReconciliationError.
   358  func (in *ReconciliationError) DeepCopy() *ReconciliationError {
   359  	if in == nil {
   360  		return nil
   361  	}
   362  	out := new(ReconciliationError)
   363  	in.DeepCopyInto(out)
   364  	return out
   365  }
   366  

View as plain text