Skip to content

Commit

Permalink
cs_vlan_ip_range: Update return values documentation (ansible#54677)
Browse files Browse the repository at this point in the history
* cs_vlan_ip_range: Update return values documentation

* add missing start/end_ipv6 return values to the doc
  • Loading branch information
dpassante authored and ansibot committed Apr 1, 2019
1 parent 72f1e4b commit aa24275
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions lib/ansible/modules/cloud/cloudstack/cs_vlan_ip_range.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
sample: 04589590-ac63-4ffc-93f5-b698b8ac38b6
network:
description: The network of vlan range
returned: success
returned: if available
type: str
sample: test
vlan:
Expand All @@ -161,12 +161,12 @@
sample: 255.255.255.0
gateway_ipv6:
description: IPv6 gateway.
returned: success
returned: if available
type: str
sample: 2001:db8::1
cidr_ipv6:
description: The CIDR of IPv6 network.
returned: success
returned: if available
type: str
sample: 2001:db8::/64
zone:
Expand All @@ -181,12 +181,12 @@
sample: ROOT
account:
description: Account who owns the network.
returned: success
returned: if available
type: str
sample: example account
project:
description: Project who owns the network.
returned: success
returned: if available
type: str
sample: example project
for_systemvms:
Expand All @@ -200,10 +200,30 @@
type: bool
sample: false
physical_network:
description: The physical network VLAN IP range belongs to.
description: The physical network VLAN IP range belongs to.
returned: success
type: str
sample: 04589590-ac63-4ffc-93f5-b698b8ac38b6
start_ip:
description: The start ip of the VLAN IP range.
returned: success
type: str
sample: 10.2.4.10
end_ip:
description: The end ip of the VLAN IP range.
returned: success
type: str
sample: 10.2.4.100
start_ipv6:
description: The start ipv6 of the VLAN IP range.
returned: if available
type: str
sample: 2001:db8::10
end_ipv6:
description: The end ipv6 of the VLAN IP range.
returned: if available
type: str
sample: 2001:db8::50
'''

from ansible.module_utils.basic import AnsibleModule
Expand Down

0 comments on commit aa24275

Please sign in to comment.