in apis/networking/v1/zz_generated.deepcopy.go [845:862]
func (in *IdentityAwareProxyConfig) DeepCopyInto(out *IdentityAwareProxyConfig) {
*out = *in
if in.Enabled != nil {
in, out := &in.Enabled, &out.Enabled
*out = new(bool)
**out = **in
}
if in.Oauth2ClientSecret != nil {
in, out := &in.Oauth2ClientSecret, &out.Oauth2ClientSecret
*out = new(Oauth2ClientSecret)
(*in).DeepCopyInto(*out)
}
if in.ClientID != nil {
in, out := &in.ClientID, &out.ClientID
*out = new(string)
**out = **in
}
}