Skip to content

Commit

Permalink
Updated queue-simple path:
Browse files Browse the repository at this point in the history
- Updated all default values to match those from the API
- Re-ordered fields to match API output
- Target is not required; added default value
  • Loading branch information
samburney committed Mar 30, 2024
1 parent a175a15 commit 668d874
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions plugins/module_utils/_api_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -4244,22 +4244,22 @@ def join_path(path):
primary_keys=('name', ),
fully_understood=True,
fields={
'bucket-size': KeyInfo(default='0.1'),
'burst-limit': KeyInfo(default=0),
'burst-threshold': KeyInfo(default=0),
'burst-time': KeyInfo(default='0s'),
'comment': KeyInfo(can_disable=True, remove_value=''),
'dst': KeyInfo(can_disable=True, remove_value=''),
'time': KeyInfo(can_disable=True, remove_value=''),
'bucket-size': KeyInfo(default='0.1/0.1'),
'burst-limit': KeyInfo(default='0/0'),
'burst-threshold': KeyInfo(default='0/0'),
'burst-time': KeyInfo(default='0s/0s'),
'disabled': KeyInfo(default=False),
'limit-at': KeyInfo(default=0),
'max-limit': KeyInfo(default=0),
'limit-at': KeyInfo(default='0/0'),
'max-limit': KeyInfo(default='0/0'),
'name': KeyInfo(),
'packet-marks': KeyInfo(default=''),
'parent': KeyInfo(default='none'),
'priority': KeyInfo(default=8),
'queue': KeyInfo(default='default-small'),
'target': KeyInfo(required=True),
'dst': KeyInfo(can_disable=True, remove_value=''),
'time': KeyInfo(can_disable=True, remove_value=''),
'priority': KeyInfo(default='8/8'),
'queue': KeyInfo(default='default-small/default-small'),
'target': KeyInfo(default=''),
},
),
),
Expand Down

0 comments on commit 668d874

Please sign in to comment.