Convert to reduced list of known types (#50010)

This commit is contained in:
Dag Wieers 2018-12-18 22:25:30 +01:00 committed by Jordan Borean
parent fcd1486b51
commit 05c6ff79f9
908 changed files with 4822 additions and 4821 deletions

View file

@ -132,16 +132,16 @@ EXAMPLES = '''
RETURN = '''
id:
description: Unique rule UUID.
type: string
type: str
returned: state == present
direction:
description: The direction in which the security group rule is applied.
type: string
type: str
sample: 'egress'
returned: state == present
ethertype:
description: One of IPv4 or IPv6.
type: string
type: str
sample: 'IPv4'
returned: state == present
port_range_min:
@ -158,17 +158,17 @@ port_range_max:
returned: state == present
protocol:
description: The protocol that is matched by the security group rule.
type: string
type: str
sample: 'tcp'
returned: state == present
remote_ip_prefix:
description: The remote IP prefix to be associated with this security group rule.
type: string
type: str
sample: '0.0.0.0/0'
returned: state == present
security_group_id:
description: The security group ID to associate with this security group rule.
type: string
type: str
returned: state == present
'''