mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Fix incorrect type in arg_spec
This commit is contained in:
@@ -705,7 +705,7 @@ def main():
|
||||
targets=dict(required=False, type="list", default=[]),
|
||||
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),
|
||||
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_timeout=dict(required=False, type="int", default=0)
|
||||
))
|
||||
|
||||
Reference in New Issue
Block a user