@Target(value=METHOD)
@Retention(value=RUNTIME)
public @interface DELETE
Defines the parametrized relative path for an HTTP DELETE method.
The required value can be either a relative path or an absolute path. When it's
an absolute path, it must start with a protocol or a parametrized segment.
(Otherwise the parse cannot tell if it's absolute or relative)
Example 1: relative path segments
@DELETE("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}")
void delete(@PathParam("resourceGroupName") String rgName, @PathParam("vmName") String vmName, @PathParam("subscriptionId") String subscriptionId);
Example 2: absolute path segment
@DELETE({vaultBaseUrl}/secrets/{secretName})
void delete(@PathParam("vaultBaseUrl" encoded = true) String vaultBaseUrl, @PathParam("secretName") String secretName);