forked from open-policy-agent/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanagement.html
33 lines (32 loc) · 904 Bytes
/
management.html
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
<!DOCTYPE html>
<html>
<head>
<title>Open Policy Agent (OPA) REST API (management)</title>
<!-- needed for adaptive design -->
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
<!--
ReDoc doesn't change outer page styles
-->
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id='redoc'> </div>
<script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"></script>
<script>Redoc.init('management.yaml', {
noAutoAuth: true,
sortPropsAlphabetically: true,
theme: {
spacing: {
sectionVertical: 5
}
}
}, document.getElementById('redoc'));</script>
</body>
</html>