> +@Path("/resourcegroups/{resourcegroup}/providers/microsoft.resources/deployments") > +@QueryParams(keys = "api-version", values = "2016-02-01") > +@RequestFilters(OAuthFilter.class) > +@Consumes(MediaType.APPLICATION_JSON) > +public interface DeploymentApi { > + > + /** > + * The Create Template Deployment operation starts the process of an ARM > Template deployment. > + * It then returns a Deployment object. > + */ > + @Named("deployment:create") > + @Path("/{deploymentname}") > + @Payload("{properties}") > + @PUT > + @Produces(MediaType.APPLICATION_JSON) > + @Fallback(NullOnNotFoundOr404.class)
ok. --- 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/273/files/74f8e9bf66e7427298c5c3c9567aa7d8284e0987#r64496180