summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2015-10-19 10:13:45 -0400
committerBrian Coca <brian.coca+git@gmail.com>2015-10-19 10:15:04 -0400
commitf7d1689210494374d8544c952a0b3e4194a90af0 (patch)
tree349fdac038022560842a618a6dccbf3865d07e3a
parentb5419a026796c56df32dbd72569690c60321885b (diff)
downloadansible-modules-core-f7d1689210494374d8544c952a0b3e4194a90af0.tar.gz
specified that uri must be uppercase
-rw-r--r--network/basics/uri.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/network/basics/uri.py b/network/basics/uri.py
index a3584502..f21e3322 100644
--- a/network/basics/uri.py
+++ b/network/basics/uri.py
@@ -44,7 +44,6 @@ options:
- HTTP or HTTPS URL in the form (http|https)://host.domain[:port]/path
required: true
default: null
- aliases: []
dest:
description:
- path of where to download the file to (if desired). If I(dest) is a directory, the basename of the file on the remote server will be used.
@@ -67,7 +66,7 @@ options:
default: null
method:
description:
- - The HTTP method of the request or response.
+ - The HTTP method of the request or response. It MUST be uppercase.
required: false
choices: [ "GET", "POST", "PUT", "HEAD", "DELETE", "OPTIONS", "PATCH" ]
default: "GET"