-
Notifications
You must be signed in to change notification settings - Fork 261
/
Egeria-engine-host-services.http
46 lines (38 loc) · 2.35 KB
/
Egeria-engine-host-services.http
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
# Egeria-engine-host-services
# The Engine Host Services provide the core subsystem for the Engine Host OMAG Server.
# Further Information: https://egeria-project.org/services/engine-host-services/
@baseURL=https://localhost:9443
@server=engine-host
@user=peterprofile
@governanceEngineName=AssetSurvey
@serviceURLMarker=governance-action
###
# @name getGovernanceEngineSummary
# Retrieve the description and status of the requested governance engine.
# Further Information: https://egeria-project.org/concepts/governance-engine/
GET {{baseURL}}/servers/{{server}}/open-metadata/engine-host/users/{{user}}/governance-engines/{{governanceEngineName}}/summary
###
# @name getGovernanceEngineSummaries
# Return a summary of each of the governance engines running in the Engine Host.
# Further Information: https://egeria-project.org/concepts/governance-engine/
GET {{baseURL}}/servers/{{server}}/open-metadata/engine-host/users/{{user}}/governance-engines/summary
###
# @name getGovernanceServiceSummary
# Retrieve the description and status of each governance engine assigned to a specific Open Metadata Engine Service (OMES).
# Further Information: https://egeria-project.org/concepts/governance-engine/
GET {{baseURL}}/servers/{{server}}/open-metadata/engine-host/users/{{user}}/engine-service/{{serviceURLMarker}}/governance-engines/summary
###
# @name refreshConfig
# Request that the governance engine refresh its configuration by calling the metadata server.
# This request is useful if the metadata server has an outage, particularly while the
# governance server is initializing. This request just ensures that the latest configuration is in use.
# Further Information: https://egeria-project.org/concepts/governance-engine-definition/
GET {{baseURL}}/servers/{{server}}/open-metadata/engine-host/users/{{user}}/governance-engines/{{governanceEngineName}}/refresh-config
###
# @name refreshConfig (ALL)
# Request that all governance engines refresh their configuration by calling the metadata server.
# This request is useful if the metadata server has an outage, particularly while the
# governance server is initializing. This request just ensures that the latest configuration is in use.
# Further Information: https://egeria-project.org/concepts/governance-engine-definition/
GET {{baseURL}}/servers/{{server}}/open-metadata/engine-host/users/{{user}}/governance-engines/refresh-config
###