aboutsummaryrefslogtreecommitdiffstats
path: root/postgresql-prep/src/stage/opt/app/postgresql-prep/man
diff options
context:
space:
mode:
Diffstat (limited to 'postgresql-prep/src/stage/opt/app/postgresql-prep/man')
-rw-r--r--postgresql-prep/src/stage/opt/app/postgresql-prep/man/iDNS-responder.swagger.json58
-rw-r--r--postgresql-prep/src/stage/opt/app/postgresql-prep/man/iDNS-responder.swagger.yaml68
2 files changed, 126 insertions, 0 deletions
diff --git a/postgresql-prep/src/stage/opt/app/postgresql-prep/man/iDNS-responder.swagger.json b/postgresql-prep/src/stage/opt/app/postgresql-prep/man/iDNS-responder.swagger.json
new file mode 100644
index 0000000..2b59cda
--- /dev/null
+++ b/postgresql-prep/src/stage/opt/app/postgresql-prep/man/iDNS-responder.swagger.json
@@ -0,0 +1,58 @@
+{
+ "swagger": "2.0",
+ "info": {
+ "version": "1.1.0",
+ "title": "PostgreSQL as a Service REST API"
+ },
+ "paths": {
+ "/rw": {
+ "get": {
+ "description": "Gets a string indicating if this is a PostgreSQL Master server\n",
+ "responses": {
+ "200": {
+ "description": "Successful response",
+ "schema": {
+ "title": "status",
+ "type": "string"
+ }
+ }
+ }
+ }
+ },
+ "/ro": {
+ "get": {
+ "description": "Gets a string indicating if this is either a PostgreSQL Master or Secondary server\n",
+ "responses": {
+ "200": {
+ "description": "Successful response",
+ "schema": {
+ "title": "status",
+ "type": "string"
+ }
+ }
+ }
+ }
+ },
+ "/healthcheck/status": {
+ "get": {
+ "description": "Gets a string indicating the status of this server\n",
+ "responses": {
+ "200": {
+ "description": "Successful response",
+ "schema": {
+ "title": "output",
+ "type": "string"
+ }
+ },
+ "429": {
+ "description": "Error response",
+ "schema": {
+ "title": "output",
+ "type": "string"
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/postgresql-prep/src/stage/opt/app/postgresql-prep/man/iDNS-responder.swagger.yaml b/postgresql-prep/src/stage/opt/app/postgresql-prep/man/iDNS-responder.swagger.yaml
new file mode 100644
index 0000000..5f3ffee
--- /dev/null
+++ b/postgresql-prep/src/stage/opt/app/postgresql-prep/man/iDNS-responder.swagger.yaml
@@ -0,0 +1,68 @@
+# Example YAML to get you started quickly.
+# Be aware that YAML has indentation based scoping.
+# Code completion support is available so start typing for available options.
+swagger: '2.0'
+
+# This is your document metadata
+info:
+ version: "1.1.0"
+ title: PostgreSQL as a Service REST API
+
+# Describe your paths here
+paths:
+ # This is a path endpoint. Change it.
+ /rw:
+ # This is a HTTP operation
+ get:
+ # Describe this verb here. Note: you can use markdown
+ description: |
+ Gets a string indicating if this is a PostgreSQL Master server
+ # Expected responses for this operation:
+ responses:
+ # Response code
+ 200:
+ description: Successful response
+ # A schema describing your response object.
+ # Use JSON Schema format
+ schema:
+ title: status
+ type: string
+ /ro:
+ # This is a HTTP operation
+ get:
+ # Describe this verb here. Note: you can use markdown
+ description: |
+ Gets a string indicating if this is either a PostgreSQL Master or Secondary server
+ # Expected responses for this operation:
+ responses:
+ # Response code
+ 200:
+ description: Successful response
+ # A schema describing your response object.
+ # Use JSON Schema format
+ schema:
+ title: status
+ type: string
+ /healthcheck/status:
+ # This is a HTTP operation
+ get:
+ # Describe this verb here. Note: you can use markdown
+ description: |
+ Gets a string indicating the status of this server
+ # Expected responses for this operation:
+ responses:
+ # Response code
+ 200:
+ description: Successful response
+ # A schema describing your response object.
+ # Use JSON Schema format
+ schema:
+ title: output
+ type: string
+ 429:
+ description: Error response
+ # A schema describing your response object.
+ # Use JSON Schema format
+ schema:
+ title: output
+ type: string