k8s.io/client-go@v0.31.1/listers/apps/v1/daemonset.go (about)

     1  /*
     2  Copyright The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  // Code generated by lister-gen. DO NOT EDIT.
    18  
    19  package v1
    20  
    21  import (
    22  	v1 "k8s.io/api/apps/v1"
    23  	"k8s.io/apimachinery/pkg/labels"
    24  	"k8s.io/client-go/listers"
    25  	"k8s.io/client-go/tools/cache"
    26  )
    27  
    28  // DaemonSetLister helps list DaemonSets.
    29  // All objects returned here must be treated as read-only.
    30  type DaemonSetLister interface {
    31  	// List lists all DaemonSets in the indexer.
    32  	// Objects returned here must be treated as read-only.
    33  	List(selector labels.Selector) (ret []*v1.DaemonSet, err error)
    34  	// DaemonSets returns an object that can list and get DaemonSets.
    35  	DaemonSets(namespace string) DaemonSetNamespaceLister
    36  	DaemonSetListerExpansion
    37  }
    38  
    39  // daemonSetLister implements the DaemonSetLister interface.
    40  type daemonSetLister struct {
    41  	listers.ResourceIndexer[*v1.DaemonSet]
    42  }
    43  
    44  // NewDaemonSetLister returns a new DaemonSetLister.
    45  func NewDaemonSetLister(indexer cache.Indexer) DaemonSetLister {
    46  	return &daemonSetLister{listers.New[*v1.DaemonSet](indexer, v1.Resource("daemonset"))}
    47  }
    48  
    49  // DaemonSets returns an object that can list and get DaemonSets.
    50  func (s *daemonSetLister) DaemonSets(namespace string) DaemonSetNamespaceLister {
    51  	return daemonSetNamespaceLister{listers.NewNamespaced[*v1.DaemonSet](s.ResourceIndexer, namespace)}
    52  }
    53  
    54  // DaemonSetNamespaceLister helps list and get DaemonSets.
    55  // All objects returned here must be treated as read-only.
    56  type DaemonSetNamespaceLister interface {
    57  	// List lists all DaemonSets in the indexer for a given namespace.
    58  	// Objects returned here must be treated as read-only.
    59  	List(selector labels.Selector) (ret []*v1.DaemonSet, err error)
    60  	// Get retrieves the DaemonSet from the indexer for a given namespace and name.
    61  	// Objects returned here must be treated as read-only.
    62  	Get(name string) (*v1.DaemonSet, error)
    63  	DaemonSetNamespaceListerExpansion
    64  }
    65  
    66  // daemonSetNamespaceLister implements the DaemonSetNamespaceLister
    67  // interface.
    68  type daemonSetNamespaceLister struct {
    69  	listers.ResourceIndexer[*v1.DaemonSet]
    70  }