cs_vlan_ip_range: Update return values documentation (#54677)

* cs_vlan_ip_range: Update return values documentation

* add missing start/end_ipv6 return values to the doc
This commit is contained in:
David Passante 2019-04-01 19:06:26 +02:00 committed by ansibot
parent 72f1e4b83a
commit aa2427573b

View file

@ -141,7 +141,7 @@ id:
sample: 04589590-ac63-4ffc-93f5-b698b8ac38b6 sample: 04589590-ac63-4ffc-93f5-b698b8ac38b6
network: network:
description: The network of vlan range description: The network of vlan range
returned: success returned: if available
type: str type: str
sample: test sample: test
vlan: vlan:
@ -161,12 +161,12 @@ netmask:
sample: 255.255.255.0 sample: 255.255.255.0
gateway_ipv6: gateway_ipv6:
description: IPv6 gateway. description: IPv6 gateway.
returned: success returned: if available
type: str type: str
sample: 2001:db8::1 sample: 2001:db8::1
cidr_ipv6: cidr_ipv6:
description: The CIDR of IPv6 network. description: The CIDR of IPv6 network.
returned: success returned: if available
type: str type: str
sample: 2001:db8::/64 sample: 2001:db8::/64
zone: zone:
@ -181,12 +181,12 @@ domain:
sample: ROOT sample: ROOT
account: account:
description: Account who owns the network. description: Account who owns the network.
returned: success returned: if available
type: str type: str
sample: example account sample: example account
project: project:
description: Project who owns the network. description: Project who owns the network.
returned: success returned: if available
type: str type: str
sample: example project sample: example project
for_systemvms: for_systemvms:
@ -200,10 +200,30 @@ for_virtual_network:
type: bool type: bool
sample: false sample: false
physical_network: physical_network:
description: The physical network VLAN IP range belongs to. description: The physical network VLAN IP range belongs to.
returned: success returned: success
type: str type: str
sample: 04589590-ac63-4ffc-93f5-b698b8ac38b6 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 from ansible.module_utils.basic import AnsibleModule