59 lines
2.6 KiB
Go
59 lines
2.6 KiB
Go
/*
|
|
Copyright 2023.
|
|
|
|
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 (
|
|
v1alpha1 "github.com/dapr/kubernetes-operator/api/operator/v1alpha1"
|
|
operatorv1alpha1 "github.com/dapr/kubernetes-operator/pkg/client/applyconfiguration/operator/v1alpha1"
|
|
schema "k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
// 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=operator, Version=v1alpha1
|
|
case v1alpha1.SchemeGroupVersion.WithKind("ChartMeta"):
|
|
return &operatorv1alpha1.ChartMetaApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("ChartSpec"):
|
|
return &operatorv1alpha1.ChartSpecApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("DaprControlPlane"):
|
|
return &operatorv1alpha1.DaprControlPlaneApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("DaprControlPlaneSpec"):
|
|
return &operatorv1alpha1.DaprControlPlaneSpecApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("DaprControlPlaneStatus"):
|
|
return &operatorv1alpha1.DaprControlPlaneStatusApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("DaprCruiseControl"):
|
|
return &operatorv1alpha1.DaprCruiseControlApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("DaprCruiseControlStatus"):
|
|
return &operatorv1alpha1.DaprCruiseControlStatusApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("DaprInstance"):
|
|
return &operatorv1alpha1.DaprInstanceApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("DaprInstanceSpec"):
|
|
return &operatorv1alpha1.DaprInstanceSpecApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("DaprInstanceStatus"):
|
|
return &operatorv1alpha1.DaprInstanceStatusApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("JSON"):
|
|
return &operatorv1alpha1.JSONApplyConfiguration{}
|
|
case v1alpha1.SchemeGroupVersion.WithKind("Status"):
|
|
return &operatorv1alpha1.StatusApplyConfiguration{}
|
|
|
|
}
|
|
return nil
|
|
}
|