mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-09 09:02:12 +00:00
Fixed annotations docs
This commit is contained in:
parent
1cdc35d05a
commit
19b459bc80
@ -100,10 +100,10 @@ public class BotsResource {
|
|||||||
@Min(1)
|
@Min(1)
|
||||||
@Max(1000000)
|
@Max(1000000)
|
||||||
@QueryParam("limit") int limitParam,
|
@QueryParam("limit") int limitParam,
|
||||||
@Parameter(description = "Returns list of tables before this cursor",
|
@Parameter(description = "Returns list of bots before this cursor",
|
||||||
schema = @Schema(type = "string"))
|
schema = @Schema(type = "string"))
|
||||||
@QueryParam("before") String before,
|
@QueryParam("before") String before,
|
||||||
@Parameter(description = "Returns list of tables after this cursor",
|
@Parameter(description = "Returns list of bots after this cursor",
|
||||||
schema = @Schema(type = "string"))
|
schema = @Schema(type = "string"))
|
||||||
@QueryParam("after") String after) throws IOException, GeneralSecurityException, ParseException {
|
@QueryParam("after") String after) throws IOException, GeneralSecurityException, ParseException {
|
||||||
RestUtil.validateCursors(before, after);
|
RestUtil.validateCursors(before, after);
|
||||||
|
@ -108,10 +108,10 @@ public class MetricsResource {
|
|||||||
@Min(1)
|
@Min(1)
|
||||||
@Max(1000000)
|
@Max(1000000)
|
||||||
@QueryParam("limit") int limitParam,
|
@QueryParam("limit") int limitParam,
|
||||||
@Parameter(description = "Returns list of tables before this cursor",
|
@Parameter(description = "Returns list of metrics before this cursor",
|
||||||
schema = @Schema(type = "string"))
|
schema = @Schema(type = "string"))
|
||||||
@QueryParam("before") String before,
|
@QueryParam("before") String before,
|
||||||
@Parameter(description = "Returns list of tables after this cursor",
|
@Parameter(description = "Returns list of metrics after this cursor",
|
||||||
schema = @Schema(type = "string"))
|
schema = @Schema(type = "string"))
|
||||||
@QueryParam("after") String after)
|
@QueryParam("after") String after)
|
||||||
throws IOException, GeneralSecurityException, ParseException {
|
throws IOException, GeneralSecurityException, ParseException {
|
||||||
|
@ -115,10 +115,10 @@ public class DashboardServiceResource {
|
|||||||
@Min(1)
|
@Min(1)
|
||||||
@Max(1000000)
|
@Max(1000000)
|
||||||
@QueryParam("limit") int limitParam,
|
@QueryParam("limit") int limitParam,
|
||||||
@Parameter(description = "Returns list of tables before this cursor",
|
@Parameter(description = "Returns list of services before this cursor",
|
||||||
schema = @Schema(type = "string"))
|
schema = @Schema(type = "string"))
|
||||||
@QueryParam("before") String before,
|
@QueryParam("before") String before,
|
||||||
@Parameter(description = "Returns list of tables after this cursor",
|
@Parameter(description = "Returns list of services after this cursor",
|
||||||
schema = @Schema(type = "string"))
|
schema = @Schema(type = "string"))
|
||||||
@QueryParam("after") String after)
|
@QueryParam("after") String after)
|
||||||
throws IOException, GeneralSecurityException, ParseException {
|
throws IOException, GeneralSecurityException, ParseException {
|
||||||
|
@ -113,10 +113,10 @@ public class DatabaseServiceResource {
|
|||||||
@Min(1)
|
@Min(1)
|
||||||
@Max(1000000)
|
@Max(1000000)
|
||||||
@QueryParam("limit") int limitParam,
|
@QueryParam("limit") int limitParam,
|
||||||
@Parameter(description = "Returns list of tables before this cursor",
|
@Parameter(description = "Returns list of databases before this cursor",
|
||||||
schema = @Schema(type = "string"))
|
schema = @Schema(type = "string"))
|
||||||
@QueryParam("before") String before,
|
@QueryParam("before") String before,
|
||||||
@Parameter(description = "Returns list of tables after this cursor",
|
@Parameter(description = "Returns list of databases after this cursor",
|
||||||
schema = @Schema(type = "string"))
|
schema = @Schema(type = "string"))
|
||||||
@QueryParam("after") String after)
|
@QueryParam("after") String after)
|
||||||
throws IOException, GeneralSecurityException, ParseException {
|
throws IOException, GeneralSecurityException, ParseException {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user