generated files: remove tpr
This commit is contained in:
@@ -29,7 +29,6 @@ type ExtensionsInterface interface {
|
||||
PodSecurityPoliciesGetter
|
||||
ReplicaSetsGetter
|
||||
ScalesGetter
|
||||
ThirdPartyResourcesGetter
|
||||
}
|
||||
|
||||
// ExtensionsClient is used to interact with features provided by the extensions group.
|
||||
@@ -61,10 +60,6 @@ func (c *ExtensionsClient) Scales(namespace string) ScaleInterface {
|
||||
return newScales(c, namespace)
|
||||
}
|
||||
|
||||
func (c *ExtensionsClient) ThirdPartyResources() ThirdPartyResourceInterface {
|
||||
return newThirdPartyResources(c)
|
||||
}
|
||||
|
||||
// NewForConfig creates a new ExtensionsClient for the given config.
|
||||
func NewForConfig(c *rest.Config) (*ExtensionsClient, error) {
|
||||
config := *c
|
||||
|
@@ -50,10 +50,6 @@ func (c *FakeExtensions) Scales(namespace string) internalversion.ScaleInterface
|
||||
return &FakeScales{c, namespace}
|
||||
}
|
||||
|
||||
func (c *FakeExtensions) ThirdPartyResources() internalversion.ThirdPartyResourceInterface {
|
||||
return &FakeThirdPartyResources{c}
|
||||
}
|
||||
|
||||
// RESTClient returns a RESTClient that is used to communicate
|
||||
// with API server by this client implementation.
|
||||
func (c *FakeExtensions) RESTClient() rest.Interface {
|
||||
|
@@ -23,5 +23,3 @@ type IngressExpansion interface{}
|
||||
type PodSecurityPolicyExpansion interface{}
|
||||
|
||||
type ReplicaSetExpansion interface{}
|
||||
|
||||
type ThirdPartyResourceExpansion interface{}
|
||||
|
@@ -34,8 +34,6 @@ type Interface interface {
|
||||
PodSecurityPolicies() PodSecurityPolicyInformer
|
||||
// ReplicaSets returns a ReplicaSetInformer.
|
||||
ReplicaSets() ReplicaSetInformer
|
||||
// ThirdPartyResources returns a ThirdPartyResourceInformer.
|
||||
ThirdPartyResources() ThirdPartyResourceInformer
|
||||
}
|
||||
|
||||
type version struct {
|
||||
@@ -71,8 +69,3 @@ func (v *version) PodSecurityPolicies() PodSecurityPolicyInformer {
|
||||
func (v *version) ReplicaSets() ReplicaSetInformer {
|
||||
return &replicaSetInformer{factory: v.SharedInformerFactory}
|
||||
}
|
||||
|
||||
// ThirdPartyResources returns a ThirdPartyResourceInformer.
|
||||
func (v *version) ThirdPartyResources() ThirdPartyResourceInformer {
|
||||
return &thirdPartyResourceInformer{factory: v.SharedInformerFactory}
|
||||
}
|
||||
|
@@ -134,8 +134,6 @@ func (f *sharedInformerFactory) ForResource(resource schema.GroupVersionResource
|
||||
return &genericInformer{resource: resource.GroupResource(), informer: f.Extensions().InternalVersion().PodSecurityPolicies().Informer()}, nil
|
||||
case extensions.SchemeGroupVersion.WithResource("replicasets"):
|
||||
return &genericInformer{resource: resource.GroupResource(), informer: f.Extensions().InternalVersion().ReplicaSets().Informer()}, nil
|
||||
case extensions.SchemeGroupVersion.WithResource("thirdpartyresources"):
|
||||
return &genericInformer{resource: resource.GroupResource(), informer: f.Extensions().InternalVersion().ThirdPartyResources().Informer()}, nil
|
||||
|
||||
// Group=Networking, Version=InternalVersion
|
||||
case networking.SchemeGroupVersion.WithResource("networkpolicies"):
|
||||
|
@@ -37,7 +37,3 @@ type ScaleListerExpansion interface{}
|
||||
// ScaleNamespaceListerExpansion allows custom methods to be added to
|
||||
// ScaleNamespaceLister.
|
||||
type ScaleNamespaceListerExpansion interface{}
|
||||
|
||||
// ThirdPartyResourceListerExpansion allows custom methods to be added to
|
||||
// ThirdPartyResourceLister.
|
||||
type ThirdPartyResourceListerExpansion interface{}
|
||||
|
Reference in New Issue
Block a user