@@ -298,8 +298,9 @@ type ManagedAuth struct {
298298 FlowType ManagedAuthFlowType `json:"flow_type,nullable"`
299299 // Interval in seconds between automatic health checks. When set, the system
300300 // periodically verifies the authentication status and triggers re-authentication
301- // if needed. Must be between 300 (5 minutes) and 86400 (24 hours). Default is 3600
302- // (1 hour).
301+ // if needed. Maximum is 86400 (24 hours). Default is 3600 (1 hour). The minimum
302+ // depends on your plan: Enterprise: 300 (5 minutes), Startup: 1200 (20 minutes),
303+ // Hobbyist: 3600 (1 hour).
303304 HealthCheckInterval int64 `json:"health_check_interval,nullable"`
304305 // URL to redirect user to for hosted login (present when flow in progress)
305306 HostedURL string `json:"hosted_url,nullable" format:"uri"`
@@ -529,8 +530,9 @@ type ManagedAuthCreateRequestParam struct {
529530 ProfileName string `json:"profile_name,required"`
530531 // Interval in seconds between automatic health checks. When set, the system
531532 // periodically verifies the authentication status and triggers re-authentication
532- // if needed. Must be between 300 (5 minutes) and 86400 (24 hours). Default is 3600
533- // (1 hour).
533+ // if needed. Maximum is 86400 (24 hours). Default is 3600 (1 hour). The minimum
534+ // depends on your plan: Enterprise: 300 (5 minutes), Startup: 1200 (20 minutes),
535+ // Hobbyist: 3600 (1 hour).
534536 HealthCheckInterval param.Opt [int64 ] `json:"health_check_interval,omitzero"`
535537 // Optional login page URL to skip discovery
536538 LoginURL param.Opt [string ] `json:"login_url,omitzero" format:"uri"`
0 commit comments