.withJsonPayLoad(new JsonObject(payload)).build();
String retsto = meta.writeMetaEntity(pse);
cache.addEntityToCache(EntityType.STORAGE, pse);
return retsto;
case DB:
PaasDBEntity pdbe = PaasDBEntity.builder()
.withJsonPayLoad(new JsonObject(payload)).build();
String retdb = meta.writeMetaEntity(pdbe);
cache.addEntityToCache(EntityType.DB, pdbe);
return retdb;
case TABLE: