diff options
author | 2022-05-11 11:16:05 -0400 | |
---|---|---|
committer | 2022-05-11 11:16:12 -0400 | |
commit | 9b2a9b261f77b43ecd17810e5fa5706df01d41d5 (patch) | |
tree | 254c36d1c5680937351b3fdb86df5612b8d1fde3 /docs/sections/apis/swagger-bbs-event-processor.yaml | |
parent | acd42cd6397eb0461a9d26d5e2c291c69dc3f2d1 (diff) |
Remove deprecated component docs
Change-Id: Ided1be8a124c19c42dd4e6c3c8c720d8b69678e7
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Issue-ID: DCAEGEN2-2973
Issue-ID: DCAEGEN2-3140
Issue-ID: DCAEGEN2-2968
Diffstat (limited to 'docs/sections/apis/swagger-bbs-event-processor.yaml')
-rw-r--r-- | docs/sections/apis/swagger-bbs-event-processor.yaml | 164 |
1 files changed, 0 insertions, 164 deletions
diff --git a/docs/sections/apis/swagger-bbs-event-processor.yaml b/docs/sections/apis/swagger-bbs-event-processor.yaml deleted file mode 100644 index d1fa002d..00000000 --- a/docs/sections/apis/swagger-bbs-event-processor.yaml +++ /dev/null @@ -1,164 +0,0 @@ ---- -swagger: '2.0' -info: - description: This page lists bbs-event-processor REST API details - version: '1.0' - title: BBS Event Processor -host: localhost:32100 -basePath: "/" -tags: -- name: bbs-event-processor-controller - description: Manage bbs-event-processor microService -paths: - "/cancel-tasks": - post: - tags: - - bbs-event-processor-controller - summary: Returns result of request to cancel running microservice tasks - operationId: cancelTasksUsingPOST - consumes: - - application/json - produces: - - "*/*" - responses: - '200': - description: Tasks were successfully cancelled - schema: - "$ref": "#/definitions/Mono«ResponseEntity«string»»" - '201': - description: Created - '401': - description: Not authorized to view the resource - '403': - description: Resource access is forbidden - '404': - description: Resource is not found - '406': - description: Cancellation failed. Check logs - "/heartbeat": - get: - tags: - - bbs-event-processor-controller - summary: Returns liveness of bbs-event-processor microService - operationId: handleHeartBeatUsingGET - produces: - - "*/*" - responses: - '200': - description: bbs-event-processor microService is alive - schema: - "$ref": "#/definitions/Mono«ResponseEntity«string»»" - '401': - description: Not authorized to view the resource - '403': - description: Resource access is forbidden - '404': - description: Resource is not found - "/logging/{level}": - post: - tags: - - bbs-event-processor-controller - summary: Returns result of request to change application logging level - operationId: changeLoggingLevelUsingPOST - consumes: - - application/json - produces: - - "*/*" - parameters: - - name: level - in: path - description: level - required: true - type: string - responses: - '200': - description: Application logging level was successfully changed - schema: - "$ref": "#/definitions/Mono«ResponseEntity«string»»" - '201': - description: Created - '401': - description: Unauthorized - '403': - description: Forbidden - '404': - description: Not Found - '406': - description: Application logging level change failure. Check logs - "/poll-cpe-authentication-events": - post: - tags: - - bbs-event-processor-controller - summary: Returns result of request submission. CPE authentication polling will - occur asynchronously - operationId: handleCpeAuthenticationRestCallUsingPOST - consumes: - - application/json - produces: - - "*/*" - responses: - '200': - description: CPE authentication task submitted successfully - schema: - "$ref": "#/definitions/Mono«ResponseEntity«string»»" - '201': - description: Created - '401': - description: Not authorized to view the resource - '403': - description: Resource access is forbidden - '404': - description: Resource is not found - "/poll-reregistration-events": - post: - tags: - - bbs-event-processor-controller - summary: Returns result of request submission. PNF re-registration polling will - occur asynchronously - operationId: handleReRegistrationRestCallUsingPOST - consumes: - - application/json - produces: - - "*/*" - responses: - '200': - description: Polling Re-registration events task submitted successfully - schema: - "$ref": "#/definitions/Mono«ResponseEntity«string»»" - '201': - description: Created - '401': - description: Not authorized to view the resource - '403': - description: Resource access is forbidden - '404': - description: Resource is not found - "/start-tasks": - post: - tags: - - bbs-event-processor-controller - summary: Returns result of request to start microservice tasks - operationId: reScheduleTasksUsingPOST - consumes: - - application/json - produces: - - "*/*" - responses: - '200': - description: Tasks were successfully started - schema: - "$ref": "#/definitions/Mono«ResponseEntity«string»»" - '201': - description: Created - '401': - description: Not authorized to view the resource - '403': - description: Resource access is forbidden - '404': - description: Resource is not found - '406': - description: Task initiation failed. Check logs -definitions: - Mono«ResponseEntity«string»»: - type: object - title: Mono«ResponseEntity«string»» |