Upgrade App Manager to version 0.1.5
[portal/ric-dashboard.git] / webapp-frontend / src / app / interfaces / app-mgr.types.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 // Models of data used by the App Manager
22
23 export interface XMSubscription {
24   eventType: string;
25   id: string;
26   maxRetries: number;
27   retryTimer: number;
28   targetUrl: string;
29 }
30
31 export interface XMXappInfo {
32   xAppName: string;
33 }
34
35 export interface XMXappInstance {
36   ip: string;
37   name: string;
38   port: number;
39   status: string;
40   rxMessages: Array<string>;
41   txMessages: Array<string>;
42 }
43
44 export interface XMDeployableApp {
45   name: string;
46   version: string;
47 }
48
49 export interface XMDeployedApp {
50   name: string;
51   status: string;
52   version: string;
53   instances: Array<XMXappInstance>;
54 }
55
56 export interface XappControlRow {
57   xapp: string;
58   instance: XMXappInstance;
59 }