forked from eclipse-tractusx/bpdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs: Update yaml and json files for gate, pool and bridge dummy serv…
…ice eclipse-tractusx#289
- Loading branch information
1 parent
c279eab
commit 7e9dfda
Showing
6 changed files
with
7,617 additions
and
17,571 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"openapi": "3.0.1", | ||
"info": { | ||
"title": "Business Partner Data Management Bridge Dummy", | ||
"description": "Bridge between Gate and Pool as a simple replacement for a dedicated sharing service", | ||
"version": "4.0.0-SNAPSHOT" | ||
}, | ||
"servers": [ | ||
{ | ||
"url": "http://localhost:8083", | ||
"description": "Generated server url" | ||
} | ||
], | ||
"paths": { | ||
"/api/bridge/sync": { | ||
"post": { | ||
"tags": [ | ||
"bridge-controller" | ||
], | ||
"summary": "Start sync between Gate and Pool", | ||
"operationId": "triggerSync", | ||
"responses": { | ||
"200": { | ||
"description": "OK" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"components": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
openapi: 3.0.1 | ||
info: | ||
title: Business Partner Data Management Bridge Dummy | ||
description: Bridge between Gate and Pool as a simple replacement for a dedicated sharing service | ||
version: 4.0.0-SNAPSHOT | ||
servers: | ||
- url: http://localhost:8083 | ||
description: Generated server url | ||
paths: | ||
/api/bridge/sync: | ||
post: | ||
tags: | ||
- bridge-controller | ||
summary: Start sync between Gate and Pool | ||
operationId: triggerSync | ||
responses: | ||
'200': | ||
description: OK | ||
components: {} |
Oops, something went wrong.