diff --git a/sdk/core/azure-core/src/main/java/com/azure/core/http/HttpMethod.java b/sdk/core/azure-core/src/main/java/com/azure/core/http/HttpMethod.java index caea9bee3e84..684ee4fa9c8d 100644 --- a/sdk/core/azure-core/src/main/java/com/azure/core/http/HttpMethod.java +++ b/sdk/core/azure-core/src/main/java/com/azure/core/http/HttpMethod.java @@ -36,4 +36,19 @@ public enum HttpMethod { * The HTTP HEAD method. */ HEAD, + + /** + * The HTTP OPTIONS method. + */ + OPTIONS, + + /** + * The HTTP TRACE method. + */ + TRACE, + + /** + * The HTTP CONNECT method. + */ + CONNECT }