
    Vh                         d Z dZdZy)a7  
---
module: win_ping
short_description: A windows version of the classic ping module
description:
  - Checks management connectivity of a windows host.
  - This is NOT ICMP ping, this is just a trivial test module.
  - For non-Windows targets, use the M(ansible.builtin.ping) module instead.
options:
  data:
    description:
      - Alternate data to return instead of 'pong'.
      - If this parameter is set to C(crash), the module will cause an exception.
    type: str
    default: pong
seealso:
- module: ansible.builtin.ping
author:
- Chris Church (@cchurch)
z
# Test connectivity to a windows host
# ansible winserver -m ansible.windows.win_ping

- name: Example from an Ansible Playbook
  ansible.windows.win_ping:

- name: Induce an exception to see what happens
  ansible.windows.win_ping:
    data: crash
zu
ping:
    description: Value provided with the data parameter.
    returned: success
    type: str
    sample: pong
N)DOCUMENTATIONEXAMPLESRETURN     l/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/ansible/windows/plugins/modules/win_ping.py<module>r      s   *

r   