@RestController
@RequestMapping(value="/servers/{viewServerName}/open-metadata/view-services/dino/users/{userId}")
public class DinoViewRESTResource
extends Object
| Constructor and Description |
|---|
DinoViewRESTResource()
Default constructor
|
| Modifier and Type | Method and Description |
|---|---|
DinoServiceListResponse |
getAccessServices(String viewServerName,
String userId,
String platformName,
DinoPlatformRequestBody requestBody)
Get the access services on a platform
|
DinoServerListResponse |
getActiveServers(String viewServerName,
String userId,
String platformName,
DinoPlatformRequestBody requestBody)
Get the active servers on a platform
|
DinoServiceListResponse |
getCommonServices(String viewServerName,
String userId,
String platformName,
DinoPlatformRequestBody requestBody)
Get the common services on a platform
|
DinoServiceListResponse |
getGovernanceServices(String viewServerName,
String userId,
String platformName,
DinoPlatformRequestBody requestBody)
Get the governance services on a platform
|
DinoServerListResponse |
getKnownServers(String viewServerName,
String userId,
String platformName,
DinoPlatformRequestBody requestBody)
Get the known servers on a platform
|
DinoStringResponse |
getPlatformOrigin(String viewServerName,
String userId,
String platformName,
DinoPlatformRequestBody requestBody)
Get the platform origin
|
DinoPlatformOverviewResponse |
getPlatformOverview(String viewServerName,
String userId,
String platformName,
DinoPlatformRequestBody requestBody)
Get the platform overview
|
DinoResourceEndpointListResponse |
getResourceEndpoints(String viewServerName,
String userId)
Get the configured resource endpoints
|
DinoServerAuditLogResponse |
getServerAuditLog(String viewServerName,
String userId,
String serverName,
DinoServerRequestBody requestBody)
Get the server's audit log
|
DinoServerConfigResponse |
getServerInstanceConfiguration(String viewServerName,
String userId,
String serverName,
DinoServerRequestBody requestBody)
Get the server's active (running instance) configuration
|
DinoStringResponse |
getServerOrigin(String viewServerName,
String userId,
String serverName,
DinoServerRequestBody requestBody)
Get the server origin
|
DinoServerOverviewResponse |
getServerOverview(String viewServerName,
String userId,
String serverName,
DinoServerRequestBody requestBody)
Get the server overview
|
DinoServerDoubleConfigResponse |
getServerStoredAndActiveConfiguration(String viewServerName,
String userId,
String serverName,
DinoServerRequestBody requestBody)
Get the server's stored and active (running instance) configurations in a duplexed response
|
DinoServerConfigResponse |
getServerStoredConfiguration(String viewServerName,
String userId,
String serverName,
DinoServerRequestBody requestBody)
Get the server's stored configuration
|
DinoServerTypeResponse |
getServerTypeClassification(String viewServerName,
String userId,
String serverName,
DinoServerRequestBody requestBody)
Get the server type classification
|
DinoServiceListResponse |
getViewServices(String viewServerName,
String userId,
String platformName,
DinoPlatformRequestBody requestBody)
Get the view services on a platform
|
@GetMapping(value="/resource-endpoints") public DinoResourceEndpointListResponse getResourceEndpoints(@PathVariable String viewServerName, @PathVariable String userId)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.@PostMapping(value="/platform/{platformName}")
public DinoPlatformOverviewResponse getPlatformOverview(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String platformName,
@RequestBody
DinoPlatformRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.platformName - name of the platformrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/platform/{platformName}/origin")
public DinoStringResponse getPlatformOrigin(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String platformName,
@RequestBody
DinoPlatformRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.platformName - name of the platformrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/platform/{platformName}/servers/active")
public DinoServerListResponse getActiveServers(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String platformName,
@RequestBody
DinoPlatformRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.platformName - name of the platformrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/platform/{platformName}/servers")
public DinoServerListResponse getKnownServers(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String platformName,
@RequestBody
DinoPlatformRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.platformName - name of the platformrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/platform/{platformName}/registered-services/access-services")
public DinoServiceListResponse getAccessServices(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String platformName,
@RequestBody
DinoPlatformRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.platformName - name of the platformrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/platform/{platformName}/registered-services/view-services")
public DinoServiceListResponse getViewServices(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String platformName,
@RequestBody
DinoPlatformRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.platformName - name of the platformrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/platform/{platformName}/registered-services/governance-services")
public DinoServiceListResponse getGovernanceServices(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String platformName,
@RequestBody
DinoPlatformRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.platformName - name of the platformrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/platform/{platformName}/registered-services/common-services")
public DinoServiceListResponse getCommonServices(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String platformName,
@RequestBody
DinoPlatformRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.platformName - name of the platformrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/server/{serverName}")
public DinoServerOverviewResponse getServerOverview(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServerRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.serverName - name of the serverrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/server/{serverName}/origin")
public DinoStringResponse getServerOrigin(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServerRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.serverName - name of the serverrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/server/{serverName}/server-type-classification")
public DinoServerTypeResponse getServerTypeClassification(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServerRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.serverName - name of the serverrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/server/{serverName}/configuration")
public DinoServerConfigResponse getServerStoredConfiguration(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServerRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.serverName - name of the serverrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/server/{serverName}/instance/configuration")
public DinoServerConfigResponse getServerInstanceConfiguration(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServerRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.serverName - name of the serverrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/server/{serverName}/stored-and-active-configuration")
public DinoServerDoubleConfigResponse getServerStoredAndActiveConfiguration(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServerRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.serverName - name of the serverrequestBody - request body containing parameters to formulate repository request@PostMapping(value="/server/{serverName}/audit-log")
public DinoServerAuditLogResponse getServerAuditLog(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServerRequestBody requestBody)
viewServerName - name of the server running the view-service.userId - user account under which to conduct operation.serverName - name of the serverrequestBody - request body containing parameters to formulate repository requestCopyright © 2018–2020 ODPi. All rights reserved.