Class DataEngineerResource
java.lang.Object
org.odpi.openmetadata.viewservices.dataengineer.server.spring.DataEngineerResource
@RestController
@RequestMapping("/servers/{serverName}/api/open-metadata/data-engineer")
public class DataEngineerResource
extends Object
The DataEngineerResource provides part of the server-side implementation of the Data Engineer OMVS.
=
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetTabularDataSetReport(String serverName, String tabularDataSetGUID, int startFromRow, int maxRowCount) Returns details of a tabular data set including the data rows that match the startFromRow and maxRowCount values.
-
Constructor Details
-
DataEngineerResource
public DataEngineerResource()Default constructor
-
-
Method Details
-
getTabularDataSetReport
@GetMapping("/tabular-data-sets/{tabularDataSetGUID}/report") public TabularDataSetReportResponse getTabularDataSetReport(@PathVariable String serverName, @PathVariable String tabularDataSetGUID, @RequestParam(required=false,defaultValue="0") int startFromRow, @RequestParam(required=false,defaultValue="0") int maxRowCount) Returns details of a tabular data set including the data rows that match the startFromRow and maxRowCount values. If maxRowCount=0 then no data records are returned.- Parameters:
serverName- name of called servertabularDataSetGUID- unique identifier of tabular dat set assetstartFromRow- cursor position in the data setmaxRowCount- maximum number of rows to return. 0 means no rows.- Returns:
- a list of projects InvalidParameterException one of the parameters is null or invalid. PropertyServerException there is a problem retrieving information from the property server(s). UserNotAuthorizedException the requesting user is not authorized to issue this request.
-