Put Interface
Implements
public interface Put
implements Annotation
HTTP PUT method annotation describing the parameterized relative path to a REST endpoint for resource creation or update.
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
@Put("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/"
+ "virtualMachines/{vmName}")
VirtualMachine createOrUpdate(@PathParam("resourceGroupName") String rgName,
@PathParam("vmName") String vmName,
@PathParam("subscriptionId") String subscriptionId,
@BodyParam("application/json") VirtualMachine vm);
Example 2: Absolute path segment
@Put("{vaultBaseUrl}/secrets/{secretName}")
Secret createOrUpdate(@PathParam(value = "vaultBaseUrl", encoded = true) String vaultBaseUrl,
@PathParam("secretName") String secretName,
@BodyParam("application/json") Secret secret);
Method Summary
| Modifier and Type | Method and Description |
|---|---|
| abstract String |
value()
Get the relative path of the annotated method's PUT URL. |
Method Details
value
public abstract String value()
Get the relative path of the annotated method's PUT URL.
Returns: