blob: 3c67112cbe34cc908ed4bf7ce6604387543949aa [file] [log] [blame]
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +03001/// <reference types="Cypress" />
2
3export class ServiceModel{
4 service: {
5 uuid: string;
6 invariantUuid: string;
7 name: string;
8 version: string;
9 toscaModelURL: string;
10 category: string;
11 serviceType: string;
12 serviceRole: string;
13 description: string;
14 serviceEcompNaming : string;
15 instantiationType: string;
16 inputs: Object;
17 };
18 vnfs: Object;
19 networks: Object;
20 collectionResource: Object;
21 configurations: Object;
22 serviceProxies: Object;
23 vfModules: Object;
24 volumeGroups: Object;
25 pnfs:Object;
Ittay Stern6f900cc2018-08-29 17:01:32 +030026 vnfGroups: Object;
27
28 constructor(){
29 this.service = <any>{};
30 this.vnfs = {};
31 this.networks= {};
32 this.collectionResource = {};
33 this.configurations = {};
34 this.serviceProxies = {};
35 this.vfModules = {};
36 this.volumeGroups = {};
37 this.pnfs = {};
38 this.vnfGroups = {};
39 }
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030040
41}