blob: a507e073e1e996458857d46cd3de2a2a2ad56e02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import {ServiceStatus} from '../../../instantiationStatus/instantiationStatus.component.service';
import {ServiceAction} from "../../models/serviceInstanceActions";
export class ServiceInfoModel {
id: number;
created: Date;
modified: Date;
createdId: number;
modifiedId: number;
numRow: number;
uuid: string;
userId: string;
requestId: string;
aLaCarte: boolean;
jobStatus: string;
pause: boolean;
owningEntityId: string;
owningEntityName: string;
project: string;
aicZoneId: string;
aicZoneName: string;
tenantId: string;
tenantName: string;
regionId: string;
regionName: string;
serviceType: string;
subscriberName: string;
subscriberId: string;
serviceInstanceId: string;
serviceInstanceName: string;
serviceModelId: string;
serviceModelName: string;
serviceModelVersion: string;
templateId: string;
auditUserId: string;
jobId: string;
action: ServiceAction;
isRetryEnabled: boolean;
}
export class ServiceInfoUiModel extends ServiceInfoModel{
serviceStatus : ServiceStatus;
serviceIndex : number;
}
|