You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/observability/src/stackit/observability/models/create_alert_config_receiver_payload_web_hook_configs_inner.py
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,14 @@ class CreateAlertConfigReceiverPayloadWebHookConfigsInner(BaseModel):
description="Google Chat webhooks require special handling. If you set this property to true, it is treated as such. `Additional Validators:` * When set to true, msTeams must be false.",
33
+
alias="googleChat",
34
+
)
30
35
ms_teams: Optional[StrictBool] =Field(
31
36
default=False,
32
-
description="Microsoft Teams webhooks require special handling. If you set this property to true, it is treated as such",
37
+
description="Microsoft Teams webhooks require special handling. If you set this property to true, it is treated as such. `Additional Validators:` * When set to true, googleChat must be false.",
33
38
alias="msTeams",
34
39
)
35
40
send_resolved: Optional[StrictBool] =Field(
@@ -39,7 +44,7 @@ class CreateAlertConfigReceiverPayloadWebHookConfigsInner(BaseModel):
39
44
default=None,
40
45
description="The endpoint to send HTTP POST requests to. `Additional Validators:` * must be a syntactically valid url address",
0 commit comments