> + Rules listRules(PaginationOptions options);
> +
> + /**
> + * @param id the id of the security group rule to return.
> + * @return SecurityGroupRule or null if not found.
> + */
> + @Path("/security-group-rules/{id}")
> + @Named("security-group-rule:get")
> + @GET
> + @SelectJson("security_group_rule")
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + @Nullable
> + Rule get(@PathParam("id") String id);
> +
> + /**
> + * Create a new Security Group Rule.
[minor] "Creates"
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/132/files#r17027586