mirror of
https://github.com/crazy-max/diun.git
synced 2026-01-03 11:35:02 +01:00
Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.33.3 to 0.34.1. - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](https://github.com/kubernetes/client-go/compare/v0.33.3...v0.34.1) --- updated-dependencies: - dependency-name: k8s.io/client-go dependency-version: 0.34.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
209 lines
5.7 KiB
Go
209 lines
5.7 KiB
Go
//go:build !ignore_autogenerated
|
|
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright The Kubernetes Authors.
|
|
|
|
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 deepcopy-gen. DO NOT EDIT.
|
|
|
|
package v1alpha3
|
|
|
|
import (
|
|
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 *CELDeviceSelector) DeepCopyInto(out *CELDeviceSelector) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CELDeviceSelector.
|
|
func (in *CELDeviceSelector) DeepCopy() *CELDeviceSelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(CELDeviceSelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DeviceSelector) DeepCopyInto(out *DeviceSelector) {
|
|
*out = *in
|
|
if in.CEL != nil {
|
|
in, out := &in.CEL, &out.CEL
|
|
*out = new(CELDeviceSelector)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeviceSelector.
|
|
func (in *DeviceSelector) DeepCopy() *DeviceSelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DeviceSelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DeviceTaint) DeepCopyInto(out *DeviceTaint) {
|
|
*out = *in
|
|
if in.TimeAdded != nil {
|
|
in, out := &in.TimeAdded, &out.TimeAdded
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeviceTaint.
|
|
func (in *DeviceTaint) DeepCopy() *DeviceTaint {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DeviceTaint)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DeviceTaintRule) DeepCopyInto(out *DeviceTaintRule) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeviceTaintRule.
|
|
func (in *DeviceTaintRule) DeepCopy() *DeviceTaintRule {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DeviceTaintRule)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *DeviceTaintRule) 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 *DeviceTaintRuleList) DeepCopyInto(out *DeviceTaintRuleList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]DeviceTaintRule, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeviceTaintRuleList.
|
|
func (in *DeviceTaintRuleList) DeepCopy() *DeviceTaintRuleList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DeviceTaintRuleList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *DeviceTaintRuleList) 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 *DeviceTaintRuleSpec) DeepCopyInto(out *DeviceTaintRuleSpec) {
|
|
*out = *in
|
|
if in.DeviceSelector != nil {
|
|
in, out := &in.DeviceSelector, &out.DeviceSelector
|
|
*out = new(DeviceTaintSelector)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
in.Taint.DeepCopyInto(&out.Taint)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeviceTaintRuleSpec.
|
|
func (in *DeviceTaintRuleSpec) DeepCopy() *DeviceTaintRuleSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DeviceTaintRuleSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DeviceTaintSelector) DeepCopyInto(out *DeviceTaintSelector) {
|
|
*out = *in
|
|
if in.DeviceClassName != nil {
|
|
in, out := &in.DeviceClassName, &out.DeviceClassName
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.Driver != nil {
|
|
in, out := &in.Driver, &out.Driver
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.Pool != nil {
|
|
in, out := &in.Pool, &out.Pool
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.Device != nil {
|
|
in, out := &in.Device, &out.Device
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.Selectors != nil {
|
|
in, out := &in.Selectors, &out.Selectors
|
|
*out = make([]DeviceSelector, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeviceTaintSelector.
|
|
func (in *DeviceTaintSelector) DeepCopy() *DeviceTaintSelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DeviceTaintSelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|