From 05c01a0ec35ad7d2d906ab738da83aa526ea5727 Mon Sep 17 00:00:00 2001 From: "Jon \"The Nice Guy\" Spriggs" Date: Tue, 5 Sep 2023 22:13:18 +0100 Subject: [PATCH] Add isPool to the Subnet struct --- controllers/subnets/subnets.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/controllers/subnets/subnets.go b/controllers/subnets/subnets.go index 62893ec..71e2f64 100644 --- a/controllers/subnets/subnets.go +++ b/controllers/subnets/subnets.go @@ -75,6 +75,9 @@ type Subnet struct { // Controls if we are adding a subnet or folder. IsFolder phpipam.BoolIntString `json:"isFolder,omitempty"` + // Marks the subnet as permitting allocation of the network and broadcast addresses. + IsPool phpipam.BoolIntString `json:"isPool,omitempty"` + // Marks the subnet as used. IsFull phpipam.BoolIntString `json:"isFull,omitempty"`