Skip to content

Commit

Permalink
network pool description field
Browse files Browse the repository at this point in the history
  • Loading branch information
davydotcom committed Jan 6, 2025
1 parent 7b29979 commit 468d54f
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,7 @@ public void setCidrIPv6(String cidr) {
public NetworkPoolType type;
public String parentType;
public String parentId;
protected String description;

public List<NetworkPoolRange> ipRanges;

Expand Down Expand Up @@ -502,4 +503,12 @@ public void setSubnetAddress(String subnetAddress) {
this.subnetAddress = subnetAddress;
markDirty("subnetAddress",id);
}

public String getDescription() {
return description;
}

public void setDescription(String description) {
this.description = description;
}
}

0 comments on commit 468d54f

Please sign in to comment.