Class OpenMetadataStoreResource
- java.lang.Object
-
- org.odpi.openmetadata.commonservices.gaf.server.spring.OpenMetadataStoreResource
-
@RestController @RequestMapping("/servers/{serverName}/open-metadata/common-services/{serviceURLMarker}/open-metadata-store/users/{userId}") public class OpenMetadataStoreResource extends ObjectOpenMetadataStoreResource supports the REST APIs for running Open Metadata Store Service
-
-
Constructor Summary
Constructors Constructor Description OpenMetadataStoreResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VoidResponseclassifyMetadataElementInStore(String serverName, String serviceURLMarker, String userId, String metadataElementGUID, String classificationName, NewClassificationRequestBody requestBody)Add a new classification to the metadata element.GUIDResponsecreateIncidentReport(String serverName, String serviceURLMarker, String userId, IncidentReportRequestBody requestBody)Create an incident report to capture the situation detected by this governance action service.GUIDResponsecreateMetadataElementInStore(String serverName, String serviceURLMarker, String userId, NewMetadataElementRequestBody requestBody)Create a new metadata element in the metadata store.GUIDResponsecreateRelatedElementsInStore(String serverName, String serviceURLMarker, String userId, NewRelatedElementsRequestBody requestBody)Create a relationship between two metadata elements.VoidResponsedeleteMetadataElementInStore(String serverName, String serviceURLMarker, String userId, String metadataElementGUID, UpdateRequestBody requestBody)Delete a specific metadata element.VoidResponsedeleteRelatedElementsInStore(String serverName, String serviceURLMarker, String userId, String relationshipGUID, UpdateRequestBody requestBody)Delete a relationship between two metadata elements.OpenMetadataElementsResponsefindMetadataElements(String serverName, String serviceURLMarker, String userId, boolean forLineage, boolean forDuplicateProcessing, long effectiveTime, int startFrom, int pageSize, FindRequestBody requestBody)Return a list of metadata elements that match the supplied criteria.OpenMetadataElementsResponsefindMetadataElementsWithString(String serverName, String serviceURLMarker, String userId, boolean forLineage, boolean forDuplicateProcessing, long effectiveTime, int startFrom, int pageSize, SearchStringRequestBody requestBody)Retrieve the metadata elements that contain the requested string.RelatedMetadataElementsListResponsefindRelationshipsBetweenMetadataElements(String serverName, String serviceURLMarker, String userId, boolean forLineage, boolean forDuplicateProcessing, long effectiveTime, int startFrom, int pageSize, FindRequestBody requestBody)Return a list of relationships that match the requested conditions.OpenMetadataElementResponsegetMetadataElementByGUID(String serverName, String serviceURLMarker, String userId, String elementGUID, boolean forLineage, boolean forDuplicateProcessing, long effectiveTime)Retrieve the metadata element using its unique identifier.OpenMetadataElementResponsegetMetadataElementByUniqueName(String serverName, String serviceURLMarker, String userId, boolean forLineage, boolean forDuplicateProcessing, long effectiveTime, NameRequestBody requestBody)Retrieve the metadata element using its unique name (typically the qualified name).GUIDResponsegetMetadataElementGUIDByUniqueName(String serverName, String serviceURLMarker, String userId, boolean forLineage, boolean forDuplicateProcessing, long effectiveTime, NameRequestBody requestBody)Retrieve the unique identifier of a metadata element using its unique name (typically the qualified name).RelatedMetadataElementListResponsegetRelatedMetadataElements(String serverName, String serviceURLMarker, String userId, String elementGUID, String relationshipTypeName, boolean forLineage, boolean forDuplicateProcessing, long effectiveTime, int startingAtEnd, int startFrom, int pageSize)Retrieve the metadata elements connected to the supplied element.VoidResponselinkConsolidatedDuplicate(String serverName, String serviceURLMarker, String userId, ConsolidatedDuplicatesRequestBody requestBody)Create a simple relationship between two elements.VoidResponselinkElementsAsPeerDuplicates(String serverName, String serviceURLMarker, String userId, PeerDuplicatesRequestBody requestBody)Create a simple relationship between two elements.VoidResponselogAssetAuditMessage(String serverName, String serviceURLMarker, String userId, String assetGUID, String callingService, String message)Log an audit message about an asset.VoidResponsereclassifyMetadataElementInStore(String serverName, String serviceURLMarker, String userId, String metadataElementGUID, String classificationName, UpdatePropertiesRequestBody requestBody)Update the properties of a classification that is currently attached to a specific metadata element.VoidResponseunclassifyMetadataElementInStore(String serverName, String serviceURLMarker, String userId, String metadataElementGUID, String classificationName, UpdateRequestBody requestBody)Remove the named classification from a specific metadata element.VoidResponseupdateClassificationEffectivityInStore(String serverName, String serviceURLMarker, String userId, String metadataElementGUID, String classificationName, UpdateEffectivityDatesRequestBody requestBody)Update the effectivity dates of a specific classification attached to a metadata element.VoidResponseupdateMetadataElementEffectivityInStore(String serverName, String serviceURLMarker, String userId, String metadataElementGUID, UpdateEffectivityDatesRequestBody requestBody)Update the effectivity dates control the visibility of the element through specific APIs.VoidResponseupdateMetadataElementInStore(String serverName, String serviceURLMarker, String userId, String metadataElementGUID, UpdatePropertiesRequestBody requestBody)Update the properties of a specific metadata element.VoidResponseupdateMetadataElementStatusInStore(String serverName, String serviceURLMarker, String userId, String metadataElementGUID, UpdateStatusRequestBody requestBody)Update the status of specific metadata element.VoidResponseupdateRelatedElementsEffectivityInStore(String serverName, String serviceURLMarker, String userId, String relationshipGUID, UpdateEffectivityDatesRequestBody requestBody)Update the effectivity dates of a specific relationship between metadata elements.VoidResponseupdateRelatedElementsInStore(String serverName, String serviceURLMarker, String userId, String relationshipGUID, UpdatePropertiesRequestBody requestBody)Update the properties associated with a relationship.
-
-
-
Method Detail
-
getMetadataElementByGUID
@GetMapping(path="/metadata-elements/{elementGUID}") public OpenMetadataElementResponse getMetadataElementByGUID(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String elementGUID, @RequestParam boolean forLineage, @RequestParam boolean forDuplicateProcessing, @RequestParam long effectiveTime)Retrieve the metadata element using its unique identifier.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdelementGUID- unique identifier for the metadata elementforLineage- the retrieved element is for lineage processing so include archived elementsforDuplicateProcessing- the retrieved element is for duplicate processing so do not combine results from known duplicates.effectiveTime- only return the element if it is effective at this time. Null means anytime. Use "new Date()" for now.- Returns:
- metadata element properties or InvalidParameterException the unique identifier is null or not known. UserNotAuthorizedException the governance action service is not able to access the element PropertyServerException there is a problem accessing the metadata store
-
getMetadataElementByUniqueName
@PostMapping(path="/metadata-elements/by-unique-name") public OpenMetadataElementResponse getMetadataElementByUniqueName(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestParam boolean forLineage, @RequestParam boolean forDuplicateProcessing, @RequestParam long effectiveTime, @RequestBody NameRequestBody requestBody)
Retrieve the metadata element using its unique name (typically the qualified name).- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdforLineage- the retrieved element is for lineage processing so include archived elementsforDuplicateProcessing- the retrieved element is for duplicate processing so do not combine results from known duplicates.effectiveTime- only return the element if it is effective at this time. Null means anytime. Use "new Date()" for now.requestBody- unique name for the metadata element- Returns:
- metadata element properties or InvalidParameterException the unique identifier is null or not known. UserNotAuthorizedException the governance action service is not able to access the element PropertyServerException there is a problem accessing the metadata store
-
getMetadataElementGUIDByUniqueName
@PostMapping(path="/metadata-elements/guid-by-unique-name") public GUIDResponse getMetadataElementGUIDByUniqueName(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestParam boolean forLineage, @RequestParam boolean forDuplicateProcessing, @RequestParam long effectiveTime, @RequestBody NameRequestBody requestBody)
Retrieve the unique identifier of a metadata element using its unique name (typically the qualified name).- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdforLineage- the retrieved element is for lineage processing so include archived elementsforDuplicateProcessing- the retrieved element is for duplicate processing so do not combine results from known duplicates.effectiveTime- only return the element if it is effective at this time. Null means anytime. Use "new Date()" for now.requestBody- unique name for the metadata element- Returns:
- metadata element unique identifier (guid) or InvalidParameterException the unique identifier is null or not known or UserNotAuthorizedException the governance action service is not able to access the element or PropertyServerException there is a problem accessing the metadata store
-
findMetadataElementsWithString
@PostMapping(path="/metadata-elements/by-search-string") public OpenMetadataElementsResponse findMetadataElementsWithString(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestParam boolean forLineage, @RequestParam boolean forDuplicateProcessing, @RequestParam long effectiveTime, @RequestParam int startFrom, @RequestParam int pageSize, @RequestBody SearchStringRequestBody requestBody)
Retrieve the metadata elements that contain the requested string.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdforLineage- the retrieved element is for lineage processing so include archived elementsforDuplicateProcessing- the retrieved element is for duplicate processing so do not combine results from known duplicates.effectiveTime- only return the element if it is effective at this time. Null means anytime. Use "new Date()" for now.startFrom- paging start pointpageSize- maximum results that can be returnedrequestBody- searchString to retrieve- Returns:
- list of matching metadata elements (or null if no elements match the name) or InvalidParameterException the qualified name is null UserNotAuthorizedException the governance action service is not able to access the element PropertyServerException there is a problem accessing the metadata store
-
getRelatedMetadataElements
@GetMapping(path="/related-elements/{elementGUID}/type/{relationshipTypeName}") public RelatedMetadataElementListResponse getRelatedMetadataElements(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String elementGUID, @PathVariable String relationshipTypeName, @RequestParam boolean forLineage, @RequestParam boolean forDuplicateProcessing, @RequestParam long effectiveTime, @RequestParam int startingAtEnd, @RequestParam int startFrom, @RequestParam int pageSize)Retrieve the metadata elements connected to the supplied element.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdelementGUID- unique identifier for the starting metadata elementrelationshipTypeName- type name of relationships to follow (or null for all)forLineage- the retrieved element is for lineage processing so include archived elementsforDuplicateProcessing- the retrieved element is for duplicate processing so do not combine results from known duplicates.effectiveTime- only return the element if it is effective at this time. Null means anytime. Use "new Date()" for now.startingAtEnd- indicates which end to retrieve from (0 is "either end"; 1 is end1; 2 is end 2)startFrom- paging start pointpageSize- maximum results that can be returned- Returns:
- list of related elements InvalidParameterException the unique identifier is null or not known; the relationship type is invalid UserNotAuthorizedException the governance action service is not able to access the elements PropertyServerException there is a problem accessing the metadata store
-
findMetadataElements
@PostMapping(path="/metadata-elements/by-search-specification") public OpenMetadataElementsResponse findMetadataElements(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestParam boolean forLineage, @RequestParam boolean forDuplicateProcessing, @RequestParam long effectiveTime, @RequestParam int startFrom, @RequestParam int pageSize, @RequestBody FindRequestBody requestBody)
Return a list of metadata elements that match the supplied criteria. The results can be returned over many pages.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdforLineage- the retrieved element is for lineage processing so include archived elementsforDuplicateProcessing- the retrieved element is for duplicate processing so do not combine results from known duplicates.effectiveTime- only return the element if it is effective at this time. Null means anytime. Use "new Date()" for now.startFrom- paging start pointpageSize- maximum results that can be returnedrequestBody- properties defining the search criteria- Returns:
- a list of elements matching the supplied criteria; null means no matching elements in the metadata store. InvalidParameterException one of the search parameters are is invalid UserNotAuthorizedException the governance action service is not able to access the elements PropertyServerException there is a problem accessing the metadata store
-
findRelationshipsBetweenMetadataElements
@PostMapping(path="/related-elements/by-search-specification") public RelatedMetadataElementsListResponse findRelationshipsBetweenMetadataElements(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestParam boolean forLineage, @RequestParam boolean forDuplicateProcessing, @RequestParam long effectiveTime, @RequestParam int startFrom, @RequestParam int pageSize, @RequestBody FindRequestBody requestBody)
Return a list of relationships that match the requested conditions. The results can be received as a series of pages.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdforLineage- the retrieved element is for lineage processing so include archived elementsforDuplicateProcessing- the retrieved element is for duplicate processing so do not combine results from known duplicates.effectiveTime- only return the element if it is effective at this time. Null means anytime. Use "new Date()" for now.startFrom- paging start pointpageSize- maximum results that can be returnedrequestBody- properties defining the search criteria- Returns:
- a list of relationships - null means no matching relationships - or InvalidParameterException one of the search parameters are is invalid UserNotAuthorizedException the governance action service is not able to access the elements PropertyServerException there is a problem accessing the metadata store
-
createMetadataElementInStore
@PostMapping(path="/metadata-elements/new") public GUIDResponse createMetadataElementInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestBody NewMetadataElementRequestBody requestBody)
Create a new metadata element in the metadata store. The type name comes from the open metadata types. The selected type also controls the names and types of the properties that are allowed. This version of the method allows access to advanced features such as multiple states and effectivity dates.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdrequestBody- properties for the new element- Returns:
- unique identifier of the new metadata element InvalidParameterException the type name, status or one of the properties is invalid UserNotAuthorizedException the governance action service is not authorized to create this type of element PropertyServerException there is a problem with the metadata store
-
updateMetadataElementInStore
@PostMapping(path="/metadata-elements/{metadataElementGUID}/update-properties") public VoidResponse updateMetadataElementInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String metadataElementGUID, @RequestBody UpdatePropertiesRequestBody requestBody)Update the properties of a specific metadata element. The properties must match the type definition associated with the metadata element when it was created. However, it is possible to update a few properties, or replace all them by the value used in the replaceProperties flag.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdmetadataElementGUID- unique identifier of the metadata element to updaterequestBody- new properties- Returns:
- void or InvalidParameterException either the unique identifier or the properties are invalid in some way UserNotAuthorizedException the governance action service is not authorized to update this element PropertyServerException there is a problem with the metadata store
-
updateMetadataElementStatusInStore
@PostMapping(path="/metadata-elements/{metadataElementGUID}/update-status") public VoidResponse updateMetadataElementStatusInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String metadataElementGUID, @RequestBody UpdateStatusRequestBody requestBody)Update the status of specific metadata element. The new status must match a status value that is defined for the element's type assigned when it was created.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdmetadataElementGUID- unique identifier of the metadata element to updaterequestBody- new status values - use null to leave as is- Returns:
- void or InvalidParameterException either the unique identifier or the status are invalid in some way UserNotAuthorizedException the governance action service is not authorized to update this element PropertyServerException there is a problem with the metadata store
-
updateMetadataElementEffectivityInStore
@PostMapping(path="/metadata-elements/{metadataElementGUID}/update-effectivity") public VoidResponse updateMetadataElementEffectivityInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String metadataElementGUID, @RequestBody UpdateEffectivityDatesRequestBody requestBody)Update the effectivity dates control the visibility of the element through specific APIs.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdmetadataElementGUID- unique identifier of the metadata element to updaterequestBody- new status values - use null to leave as is- Returns:
- void or InvalidParameterException either the unique identifier or the status are invalid in some way UserNotAuthorizedException the governance action service is not authorized to update this element PropertyServerException there is a problem with the metadata store
-
deleteMetadataElementInStore
@PostMapping(path="/metadata-elements/{metadataElementGUID}/delete") public VoidResponse deleteMetadataElementInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String metadataElementGUID, @RequestBody UpdateRequestBody requestBody)Delete a specific metadata element.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdmetadataElementGUID- unique identifier of the metadata element to updaterequestBody- null request body- Returns:
- void or InvalidParameterException the unique identifier is null or invalid in some way UserNotAuthorizedException the governance action service is not authorized to delete this element PropertyServerException there is a problem with the metadata store
-
classifyMetadataElementInStore
@PostMapping(path="/metadata-elements/{metadataElementGUID}/classifications/{classificationName}/new") public VoidResponse classifyMetadataElementInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String metadataElementGUID, @PathVariable String classificationName, @RequestBody NewClassificationRequestBody requestBody)Add a new classification to the metadata element. Note that only one classification with the same name can be attached to a metadata element.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdmetadataElementGUID- unique identifier of the metadata element to updateclassificationName- name of the classification to add (if the classification is already present then use reclassify)requestBody- properties to store in the new classification. These must conform to the valid properties associated with the classification name- Returns:
- void or InvalidParameterException the unique identifier or classification name is null or invalid in some way; properties do not match the valid properties associated with the classification's type definition UserNotAuthorizedException the governance action service is not authorized to update this element PropertyServerException there is a problem with the metadata store
-
reclassifyMetadataElementInStore
@PostMapping(path="/metadata-elements/{metadataElementGUID}/classifications/{classificationName}/update-properties") public VoidResponse reclassifyMetadataElementInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String metadataElementGUID, @PathVariable String classificationName, @RequestBody UpdatePropertiesRequestBody requestBody)Update the properties of a classification that is currently attached to a specific metadata element.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdmetadataElementGUID- unique identifier of the metadata element to updateclassificationName- unique name of the classification to updaterequestBody- new properties for the classification- Returns:
- void or InvalidParameterException the unique identifier or classification name is null or invalid in some way; properties do not match the valid properties associated with the classification's type definition UserNotAuthorizedException the governance action service is not authorized to update this element/classification PropertyServerException there is a problem with the metadata store
-
updateClassificationEffectivityInStore
@PostMapping(path="/metadata-elements/{metadataElementGUID}/classifications/{classificationName}/update-effectivity") public VoidResponse updateClassificationEffectivityInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String metadataElementGUID, @PathVariable String classificationName, @RequestBody UpdateEffectivityDatesRequestBody requestBody)Update the effectivity dates of a specific classification attached to a metadata element. The effectivity dates control the visibility of the classification through specific APIs.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdmetadataElementGUID- unique identifier of the metadata element to updateclassificationName- unique name of the classification to updaterequestBody- the dates when this element is active / inactive - null for no restriction- Returns:
- void or InvalidParameterException either the unique identifier or the status are invalid in some way UserNotAuthorizedException the governance action service is not authorized to update this element PropertyServerException there is a problem with the metadata store
-
unclassifyMetadataElementInStore
@PostMapping(path="/metadata-elements/{metadataElementGUID}/classifications/{classificationName}/delete") public VoidResponse unclassifyMetadataElementInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String metadataElementGUID, @PathVariable String classificationName, @RequestBody UpdateRequestBody requestBody)Remove the named classification from a specific metadata element.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdmetadataElementGUID- unique identifier of the metadata element to updateclassificationName- unique name of the classification to removerequestBody- null request body- Returns:
- void or InvalidParameterException the unique identifier or classification name is null or invalid in some way UserNotAuthorizedException the governance action service is not authorized to remove this classification PropertyServerException there is a problem with the metadata store
-
createRelatedElementsInStore
@PostMapping(path="/related-elements/new") public GUIDResponse createRelatedElementsInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestBody NewRelatedElementsRequestBody requestBody)
Create a relationship between two metadata elements. It is important to put the right element at each end of the relationship according to the type definition since this will affect how the relationship is interpreted.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdrequestBody- the properties of the relationship- Returns:
- unique identifier of the new relationship or InvalidParameterException the unique identifier's of the metadata elements are null or invalid in some way; the properties are not valid for this type of relationship UserNotAuthorizedException the governance action service is not authorized to create this type of relationship PropertyServerException there is a problem with the metadata store
-
updateRelatedElementsInStore
@PostMapping(path="/related-elements/{relationshipGUID}/update-properties") public VoidResponse updateRelatedElementsInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String relationshipGUID, @RequestBody UpdatePropertiesRequestBody requestBody)Update the properties associated with a relationship.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdrelationshipGUID- unique identifier of the relationship to updaterequestBody- new properties for the relationship- Returns:
- void or InvalidParameterException the unique identifier of the relationship is null or invalid in some way; the properties are not valid for this type of relationship UserNotAuthorizedException the governance action service is not authorized to update this relationship PropertyServerException there is a problem with the metadata store
-
updateRelatedElementsEffectivityInStore
@PostMapping(path="/related-elements/{relationshipGUID}/update-effectivity") public VoidResponse updateRelatedElementsEffectivityInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String relationshipGUID, @RequestBody UpdateEffectivityDatesRequestBody requestBody)Update the effectivity dates of a specific relationship between metadata elements. The effectivity dates control the visibility of the classification through specific APIs.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdrelationshipGUID- unique identifier of the relationship to updaterequestBody- the dates when this element is active / inactive - null for no restriction- Returns:
- void or InvalidParameterException either the unique identifier or the status are invalid in some way UserNotAuthorizedException the governance action service is not authorized to update this element PropertyServerException there is a problem with the metadata store
-
deleteRelatedElementsInStore
@PostMapping(path="/related-elements/{relationshipGUID}/delete") public VoidResponse deleteRelatedElementsInStore(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String relationshipGUID, @RequestBody UpdateRequestBody requestBody)Delete a relationship between two metadata elements.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdrelationshipGUID- unique identifier of the relationship to deleterequestBody- null request body- Returns:
- void or InvalidParameterException the unique identifier of the relationship is null or invalid in some way UserNotAuthorizedException the governance action service is not authorized to delete this relationship PropertyServerException there is a problem with the metadata store
-
createIncidentReport
@PostMapping(path="/incident-reports") public GUIDResponse createIncidentReport(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestBody IncidentReportRequestBody requestBody)
Create an incident report to capture the situation detected by this governance action service. This incident report will be processed by other governance activities.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- caller's userIdrequestBody- properties for the new incident report- Returns:
- unique identifier of the resulting incident report or InvalidParameterException null or non-unique qualified name for the incident report UserNotAuthorizedException this governance action service is not authorized to create an incident report PropertyServerException there is a problem with the metadata store
-
linkElementsAsPeerDuplicates
@PostMapping(path="/related-elements/link-as-peer-duplicate") public VoidResponse linkElementsAsPeerDuplicates(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestBody PeerDuplicatesRequestBody requestBody)
Create a simple relationship between two elements. If the relationship already exists, the properties are updated.- Parameters:
serverName- name of the service to route the request to.serviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- calling userrequestBody- parameters for the relationship- Returns:
- void or InvalidParameterException one of the parameters is null or invalid, or the elements are of different types PropertyServerException problem accessing property server UserNotAuthorizedException security access problem
-
linkConsolidatedDuplicate
@PostMapping(path="/related-elements/link-as-consolidated-duplicate") public VoidResponse linkConsolidatedDuplicate(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @RequestBody ConsolidatedDuplicatesRequestBody requestBody)
Create a simple relationship between two elements. If the relationship already exists, the properties are updated.- Parameters:
serverName- name of the service to route the request to.serviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- calling userrequestBody- parameters for the relationship- Returns:
- void or InvalidParameterException one of the parameters is null or invalid, or the elements are of different types PropertyServerException problem accessing property server UserNotAuthorizedException security access problem
-
logAssetAuditMessage
@PostMapping(path="/assets/{assetGUID}/log-records/{callingService}") public VoidResponse logAssetAuditMessage(@PathVariable String serverName, @PathVariable String serviceURLMarker, @PathVariable String userId, @PathVariable String assetGUID, @PathVariable String callingService, @RequestBody String message)Log an audit message about an asset.- Parameters:
serverName- name of server instance to route request toserviceURLMarker- the identifier of the access service (for example asset-owner for the Asset Owner OMAS)userId- userId of user making request.assetGUID- unique identifier for asset.callingService- unique name for governance service.message- message to log- Returns:
- void or InvalidParameterException one of the parameters is null or invalid. UserNotAuthorizedException user not authorized to issue this request. PropertyServerException there was a problem that occurred within the property server.
-
-