Yes, it is possible.
By default, after a reprovision, MyST will automatically deploy all of the previously deployed applications. But, if you wish to skip automatic re-deployment of all previously deployed applications after a platform reprovision you can clear the application cache.
The application cache can be cleared for all platform instances by executing the following:
use fusioncloud
delete from platform_instance_artifact_property;
For a pre-5.5 version of MyST run the following instead:
delete from platform_instance_artifact;
If you wish to clear the application cache for a specific platform instance you can run the following:
use fusioncloud
select ID from PLATFORM_INSTANCE where external_id='f7f23a3d-1a54-420d-bde1-5eecbda8f3c5';
PLATFORM_INSTANCE_ARTIFACT
records for that given platform instance. For instance if our platform_instance_id is 1, we would run delete from PLATFORM_INSTANCE_ARTIFACT where platform_instance_id=1;