Merge "Add a "dig" action"
[osm/devops.git] / layers / netutils / actions.yaml
1 nmap:
2   description: "nmap a thing!"
3   params:
4     destination:
5       description: "destination to scan"
6       type: string
7   required:
8     - destination
9 ping:
10   description: 'ping a thing!'
11   params:
12     count:
13       description: "Stop after sending count ECHO_REQUEST packets"
14       type: integer
15       default: 30
16     destination:
17       description: "destination of ping request"
18       type: string
19   required:
20     - destination
21 traceroute:
22   description: 'trace a thing!'
23   params:
24     hops:
25       description: "Stop tracing after count hops"
26       type: integer
27       default: 30
28     destination:
29       description: "destination of traceroute request"
30       type: string
31   required:
32     - destination
33 dig:
34   description: "DNS lookup"
35   params:
36     nsserver:
37       description: "The nameserver to lookup against."
38       type: string
39     host:
40       description: "The host to lookup"
41       type: string
42     type:
43       description: "The DNS record type to lookup"
44       type: string
45   required:
46     - host
47