Fix: Generate new types

This commit is contained in:
Daniel Hougaard
2024-03-18 16:36:19 +01:00
parent c5a11e839b
commit 3765a14246
2 changed files with 7 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ func (in *Authentication) DeepCopyInto(out *Authentication) {
*out = *in
out.ServiceAccount = in.ServiceAccount
out.ServiceToken = in.ServiceToken
out.UniversalAuthMachineIdentity = in.UniversalAuthMachineIdentity
out.UniversalAuth = in.UniversalAuth
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Authentication.
@@ -237,18 +237,18 @@ func (in *ServiceTokenDetails) DeepCopy() *ServiceTokenDetails {
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *UniversalAuthMachineIdentityDetails) DeepCopyInto(out *UniversalAuthMachineIdentityDetails) {
func (in *UniversalAuthDetails) DeepCopyInto(out *UniversalAuthDetails) {
*out = *in
out.Credentials = in.Credentials
out.SecretsScope = in.SecretsScope
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UniversalAuthMachineIdentityDetails.
func (in *UniversalAuthMachineIdentityDetails) DeepCopy() *UniversalAuthMachineIdentityDetails {
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UniversalAuthDetails.
func (in *UniversalAuthDetails) DeepCopy() *UniversalAuthDetails {
if in == nil {
return nil
}
out := new(UniversalAuthMachineIdentityDetails)
out := new(UniversalAuthDetails)
in.DeepCopyInto(out)
return out
}