Skip to content

Commit b592f80

Browse files
authored
Add mark_utilized to netbox_prefix (#827)
#813 Add mark_utilized to netbox_prefix
1 parent c2d2cd3 commit b592f80

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

plugins/modules/netbox_prefix.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@
8888
- All IP Addresses within this prefix are considered usable
8989
required: false
9090
type: bool
91+
mark_utilized:
92+
description:
93+
- Treat as 100% utilized
94+
required: false
95+
type: bool
96+
version_added: "3.8.0"
9197
description:
9298
description:
9399
- The description of the prefix
@@ -247,6 +253,7 @@ def main():
247253
status=dict(required=False, type="raw"),
248254
prefix_role=dict(required=False, type="raw"),
249255
is_pool=dict(required=False, type="bool"),
256+
mark_utilized=dict(required=False, type="bool"),
250257
description=dict(required=False, type="str"),
251258
tags=dict(required=False, type="list", elements="raw"),
252259
custom_fields=dict(required=False, type="dict"),

0 commit comments

Comments
 (0)