aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/cypress/support/jsonBuilders/models/service.model.ts
blob: af12dfbeb4c9e84bfa2c83234e7b913d65477dfb (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
/// <reference types="Cypress" />

export class ServiceModel{
  service: {
    uuid: string;
    invariantUuid: string;
    name: string;
    version: string;
    toscaModelURL: string;
    category: string;
    serviceType: string;
    serviceRole: string;
    description: string;
    serviceEcompNaming : string;
    instantiationType: string;
    inputs: Object;
  };
  vnfs: Object;
  networks: Object;
  collectionResource: Object;
  configurations: Object;
  serviceProxies: Object;
  vfModules: Object;
  volumeGroups: Object;
  pnfs:Object;

}