metacat-main/src/main/java/com/netflix/metacat/main/api/v1/PartitionController.java [656:672]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Parameter(description = "The name of the catalog", required = true)
        @PathVariable("catalog-name") final String catalogName,
        @Parameter(description = "The name of the database", required = true)
        @PathVariable("database-name") final String databaseName,
        @Parameter(description = "The name of the table", required = true)
        @PathVariable("table-name") final String tableName,
        @Parameter(description = "Sort the partition list by this value")
        @Nullable @RequestParam(name = "sortBy", required = false) final String sortBy,
        @Parameter(description = "Sorting order to use")
        @Nullable @RequestParam(name = "sortOrder", required = false) final SortOrder sortOrder,
        @Parameter(description = "Offset of the list returned")
        @Nullable @RequestParam(name = "offset", required = false) final Integer offset,
        @Parameter(description = "Size of the partition list")
        @Nullable @RequestParam(name = "limit", required = false) final Integer limit,
        @Parameter(description = "Request containing the filter expression for the partitions")
        @Nullable @RequestBody(required = false) final GetPartitionsRequestDto getPartitionsRequestDto
    ) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



metacat-main/src/main/java/com/netflix/metacat/main/api/v1/PartitionController.java [919:935]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Parameter(description = "The name of the catalog", required = true)
        @PathVariable("catalog-name") final String catalogName,
        @Parameter(description = "The name of the database", required = true)
        @PathVariable("database-name") final String databaseName,
        @Parameter(description = "The name of the table", required = true)
        @PathVariable("table-name") final String tableName,
        @Parameter(description = "Sort the partition list by this value")
        @Nullable @RequestParam(name = "sortBy", required = false) final String sortBy,
        @Parameter(description = "Sorting order to use")
        @Nullable @RequestParam(name = "sortOrder", required = false) final SortOrder sortOrder,
        @Parameter(description = "Offset of the list returned")
        @Nullable @RequestParam(name = "offset", required = false) final Integer offset,
        @Parameter(description = "Size of the partition list")
        @Nullable @RequestParam(name = "limit", required = false) final Integer limit,
        @Parameter(description = "Request containing the filter expression for the partitions")
        @Nullable @RequestBody(required = false) final GetPartitionsRequestDto getPartitionsRequestDto
    ) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



