1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add attributes to clc, hwc, and lxd modules (#5952)

Add attributes to clc, hwc, and lxd modules.
This commit is contained in:
Felix Fontein 2023-02-24 09:22:26 +01:00 committed by GitHub
parent 50d7597ddc
commit cc29b16536
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 194 additions and 38 deletions

View file

@ -14,6 +14,13 @@ module: clc_aa_policy
short_description: Create or Delete Anti Affinity Policies at CenturyLink Cloud
description:
- An Ansible module to Create or Delete Anti Affinity Policies at CenturyLink Cloud.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
name:
description:

View file

@ -15,6 +15,13 @@ module: clc_alert_policy
short_description: Create or Delete Alert Policies at CenturyLink Cloud
description:
- An Ansible module to Create or Delete Alert Policies at CenturyLink Cloud.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
alias:
description:

View file

@ -14,6 +14,13 @@ module: clc_blueprint_package
short_description: Deploys a blue print package on a set of servers in CenturyLink Cloud
description:
- An Ansible module to deploy blue print package on a set of servers in CenturyLink Cloud.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
server_ids:
description:

View file

@ -14,6 +14,13 @@ module: clc_firewall_policy
short_description: Create/delete/update firewall policies
description:
- Create or delete or update firewall policies on Centurylink Cloud
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
location:
description:

View file

@ -15,6 +15,13 @@ module: clc_group
short_description: Create/delete Server Groups at Centurylink Cloud
description:
- Create or delete Server Groups at Centurylink Centurylink Cloud
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
name:
description:

View file

@ -15,6 +15,13 @@ module: clc_loadbalancer
short_description: Create, Delete shared loadbalancers in CenturyLink Cloud
description:
- An Ansible module to Create, Delete shared loadbalancers in CenturyLink Cloud.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
name:
description:

View file

@ -14,6 +14,13 @@ module: clc_modify_server
short_description: Modify servers in CenturyLink Cloud
description:
- An Ansible module to modify servers in CenturyLink Cloud.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
server_ids:
description:

View file

@ -14,6 +14,13 @@ module: clc_publicip
short_description: Add and Delete public ips on servers in CenturyLink Cloud
description:
- An Ansible module to add or delete public ip addresses on an existing server or servers in CenturyLink Cloud.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
protocol:
description:

View file

@ -14,6 +14,13 @@ module: clc_server
short_description: Create, Delete, Start and Stop servers in CenturyLink Cloud
description:
- An Ansible module to Create, Delete, Start and Stop servers in CenturyLink Cloud.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
additional_disks:
description:

View file

@ -14,6 +14,13 @@ module: clc_server_snapshot
short_description: Create, Delete and Restore server snapshots in CenturyLink Cloud
description:
- An Ansible module to Create, Delete and Restore server snapshots in CenturyLink Cloud.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
server_ids:
description:

View file

@ -22,6 +22,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -226,6 +231,7 @@ options:
required: false
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -22,6 +22,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -151,6 +156,7 @@ options:
required: false
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -22,6 +22,11 @@ author: Huawei Inc. (@huaweicloud)
requirements:
- requests >= 2.18.4
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -62,6 +67,7 @@ options:
required: true
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -22,6 +22,11 @@ author: Huawei Inc. (@huaweicloud)
requirements:
- requests >= 2.18.4
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -46,6 +51,7 @@ options:
required: true
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -22,6 +22,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -122,6 +127,7 @@ options:
required: false
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -23,6 +23,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -76,6 +81,7 @@ options:
required: false
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -22,6 +22,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -106,6 +111,7 @@ options:
required: false
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -26,6 +26,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -49,6 +54,7 @@ options:
required: false
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -26,6 +26,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -56,6 +61,7 @@ options:
default: 'peering'
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -30,6 +30,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -59,6 +64,7 @@ options:
required: false
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -30,6 +30,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -101,6 +106,7 @@ options:
required: false
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -22,6 +22,11 @@ version_added: '0.2.0'
author: Huawei Inc. (@huaweicloud)
requirements:
- keystoneauth1 >= 3.6.0
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
state:
description:
@ -95,6 +100,7 @@ options:
required: false
extends_documentation_fragment:
- community.general.hwc
- community.general.attributes
'''

View file

@ -16,6 +16,13 @@ short_description: Manage LXD profiles
description:
- Management of LXD profiles
author: "Hiroaki Nakamura (@hnakamur)"
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: none
diff_mode:
support: none
options:
name:
description:

View file

@ -15,6 +15,13 @@ version_added: 4.8.0
description:
- Management of LXD projects.
author: "Raymond Chang (@we10710aa)"
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: none
diff_mode:
support: none
options:
name:
description: