> + boolean delete(@PathParam("stack_name") String name,
> @PathParam("stack_id") String id);
> +
> + @Named("stack:update")
> + @PUT
> + @Path("/{stack_name}/{stack_id}")
> + @Fallback(NullOnNotFoundOr404.class)
> + @Nullable
> + boolean update(@PathParam("stack_name") String name,
> @PathParam("stack_id") String id, @BinderParam(BindToJsonPayload.class)
> UpdateStack options);
> +
> +
> + @Named("stack:list_resources")
> + @GET
> + @SelectJson("resources")
> + @Path("/{stack_name}/{stack_id}/resources")
> + @Fallback(EmptyFluentIterableOnNotFoundOr404.class)
> + FluentIterable<StackResource> listStackResources(@PathParam("stack_name")
> String stackName, @PathParam("stack_id") String stackId);
Will List<StackResource> work here instead of the Guava collection? We are
trying to depend less on those in user-facing code.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/188/files#r28277931