You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
this would allow us to give immediate/synchronous feedback if the request we got will be processed. This is not fool-proof as some of the checks have to be done by the backend (e.g. is there enough space). But we already can improve our service quality a lot with that.
Validation which could handled in this interface i.e.:
Validating the Parent-Child-References, I see at least the following things we should validate for Parent-Child-References:
Does the parent exist (completed and !deleted)
Does parent and child match together (e.g. I don't attach a MariaDB to MongoDBCluster || could also be something like can I deploy a unencrypted MariaDB to a encrypted MariaDB Cluster)
Does the parent have enough space for another child (as done in this example ... or maybe more complex)
Requirements
Add validation capabilities to ServiceProvider
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Problem (written by @seilc1 in #219 )
We are lacking in general in the area of input validation ... I've been thinking about 3 additional functions on the
ServiceProvider
:validateProvisionRequest()
validateDeprovisionRequest()
validateUpdateRequest()
this would allow us to give immediate/synchronous feedback if the request we got will be processed. This is not fool-proof as some of the checks have to be done by the backend (e.g. is there enough space). But we already can improve our service quality a lot with that.
Validation which could handled in this interface i.e.:
Validating the Parent-Child-References, I see at least the following things we should validate for Parent-Child-References:
Requirements
ServiceProvider
The text was updated successfully, but these errors were encountered: