This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
Improve system to support rest resources with separated create and update endpoints #79
Labels
improvement
An internal improvement/refactoring
Story
As a developer
I want that the Rest Resource are adopted such as that it supports Create and Update operations instead of only providing an Upsert operation
So that the Rest Resource fits to endpoints of the instana API implementing such a behaviour.
Implementation Details
Currently the all resources which are implemented by the provider are using a common pattern with a
PUT
endpoint for create and update of the resource. However resources such as web site monitoring or users have separated endpoints for create and update. The implementation should be adjusted such as that this pattern is supported. Therefore the interface should be adopted and a base implementation should be provided wherePOST
is used for create andPUT
is used for update operations.The text was updated successfully, but these errors were encountered: