-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
105 additions
and
3 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
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
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
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,3 @@ | ||
API get /health api path removed without deprecation | ||
get /health/live api path removed without deprecation | ||
get /health/ready api path removed without deprecation |
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 @@ | ||
get /resource/newest api path removed without deprecation |
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,23 @@ | ||
openapi: "3.0.0" | ||
info: | ||
title: "Test API" | ||
version: "1.0.0" | ||
paths: | ||
/health: | ||
get: | ||
summary: "Get health status" | ||
responses: | ||
200: | ||
description: "Success" | ||
/health/live: | ||
get: | ||
summary: "Get live health status" | ||
responses: | ||
200: | ||
description: "Success" | ||
/health/ready: | ||
get: | ||
summary: "Get readiness status" | ||
responses: | ||
200: | ||
description: "Success" |
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,5 @@ | ||
openapi: "3.0.0" | ||
info: | ||
title: "Test API" | ||
version: "2.0.0" | ||
paths: {} |
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,17 @@ | ||
openapi: "3.0.0" | ||
info: | ||
title: "Test API" | ||
version: "1.0.0" | ||
paths: | ||
/resource/new: | ||
get: | ||
summary: "Get new resource" | ||
responses: | ||
200: | ||
description: "Success" | ||
/resource/newest: | ||
get: | ||
summary: "Get newest resource" | ||
responses: | ||
200: | ||
description: "Success" |