@Path(value="/")
@Produces(value="application/json")
@Consumes(value="application/json")
public interface KubernetesGlobalExtensions
| Modifier and Type | Method and Description | 
|---|---|
| String | createOAuthClient(io.fabric8.openshift.api.model.OAuthClient entity) | 
| String | deleteOAuthClient(String name) | 
| io.fabric8.openshift.api.model.OAuthClient | getOAuthClient(String name) | 
| io.fabric8.kubernetes.api.root.RootPaths | getRootPaths() | 
| String | updateOAuthClient(String name,
                 io.fabric8.openshift.api.model.OAuthClient entity) | 
@GET @Path(value="/") io.fabric8.kubernetes.api.root.RootPaths getRootPaths()
@POST @Path(value="oapi/v1/oauthclients") @Consumes(value="application/json") String createOAuthClient(io.fabric8.openshift.api.model.OAuthClient entity) throws Exception
Exception@GET
@Path(value="oapi/v1/oauthclients/{name}")
io.fabric8.openshift.api.model.OAuthClient getOAuthClient(@PathParam(value="name")@NotNull
                                                                 String name)
@PUT
@Path(value="oapi/v1/oauthclients/{name}")
@Consumes(value="application/json")
String updateOAuthClient(@PathParam(value="name")@NotNull
                                         String name,
                                         io.fabric8.openshift.api.model.OAuthClient entity)
                         throws Exception
ExceptionCopyright © 2011–2015 Red Hat. All rights reserved.