mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-22 22:11:44 -07:00
Windows: Add missing parameter types and doc fixes (#50232)
* Windows: Add missing parameter types and doc fixes This PR includes: - Adding missing parameter types - Various documentation fixes * Update lib/ansible/modules/windows/win_copy.py Co-Authored-By: dagwieers <dag@wieers.com> * Update lib/ansible/modules/windows/win_credential.py Co-Authored-By: dagwieers <dag@wieers.com> * Update lib/ansible/modules/windows/win_domain_computer.py Co-Authored-By: dagwieers <dag@wieers.com> * Update lib/ansible/modules/windows/win_domain_user.py Co-Authored-By: dagwieers <dag@wieers.com> * Update lib/ansible/modules/windows/win_environment.py Co-Authored-By: dagwieers <dag@wieers.com> * Update lib/ansible/modules/windows/win_psexec.py Co-Authored-By: dagwieers <dag@wieers.com> * Update lib/ansible/modules/windows/win_uri.py Co-Authored-By: dagwieers <dag@wieers.com> * Update lib/ansible/modules/windows/win_wait_for.py Co-Authored-By: dagwieers <dag@wieers.com> * Ensure docstrings are raw strings
This commit is contained in:
parent
f80ce60cf9
commit
d863027159
92 changed files with 982 additions and 716 deletions
|
@ -4,13 +4,11 @@
|
|||
# Copyright: (c) 2017, AMTEGA - Xunta de Galicia
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
DOCUMENTATION = r'''
|
||||
---
|
||||
module: win_domain_computer
|
||||
short_description: Manage computers in Active Directory
|
||||
|
@ -22,49 +20,55 @@ version_added: '2.6'
|
|||
options:
|
||||
name:
|
||||
description:
|
||||
- Specifies the name of the object. This parameter sets the Name property
|
||||
of the Active Directory object. The LDAP display name (ldapDisplayName)
|
||||
of this property is name.
|
||||
- Specifies the name of the object.
|
||||
- This parameter sets the Name property of the Active Directory object.
|
||||
- The LDAP display name (ldapDisplayName) of this property is name.
|
||||
type: str
|
||||
required: true
|
||||
sam_account_name:
|
||||
description:
|
||||
- Specifies the Security Account Manager (SAM) account name of the
|
||||
computer. It maximum is 256 characters, 15 is advised for older
|
||||
operating systems compatibility. The LDAP display name
|
||||
(ldapDisplayName) for this property is sAMAccountName. If ommitted the
|
||||
value is the same as C(name).
|
||||
Note. All computer SAMAccountNames needs to end with a $.
|
||||
computer.
|
||||
- It maximum is 256 characters, 15 is advised for older
|
||||
operating systems compatibility.
|
||||
- The LDAP display name (ldapDisplayName) for this property is sAMAccountName.
|
||||
- If ommitted the value is the same as C(name).
|
||||
- Note that all computer SAMAccountNames need to end with a $.
|
||||
type: str
|
||||
enabled:
|
||||
description:
|
||||
- Specifies if an account is enabled. An enabled account requires a
|
||||
password. This parameter sets the Enabled property for an account
|
||||
object. This parameter also sets the ADS_UF_ACCOUNTDISABLE flag of the
|
||||
- Specifies if an account is enabled.
|
||||
- An enabled account requires a password.
|
||||
- This parameter sets the Enabled property for an account object.
|
||||
- This parameter also sets the ADS_UF_ACCOUNTDISABLE flag of the
|
||||
Active Directory User Account Control (UAC) attribute.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
default: yes
|
||||
ou:
|
||||
description:
|
||||
- Specifies the X.500 path of the Organizational Unit (OU) or container
|
||||
where the new object is created. Required when I(state=present).
|
||||
type: str
|
||||
description:
|
||||
description:
|
||||
- Specifies a description of the object. This parameter sets the value
|
||||
of the Description property for the object. The LDAP display name
|
||||
(ldapDisplayName) for this property is description.
|
||||
- Specifies a description of the object.
|
||||
- This parameter sets the value of the Description property for the object.
|
||||
- The LDAP display name (ldapDisplayName) for this property is description.
|
||||
type: str
|
||||
default: ''
|
||||
dns_hostname:
|
||||
description:
|
||||
- Specifies the fully qualified domain name (FQDN) of the computer. This
|
||||
parameter sets the DNSHostName property for a computer object. The LDAP
|
||||
display name for this property is dNSHostName. Required when
|
||||
I(state=present).
|
||||
- Specifies the fully qualified domain name (FQDN) of the computer.
|
||||
- This parameter sets the DNSHostName property for a computer object.
|
||||
- The LDAP display name for this property is dNSHostName.
|
||||
- Required when I(state=present).
|
||||
type: str
|
||||
state:
|
||||
description:
|
||||
- Specified whether the computer should be C(present) or C(absent) in
|
||||
Active Directory.
|
||||
choices:
|
||||
- present
|
||||
- absent
|
||||
type: str
|
||||
choices: [ absent, present ]
|
||||
default: present
|
||||
seealso:
|
||||
- module: win_domain
|
||||
|
@ -72,10 +76,11 @@ seealso:
|
|||
- module: win_domain_group
|
||||
- module: win_domain_membership
|
||||
- module: win_domain_user
|
||||
author: Daniel Sánchez Fábregas (@Daniel-Sanchez-Fabregas)
|
||||
author:
|
||||
- Daniel Sánchez Fábregas (@Daniel-Sanchez-Fabregas)
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
EXAMPLES = r'''
|
||||
- name: Add linux computer to Active Directory OU using a windows machine
|
||||
win_domain_computer:
|
||||
name: one_linux_server.my_org.local
|
||||
|
@ -94,5 +99,5 @@ EXAMPLES = '''
|
|||
delegate_to: my_windows_bridge.my_org.local
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
RETURN = r'''
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue