forked from openBackhaul/ApplicationPattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ApplicationPattern+services.yaml
293 lines (279 loc) · 9.77 KB
/
ApplicationPattern+services.yaml
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
servers:
## TODO: Search and replace all "xx" in the uuid by the official abbreviation of the ApplicationName
operation-servers:
own-oam:
basic:
- operation-name: /v1/register-yourself
uuid: xx-1-0-0-op-s-bm-000
- operation-name: /v1/embed-yourself
uuid: xx-1-0-0-op-s-bm-001
- operation-name: /v1/redirect-service-request-information
uuid: xx-1-0-0-op-s-bm-002
- operation-name: /v1/redirect-oam-request-information
uuid: xx-1-0-0-op-s-bm-003
- operation-name: /v1/end-subscription
uuid: xx-1-0-0-op-s-bm-004
- operation-name: /v1/inquire-oam-request-approvals
uuid: xx-1-0-0-op-s-bm-005
- operation-name: /v1/update-client
uuid: xx-1-0-0-op-s-bm-007
- operation-name: /v1/list-ltps-and-fcs
uuid: xx-1-0-0-op-s-bm-008
- operation-name: /v1/redirect-topology-change-information
uuid: xx-1-0-0-op-s-bm-009
- operation-name: /v1/update-operation-key
uuid: xx-1-0-0-op-s-bm-010
- operation-name: /v1/update-operation-client
uuid: xx-1-0-0-op-s-bm-011
individual:
- operation-name: /v1/bequeath-your-data-and-die
uuid: xx-1-0-0-op-s-im-000
service:
basic:
- operation-name: /v1/start-application-in-generic-representation
uuid: xx-1-0-0-op-s-bs-000
- operation-name: /v1/inform-about-application
uuid: xx-1-0-0-op-s-bs-001
- operation-name: /v1/inform-about-application-in-generic-representation
uuid: xx-1-0-0-op-s-bs-002
- operation-name: /v1/inform-about-release-history
uuid: xx-1-0-0-op-s-bs-003
- operation-name: /v1/inform-about-release-history-in-generic-representation
uuid: xx-1-0-0-op-s-bs-004
- operation-name: /docs
uuid: xx-1-0-0-op-s-bs-005
individual:
## TODO: Add Services specific to this application
http-server:
own-application-name: ## TODO: Add OwnApplicationName
own-release-number: ## TODO: Add OwnReleaseNumber (e.g. 1.0.0)
uuid: xx-1-0-0-http-s-000
tcp-server:
- description: Without TLS layer
local-protocol: http
own-ip-address: ## TODO: Add OwnIpAddress
own-tcp-port: ## TODO: Add OwnTcpPort
uuid: xx-1-0-0-tcp-s-000
- description: With TLS layer
local-protocol: https
own-ip-address: ## TODO: Add OwnIpAddress
own-tcp-port: ## TODO: Add OwnTcpPort
uuid: xx-1-0-0-tcp-s-001
clients:
- http-client:
application-name: ElasticSearch
release-number: 1.0.0
uuid: xx-1-0-0-http-c-es-1-0-0-000
tcp-client:
remote-protocol: http
ip-address: 1.1.3.15
tcp-port: 3015
uuid: xx-1-0-0-tcp-c-es-1-0-0-000
elasticsearch-client:
uuid: xx-1-0-0-es-c-es-1-0-0-000
index-alias: ## TODO: Add IndexAlias
- http-client:
application-name: OldRelease
release-number: ## TODO: Add Number of Release to be substituted (e.g. 1.0.0)
uuid: xx-1-0-0-http-c-or-1-0-0-000
tcp-client:
remote-protocol: http
ip-address: ## TODO: Add IpAddress of Release to be substituted
tcp-port: ## TODO: Add TcpPort of Release to be substituted
uuid: xx-1-0-0-tcp-c-or-1-0-0-000
operation-clients:
own-oam:
basic:
- operation-name: /v1/bequeath-your-data-and-die
uuid: xx-1-0-0-op-c-bm-or-1-0-0-000
individual:
service:
basic:
individual:
- http-client:
application-name: NewRelease
release-number: ## TODO: Add Number of substituting Release (e.g. 1.0.1)
uuid: xx-1-0-0-http-c-nr-1-0-0-000
tcp-client:
remote-protocol: http
ip-address: ## TODO: Add IpAddress of substituting Release
tcp-port: ## TODO: Add TcpPort of substituting Release
uuid: xx-1-0-0-tcp-c-nr-1-0-0-000
operation-clients:
own-oam:
basic:
individual:
## TODO: Add Services required for handing-over configuration or data during update
service:
basic:
individual:
- http-client:
application-name: RegistryOffice
release-number: 2.0.1
uuid: xx-1-0-0-http-c-ro-2-0-1-000
tcp-client:
remote-protocol: http
ip-address: 1.1.3.8
tcp-port: 3008
uuid: xx-1-0-0-tcp-c-ro-2-0-1-000
operation-clients:
own-oam:
basic:
- operation-name: /v1/register-application
uuid: xx-1-0-0-op-c-bm-ro-2-0-1-000
- operation-name: /v1/relay-server-replacement
uuid: xx-1-0-0-op-c-bm-ro-2-0-1-001
- operation-name: /v1/deregister-application
uuid: xx-1-0-0-op-c-bm-ro-2-0-1-002
- operation-name: /v1/relay-operation-update
uuid: xx-1-0-0-op-c-bm-ro-2-0-1-003
individual:
service:
basic:
## TODO: Add Clients specific to this application, but addressing all other applications
individual:
## TODO: Add Clients specific to this application
- http-client:
application-name: TypeApprovalRegister
release-number: 2.0.1
uuid: xx-1-0-0-http-c-tar-2-0-1-000
tcp-client:
remote-protocol: http
ip-address: 1.1.3.9
tcp-port: 3009
uuid: xx-1-0-0-tcp-c-tar-2-0-1-000
operation-clients:
own-oam:
basic:
individual:
service:
basic:
## TODO: Add Clients specific to this application, but addressing all other applications
individual:
## TODO: Add Clients specific to this application
- http-client:
application-name: ExecutionAndTraceLog
release-number: 2.0.1
uuid: xx-1-0-0-http-c-eatl-2-0-1-000
tcp-client:
remote-protocol: http
ip-address: 1.1.3.10
tcp-port: 3010
uuid: xx-1-0-0-tcp-c-eatl-2-0-1-000
operation-clients:
own-oam:
basic:
- operation-name: /v1/record-service-request
uuid: xx-1-0-0-op-c-bs-eatl-2-0-1-000
individual:
service:
basic:
## TODO: Add Clients specific to this application, but addressing all other applications
individual:
## TODO: Add Clients specific to this application
- http-client:
application-name: OamLog
release-number: 2.0.1
uuid: xx-1-0-0-http-c-ol-2-0-1-000
tcp-client:
remote-protocol: http
ip-address: 1.1.3.11
tcp-port: 3011
uuid: xx-1-0-0-tcp-c-ol-2-0-1-000
operation-clients:
own-oam:
basic:
- operation-name: /v1/record-oam-request
uuid: xx-1-0-0-op-c-bs-ol-2-0-1-000
individual:
service:
basic:
## TODO: Add Clients specific to this application, but addressing all other applications
individual:
## TODO: Add Clients specific to this application
- http-client:
application-name: AdministratorAdministration
release-number: 2.0.1
uuid: xx-1-0-0-http-c-aa-2-0-1-000
tcp-client:
remote-protocol: http
ip-address: 1.1.3.12
tcp-port: 3012
uuid: xx-1-0-0-tcp-c-aa-2-0-1-000
operation-clients:
own-oam:
basic:
- operation-name: /v1/approve-oam-request
uuid: xx-1-0-0-op-c-bs-aa-2-0-1-000
individual:
service:
basic:
## TODO: Add Clients specific to this application, but addressing all other applications
individual:
## TODO: Add Clients specific to this application
- http-client:
application-name: ApplicationLayerTopology
release-number: 2.0.1
uuid: xx-1-0-0-http-c-alt-2-0-1-000
tcp-client:
remote-protocol: http
ip-address: 1.1.3.13
tcp-port: 3013
uuid: xx-1-0-0-tcp-c-alt-2-0-1-000
operation-clients:
own-oam:
basic:
- operation-name: /v1/update-all-ltps-and-fcs
uuid: xx-1-0-0-op-c-bm-alt-2-0-1-000
- operation-name: /v1/update-ltp
uuid: xx-1-0-0-op-c-bm-alt-2-0-1-001
- operation-name: /v1/delete-ltp-and-dependents
uuid: xx-1-0-0-op-c-bm-alt-2-0-1-002
- operation-name: /v1/update-fc
uuid: xx-1-0-0-op-c-bm-alt-2-0-1-003
- operation-name: /v1/update-fc-port
uuid: xx-1-0-0-op-c-bm-alt-2-0-1-004
- operation-name: /v1/delete-fc-port
uuid: xx-1-0-0-op-c-bm-alt-2-0-1-005
individual:
service:
basic:
## TODO: Add Clients specific to this application, but addressing all other applications
individual:
## TODO: Add Clients specific to this application
- http-client:
application-name: OperationKeyManagement
release-number: 2.0.1
uuid: xx-1-0-0-http-c-okm-2-0-1-000
tcp-client:
remote-protocol: http
ip-address: 1.1.3.14
tcp-port: 3014
uuid: xx-1-0-0-tcp-c-okm-2-0-1-000
operation-clients:
own-oam:
basic:
individual:
service:
basic:
## TODO: Add Clients specific to this application, but addressing all other applications
individual:
## TODO: Add Clients specific to this application
- http-client:
application-name: ## TODO: Add Name of application to be addressed
release-number: ## TODO: Add Release number of application to be addressed
uuid: ## TODO: Add UUID of the HttpClient
tcp-client:
remote-protocol: http
ip-address: ## TODO: Add IP address of application to be addressed
tcp-port: ## TODO: Add TCP port of application to be addressed
uuid: ## TODO: Add UUID of the TcpClient
operation-clients:
own-oam:
basic:
individual:
service:
basic:
## TODO: Add Clients specific to this application, but addressing all other applications
individual:
## TODO: Add Clients specific to this application