-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
As a user of scl-diff
I would like to have the SCL element AccessPoint
description.
** Requirements **
- return a
AccessPoint
type Cert {
/** Cert attribute commonName */
commonName: string;
/** Cert attribute idHierarchy */
idHierarchy: string;
}
type Certificate extends NamingDescription {
/** Certificate attribute xferNumber */
xferNumber?: number;
/** Certificate attribute serialNumber */
serialNumber: boolean;
/** Certificate child Subject */
subject: Cert;
/** Certificate child IssuerName */
issuerName: Cert;
}
export AccessPointDescription extends NamingDescription {
/** AccessPoint attribute router defaulted false */
router: boolean
/** AccessPoint attribute clock defaulted false */
clock: boolean
/** AccessPoint attribute kdc defaulted false */
kdc: boolean
/** AccessPoint child Services */
services?: ServicesDescription;
/** AccessPoint child Server */
server?: ServerDescription;
/** AccessPoint children ServerAt */
serverAt: ServerDescription;
/** AccessPoint children LN */
lns: Record<string, LNDescription>;
/** AccessPoint children GOOSESecurity */
gseSecuritys: Record<string, Certificate>:
/** AccessPoint children SMVSecurity */
smvSecuritys: Record<string, Certificate>:
}
Metadata
Metadata
Assignees
Labels
No labels