X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Finterfaces%2Fe2-mgr.types.ts;h=c007d8699776e8169880e18ba3cf1c05a628800f;hb=5b686151904e2582ea9ce9d2f1c6abb7a400afa5;hp=70256d2fcbd9d8b79533dd7b210332d3a2d27db0;hpb=bffcaa3e3e4980a254ae9398fd616c96a9ad94f1;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/interfaces/e2-mgr.types.ts b/webapp-frontend/src/app/interfaces/e2-mgr.types.ts index 70256d2f..c007d869 100644 --- a/webapp-frontend/src/app/interfaces/e2-mgr.types.ts +++ b/webapp-frontend/src/app/interfaces/e2-mgr.types.ts @@ -30,3 +30,30 @@ export interface E2ErrorResponse { errorCode: string; errorMessage: string; } + +export interface E2NodebIdentityGlobalNbId { + nbId: string; + plmnId: string; +} + +export interface E2NodebIdentity { + inventoryName: string; + globalNbId: E2NodebIdentityGlobalNbId; +} + +export interface E2GetNodebResponse { + connectionStatus: string; // actually one-of, but model as string + enb: object; // don't model this until needed + failureType: string; // actually one-of, butmodel as string + gnb: object; // don't model this until needed + ip: string; + nodeType: object; // actually one-of, but model as string + port: number; // actually integer + ranName: string; + setupFailure: object; // don't model this until needed +} + +export interface E2RanDetails { + nodebIdentity: E2NodebIdentity; + nodebStatus: E2GetNodebResponse; +}