Skip to content
Merged
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
16 changes: 10 additions & 6 deletions docs/openapi/monitoring-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -23376,8 +23376,10 @@
]
},
"frequencySeconds": {
"maximum": 86400,
"minimum": 10,
"type": "integer",
"description": "Check frequency in seconds (30–86400); null defaults to plan minimum (60s on most paid plans)",
"description": "Check frequency in seconds (10–86400); null defaults to plan minimum (60s on most paid plans)",
"format": "int32",
"nullable": true
},
Expand All @@ -23388,11 +23390,11 @@
},
"regions": {
"type": "array",
"description": "Probe regions to run checks from, e.g. us-east, eu-west",
"description": "Probe regions to run checks from. Allowed values are deployment-dependent; production: us-east, us-west, eu-west, ap-south.",
"nullable": true,
"items": {
"type": "string",
"description": "Probe regions to run checks from, e.g. us-east, eu-west"
"description": "Probe regions to run checks from. Allowed values are deployment-dependent; production: us-east, us-west, eu-west, ap-south."
}
},
"managedBy": {
Expand Down Expand Up @@ -33494,8 +33496,10 @@
]
},
"frequencySeconds": {
"maximum": 86400,
"minimum": 10,
"type": "integer",
"description": "New check frequency in seconds (30–86400); null preserves current",
"description": "New check frequency in seconds (10–86400); null preserves current",
"format": "int32",
"nullable": true
},
Expand All @@ -33506,11 +33510,11 @@
},
"regions": {
"type": "array",
"description": "New probe regions; null preserves current",
"description": "New probe regions; null preserves current. Allowed values are deployment-dependent.",
"nullable": true,
"items": {
"type": "string",
"description": "New probe regions; null preserves current"
"description": "New probe regions; null preserves current. Allowed values are deployment-dependent."
}
},
"managedBy": {
Expand Down
8 changes: 4 additions & 4 deletions src/generated/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3196,12 +3196,12 @@ export interface components {
config: components["schemas"]["DnsMonitorConfig"] | components["schemas"]["HeartbeatMonitorConfig"] | components["schemas"]["HttpMonitorConfig"] | components["schemas"]["IcmpMonitorConfig"] | components["schemas"]["McpServerMonitorConfig"] | components["schemas"]["TcpMonitorConfig"];
/**
* Format: int32
* @description Check frequency in seconds (30–86400); null defaults to plan minimum (60s on most paid plans)
* @description Check frequency in seconds (10–86400); null defaults to plan minimum (60s on most paid plans)
*/
frequencySeconds?: number | null;
/** @description Whether the monitor is active (default: true) */
enabled?: boolean | null;
/** @description Probe regions to run checks from, e.g. us-east, eu-west */
/** @description Probe regions to run checks from. Allowed values are deployment-dependent; production: us-east, us-west, eu-west, ap-south. */
regions?: string[] | null;
/**
* @description Source that created/owns this monitor: DASHBOARD, CLI, TERRAFORM, MCP, or API. Defaults to API when omitted; set to your surface so audit logs, drift detection, and analytics attribute correctly.
Expand Down Expand Up @@ -7219,12 +7219,12 @@ export interface components {
config?: (components["schemas"]["DnsMonitorConfig"] | components["schemas"]["HeartbeatMonitorConfig"] | components["schemas"]["HttpMonitorConfig"] | components["schemas"]["IcmpMonitorConfig"] | components["schemas"]["McpServerMonitorConfig"] | components["schemas"]["TcpMonitorConfig"]) | null;
/**
* Format: int32
* @description New check frequency in seconds (30–86400); null preserves current
* @description New check frequency in seconds (10–86400); null preserves current
*/
frequencySeconds?: number | null;
/** @description Enable or disable the monitor; null preserves current */
enabled?: boolean | null;
/** @description New probe regions; null preserves current */
/** @description New probe regions; null preserves current. Allowed values are deployment-dependent. */
regions?: string[] | null;
/**
* @description New ownership source: DASHBOARD, CLI, TERRAFORM, MCP, or API; null preserves current value
Expand Down
Loading