53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
| /*
 | |
| 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 applyconfiguration-gen. DO NOT EDIT.
 | |
| 
 | |
| package applyconfiguration
 | |
| 
 | |
| import (
 | |
| 	runtime "k8s.io/apimachinery/pkg/runtime"
 | |
| 	schema "k8s.io/apimachinery/pkg/runtime/schema"
 | |
| 	managedfields "k8s.io/apimachinery/pkg/util/managedfields"
 | |
| 	v1 "k8s.io/autoscaler/cluster-autoscaler/apis/capacitybuffer/autoscaling.x-k8s.io/v1"
 | |
| 	autoscalingxk8siov1 "k8s.io/autoscaler/cluster-autoscaler/apis/capacitybuffer/client/applyconfiguration/autoscaling.x-k8s.io/v1"
 | |
| 	internal "k8s.io/autoscaler/cluster-autoscaler/apis/capacitybuffer/client/applyconfiguration/internal"
 | |
| )
 | |
| 
 | |
| // ForKind returns an apply configuration type for the given GroupVersionKind, or nil if no
 | |
| // apply configuration type exists for the given GroupVersionKind.
 | |
| func ForKind(kind schema.GroupVersionKind) interface{} {
 | |
| 	switch kind {
 | |
| 	// Group=autoscaling.x-k8s.io, Version=v1
 | |
| 	case v1.SchemeGroupVersion.WithKind("CapacityBuffer"):
 | |
| 		return &autoscalingxk8siov1.CapacityBufferApplyConfiguration{}
 | |
| 	case v1.SchemeGroupVersion.WithKind("CapacityBufferSpec"):
 | |
| 		return &autoscalingxk8siov1.CapacityBufferSpecApplyConfiguration{}
 | |
| 	case v1.SchemeGroupVersion.WithKind("CapacityBufferStatus"):
 | |
| 		return &autoscalingxk8siov1.CapacityBufferStatusApplyConfiguration{}
 | |
| 	case v1.SchemeGroupVersion.WithKind("LocalObjectRef"):
 | |
| 		return &autoscalingxk8siov1.LocalObjectRefApplyConfiguration{}
 | |
| 	case v1.SchemeGroupVersion.WithKind("ScalableRef"):
 | |
| 		return &autoscalingxk8siov1.ScalableRefApplyConfiguration{}
 | |
| 
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func NewTypeConverter(scheme *runtime.Scheme) managedfields.TypeConverter {
 | |
| 	return managedfields.NewSchemeTypeConverter(scheme, internal.Parser())
 | |
| }
 |