Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion services/vpn/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
91111d4871a604207235ce0835c7840677bda134
ede687fbd6cfc05a7df43d36a45e168d1f109ca1
3 changes: 1 addition & 2 deletions services/vpn/src/stackit/vpn/models/bgp_gateway_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ class BGPGatewayConfig(BaseModel):
BGP configuration effects all connections. (only for routingMode=BGP_ROUTE_BASED)
""" # noqa: E501

local_asn: Optional[Annotated[int, Field(le=4294967294, strict=True, ge=64512)]] = Field(
default=None,
local_asn: Annotated[int, Field(le=4294967294, strict=True, ge=64512)] = Field(
description="ASN for private use (reserved by IANA), both 16Bit and 32Bit ranges are valid (RFC 6996). ",
alias="localAsn",
)
Expand Down
Loading