Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
qiuqunfeng
waf-console
Commits
e8027610
Commit
e8027610
authored
Feb 05, 2025
by
qiuqunfeng
Browse files
Initial commit
parents
Changes
61
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
99 additions
and
0 deletions
+99
-0
pkg/generated/listers/waf.security.io/v1alpha1/service.go
pkg/generated/listers/waf.security.io/v1alpha1/service.go
+99
-0
No files found.
pkg/generated/listers/waf.security.io/v1alpha1/service.go
0 → 100644
View file @
e8027610
/*
Copyright 2021.
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
v1alpha1
import
(
v1alpha1
"gitlab.com/tensorsecurity-rd/waf-console/pkg/apis/waf.security.io/v1alpha1"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/client-go/tools/cache"
)
// ServiceLister helps list Services.
// All objects returned here must be treated as read-only.
type
ServiceLister
interface
{
// List lists all Services in the indexer.
// Objects returned here must be treated as read-only.
List
(
selector
labels
.
Selector
)
(
ret
[]
*
v1alpha1
.
Service
,
err
error
)
// Services returns an object that can list and get Services.
Services
(
namespace
string
)
ServiceNamespaceLister
ServiceListerExpansion
}
// serviceLister implements the ServiceLister interface.
type
serviceLister
struct
{
indexer
cache
.
Indexer
}
// NewServiceLister returns a new ServiceLister.
func
NewServiceLister
(
indexer
cache
.
Indexer
)
ServiceLister
{
return
&
serviceLister
{
indexer
:
indexer
}
}
// List lists all Services in the indexer.
func
(
s
*
serviceLister
)
List
(
selector
labels
.
Selector
)
(
ret
[]
*
v1alpha1
.
Service
,
err
error
)
{
err
=
cache
.
ListAll
(
s
.
indexer
,
selector
,
func
(
m
interface
{})
{
ret
=
append
(
ret
,
m
.
(
*
v1alpha1
.
Service
))
})
return
ret
,
err
}
// Services returns an object that can list and get Services.
func
(
s
*
serviceLister
)
Services
(
namespace
string
)
ServiceNamespaceLister
{
return
serviceNamespaceLister
{
indexer
:
s
.
indexer
,
namespace
:
namespace
}
}
// ServiceNamespaceLister helps list and get Services.
// All objects returned here must be treated as read-only.
type
ServiceNamespaceLister
interface
{
// List lists all Services in the indexer for a given namespace.
// Objects returned here must be treated as read-only.
List
(
selector
labels
.
Selector
)
(
ret
[]
*
v1alpha1
.
Service
,
err
error
)
// Get retrieves the Service from the indexer for a given namespace and name.
// Objects returned here must be treated as read-only.
Get
(
name
string
)
(
*
v1alpha1
.
Service
,
error
)
ServiceNamespaceListerExpansion
}
// serviceNamespaceLister implements the ServiceNamespaceLister
// interface.
type
serviceNamespaceLister
struct
{
indexer
cache
.
Indexer
namespace
string
}
// List lists all Services in the indexer for a given namespace.
func
(
s
serviceNamespaceLister
)
List
(
selector
labels
.
Selector
)
(
ret
[]
*
v1alpha1
.
Service
,
err
error
)
{
err
=
cache
.
ListAllByNamespace
(
s
.
indexer
,
s
.
namespace
,
selector
,
func
(
m
interface
{})
{
ret
=
append
(
ret
,
m
.
(
*
v1alpha1
.
Service
))
})
return
ret
,
err
}
// Get retrieves the Service from the indexer for a given namespace and name.
func
(
s
serviceNamespaceLister
)
Get
(
name
string
)
(
*
v1alpha1
.
Service
,
error
)
{
obj
,
exists
,
err
:=
s
.
indexer
.
GetByKey
(
s
.
namespace
+
"/"
+
name
)
if
err
!=
nil
{
return
nil
,
err
}
if
!
exists
{
return
nil
,
errors
.
NewNotFound
(
v1alpha1
.
Resource
(
"service"
),
name
)
}
return
obj
.
(
*
v1alpha1
.
Service
),
nil
}
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment