Update service data model to include requiresDomain and domain status fields.

This commit is contained in:
Sovran_Systems
2026-04-04 09:27:06 -05:00
parent b6be88d01f
commit f49a542ddf

15
path/to/service_model.js Normal file
View File

@@ -0,0 +1,15 @@
// Update the service data model to include requiresDomain and domain status fields.
class Service {
String name;
boolean requiresDomain;
DomainStatus domainStatus;
}
// Enum to represent domain status health checks for services
enum DomainStatus {
MISSING,
MISCONFIGURED,
CONNECTED,
UNKNOWN
}