mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 21:30:22 -07:00
Tidy up validate-modules ignores for modules: cloud/oneandone (#1357)
* fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_firewall_policy.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_load_balancer.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_monitoring_policy.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_private_network.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_public_ip.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_server.py * Tidy up validate-modules ignores for cloud/oneandone modules * Update plugins/modules/cloud/oneandone/oneandone_server.py Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
00c2ec062d
commit
88c6e6ac61
9 changed files with 103 additions and 86 deletions
|
@ -28,36 +28,43 @@ options:
|
|||
state:
|
||||
description:
|
||||
- Define a public ip state to create, remove, or update.
|
||||
type: str
|
||||
required: false
|
||||
default: 'present'
|
||||
choices: [ "present", "absent", "update" ]
|
||||
auth_token:
|
||||
description:
|
||||
- Authenticating API token provided by 1&1.
|
||||
required: true
|
||||
type: str
|
||||
api_url:
|
||||
description:
|
||||
- Custom API URL. Overrides the
|
||||
ONEANDONE_API_URL environment variable.
|
||||
type: str
|
||||
required: false
|
||||
reverse_dns:
|
||||
description:
|
||||
- Reverse DNS name. maxLength=256
|
||||
type: str
|
||||
required: false
|
||||
datacenter:
|
||||
description:
|
||||
- ID of the datacenter where the IP will be created (only for unassigned IPs).
|
||||
type: str
|
||||
choices: [US, ES, DE, GB]
|
||||
default: US
|
||||
required: false
|
||||
type:
|
||||
description:
|
||||
- Type of IP. Currently, only IPV4 is available.
|
||||
type: str
|
||||
choices: ["IPV4", "IPV6"]
|
||||
default: 'IPV4'
|
||||
required: false
|
||||
public_ip_id:
|
||||
description:
|
||||
- The ID of the public IP used with update and delete states.
|
||||
required: true
|
||||
type: str
|
||||
wait:
|
||||
description:
|
||||
- wait for the instance to be in state 'running' before returning
|
||||
|
@ -67,10 +74,12 @@ options:
|
|||
wait_timeout:
|
||||
description:
|
||||
- how long before wait gives up, in seconds
|
||||
type: int
|
||||
default: 600
|
||||
wait_interval:
|
||||
description:
|
||||
- Defines the number of seconds to wait when using the _wait_for methods
|
||||
type: int
|
||||
default: 5
|
||||
|
||||
requirements:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue