Move ThirdPartyResource to root scoped object

This commit is contained in:
Jordan Liggitt
2016-04-30 00:43:40 -04:00
parent ee2a0694b6
commit e41d504739
26 changed files with 513 additions and 1146 deletions

View File

@@ -74,8 +74,8 @@ func (c *ExtensionsClient) Ingress(namespace string) IngressInterface {
return newIngress(c, namespace)
}
func (c *ExtensionsClient) ThirdPartyResources(namespace string) ThirdPartyResourceInterface {
return newThirdPartyResources(c, namespace)
func (c *ExtensionsClient) ThirdPartyResources() ThirdPartyResourceInterface {
return newThirdPartyResources(c)
}
func (c *ExtensionsClient) ReplicaSets(namespace string) ReplicaSetInterface {