-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserviceGraph_schema.json
99 lines (72 loc) · 1.65 KB
/
serviceGraph_schema.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"title":"user_service_graph",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Document name"
},
"token": {
"type": "string",
"description": "Authentication token"
},
"TVDid": {
"type": "string",
"description": "Unique TVD identifier for the user's TVD"
},
"PSAs": {
"type": "array",
"description": "List of VMs to be deployed",
"items": {
"type": "object",
"properties": {
"id":{
"type": "string",
"description": "PSA id"
},
"img":{
"type": "object",
"description": "VMs image to be deployed and associated metadata",
"properties": {
"imgName": {
"type": "string",
"description": "Image repo name/URI"
},
"disk": {
"type": "integer",
"description": "Deployed image size in MB"
}
}
},
"cpu":{
"type": "integer",
"description": "Integer expressing in # of cores the vcpu to be allocated to the VM"
},
"mem":{
"type": "integer",
"description": "Integer expressing in MB the RAM to be allocated to the VM"
},
"conf":{
"type": "string",
"description": "URI to the user specific configuration to be sent to the PSC"
},
"required":["id","conf"]
}
}
},
"ingress_flow": {
"type": "array",
"description": "PSAs sequence for ingress flow",
"items": {
"type": "string"
}
},
"egress_flow": {
"type": "array",
"description": "PSAs sequence for egress flow",
"items": {
"type": "string"
}
}
}
}