summaryrefslogtreecommitdiff
path: root/windows/win_uri.py
diff options
context:
space:
mode:
authorCorwin Brown <Corwin.Brown@maxpoint.com>2016-03-02 08:36:53 -0600
committerCorwin Brown <Corwin.Brown@maxpoint.com>2016-03-02 09:54:31 -0600
commit1c36ff10a0d141162f5754e9376c052f766e6872 (patch)
tree3c08d861d128826e0f72fe54f4e4cfa99a7d8f30 /windows/win_uri.py
parent9ae9d04eab0b7893b75c94fb74169d162304d5c6 (diff)
downloadansible-modules-extras-1c36ff10a0d141162f5754e9376c052f766e6872.tar.gz
Converting result to snake_case before returning
Diffstat (limited to 'windows/win_uri.py')
-rw-r--r--windows/win_uri.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/windows/win_uri.py b/windows/win_uri.py
index fa61d8aa..f4d0e459 100644
--- a/windows/win_uri.py
+++ b/windows/win_uri.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
-# (c) 2015, Corwin Brown <corwin.brown@maxpoint.com>
+# (c) 2015, Corwin Brown <corwin@corwinbrown.com>
#
# This file is part of Ansible
#
@@ -27,7 +27,7 @@ module: win_uri
version_added: "2.1"
short_description: Interacts with webservices.
description:
- - Interacts with HTTP and HTTPS services.
+ - Interacts with HTTP and HTTPS web services and supports Digest, Basic and WSSE HTTP authentication mechanisms.
options:
url:
description:
@@ -55,7 +55,7 @@ options:
- The body of the HTTP request/response to the web service.
headers:
description:
- - Key Value pairs for headers. Example "Host: www.somesite.com"
+ - 'Key Value pairs for headers. Example "Host: www.somesite.com"'
use_basic_parsing:
description:
- This module relies upon 'Invoke-WebRequest', which by default uses the Internet Explorer Engine to parse a webpage. There's an edge-case where if a user hasn't run IE before, this will fail. The only advantage to using the Internet Explorer praser is that you can traverse the DOM in a powershell script. That isn't useful for Ansible, so by default we toggle 'UseBasicParsing'. However, you can toggle that off here.
@@ -81,7 +81,7 @@ EXAMPLES = """
url: http://my.internal.server.com
method: GET
headers:
- host: "www.somesite.com
+ host: "www.somesite.com"
# Do a HEAD request on an endpoint
---
@@ -120,27 +120,27 @@ use_basic_parsing:
returned: always
type: bool
sample: True
-StatusCode:
+status_code:
description: The HTTP Status Code of the response.
returned: success
type: int
sample: 200
-StatusDescription:
+status_description:
description: A summery of the status.
returned: success
type: string
stample: "OK"
-RawContent:
+raw_content:
description: The raw content of the HTTP response.
returned: success
type: string
sample: 'HTTP/1.1 200 OK\nX-XSS-Protection: 1; mode=block\nX-Frame-Options: SAMEORIGIN\nAlternate-Protocol: 443:quic,p=1\nAlt-Svc: quic="www.google.com:443"; ma=2592000; v="30,29,28,27,26,25",quic=":443"; ma=2...'
-Headers:
+headers:
description: The Headers of the response.
returned: success
type: dict
sample: {"Content-Type": "application/json"}
-RawContentLength:
+raw_content_length:
description: The byte size of the response.
returned: success
type: int