generated files: remove tpr

Kubernetes-commit: 6a87d99a38da2739249b713adc45b4a99e0187a0
This commit is contained in:
Nikhita Raghunath
2017-11-02 23:16:37 +05:30
committed by Kubernetes Publisher
parent 60cef58577
commit b38bbd711b
6 changed files with 0 additions and 24 deletions

View File

@@ -31,7 +31,6 @@ type ExtensionsV1beta1Interface interface {
PodSecurityPoliciesGetter
ReplicaSetsGetter
ScalesGetter
ThirdPartyResourcesGetter
}
// ExtensionsV1beta1Client is used to interact with features provided by the extensions group.
@@ -63,10 +62,6 @@ func (c *ExtensionsV1beta1Client) Scales(namespace string) ScaleInterface {
return newScales(c, namespace)
}
func (c *ExtensionsV1beta1Client) ThirdPartyResources() ThirdPartyResourceInterface {
return newThirdPartyResources(c)
}
// NewForConfig creates a new ExtensionsV1beta1Client for the given config.
func NewForConfig(c *rest.Config) (*ExtensionsV1beta1Client, error) {
config := *c

View File

@@ -50,10 +50,6 @@ func (c *FakeExtensionsV1beta1) Scales(namespace string) v1beta1.ScaleInterface
return &FakeScales{c, namespace}
}
func (c *FakeExtensionsV1beta1) ThirdPartyResources() v1beta1.ThirdPartyResourceInterface {
return &FakeThirdPartyResources{c}
}
// RESTClient returns a RESTClient that is used to communicate
// with API server by this client implementation.
func (c *FakeExtensionsV1beta1) RESTClient() rest.Interface {

View File

@@ -23,5 +23,3 @@ type IngressExpansion interface{}
type PodSecurityPolicyExpansion interface{}
type ReplicaSetExpansion interface{}
type ThirdPartyResourceExpansion interface{}