> +@Beta
> +@Extension(of = ServiceType.COMPUTE, namespace =
> ExtensionNamespaces.ATTACH_INTERFACES)
> +@RequestFilters(AuthenticateRequest.class)
> +@Consumes(MediaType.APPLICATION_JSON)
> +public interface AttachInterfaceApi {
> +
> + /**
> + * Returns list of port interfaces for given server
> + *
> + * @param serverId
> + * The Server ID
> + * @return list of port interfaces for given server
> + */
> + @Named("attachInterface:list")
> + @GET
> + @Path("/servers/{serverId}/os-interface")
As mentioned above, pull `/servers` out here and then the annotation becomes
`@Path("/{id}/os-interface")`
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/497/files#r16916112