mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-09-26 09:54:23 +00:00
72 lines
2.1 KiB
Go
72 lines
2.1 KiB
Go
/*
|
|
Copyright 2017 the Heptio Ark contributors.
|
|
|
|
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.
|
|
*/
|
|
|
|
// This file was automatically generated by informer-gen
|
|
|
|
package v1
|
|
|
|
import (
|
|
internalinterfaces "github.com/heptio/ark/pkg/generated/informers/externalversions/internalinterfaces"
|
|
)
|
|
|
|
// Interface provides access to all the informers in this group version.
|
|
type Interface interface {
|
|
// Backups returns a BackupInformer.
|
|
Backups() BackupInformer
|
|
// Configs returns a ConfigInformer.
|
|
Configs() ConfigInformer
|
|
// DownloadRequests returns a DownloadRequestInformer.
|
|
DownloadRequests() DownloadRequestInformer
|
|
// Restores returns a RestoreInformer.
|
|
Restores() RestoreInformer
|
|
// Schedules returns a ScheduleInformer.
|
|
Schedules() ScheduleInformer
|
|
}
|
|
|
|
type version struct {
|
|
internalinterfaces.SharedInformerFactory
|
|
}
|
|
|
|
// New returns a new Interface.
|
|
func New(f internalinterfaces.SharedInformerFactory) Interface {
|
|
return &version{f}
|
|
}
|
|
|
|
// Backups returns a BackupInformer.
|
|
func (v *version) Backups() BackupInformer {
|
|
return &backupInformer{factory: v.SharedInformerFactory}
|
|
}
|
|
|
|
// Configs returns a ConfigInformer.
|
|
func (v *version) Configs() ConfigInformer {
|
|
return &configInformer{factory: v.SharedInformerFactory}
|
|
}
|
|
|
|
// DownloadRequests returns a DownloadRequestInformer.
|
|
func (v *version) DownloadRequests() DownloadRequestInformer {
|
|
return &downloadRequestInformer{factory: v.SharedInformerFactory}
|
|
}
|
|
|
|
// Restores returns a RestoreInformer.
|
|
func (v *version) Restores() RestoreInformer {
|
|
return &restoreInformer{factory: v.SharedInformerFactory}
|
|
}
|
|
|
|
// Schedules returns a ScheduleInformer.
|
|
func (v *version) Schedules() ScheduleInformer {
|
|
return &scheduleInformer{factory: v.SharedInformerFactory}
|
|
}
|