@Retention(value=RUNTIME) @Target(value=METHOD) public @interface Post
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 parameterized segment (Otherwise the parse cannot tell if it's absolute or relative).
Example 1: Relative path segments
@Post("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft
.Compute/virtualMachines/{vmName}/restart")
void restart(@PathParam("resourceGroupName") String rgName, @PathParam("vmName") String vmName, @PathParam
("subscriptionId") String subscriptionId);
Example 2: Absolute path segment
@Post(https://{functionApp}.azurewebsites.net/admin/functions/{name}/keys/{keyName})
NameValuePair generateFunctionKey(@PathParam("functionApp") String functionApp, @PathParam("name") String
function, @PathParam("keyName") String keyName);public abstract String value
Copyright © 2019 Microsoft Corporation. All rights reserved.