@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
|
DinoServiceDetailsResponse |
getServerAccessServiceDetails(String viewServerName,
String userId,
String serverName,
DinoServiceRequestBody requestBody)
Get the details of an access service running on the server
|
DinoServiceListResponse |
getServerAccessServices(String viewServerName,
String userId,
String serverName,
DinoServiceRequestBody requestBody)
Get a list of the access services on the server
|
DinoServerAuditLogResponse |
getServerAuditLog(String viewServerName,
String userId,
String serverName,
DinoServerRequestBody requestBody)
Get the server's audit log
|
DinoEngineDetailsResponse |
getServerEngineServiceDetails(String viewServerName,
String userId,
String serverName,
DinoEngineRequestBody requestBody)
Get the details of an engine running on the server.
|
DinoServiceDetailsResponse |
getServerEngineServiceDetails(String viewServerName,
String userId,
String serverName,
DinoServiceRequestBody requestBody)
Get the details of an engine service running on the server
|
DinoServiceListResponse |
getServerEngineServices(String viewServerName,
String userId,
String serverName,
DinoServiceRequestBody requestBody)
Get a list of the engine services on the server
|
DinoServerConfigResponse |
getServerInstanceConfiguration(String viewServerName,
String userId,
String serverName,
DinoServerRequestBody requestBody)
Get the server's active (running instance) configuration
|
DinoServiceDetailsResponse |
getServerIntegrationServiceDetails(String viewServerName,
String userId,
String serverName,
DinoServiceRequestBody requestBody)
Get the details of an integration service running on the server
|
DinoServiceListResponse |
getServerIntegrationServices(String viewServerName,
String userId,
String serverName,
DinoServiceRequestBody requestBody)
Get a list of the integration services on the server
|
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
|
DinoServiceDetailsResponse |
getServerViewServiceDetails(String viewServerName,
String userId,
String serverName,
DinoServiceRequestBody requestBody)
Get the details of a view service running on the server
|
DinoServiceListResponse |
getServerViewServices(String viewServerName,
String userId,
String serverName,
DinoServiceRequestBody requestBody)
Get a list of the view services on the server
|
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 request@PostMapping(value="/server/{serverName}/integration-services")
public DinoServiceListResponse getServerIntegrationServices(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServiceRequestBody 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}/engine-services")
public DinoServiceListResponse getServerEngineServices(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServiceRequestBody 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}/access-services")
public DinoServiceListResponse getServerAccessServices(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServiceRequestBody 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}/view-services")
public DinoServiceListResponse getServerViewServices(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServiceRequestBody 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}/integration-service-details")
public DinoServiceDetailsResponse getServerIntegrationServiceDetails(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServiceRequestBody 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}/engine-service-details")
public DinoServiceDetailsResponse getServerEngineServiceDetails(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServiceRequestBody 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}/access-service-details")
public DinoServiceDetailsResponse getServerAccessServiceDetails(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServiceRequestBody 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}/view-service-details")
public DinoServiceDetailsResponse getServerViewServiceDetails(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoServiceRequestBody 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}/engine-details")
public DinoEngineDetailsResponse getServerEngineServiceDetails(@PathVariable
String viewServerName,
@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
DinoEngineRequestBody 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–2021 LF AI & Data Foundation. All rights reserved.