mirror of
https://github.com/kubernetes/client-go.git
synced 2025-09-16 23:28:25 +00:00
Promoted API VolumeAttributesClass
and VolumeAttributesClassList
to storage.k8s.io/v1
.
Promoted feature-gate `VolumeAttributesClass` to GA (on by default) Signed-off-by: carlory <baofa.fan@daocloud.io> Kubernetes-commit: 94bf8fc8a9d1d6c989eddad07996be0ca4dd3448
This commit is contained in:
committed by
Kubernetes Publisher
parent
d4f2d5b8cc
commit
93aeba057d
@@ -41,3 +41,7 @@ type StorageClassListerExpansion interface{}
|
||||
// VolumeAttachmentListerExpansion allows custom methods to be added to
|
||||
// VolumeAttachmentLister.
|
||||
type VolumeAttachmentListerExpansion interface{}
|
||||
|
||||
// VolumeAttributesClassListerExpansion allows custom methods to be added to
|
||||
// VolumeAttributesClassLister.
|
||||
type VolumeAttributesClassListerExpansion interface{}
|
||||
|
48
listers/storage/v1/volumeattributesclass.go
Normal file
48
listers/storage/v1/volumeattributesclass.go
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
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 lister-gen. DO NOT EDIT.
|
||||
|
||||
package v1
|
||||
|
||||
import (
|
||||
storagev1 "k8s.io/api/storage/v1"
|
||||
labels "k8s.io/apimachinery/pkg/labels"
|
||||
listers "k8s.io/client-go/listers"
|
||||
cache "k8s.io/client-go/tools/cache"
|
||||
)
|
||||
|
||||
// VolumeAttributesClassLister helps list VolumeAttributesClasses.
|
||||
// All objects returned here must be treated as read-only.
|
||||
type VolumeAttributesClassLister interface {
|
||||
// List lists all VolumeAttributesClasses in the indexer.
|
||||
// Objects returned here must be treated as read-only.
|
||||
List(selector labels.Selector) (ret []*storagev1.VolumeAttributesClass, err error)
|
||||
// Get retrieves the VolumeAttributesClass from the index for a given name.
|
||||
// Objects returned here must be treated as read-only.
|
||||
Get(name string) (*storagev1.VolumeAttributesClass, error)
|
||||
VolumeAttributesClassListerExpansion
|
||||
}
|
||||
|
||||
// volumeAttributesClassLister implements the VolumeAttributesClassLister interface.
|
||||
type volumeAttributesClassLister struct {
|
||||
listers.ResourceIndexer[*storagev1.VolumeAttributesClass]
|
||||
}
|
||||
|
||||
// NewVolumeAttributesClassLister returns a new VolumeAttributesClassLister.
|
||||
func NewVolumeAttributesClassLister(indexer cache.Indexer) VolumeAttributesClassLister {
|
||||
return &volumeAttributesClassLister{listers.New[*storagev1.VolumeAttributesClass](indexer, storagev1.Resource("volumeattributesclass"))}
|
||||
}
|
Reference in New Issue
Block a user