123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671 |
- // +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 config
- 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 *Extender) DeepCopyInto(out *Extender) {
- *out = *in
- if in.TLSConfig != nil {
- in, out := &in.TLSConfig, &out.TLSConfig
- *out = new(ExtenderTLSConfig)
- (*in).DeepCopyInto(*out)
- }
- if in.ManagedResources != nil {
- in, out := &in.ManagedResources, &out.ManagedResources
- *out = make([]ExtenderManagedResource, len(*in))
- copy(*out, *in)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Extender.
- func (in *Extender) DeepCopy() *Extender {
- if in == nil {
- return nil
- }
- out := new(Extender)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ExtenderManagedResource) DeepCopyInto(out *ExtenderManagedResource) {
- *out = *in
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtenderManagedResource.
- func (in *ExtenderManagedResource) DeepCopy() *ExtenderManagedResource {
- if in == nil {
- return nil
- }
- out := new(ExtenderManagedResource)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ExtenderTLSConfig) DeepCopyInto(out *ExtenderTLSConfig) {
- *out = *in
- if in.CertData != nil {
- in, out := &in.CertData, &out.CertData
- *out = make([]byte, len(*in))
- copy(*out, *in)
- }
- if in.KeyData != nil {
- in, out := &in.KeyData, &out.KeyData
- *out = make([]byte, len(*in))
- copy(*out, *in)
- }
- if in.CAData != nil {
- in, out := &in.CAData, &out.CAData
- *out = make([]byte, len(*in))
- copy(*out, *in)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtenderTLSConfig.
- func (in *ExtenderTLSConfig) DeepCopy() *ExtenderTLSConfig {
- if in == nil {
- return nil
- }
- out := new(ExtenderTLSConfig)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *KubeSchedulerConfiguration) DeepCopyInto(out *KubeSchedulerConfiguration) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- in.AlgorithmSource.DeepCopyInto(&out.AlgorithmSource)
- out.LeaderElection = in.LeaderElection
- out.ClientConnection = in.ClientConnection
- out.DebuggingConfiguration = in.DebuggingConfiguration
- if in.Profiles != nil {
- in, out := &in.Profiles, &out.Profiles
- *out = make([]KubeSchedulerProfile, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSchedulerConfiguration.
- func (in *KubeSchedulerConfiguration) DeepCopy() *KubeSchedulerConfiguration {
- if in == nil {
- return nil
- }
- out := new(KubeSchedulerConfiguration)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *KubeSchedulerConfiguration) 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 *KubeSchedulerLeaderElectionConfiguration) DeepCopyInto(out *KubeSchedulerLeaderElectionConfiguration) {
- *out = *in
- out.LeaderElectionConfiguration = in.LeaderElectionConfiguration
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSchedulerLeaderElectionConfiguration.
- func (in *KubeSchedulerLeaderElectionConfiguration) DeepCopy() *KubeSchedulerLeaderElectionConfiguration {
- if in == nil {
- return nil
- }
- out := new(KubeSchedulerLeaderElectionConfiguration)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *KubeSchedulerProfile) DeepCopyInto(out *KubeSchedulerProfile) {
- *out = *in
- if in.Plugins != nil {
- in, out := &in.Plugins, &out.Plugins
- *out = new(Plugins)
- (*in).DeepCopyInto(*out)
- }
- if in.PluginConfig != nil {
- in, out := &in.PluginConfig, &out.PluginConfig
- *out = make([]PluginConfig, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSchedulerProfile.
- func (in *KubeSchedulerProfile) DeepCopy() *KubeSchedulerProfile {
- if in == nil {
- return nil
- }
- out := new(KubeSchedulerProfile)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *LabelPreference) DeepCopyInto(out *LabelPreference) {
- *out = *in
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LabelPreference.
- func (in *LabelPreference) DeepCopy() *LabelPreference {
- if in == nil {
- return nil
- }
- out := new(LabelPreference)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *LabelsPresence) DeepCopyInto(out *LabelsPresence) {
- *out = *in
- if in.Labels != nil {
- in, out := &in.Labels, &out.Labels
- *out = make([]string, len(*in))
- copy(*out, *in)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LabelsPresence.
- func (in *LabelsPresence) DeepCopy() *LabelsPresence {
- if in == nil {
- return nil
- }
- out := new(LabelsPresence)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *Plugin) DeepCopyInto(out *Plugin) {
- *out = *in
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Plugin.
- func (in *Plugin) DeepCopy() *Plugin {
- if in == nil {
- return nil
- }
- out := new(Plugin)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PluginConfig) DeepCopyInto(out *PluginConfig) {
- *out = *in
- in.Args.DeepCopyInto(&out.Args)
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PluginConfig.
- func (in *PluginConfig) DeepCopy() *PluginConfig {
- if in == nil {
- return nil
- }
- out := new(PluginConfig)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PluginSet) DeepCopyInto(out *PluginSet) {
- *out = *in
- if in.Enabled != nil {
- in, out := &in.Enabled, &out.Enabled
- *out = make([]Plugin, len(*in))
- copy(*out, *in)
- }
- if in.Disabled != nil {
- in, out := &in.Disabled, &out.Disabled
- *out = make([]Plugin, len(*in))
- copy(*out, *in)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PluginSet.
- func (in *PluginSet) DeepCopy() *PluginSet {
- if in == nil {
- return nil
- }
- out := new(PluginSet)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *Plugins) DeepCopyInto(out *Plugins) {
- *out = *in
- if in.QueueSort != nil {
- in, out := &in.QueueSort, &out.QueueSort
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.PreFilter != nil {
- in, out := &in.PreFilter, &out.PreFilter
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.Filter != nil {
- in, out := &in.Filter, &out.Filter
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.PreScore != nil {
- in, out := &in.PreScore, &out.PreScore
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.Score != nil {
- in, out := &in.Score, &out.Score
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.Reserve != nil {
- in, out := &in.Reserve, &out.Reserve
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.Permit != nil {
- in, out := &in.Permit, &out.Permit
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.PreBind != nil {
- in, out := &in.PreBind, &out.PreBind
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.Bind != nil {
- in, out := &in.Bind, &out.Bind
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.PostBind != nil {
- in, out := &in.PostBind, &out.PostBind
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- if in.Unreserve != nil {
- in, out := &in.Unreserve, &out.Unreserve
- *out = new(PluginSet)
- (*in).DeepCopyInto(*out)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Plugins.
- func (in *Plugins) DeepCopy() *Plugins {
- if in == nil {
- return nil
- }
- out := new(Plugins)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *Policy) DeepCopyInto(out *Policy) {
- *out = *in
- out.TypeMeta = in.TypeMeta
- if in.Predicates != nil {
- in, out := &in.Predicates, &out.Predicates
- *out = make([]PredicatePolicy, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- if in.Priorities != nil {
- in, out := &in.Priorities, &out.Priorities
- *out = make([]PriorityPolicy, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- if in.Extenders != nil {
- in, out := &in.Extenders, &out.Extenders
- *out = make([]Extender, len(*in))
- for i := range *in {
- (*in)[i].DeepCopyInto(&(*out)[i])
- }
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Policy.
- func (in *Policy) DeepCopy() *Policy {
- if in == nil {
- return nil
- }
- out := new(Policy)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
- func (in *Policy) 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 *PredicateArgument) DeepCopyInto(out *PredicateArgument) {
- *out = *in
- if in.ServiceAffinity != nil {
- in, out := &in.ServiceAffinity, &out.ServiceAffinity
- *out = new(ServiceAffinity)
- (*in).DeepCopyInto(*out)
- }
- if in.LabelsPresence != nil {
- in, out := &in.LabelsPresence, &out.LabelsPresence
- *out = new(LabelsPresence)
- (*in).DeepCopyInto(*out)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PredicateArgument.
- func (in *PredicateArgument) DeepCopy() *PredicateArgument {
- if in == nil {
- return nil
- }
- out := new(PredicateArgument)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PredicatePolicy) DeepCopyInto(out *PredicatePolicy) {
- *out = *in
- if in.Argument != nil {
- in, out := &in.Argument, &out.Argument
- *out = new(PredicateArgument)
- (*in).DeepCopyInto(*out)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PredicatePolicy.
- func (in *PredicatePolicy) DeepCopy() *PredicatePolicy {
- if in == nil {
- return nil
- }
- out := new(PredicatePolicy)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PriorityArgument) DeepCopyInto(out *PriorityArgument) {
- *out = *in
- if in.ServiceAntiAffinity != nil {
- in, out := &in.ServiceAntiAffinity, &out.ServiceAntiAffinity
- *out = new(ServiceAntiAffinity)
- **out = **in
- }
- if in.LabelPreference != nil {
- in, out := &in.LabelPreference, &out.LabelPreference
- *out = new(LabelPreference)
- **out = **in
- }
- if in.RequestedToCapacityRatioArguments != nil {
- in, out := &in.RequestedToCapacityRatioArguments, &out.RequestedToCapacityRatioArguments
- *out = new(RequestedToCapacityRatioArguments)
- (*in).DeepCopyInto(*out)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityArgument.
- func (in *PriorityArgument) DeepCopy() *PriorityArgument {
- if in == nil {
- return nil
- }
- out := new(PriorityArgument)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *PriorityPolicy) DeepCopyInto(out *PriorityPolicy) {
- *out = *in
- if in.Argument != nil {
- in, out := &in.Argument, &out.Argument
- *out = new(PriorityArgument)
- (*in).DeepCopyInto(*out)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityPolicy.
- func (in *PriorityPolicy) DeepCopy() *PriorityPolicy {
- if in == nil {
- return nil
- }
- out := new(PriorityPolicy)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *RequestedToCapacityRatioArguments) DeepCopyInto(out *RequestedToCapacityRatioArguments) {
- *out = *in
- if in.Shape != nil {
- in, out := &in.Shape, &out.Shape
- *out = make([]UtilizationShapePoint, len(*in))
- copy(*out, *in)
- }
- if in.Resources != nil {
- in, out := &in.Resources, &out.Resources
- *out = make([]ResourceSpec, len(*in))
- copy(*out, *in)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestedToCapacityRatioArguments.
- func (in *RequestedToCapacityRatioArguments) DeepCopy() *RequestedToCapacityRatioArguments {
- if in == nil {
- return nil
- }
- out := new(RequestedToCapacityRatioArguments)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ResourceSpec) DeepCopyInto(out *ResourceSpec) {
- *out = *in
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSpec.
- func (in *ResourceSpec) DeepCopy() *ResourceSpec {
- if in == nil {
- return nil
- }
- out := new(ResourceSpec)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *SchedulerAlgorithmSource) DeepCopyInto(out *SchedulerAlgorithmSource) {
- *out = *in
- if in.Policy != nil {
- in, out := &in.Policy, &out.Policy
- *out = new(SchedulerPolicySource)
- (*in).DeepCopyInto(*out)
- }
- if in.Provider != nil {
- in, out := &in.Provider, &out.Provider
- *out = new(string)
- **out = **in
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerAlgorithmSource.
- func (in *SchedulerAlgorithmSource) DeepCopy() *SchedulerAlgorithmSource {
- if in == nil {
- return nil
- }
- out := new(SchedulerAlgorithmSource)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *SchedulerPolicyConfigMapSource) DeepCopyInto(out *SchedulerPolicyConfigMapSource) {
- *out = *in
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerPolicyConfigMapSource.
- func (in *SchedulerPolicyConfigMapSource) DeepCopy() *SchedulerPolicyConfigMapSource {
- if in == nil {
- return nil
- }
- out := new(SchedulerPolicyConfigMapSource)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *SchedulerPolicyFileSource) DeepCopyInto(out *SchedulerPolicyFileSource) {
- *out = *in
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerPolicyFileSource.
- func (in *SchedulerPolicyFileSource) DeepCopy() *SchedulerPolicyFileSource {
- if in == nil {
- return nil
- }
- out := new(SchedulerPolicyFileSource)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *SchedulerPolicySource) DeepCopyInto(out *SchedulerPolicySource) {
- *out = *in
- if in.File != nil {
- in, out := &in.File, &out.File
- *out = new(SchedulerPolicyFileSource)
- **out = **in
- }
- if in.ConfigMap != nil {
- in, out := &in.ConfigMap, &out.ConfigMap
- *out = new(SchedulerPolicyConfigMapSource)
- **out = **in
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerPolicySource.
- func (in *SchedulerPolicySource) DeepCopy() *SchedulerPolicySource {
- if in == nil {
- return nil
- }
- out := new(SchedulerPolicySource)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ServiceAffinity) DeepCopyInto(out *ServiceAffinity) {
- *out = *in
- if in.Labels != nil {
- in, out := &in.Labels, &out.Labels
- *out = make([]string, len(*in))
- copy(*out, *in)
- }
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceAffinity.
- func (in *ServiceAffinity) DeepCopy() *ServiceAffinity {
- if in == nil {
- return nil
- }
- out := new(ServiceAffinity)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *ServiceAntiAffinity) DeepCopyInto(out *ServiceAntiAffinity) {
- *out = *in
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceAntiAffinity.
- func (in *ServiceAntiAffinity) DeepCopy() *ServiceAntiAffinity {
- if in == nil {
- return nil
- }
- out := new(ServiceAntiAffinity)
- in.DeepCopyInto(out)
- return out
- }
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
- func (in *UtilizationShapePoint) DeepCopyInto(out *UtilizationShapePoint) {
- *out = *in
- return
- }
- // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UtilizationShapePoint.
- func (in *UtilizationShapePoint) DeepCopy() *UtilizationShapePoint {
- if in == nil {
- return nil
- }
- out := new(UtilizationShapePoint)
- in.DeepCopyInto(out)
- return out
- }
|