mirror of
https://github.com/rancher/types.git
synced 2025-06-26 21:51:33 +00:00
Generated changes
This commit is contained in:
parent
d36ab41b35
commit
3ae2276799
@ -576,7 +576,9 @@ func (in *Capabilities) DeepCopyInto(out *Capabilities) {
|
||||
if in.IngressCapabilities != nil {
|
||||
in, out := &in.IngressCapabilities, &out.IngressCapabilities
|
||||
*out = make([]IngressCapabilities, len(*in))
|
||||
copy(*out, *in)
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
@ -3959,6 +3961,11 @@ func (in *ImportedConfig) DeepCopy() *ImportedConfig {
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *IngressCapabilities) DeepCopyInto(out *IngressCapabilities) {
|
||||
*out = *in
|
||||
if in.CustomDefaultBackend != nil {
|
||||
in, out := &in.CustomDefaultBackend, &out.CustomDefaultBackend
|
||||
*out = new(bool)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -7,6 +7,6 @@ const (
|
||||
)
|
||||
|
||||
type IngressCapabilities struct {
|
||||
CustomDefaultBackend bool `json:"customDefaultBackend,omitempty" yaml:"customDefaultBackend,omitempty"`
|
||||
CustomDefaultBackend *bool `json:"customDefaultBackend,omitempty" yaml:"customDefaultBackend,omitempty"`
|
||||
IngressProvider string `json:"ingressProvider,omitempty" yaml:"ingressProvider,omitempty"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user