714 lines
22 KiB
Go
714 lines
22 KiB
Go
//go:build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2025 Vegard Engen.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// Code generated by controller-gen. DO NOT EDIT.
|
|
|
|
package v1beta1
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallDestination) DeepCopyInto(out *FirewallDestination) {
|
|
*out = *in
|
|
if in.FirewallGroups != nil {
|
|
in, out := &in.FirewallGroups, &out.FirewallGroups
|
|
*out = make([]FirewallGroupEntry, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Services != nil {
|
|
in, out := &in.Services, &out.Services
|
|
*out = make([]ServiceEntry, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallDestination.
|
|
func (in *FirewallDestination) DeepCopy() *FirewallDestination {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallDestination)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallGroup) DeepCopyInto(out *FirewallGroup) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallGroup.
|
|
func (in *FirewallGroup) DeepCopy() *FirewallGroup {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallGroup)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *FirewallGroup) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallGroupEntry) DeepCopyInto(out *FirewallGroupEntry) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallGroupEntry.
|
|
func (in *FirewallGroupEntry) DeepCopy() *FirewallGroupEntry {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallGroupEntry)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallGroupList) DeepCopyInto(out *FirewallGroupList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]FirewallGroup, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallGroupList.
|
|
func (in *FirewallGroupList) DeepCopy() *FirewallGroupList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallGroupList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *FirewallGroupList) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallGroupResourcesManaged) DeepCopyInto(out *FirewallGroupResourcesManaged) {
|
|
*out = *in
|
|
if in.IPV4Object != nil {
|
|
in, out := &in.IPV4Object, &out.IPV4Object
|
|
*out = new(NamedUnifiResource)
|
|
**out = **in
|
|
}
|
|
if in.IPV6Object != nil {
|
|
in, out := &in.IPV6Object, &out.IPV6Object
|
|
*out = new(NamedUnifiResource)
|
|
**out = **in
|
|
}
|
|
if in.TCPPortsObject != nil {
|
|
in, out := &in.TCPPortsObject, &out.TCPPortsObject
|
|
*out = new(NamedUnifiResource)
|
|
**out = **in
|
|
}
|
|
if in.UDPPortsObject != nil {
|
|
in, out := &in.UDPPortsObject, &out.UDPPortsObject
|
|
*out = new(NamedUnifiResource)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallGroupResourcesManaged.
|
|
func (in *FirewallGroupResourcesManaged) DeepCopy() *FirewallGroupResourcesManaged {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallGroupResourcesManaged)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallGroupSpec) DeepCopyInto(out *FirewallGroupSpec) {
|
|
*out = *in
|
|
if in.ManualAddresses != nil {
|
|
in, out := &in.ManualAddresses, &out.ManualAddresses
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ManualPorts != nil {
|
|
in, out := &in.ManualPorts, &out.ManualPorts
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ManualServices != nil {
|
|
in, out := &in.ManualServices, &out.ManualServices
|
|
*out = make([]ServiceEntry, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
out.AutoCreatedFrom = in.AutoCreatedFrom
|
|
if in.AutoIncludeSelector != nil {
|
|
in, out := &in.AutoIncludeSelector, &out.AutoIncludeSelector
|
|
*out = new(v1.LabelSelector)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallGroupSpec.
|
|
func (in *FirewallGroupSpec) DeepCopy() *FirewallGroupSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallGroupSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallGroupStatus) DeepCopyInto(out *FirewallGroupStatus) {
|
|
*out = *in
|
|
if in.ResolvedIPV4Addresses != nil {
|
|
in, out := &in.ResolvedIPV4Addresses, &out.ResolvedIPV4Addresses
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ResolvedIPV6Addresses != nil {
|
|
in, out := &in.ResolvedIPV6Addresses, &out.ResolvedIPV6Addresses
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ResolvedTCPPorts != nil {
|
|
in, out := &in.ResolvedTCPPorts, &out.ResolvedTCPPorts
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ResolvedUDPPorts != nil {
|
|
in, out := &in.ResolvedUDPPorts, &out.ResolvedUDPPorts
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ResourcesManaged != nil {
|
|
in, out := &in.ResourcesManaged, &out.ResourcesManaged
|
|
*out = new(FirewallGroupResourcesManaged)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.LastSyncTime != nil {
|
|
in, out := &in.LastSyncTime, &out.LastSyncTime
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallGroupStatus.
|
|
func (in *FirewallGroupStatus) DeepCopy() *FirewallGroupStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallGroupStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallRule) DeepCopyInto(out *FirewallRule) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallRule.
|
|
func (in *FirewallRule) DeepCopy() *FirewallRule {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallRule)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *FirewallRule) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallRuleEntry) DeepCopyInto(out *FirewallRuleEntry) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallRuleEntry.
|
|
func (in *FirewallRuleEntry) DeepCopy() *FirewallRuleEntry {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallRuleEntry)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallRuleList) DeepCopyInto(out *FirewallRuleList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]FirewallRule, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallRuleList.
|
|
func (in *FirewallRuleList) DeepCopy() *FirewallRuleList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallRuleList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *FirewallRuleList) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallRuleResourcesManaged) DeepCopyInto(out *FirewallRuleResourcesManaged) {
|
|
*out = *in
|
|
if in.UnifiFirewallRules != nil {
|
|
in, out := &in.UnifiFirewallRules, &out.UnifiFirewallRules
|
|
*out = make([]UnifiFirewallRuleEntry, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.FirewallGroups != nil {
|
|
in, out := &in.FirewallGroups, &out.FirewallGroups
|
|
*out = make([]FirewallGroupEntry, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallRuleResourcesManaged.
|
|
func (in *FirewallRuleResourcesManaged) DeepCopy() *FirewallRuleResourcesManaged {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallRuleResourcesManaged)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallRuleSpec) DeepCopyInto(out *FirewallRuleSpec) {
|
|
*out = *in
|
|
in.Source.DeepCopyInto(&out.Source)
|
|
in.Destination.DeepCopyInto(&out.Destination)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallRuleSpec.
|
|
func (in *FirewallRuleSpec) DeepCopy() *FirewallRuleSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallRuleSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallRuleStatus) DeepCopyInto(out *FirewallRuleStatus) {
|
|
*out = *in
|
|
if in.ResourcesManaged != nil {
|
|
in, out := &in.ResourcesManaged, &out.ResourcesManaged
|
|
*out = new(FirewallRuleResourcesManaged)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallRuleStatus.
|
|
func (in *FirewallRuleStatus) DeepCopy() *FirewallRuleStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallRuleStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallSource) DeepCopyInto(out *FirewallSource) {
|
|
*out = *in
|
|
if in.FirewallZones != nil {
|
|
in, out := &in.FirewallZones, &out.FirewallZones
|
|
*out = make([]FirewallZoneEntry, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Networks != nil {
|
|
in, out := &in.Networks, &out.Networks
|
|
*out = make([]NetworkEntry, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallSource.
|
|
func (in *FirewallSource) DeepCopy() *FirewallSource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallSource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallZone) DeepCopyInto(out *FirewallZone) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallZone.
|
|
func (in *FirewallZone) DeepCopy() *FirewallZone {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallZone)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *FirewallZone) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallZoneEntry) DeepCopyInto(out *FirewallZoneEntry) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallZoneEntry.
|
|
func (in *FirewallZoneEntry) DeepCopy() *FirewallZoneEntry {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallZoneEntry)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallZoneList) DeepCopyInto(out *FirewallZoneList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]FirewallZone, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallZoneList.
|
|
func (in *FirewallZoneList) DeepCopy() *FirewallZoneList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallZoneList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *FirewallZoneList) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallZoneResourcesManaged) DeepCopyInto(out *FirewallZoneResourcesManaged) {
|
|
*out = *in
|
|
if in.UnifiFirewallZones != nil {
|
|
in, out := &in.UnifiFirewallZones, &out.UnifiFirewallZones
|
|
*out = make([]NamedUnifiResource, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallZoneResourcesManaged.
|
|
func (in *FirewallZoneResourcesManaged) DeepCopy() *FirewallZoneResourcesManaged {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallZoneResourcesManaged)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallZoneSpec) DeepCopyInto(out *FirewallZoneSpec) {
|
|
*out = *in
|
|
if in.NetworkIDs != nil {
|
|
in, out := &in.NetworkIDs, &out.NetworkIDs
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallZoneSpec.
|
|
func (in *FirewallZoneSpec) DeepCopy() *FirewallZoneSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallZoneSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FirewallZoneStatus) DeepCopyInto(out *FirewallZoneStatus) {
|
|
*out = *in
|
|
if in.ResourcesManaged != nil {
|
|
in, out := &in.ResourcesManaged, &out.ResourcesManaged
|
|
*out = new(FirewallZoneResourcesManaged)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FirewallZoneStatus.
|
|
func (in *FirewallZoneStatus) DeepCopy() *FirewallZoneStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FirewallZoneStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NamedUnifiResource) DeepCopyInto(out *NamedUnifiResource) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NamedUnifiResource.
|
|
func (in *NamedUnifiResource) DeepCopy() *NamedUnifiResource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NamedUnifiResource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NetworkEntry) DeepCopyInto(out *NetworkEntry) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkEntry.
|
|
func (in *NetworkEntry) DeepCopy() *NetworkEntry {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NetworkEntry)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Networkconfiguration) DeepCopyInto(out *Networkconfiguration) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Spec = in.Spec
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Networkconfiguration.
|
|
func (in *Networkconfiguration) DeepCopy() *Networkconfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Networkconfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Networkconfiguration) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NetworkconfigurationList) DeepCopyInto(out *NetworkconfigurationList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Networkconfiguration, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkconfigurationList.
|
|
func (in *NetworkconfigurationList) DeepCopy() *NetworkconfigurationList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NetworkconfigurationList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *NetworkconfigurationList) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NetworkconfigurationResourcesManaged) DeepCopyInto(out *NetworkconfigurationResourcesManaged) {
|
|
*out = *in
|
|
if in.UnifiNetworks != nil {
|
|
in, out := &in.UnifiNetworks, &out.UnifiNetworks
|
|
*out = make([]NamedUnifiResource, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkconfigurationResourcesManaged.
|
|
func (in *NetworkconfigurationResourcesManaged) DeepCopy() *NetworkconfigurationResourcesManaged {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NetworkconfigurationResourcesManaged)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NetworkconfigurationSpec) DeepCopyInto(out *NetworkconfigurationSpec) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkconfigurationSpec.
|
|
func (in *NetworkconfigurationSpec) DeepCopy() *NetworkconfigurationSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NetworkconfigurationSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NetworkconfigurationStatus) DeepCopyInto(out *NetworkconfigurationStatus) {
|
|
*out = *in
|
|
if in.ResourcesManaged != nil {
|
|
in, out := &in.ResourcesManaged, &out.ResourcesManaged
|
|
*out = new(NetworkconfigurationResourcesManaged)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.LastSyncTime != nil {
|
|
in, out := &in.LastSyncTime, &out.LastSyncTime
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkconfigurationStatus.
|
|
func (in *NetworkconfigurationStatus) DeepCopy() *NetworkconfigurationStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NetworkconfigurationStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ServiceEntry) DeepCopyInto(out *ServiceEntry) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceEntry.
|
|
func (in *ServiceEntry) DeepCopy() *ServiceEntry {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ServiceEntry)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *UnifiFirewallRuleEntry) DeepCopyInto(out *UnifiFirewallRuleEntry) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UnifiFirewallRuleEntry.
|
|
func (in *UnifiFirewallRuleEntry) DeepCopy() *UnifiFirewallRuleEntry {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UnifiFirewallRuleEntry)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|