Skip to content

Commit 354877f

Browse files
Generate vpn
1 parent 43947ef commit 354877f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

services/vpn/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7e7c0c6d141ef436fa9dee1e9724936562b7d6da
1+
404d55ddc0cbde39bb4bbc0a3792ea8a56cc58fa

services/vpn/src/stackit/vpn/models/tunnel_configuration_phase1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class TunnelConfigurationPhase1(BaseModel):
3737
description="Supported integrity algorithms. SHA1 is deprecated and will be removed on 2026-12-31. ",
3838
alias="integrityAlgorithms",
3939
)
40-
rekey_time: Optional[Annotated[int, Field(le=28800, strict=True, ge=900)]] = Field(
40+
rekey_time: Optional[Annotated[int, Field(le=86400, strict=True, ge=900)]] = Field(
4141
default=14400, description="Time to schedule a IKE re-keying (in seconds).", alias="rekeyTime"
4242
)
4343
__properties: ClassVar[List[str]] = ["dhGroups", "encryptionAlgorithms", "integrityAlgorithms", "rekeyTime"]

services/vpn/src/stackit/vpn/models/tunnel_configuration_phase2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class TunnelConfigurationPhase2(BaseModel):
4242
description='Action to perform for this CHILD_SA on DPD timeout. "clear": Closes the CHILD_SA and does not take further action. "restart": immediately tries to re-negotiate the CILD_SA under a fresh IKE_SA. ',
4343
alias="dpdAction",
4444
)
45-
rekey_time: Optional[Annotated[int, Field(le=3600, strict=True, ge=900)]] = Field(
45+
rekey_time: Optional[Annotated[int, Field(le=14400, strict=True, ge=900)]] = Field(
4646
default=3600, description="Time to schedule a Child SA re-keying (in seconds).", alias="rekeyTime"
4747
)
4848
start_action: Optional[StrictStr] = Field(

0 commit comments

Comments
 (0)