> + @Fallback(NullOnNotFoundOr404.class)
> + Subnet createOrUpdateSubnet(@PathParam("subnetname") String subnetName,
> + @PayloadParam("properties")
> Subnet.SubnetProperties properties);
> +
> + @Named("subnet:get")
> + @Path("/{subnetname}")
> + @GET
> + @Fallback(NullOnNotFoundOr404.class)
> + Subnet getSubnet(@PathParam("subnetname") String subnetname);
> +
> + @Named("subnet:delete")
> + @Path("/{subnetname}")
> + @DELETE
> + @ResponseParser(FalseOn204.class)
> + boolean deleteSubnet(@PathParam("subnetname") String subnetname);
> +}
This API just deals with subnets. Remove the `Subnet` suffix from all methods
to follow the conventions used in the other APIs.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/262/files/1801c68f227e1f245a30c6fa6ff044e7e2634460#r60745720