MSO: Clean up argspec (#53067)

This PR includes:
- Removing aliases (these are now modules in 2.8)
- Cleaning up argspec
This commit is contained in:
Dag Wieers 2019-02-27 17:14:58 +01:00 committed by GitHub
commit 4e058a77ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 32 additions and 32 deletions

View file

@ -114,7 +114,7 @@ def main():
argument_spec.update(
tenant=dict(type='str', required=True),
schema=dict(type='str', required=True),
template=dict(type='str', required=False, aliases=['name']),
template=dict(type='str', aliases=['name']),
display_name=dict(type='str'),
state=dict(type='str', default='present', choices=['absent', 'present', 'query']),
)