mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 06:10:22 -07:00
Update author field and add type for all options in docs (#54350)
This commit is contained in:
parent
399fc110e7
commit
7ad003bf68
23 changed files with 116 additions and 23 deletions
|
@ -20,37 +20,43 @@ version_added: "2.8"
|
|||
short_description: Manage network subnets in a Pure Storage FlashBlade
|
||||
description:
|
||||
- This module manages network subnets on Pure Storage FlashBlade.
|
||||
author: Simon Dodsley (@sdodsley)
|
||||
author: Pure Storage Ansible Team (@sdodsley) <pure-ansible-team@purestorage.com>
|
||||
options:
|
||||
name:
|
||||
description:
|
||||
- Subnet Name.
|
||||
required: true
|
||||
type: str
|
||||
state:
|
||||
description:
|
||||
- Create, delete or modifies a subnet.
|
||||
required: false
|
||||
default: present
|
||||
choices: [ "present", "absent" ]
|
||||
type: str
|
||||
gateway:
|
||||
description:
|
||||
- IPv4 or IPv6 address of subnet gateway.
|
||||
required: false
|
||||
type: str
|
||||
mtu:
|
||||
description:
|
||||
- MTU size of the subnet. Range is 1280 to 9216.
|
||||
required: false
|
||||
default: 1500
|
||||
type: int
|
||||
prefix:
|
||||
description:
|
||||
- IPv4 or IPv6 address associated with the subnet.
|
||||
- Supply the prefix length (CIDR) as well as the IP address.
|
||||
required: false
|
||||
type: str
|
||||
vlan:
|
||||
description:
|
||||
- VLAN ID of the subnet.
|
||||
required: false
|
||||
default: 0
|
||||
type: int
|
||||
extends_documentation_fragment:
|
||||
- purestorage.fb
|
||||
notes:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue