shepherd/pkg/generated/controllers/apps/v1/controllerrevision.go

40 lines
1.3 KiB
Go

/*
Copyright 2025 Rancher Labs, Inc.
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 main. DO NOT EDIT.
package v1
import (
"github.com/rancher/shepherd/pkg/wrangler/pkg/generic"
v1 "k8s.io/api/apps/v1"
)
// ControllerRevisionController interface for managing ControllerRevision resources.
type ControllerRevisionController interface {
generic.ControllerInterface[*v1.ControllerRevision, *v1.ControllerRevisionList]
}
// ControllerRevisionClient interface for managing ControllerRevision resources in Kubernetes.
type ControllerRevisionClient interface {
generic.ClientInterface[*v1.ControllerRevision, *v1.ControllerRevisionList]
}
// ControllerRevisionCache interface for retrieving ControllerRevision resources in memory.
type ControllerRevisionCache interface {
generic.CacheInterface[*v1.ControllerRevision]
}