Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame^] | 1 | /// <reference types="Cypress" /> |
2 | |||||
3 | export 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; | ||||
26 | |||||
27 | } |