mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 04:40:22 -07:00
Fix incorrect type in arg_spec
This commit is contained in:
parent
83645963fb
commit
197ddd3c45
1 changed files with 1 additions and 1 deletions
|
@ -705,7 +705,7 @@ def main():
|
||||||
targets=dict(required=False, type="list", default=[]),
|
targets=dict(required=False, type="list", default=[]),
|
||||||
performance_mode=dict(required=False, type='str', choices=["general_purpose", "max_io"], default="general_purpose"),
|
performance_mode=dict(required=False, type='str', choices=["general_purpose", "max_io"], default="general_purpose"),
|
||||||
throughput_mode=dict(required=False, type='str', choices=["bursting", "provisioned"], default=None),
|
throughput_mode=dict(required=False, type='str', choices=["bursting", "provisioned"], default=None),
|
||||||
provisioned_throughput_in_mibps=dict(required=False, type=float),
|
provisioned_throughput_in_mibps=dict(required=False, type='float'),
|
||||||
wait=dict(required=False, type="bool", default=False),
|
wait=dict(required=False, type="bool", default=False),
|
||||||
wait_timeout=dict(required=False, type="int", default=0)
|
wait_timeout=dict(required=False, type="int", default=0)
|
||||||
))
|
))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue