mirror of
https://github.com/rancher/types.git
synced 2025-09-03 22:24:38 +00:00
go generate
This commit is contained in:
committed by
Alena Prokharchyk
parent
0a5a1dc60f
commit
3152022f25
@@ -609,7 +609,7 @@ type ServiceOverride struct {
|
||||
SigningName string `json:"signing-name" yaml:"signing-name" ini:"signing-name,omitempty"`
|
||||
}
|
||||
|
||||
type GlobelAwsOpts struct {
|
||||
type GlobalAwsOpts struct {
|
||||
// TODO: Is there any use for this? We can get it from the instance metadata service
|
||||
// Maybe if we're not running on AWS, e.g. bootstrap; for now it is not very useful
|
||||
Zone string `json:"zone" yaml:"zone" ini:"zone,omitempty"`
|
||||
|
@@ -36,6 +36,14 @@ func (in *ADFSConfig) DeepCopyObject() runtime.Object {
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *AWSCloudProvider) DeepCopyInto(out *AWSCloudProvider) {
|
||||
*out = *in
|
||||
out.Global = in.Global
|
||||
if in.ServiceOverride != nil {
|
||||
in, out := &in.ServiceOverride, &out.ServiceOverride
|
||||
*out = make(map[string]ServiceOverride, len(*in))
|
||||
for key, val := range *in {
|
||||
(*out)[key] = val
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
@@ -883,7 +891,7 @@ func (in *CloudProvider) DeepCopyInto(out *CloudProvider) {
|
||||
if in.AWSCloudProvider != nil {
|
||||
in, out := &in.AWSCloudProvider, &out.AWSCloudProvider
|
||||
*out = new(AWSCloudProvider)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.AzureCloudProvider != nil {
|
||||
in, out := &in.AzureCloudProvider, &out.AzureCloudProvider
|
||||
@@ -2752,6 +2760,22 @@ func (in *GithubConfigTestOutput) DeepCopy() *GithubConfigTestOutput {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *GlobalAwsOpts) DeepCopyInto(out *GlobalAwsOpts) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GlobalAwsOpts.
|
||||
func (in *GlobalAwsOpts) DeepCopy() *GlobalAwsOpts {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(GlobalAwsOpts)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *GlobalDNS) DeepCopyInto(out *GlobalDNS) {
|
||||
*out = *in
|
||||
@@ -7463,6 +7487,22 @@ func (in *SearchPrincipalsInput) DeepCopy() *SearchPrincipalsInput {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ServiceOverride) DeepCopyInto(out *ServiceOverride) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceOverride.
|
||||
func (in *ServiceOverride) DeepCopy() *ServiceOverride {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ServiceOverride)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *SetPasswordInput) DeepCopyInto(out *SetPasswordInput) {
|
||||
*out = *in
|
||||
|
Reference in New Issue
Block a user