@devhelm/sdk 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/api.d.ts +76 -179
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/schemas.d.ts +199 -1544
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +49 -222
- package/dist/generated/schemas.js.map +1 -1
- package/dist/schemas.d.ts +141 -1109
- package/dist/schemas.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/generated/api.d.ts
CHANGED
|
@@ -2489,11 +2489,8 @@ export interface components {
|
|
|
2489
2489
|
id: string;
|
|
2490
2490
|
/** @description Human-readable channel name */
|
|
2491
2491
|
name: string;
|
|
2492
|
-
/**
|
|
2493
|
-
|
|
2494
|
-
* @enum {string}
|
|
2495
|
-
*/
|
|
2496
|
-
channelType: "email" | "webhook" | "slack" | "pagerduty" | "opsgenie" | "teams" | "discord";
|
|
2492
|
+
/** @description Channel integration type (e.g. SLACK, PAGERDUTY, EMAIL) */
|
|
2493
|
+
channelType: string;
|
|
2497
2494
|
displayConfig?: components["schemas"]["AlertChannelDisplayConfig"] | null;
|
|
2498
2495
|
/**
|
|
2499
2496
|
* Format: date-time
|
|
@@ -2507,11 +2504,8 @@ export interface components {
|
|
|
2507
2504
|
updatedAt: string;
|
|
2508
2505
|
/** @description SHA-256 hash of the channel config; use for change detection */
|
|
2509
2506
|
configHash?: string | null;
|
|
2510
|
-
/**
|
|
2511
|
-
|
|
2512
|
-
* @enum {string|null}
|
|
2513
|
-
*/
|
|
2514
|
-
managedBy?: "DASHBOARD" | "CLI" | "TERRAFORM" | "MCP" | "API" | null;
|
|
2507
|
+
/** @description Source that created/owns this channel: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on channels created before this attribution column existed. */
|
|
2508
|
+
managedBy?: string | null;
|
|
2515
2509
|
/**
|
|
2516
2510
|
* Format: date-time
|
|
2517
2511
|
* @description Timestamp of the most recent delivery attempt
|
|
@@ -2543,16 +2537,10 @@ export interface components {
|
|
|
2543
2537
|
channel: string;
|
|
2544
2538
|
/** @description Alert channel type (e.g. slack, email, webhook) */
|
|
2545
2539
|
channelType: string;
|
|
2546
|
-
/**
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
status: "PENDING" | "DELIVERED" | "RETRY_PENDING" | "FAILED" | "CANCELLED";
|
|
2551
|
-
/**
|
|
2552
|
-
* @description Incident lifecycle event that triggered this delivery
|
|
2553
|
-
* @enum {string}
|
|
2554
|
-
*/
|
|
2555
|
-
eventType: "INCIDENT_CREATED" | "INCIDENT_RESOLVED" | "INCIDENT_REOPENED";
|
|
2540
|
+
/** @description Current delivery status */
|
|
2541
|
+
status: string;
|
|
2542
|
+
/** @description Incident lifecycle event that triggered this delivery */
|
|
2543
|
+
eventType: string;
|
|
2556
2544
|
/**
|
|
2557
2545
|
* Format: int32
|
|
2558
2546
|
* @description 1-based escalation step this delivery belongs to
|
|
@@ -2670,11 +2658,8 @@ export interface components {
|
|
|
2670
2658
|
type: string;
|
|
2671
2659
|
/** @description Whether the assertion passed */
|
|
2672
2660
|
passed: boolean;
|
|
2673
|
-
/**
|
|
2674
|
-
|
|
2675
|
-
* @enum {string}
|
|
2676
|
-
*/
|
|
2677
|
-
severity: "fail" | "warn";
|
|
2661
|
+
/** @description Assertion severity */
|
|
2662
|
+
severity: string;
|
|
2678
2663
|
/** @description Human-readable result message */
|
|
2679
2664
|
message?: string | null;
|
|
2680
2665
|
/**
|
|
@@ -2689,18 +2674,12 @@ export interface components {
|
|
|
2689
2674
|
actual?: string | null;
|
|
2690
2675
|
};
|
|
2691
2676
|
AssertionTestResultDto: {
|
|
2692
|
-
/**
|
|
2693
|
-
|
|
2694
|
-
* @enum {string}
|
|
2695
|
-
*/
|
|
2696
|
-
assertionType: "status_code" | "response_time" | "body_contains" | "json_path" | "header_value" | "regex_body" | "dns_resolves" | "dns_response_time" | "dns_expected_ips" | "dns_expected_cname" | "dns_record_contains" | "dns_record_equals" | "dns_txt_contains" | "dns_min_answers" | "dns_max_answers" | "dns_response_time_warn" | "dns_ttl_low" | "dns_ttl_high" | "mcp_connects" | "mcp_response_time" | "mcp_has_capability" | "mcp_tool_available" | "mcp_min_tools" | "mcp_protocol_version" | "mcp_response_time_warn" | "mcp_tool_count_changed" | "ssl_expiry" | "response_size" | "redirect_count" | "redirect_target" | "response_time_warn" | "tcp_connects" | "tcp_response_time" | "tcp_response_time_warn" | "icmp_reachable" | "icmp_response_time" | "icmp_response_time_warn" | "icmp_packet_loss" | "heartbeat_received" | "heartbeat_max_interval" | "heartbeat_interval_drift" | "heartbeat_payload_contains";
|
|
2677
|
+
/** @description Assertion type evaluated */
|
|
2678
|
+
assertionType: string;
|
|
2697
2679
|
/** @description Whether the assertion passed */
|
|
2698
2680
|
passed: boolean;
|
|
2699
|
-
/**
|
|
2700
|
-
|
|
2701
|
-
* @enum {string}
|
|
2702
|
-
*/
|
|
2703
|
-
severity: "fail" | "warn";
|
|
2681
|
+
/** @description Assertion severity: FAIL or WARN */
|
|
2682
|
+
severity: string;
|
|
2704
2683
|
/** @description Human-readable result description */
|
|
2705
2684
|
message: string;
|
|
2706
2685
|
/** @description Expected value */
|
|
@@ -4169,21 +4148,12 @@ export interface components {
|
|
|
4169
4148
|
* @description Organization this incident belongs to
|
|
4170
4149
|
*/
|
|
4171
4150
|
organizationId: number;
|
|
4172
|
-
/**
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
* @description Current lifecycle status (OPEN, RESOLVED, etc.)
|
|
4179
|
-
* @enum {string}
|
|
4180
|
-
*/
|
|
4181
|
-
status: "WATCHING" | "TRIGGERED" | "CONFIRMED" | "RESOLVED";
|
|
4182
|
-
/**
|
|
4183
|
-
* @description Severity level: DOWN, DEGRADED, or MAINTENANCE
|
|
4184
|
-
* @enum {string}
|
|
4185
|
-
*/
|
|
4186
|
-
severity: "DOWN" | "DEGRADED" | "MAINTENANCE";
|
|
4151
|
+
/** @description Incident origin: MONITOR, SERVICE, or MANUAL */
|
|
4152
|
+
source: string;
|
|
4153
|
+
/** @description Current lifecycle status (OPEN, RESOLVED, etc.) */
|
|
4154
|
+
status: string;
|
|
4155
|
+
/** @description Severity level: DOWN, DEGRADED, or MAINTENANCE */
|
|
4156
|
+
severity: string;
|
|
4187
4157
|
/** @description Short summary of the incident; null for auto-generated incidents */
|
|
4188
4158
|
title?: string | null;
|
|
4189
4159
|
/** @description Human-readable description of the trigger rule that fired */
|
|
@@ -4218,11 +4188,8 @@ export interface components {
|
|
|
4218
4188
|
affectedComponents?: string[] | null;
|
|
4219
4189
|
/** @description Short URL linking to the incident details */
|
|
4220
4190
|
shortlink?: string | null;
|
|
4221
|
-
/**
|
|
4222
|
-
|
|
4223
|
-
* @enum {string|null}
|
|
4224
|
-
*/
|
|
4225
|
-
resolutionReason?: "MANUAL" | "AUTO_RECOVERED" | "AUTO_RESOLVED" | null;
|
|
4191
|
+
/** @description How the incident was resolved (AUTO_RECOVERED, MANUAL, etc.) */
|
|
4192
|
+
resolutionReason?: string | null;
|
|
4226
4193
|
/**
|
|
4227
4194
|
* Format: date-time
|
|
4228
4195
|
* @description Timestamp when the incident was detected or created
|
|
@@ -4460,13 +4427,10 @@ export interface components {
|
|
|
4460
4427
|
id: string;
|
|
4461
4428
|
/** Format: uuid */
|
|
4462
4429
|
incidentId: string;
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
/** @enum {string|null} */
|
|
4466
|
-
newStatus?: "WATCHING" | "TRIGGERED" | "CONFIRMED" | "RESOLVED" | null;
|
|
4430
|
+
oldStatus?: string | null;
|
|
4431
|
+
newStatus?: string | null;
|
|
4467
4432
|
body?: string | null;
|
|
4468
|
-
|
|
4469
|
-
createdBy?: "SYSTEM" | "USER" | null;
|
|
4433
|
+
createdBy?: string | null;
|
|
4470
4434
|
notifySubscribers: boolean;
|
|
4471
4435
|
/** Format: date-time */
|
|
4472
4436
|
createdAt: string;
|
|
@@ -4481,8 +4445,7 @@ export interface components {
|
|
|
4481
4445
|
description: string;
|
|
4482
4446
|
logoUrl: string;
|
|
4483
4447
|
authType: string;
|
|
4484
|
-
|
|
4485
|
-
tierAvailability: "FREE" | "STARTER" | "PRO" | "TEAM" | "BUSINESS" | "ENTERPRISE";
|
|
4448
|
+
tierAvailability: string;
|
|
4486
4449
|
lifecycle: string;
|
|
4487
4450
|
setupGuideUrl: string;
|
|
4488
4451
|
configSchema: components["schemas"]["IntegrationConfigSchemaDto"];
|
|
@@ -4507,11 +4470,8 @@ export interface components {
|
|
|
4507
4470
|
inviteId: number;
|
|
4508
4471
|
/** @description Email address the invite was sent to */
|
|
4509
4472
|
email: string;
|
|
4510
|
-
/**
|
|
4511
|
-
|
|
4512
|
-
* @enum {string}
|
|
4513
|
-
*/
|
|
4514
|
-
roleOffered: "OWNER" | "ADMIN" | "MEMBER";
|
|
4473
|
+
/** @description Role that will be assigned to the invitee on acceptance */
|
|
4474
|
+
roleOffered: string;
|
|
4515
4475
|
/**
|
|
4516
4476
|
* Format: date-time
|
|
4517
4477
|
* @description Timestamp when the invite expires
|
|
@@ -4574,10 +4534,8 @@ export interface components {
|
|
|
4574
4534
|
statusPageName: string;
|
|
4575
4535
|
statusPageSlug: string;
|
|
4576
4536
|
title: string;
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
/** @enum {string} */
|
|
4580
|
-
impact: "NONE" | "MINOR" | "MAJOR" | "CRITICAL";
|
|
4537
|
+
status: string;
|
|
4538
|
+
impact: string;
|
|
4581
4539
|
scheduled: boolean;
|
|
4582
4540
|
/** Format: date-time */
|
|
4583
4541
|
publishedAt?: string | null;
|
|
@@ -4776,16 +4734,10 @@ export interface components {
|
|
|
4776
4734
|
email: string;
|
|
4777
4735
|
/** @description Member display name; null if not set */
|
|
4778
4736
|
name?: string | null;
|
|
4779
|
-
/**
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
orgRole: "OWNER" | "ADMIN" | "MEMBER";
|
|
4784
|
-
/**
|
|
4785
|
-
* @description Membership status (ACTIVE, PENDING, SUSPENDED)
|
|
4786
|
-
* @enum {string}
|
|
4787
|
-
*/
|
|
4788
|
-
status: "INVITED" | "ACTIVE" | "SUSPENDED" | "LEFT" | "REMOVED" | "DECLINED";
|
|
4737
|
+
/** @description Member role within this organization (OWNER, ADMIN, MEMBER) */
|
|
4738
|
+
orgRole: string;
|
|
4739
|
+
/** @description Membership status (ACTIVE, PENDING, SUSPENDED) */
|
|
4740
|
+
status: string;
|
|
4789
4741
|
/**
|
|
4790
4742
|
* Format: date-time
|
|
4791
4743
|
* @description Timestamp when the member was added to the organization
|
|
@@ -4815,11 +4767,9 @@ export interface components {
|
|
|
4815
4767
|
id: string;
|
|
4816
4768
|
/** Format: uuid */
|
|
4817
4769
|
monitorId: string;
|
|
4818
|
-
|
|
4819
|
-
assertionType: "status_code" | "response_time" | "body_contains" | "json_path" | "header_value" | "regex_body" | "dns_resolves" | "dns_response_time" | "dns_expected_ips" | "dns_expected_cname" | "dns_record_contains" | "dns_record_equals" | "dns_txt_contains" | "dns_min_answers" | "dns_max_answers" | "dns_response_time_warn" | "dns_ttl_low" | "dns_ttl_high" | "mcp_connects" | "mcp_response_time" | "mcp_has_capability" | "mcp_tool_available" | "mcp_min_tools" | "mcp_protocol_version" | "mcp_response_time_warn" | "mcp_tool_count_changed" | "ssl_expiry" | "response_size" | "redirect_count" | "redirect_target" | "response_time_warn" | "tcp_connects" | "tcp_response_time" | "tcp_response_time_warn" | "icmp_reachable" | "icmp_response_time" | "icmp_response_time_warn" | "icmp_packet_loss" | "heartbeat_received" | "heartbeat_max_interval" | "heartbeat_interval_drift" | "heartbeat_payload_contains";
|
|
4770
|
+
assertionType: string;
|
|
4820
4771
|
config: components["schemas"]["BodyContainsAssertion"] | components["schemas"]["DnsExpectedCnameAssertion"] | components["schemas"]["DnsExpectedIpsAssertion"] | components["schemas"]["DnsMaxAnswersAssertion"] | components["schemas"]["DnsMinAnswersAssertion"] | components["schemas"]["DnsRecordContainsAssertion"] | components["schemas"]["DnsRecordEqualsAssertion"] | components["schemas"]["DnsResolvesAssertion"] | components["schemas"]["DnsResponseTimeAssertion"] | components["schemas"]["DnsResponseTimeWarnAssertion"] | components["schemas"]["DnsTtlHighAssertion"] | components["schemas"]["DnsTtlLowAssertion"] | components["schemas"]["DnsTxtContainsAssertion"] | components["schemas"]["HeaderValueAssertion"] | components["schemas"]["HeartbeatIntervalDriftAssertion"] | components["schemas"]["HeartbeatMaxIntervalAssertion"] | components["schemas"]["HeartbeatPayloadContainsAssertion"] | components["schemas"]["HeartbeatReceivedAssertion"] | components["schemas"]["IcmpPacketLossAssertion"] | components["schemas"]["IcmpReachableAssertion"] | components["schemas"]["IcmpResponseTimeAssertion"] | components["schemas"]["IcmpResponseTimeWarnAssertion"] | components["schemas"]["JsonPathAssertion"] | components["schemas"]["McpConnectsAssertion"] | components["schemas"]["McpHasCapabilityAssertion"] | components["schemas"]["McpMinToolsAssertion"] | components["schemas"]["McpProtocolVersionAssertion"] | components["schemas"]["McpResponseTimeAssertion"] | components["schemas"]["McpResponseTimeWarnAssertion"] | components["schemas"]["McpToolAvailableAssertion"] | components["schemas"]["McpToolCountChangedAssertion"] | components["schemas"]["RedirectCountAssertion"] | components["schemas"]["RedirectTargetAssertion"] | components["schemas"]["RegexBodyAssertion"] | components["schemas"]["ResponseSizeAssertion"] | components["schemas"]["ResponseTimeAssertion"] | components["schemas"]["ResponseTimeWarnAssertion"] | components["schemas"]["SslExpiryAssertion"] | components["schemas"]["StatusCodeAssertion"] | components["schemas"]["TcpConnectsAssertion"] | components["schemas"]["TcpResponseTimeAssertion"] | components["schemas"]["TcpResponseTimeWarnAssertion"];
|
|
4821
|
-
|
|
4822
|
-
severity: "fail" | "warn";
|
|
4772
|
+
severity: string;
|
|
4823
4773
|
};
|
|
4824
4774
|
/** @description New authentication configuration (full replacement) */
|
|
4825
4775
|
MonitorAuthConfig: components["schemas"]["BearerAuthConfig"] | components["schemas"]["BasicAuthConfig"] | components["schemas"]["HeaderAuthConfig"] | components["schemas"]["ApiKeyAuthConfig"];
|
|
@@ -4828,8 +4778,7 @@ export interface components {
|
|
|
4828
4778
|
id: string;
|
|
4829
4779
|
/** Format: uuid */
|
|
4830
4780
|
monitorId: string;
|
|
4831
|
-
|
|
4832
|
-
authType: "bearer" | "basic" | "header" | "api_key";
|
|
4781
|
+
authType: string;
|
|
4833
4782
|
config: components["schemas"]["ApiKeyAuthConfig"] | components["schemas"]["BasicAuthConfig"] | components["schemas"]["BearerAuthConfig"] | components["schemas"]["HeaderAuthConfig"];
|
|
4834
4783
|
};
|
|
4835
4784
|
/** @description Full monitor representation */
|
|
@@ -4846,8 +4795,7 @@ export interface components {
|
|
|
4846
4795
|
organizationId: number;
|
|
4847
4796
|
/** @description Human-readable name for this monitor */
|
|
4848
4797
|
name: string;
|
|
4849
|
-
|
|
4850
|
-
type: "HTTP" | "DNS" | "MCP_SERVER" | "TCP" | "ICMP" | "HEARTBEAT";
|
|
4798
|
+
type: string;
|
|
4851
4799
|
config: components["schemas"]["DnsMonitorConfig"] | components["schemas"]["HeartbeatMonitorConfig"] | components["schemas"]["HttpMonitorConfig"] | components["schemas"]["IcmpMonitorConfig"] | components["schemas"]["McpServerMonitorConfig"] | components["schemas"]["TcpMonitorConfig"];
|
|
4852
4800
|
/**
|
|
4853
4801
|
* Format: int32
|
|
@@ -4858,11 +4806,8 @@ export interface components {
|
|
|
4858
4806
|
enabled: boolean;
|
|
4859
4807
|
/** @description Probe regions where checks are executed */
|
|
4860
4808
|
regions: string[];
|
|
4861
|
-
/**
|
|
4862
|
-
|
|
4863
|
-
* @enum {string}
|
|
4864
|
-
*/
|
|
4865
|
-
managedBy: "DASHBOARD" | "CLI" | "TERRAFORM" | "MCP" | "API";
|
|
4809
|
+
/** @description Source that created/owns this monitor: DASHBOARD, CLI, TERRAFORM, MCP, or API */
|
|
4810
|
+
managedBy: string;
|
|
4866
4811
|
/**
|
|
4867
4812
|
* Format: date-time
|
|
4868
4813
|
* @description Timestamp when the monitor was created
|
|
@@ -4884,11 +4829,8 @@ export interface components {
|
|
|
4884
4829
|
incidentPolicy?: components["schemas"]["IncidentPolicyDto"] | null;
|
|
4885
4830
|
/** @description Alert channel IDs linked to this monitor; populated on single-monitor responses */
|
|
4886
4831
|
alertChannelIds?: string[] | null;
|
|
4887
|
-
/**
|
|
4888
|
-
|
|
4889
|
-
* @enum {string|null}
|
|
4890
|
-
*/
|
|
4891
|
-
currentStatus?: "up" | "degraded" | "down" | "paused" | "unknown" | null;
|
|
4832
|
+
/** @description Current operational state — UP, DOWN, DEGRADED, PAUSED, or UNKNOWN if no probe data yet */
|
|
4833
|
+
currentStatus?: string | null;
|
|
4892
4834
|
};
|
|
4893
4835
|
/** @description Monitors that reference this secret; null on create/update responses */
|
|
4894
4836
|
MonitorReference: {
|
|
@@ -4990,11 +4932,8 @@ export interface components {
|
|
|
4990
4932
|
* @description User ID who made the change; null for automated changes
|
|
4991
4933
|
*/
|
|
4992
4934
|
changedById?: number | null;
|
|
4993
|
-
/**
|
|
4994
|
-
|
|
4995
|
-
* @enum {string}
|
|
4996
|
-
*/
|
|
4997
|
-
changedVia: "API" | "DASHBOARD" | "CLI" | "TERRAFORM";
|
|
4935
|
+
/** @description Change source (DASHBOARD, CLI, API) */
|
|
4936
|
+
changedVia: string;
|
|
4998
4937
|
/** @description Human-readable description of what changed */
|
|
4999
4938
|
changeSummary?: string | null;
|
|
5000
4939
|
/**
|
|
@@ -5029,16 +4968,10 @@ export interface components {
|
|
|
5029
4968
|
policyId: string;
|
|
5030
4969
|
/** @description Human-readable name of the matched policy (null if policy has been deleted) */
|
|
5031
4970
|
policyName?: string | null;
|
|
5032
|
-
/**
|
|
5033
|
-
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
status: "PENDING" | "DISPATCHING" | "DELIVERED" | "ESCALATING" | "ACKNOWLEDGED" | "COMPLETED";
|
|
5037
|
-
/**
|
|
5038
|
-
* @description Why the dispatch reached COMPLETED: EXHAUSTED (all steps ran, no ack), RESOLVED (incident resolved), NO_STEPS (policy had no steps). Null for non-terminal states.
|
|
5039
|
-
* @enum {string|null}
|
|
5040
|
-
*/
|
|
5041
|
-
completionReason?: "EXHAUSTED" | "RESOLVED" | "NO_STEPS" | null;
|
|
4971
|
+
/** @description Current dispatch state */
|
|
4972
|
+
status: string;
|
|
4973
|
+
/** @description Why the dispatch reached COMPLETED: EXHAUSTED (all steps ran, no ack), RESOLVED (incident resolved), NO_STEPS (policy had no steps). Null for non-terminal states. */
|
|
4974
|
+
completionReason?: string | null;
|
|
5042
4975
|
/**
|
|
5043
4976
|
* Format: int32
|
|
5044
4977
|
* @description 1-based index of the currently active escalation step
|
|
@@ -5445,11 +5378,8 @@ export interface components {
|
|
|
5445
5378
|
* @description Default environment ID for member monitors
|
|
5446
5379
|
*/
|
|
5447
5380
|
defaultEnvironmentId?: string | null;
|
|
5448
|
-
/**
|
|
5449
|
-
|
|
5450
|
-
* @enum {string|null}
|
|
5451
|
-
*/
|
|
5452
|
-
healthThresholdType?: "COUNT" | "PERCENTAGE" | null;
|
|
5381
|
+
/** @description Health threshold type: COUNT or PERCENTAGE */
|
|
5382
|
+
healthThresholdType?: string | null;
|
|
5453
5383
|
/** @description Health threshold value */
|
|
5454
5384
|
healthThresholdValue?: number | null;
|
|
5455
5385
|
/** @description When true, member-level incidents skip notification dispatch; only group alerts fire */
|
|
@@ -5467,11 +5397,8 @@ export interface components {
|
|
|
5467
5397
|
health: components["schemas"]["ResourceGroupHealthDto"];
|
|
5468
5398
|
/** @description Member list with individual statuses; populated on detail GET only */
|
|
5469
5399
|
members?: components["schemas"]["ResourceGroupMemberDto"][] | null;
|
|
5470
|
-
/**
|
|
5471
|
-
|
|
5472
|
-
* @enum {string|null}
|
|
5473
|
-
*/
|
|
5474
|
-
managedBy?: "DASHBOARD" | "CLI" | "TERRAFORM" | "MCP" | "API" | null;
|
|
5400
|
+
/** @description Source that created/owns this group: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on groups created before this attribution column existed. */
|
|
5401
|
+
managedBy?: string | null;
|
|
5475
5402
|
/**
|
|
5476
5403
|
* Format: date-time
|
|
5477
5404
|
* @description Timestamp when the group was created
|
|
@@ -5485,11 +5412,8 @@ export interface components {
|
|
|
5485
5412
|
};
|
|
5486
5413
|
/** @description Aggregated health summary for a resource group */
|
|
5487
5414
|
ResourceGroupHealthDto: {
|
|
5488
|
-
/**
|
|
5489
|
-
|
|
5490
|
-
* @enum {string}
|
|
5491
|
-
*/
|
|
5492
|
-
status: "operational" | "maintenance" | "degraded" | "down";
|
|
5415
|
+
/** @description Worst-of health status across all members */
|
|
5416
|
+
status: string;
|
|
5493
5417
|
/**
|
|
5494
5418
|
* Format: int32
|
|
5495
5419
|
* @description Total number of members in the group
|
|
@@ -5505,11 +5429,8 @@ export interface components {
|
|
|
5505
5429
|
* @description Number of members with an active incident or non-operational status
|
|
5506
5430
|
*/
|
|
5507
5431
|
activeIncidents: number;
|
|
5508
|
-
/**
|
|
5509
|
-
|
|
5510
|
-
* @enum {string|null}
|
|
5511
|
-
*/
|
|
5512
|
-
thresholdStatus?: "healthy" | "degraded" | "down" | null;
|
|
5432
|
+
/** @description Computed group health status based on threshold: 'healthy', 'degraded', or 'down'. Null when no health threshold is configured. */
|
|
5433
|
+
thresholdStatus?: string | null;
|
|
5513
5434
|
/**
|
|
5514
5435
|
* Format: int32
|
|
5515
5436
|
* @description Number of failing members at time of last evaluation
|
|
@@ -5549,11 +5470,8 @@ export interface components {
|
|
|
5549
5470
|
* @description Subscription ID for the service (services only); used to link to the dependency detail page
|
|
5550
5471
|
*/
|
|
5551
5472
|
subscriptionId?: string | null;
|
|
5552
|
-
/**
|
|
5553
|
-
|
|
5554
|
-
* @enum {string}
|
|
5555
|
-
*/
|
|
5556
|
-
status: "operational" | "maintenance" | "degraded" | "down";
|
|
5473
|
+
/** @description Computed health status for this member */
|
|
5474
|
+
status: string;
|
|
5557
5475
|
/** @description Effective check frequency label showing the group default when the monitor inherits it; null for services or when no group default is configured */
|
|
5558
5476
|
effectiveFrequency?: string | null;
|
|
5559
5477
|
/**
|
|
@@ -5617,11 +5535,8 @@ export interface components {
|
|
|
5617
5535
|
};
|
|
5618
5536
|
/** @description Dashboard summary: current status, per-region latest results, and chart data */
|
|
5619
5537
|
ResultSummaryDto: {
|
|
5620
|
-
/**
|
|
5621
|
-
|
|
5622
|
-
* @enum {string}
|
|
5623
|
-
*/
|
|
5624
|
-
currentStatus: "up" | "degraded" | "down" | "paused" | "unknown";
|
|
5538
|
+
/** @description Derived current status across all regions */
|
|
5539
|
+
currentStatus: string;
|
|
5625
5540
|
/** @description Latest check result per region */
|
|
5626
5541
|
latestPerRegion: components["schemas"]["RegionStatusDto"][];
|
|
5627
5542
|
/** @description Time-bucketed chart data for the requested window */
|
|
@@ -6113,11 +6028,8 @@ export interface components {
|
|
|
6113
6028
|
*/
|
|
6114
6029
|
componentId?: string | null;
|
|
6115
6030
|
component?: components["schemas"]["ServiceComponentDto"] | null;
|
|
6116
|
-
/**
|
|
6117
|
-
|
|
6118
|
-
* @enum {string}
|
|
6119
|
-
*/
|
|
6120
|
-
alertSensitivity: "ALL" | "INCIDENTS_ONLY" | "MAJOR_ONLY";
|
|
6031
|
+
/** @description Alert sensitivity: ALL (synthetic + real incidents), INCIDENTS_ONLY (real vendor incidents, default), MAJOR_ONLY (real + DOWN severity) */
|
|
6032
|
+
alertSensitivity: string;
|
|
6121
6033
|
/**
|
|
6122
6034
|
* Format: date-time
|
|
6123
6035
|
* @description When the organization subscribed to this service
|
|
@@ -6404,14 +6316,12 @@ export interface components {
|
|
|
6404
6316
|
groupId?: string | null;
|
|
6405
6317
|
name: string;
|
|
6406
6318
|
description?: string | null;
|
|
6407
|
-
|
|
6408
|
-
type: "MONITOR" | "GROUP" | "STATIC";
|
|
6319
|
+
type: string;
|
|
6409
6320
|
/** Format: uuid */
|
|
6410
6321
|
monitorId?: string | null;
|
|
6411
6322
|
/** Format: uuid */
|
|
6412
6323
|
resourceGroupId?: string | null;
|
|
6413
|
-
|
|
6414
|
-
currentStatus: "OPERATIONAL" | "DEGRADED_PERFORMANCE" | "PARTIAL_OUTAGE" | "MAJOR_OUTAGE" | "UNDER_MAINTENANCE";
|
|
6324
|
+
currentStatus: string;
|
|
6415
6325
|
showUptime: boolean;
|
|
6416
6326
|
/** Format: int32 */
|
|
6417
6327
|
displayOrder: number;
|
|
@@ -6447,10 +6357,8 @@ export interface components {
|
|
|
6447
6357
|
/** Format: uuid */
|
|
6448
6358
|
id: string;
|
|
6449
6359
|
hostname: string;
|
|
6450
|
-
|
|
6451
|
-
|
|
6452
|
-
/** @enum {string} */
|
|
6453
|
-
verificationMethod: "CNAME" | "TXT";
|
|
6360
|
+
status: string;
|
|
6361
|
+
verificationMethod: string;
|
|
6454
6362
|
verificationToken: string;
|
|
6455
6363
|
verificationCnameTarget: string;
|
|
6456
6364
|
/** Format: date-time */
|
|
@@ -6477,22 +6385,16 @@ export interface components {
|
|
|
6477
6385
|
slug: string;
|
|
6478
6386
|
description?: string | null;
|
|
6479
6387
|
branding: components["schemas"]["StatusPageBranding"];
|
|
6480
|
-
|
|
6481
|
-
visibility: "PUBLIC" | "PASSWORD" | "IP_RESTRICTED";
|
|
6388
|
+
visibility: string;
|
|
6482
6389
|
enabled: boolean;
|
|
6483
|
-
|
|
6484
|
-
incidentMode: "MANUAL" | "REVIEW" | "AUTOMATIC";
|
|
6390
|
+
incidentMode: string;
|
|
6485
6391
|
/** Format: int32 */
|
|
6486
6392
|
componentCount?: number | null;
|
|
6487
6393
|
/** Format: int64 */
|
|
6488
6394
|
subscriberCount?: number | null;
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
* @description Source that created/owns this status page: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on pages created before this attribution column existed.
|
|
6493
|
-
* @enum {string|null}
|
|
6494
|
-
*/
|
|
6495
|
-
managedBy?: "DASHBOARD" | "CLI" | "TERRAFORM" | "MCP" | "API" | null;
|
|
6395
|
+
overallStatus?: string | null;
|
|
6396
|
+
/** @description Source that created/owns this status page: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on pages created before this attribution column existed. */
|
|
6397
|
+
managedBy?: string | null;
|
|
6496
6398
|
/** Format: date-time */
|
|
6497
6399
|
createdAt: string;
|
|
6498
6400
|
/** Format: date-time */
|
|
@@ -6501,8 +6403,7 @@ export interface components {
|
|
|
6501
6403
|
StatusPageIncidentComponentDto: {
|
|
6502
6404
|
/** Format: uuid */
|
|
6503
6405
|
statusPageComponentId: string;
|
|
6504
|
-
|
|
6505
|
-
componentStatus: "OPERATIONAL" | "DEGRADED_PERFORMANCE" | "PARTIAL_OUTAGE" | "MAJOR_OUTAGE" | "UNDER_MAINTENANCE";
|
|
6406
|
+
componentStatus: string;
|
|
6506
6407
|
componentName: string;
|
|
6507
6408
|
};
|
|
6508
6409
|
StatusPageIncidentDto: {
|
|
@@ -6511,10 +6412,8 @@ export interface components {
|
|
|
6511
6412
|
/** Format: uuid */
|
|
6512
6413
|
statusPageId: string;
|
|
6513
6414
|
title: string;
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
/** @enum {string} */
|
|
6517
|
-
impact: "NONE" | "MINOR" | "MAJOR" | "CRITICAL";
|
|
6415
|
+
status: string;
|
|
6416
|
+
impact: string;
|
|
6518
6417
|
scheduled: boolean;
|
|
6519
6418
|
/** Format: date-time */
|
|
6520
6419
|
scheduledFor?: string | null;
|
|
@@ -6543,11 +6442,9 @@ export interface components {
|
|
|
6543
6442
|
StatusPageIncidentUpdateDto: {
|
|
6544
6443
|
/** Format: uuid */
|
|
6545
6444
|
id: string;
|
|
6546
|
-
|
|
6547
|
-
status: "INVESTIGATING" | "IDENTIFIED" | "MONITORING" | "RESOLVED";
|
|
6445
|
+
status: string;
|
|
6548
6446
|
body: string;
|
|
6549
|
-
|
|
6550
|
-
createdBy?: "USER" | "SYSTEM" | null;
|
|
6447
|
+
createdBy?: string | null;
|
|
6551
6448
|
/** Format: int32 */
|
|
6552
6449
|
createdByUserId?: number | null;
|
|
6553
6450
|
notifySubscribers: boolean;
|