Skip to content
Snippets Groups Projects

new IP trunk migration

Merged Karel van Klink requested to merge feature/ip-trunk-migration into develop
4 files
+ 8
5
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -23,10 +23,10 @@ class SiteTier(strEnum):
class SnmpCoordinate(ConstrainedStr):
"""An {term}`SNMP` coordinate, modeled as a constrained string.
The coordinate must match the format of `1.35`, `-12.3456`, etc.
The coordinate must match the format of `1.35`, `-123.456`, etc.
"""
regex = re.compile(r"^-?\d{1,2}\.\d+$")
regex = re.compile(r"^-?\d{1,3}\.\d+$")
class SiteBlockInactive(ProductBlockModel, lifecycle=[SubscriptionLifecycle.INITIAL], product_block_name="SiteBlock"):
Loading