Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicate aliases in various modules. #670

Merged
merged 2 commits into from
Jul 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/modules/aci_aaa_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
description:
- The name of the locally-authenticated user user to add.
type: str
aliases: [ name, user ]
aliases: [ name ]
lhercot marked this conversation as resolved.
Show resolved Hide resolved
clear_password_history:
description:
- Whether to clear the password history of a locally-authenticated user.
Expand Down
1 change: 0 additions & 1 deletion plugins/modules/aci_aaa_user_certificate.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
description:
- The name of the user certificate entry in ACI.
type: str
aliases: [ cert_name ]
lhercot marked this conversation as resolved.
Show resolved Hide resolved
state:
description:
- Use C(present) or C(absent) for adding or removing.
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/aci_epg_subnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
description:
- Name of the end point group.
type: str
aliases: [ epg_name, name ]
aliases: [ epg_name ]
description:
description:
- The description for the Subnet.
Expand Down Expand Up @@ -345,7 +345,7 @@ def main():
argument_spec.update(aci_annotation_spec())
argument_spec.update(
tenant=dict(type="str", aliases=["tenant_name"]), # Not required for querying all objects
epg=dict(type="str", aliases=["epg_name", "name"]), # Not required for querying all objects
samiib marked this conversation as resolved.
Show resolved Hide resolved
epg=dict(type="str", aliases=["epg_name"]), # Not required for querying all objects
ap=dict(type="str", aliases=["app_profile", "app_profile_name"]), # Not required for querying all objects
description=dict(type="str", aliases=["descr"]),
enable_vip=dict(type="bool"),
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/aci_l3out_hsrp_secondary_vip.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
description:
- Name of an existing interface profile.
type: str
aliases: [ name, interface_profile_name, logical_interface ]
aliases: [ interface_profile_name, logical_interface ]
hsrp_interface_group:
description:
- Name of an existing HSRP group.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
description:
- Name of an existing interface profile.
type: str
aliases: [ name, interface_profile_name, logical_interface ]
aliases: [ interface_profile_name, logical_interface ]
ospf_policy:
description:
- Name of an existing OSPF interface policy.
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/aci_switch_leaf_selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
description:
- Name of the Policy Group to be added to Leaf Selector of given Leaf Profile.
type: str
aliases: [ name, policy_group_name ]
aliases: [ policy_group_name ]
state:
description:
- Use C(present) or C(absent) for adding or removing.
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/aci_vmm_credential.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
description:
- Name of the virtual domain profile.
type: str
aliases: [ domain_name, domain_profile, name ]
aliases: [ domain_name, domain_profile ]
state:
description:
- Use C(present) or C(absent) for adding or removing.
Expand Down
Loading