Init Cpp sdk.

This commit is contained in:
sdk-team
2023-08-11 02:43:12 +00:00
parent cd34c91d00
commit 76afd2bcdc
14 changed files with 405 additions and 1 deletions

View File

@@ -26,6 +26,15 @@ DeleteDatabaseRequest::DeleteDatabaseRequest()
DeleteDatabaseRequest::~DeleteDatabaseRequest() {}
bool DeleteDatabaseRequest::getAsync() const {
return async_;
}
void DeleteDatabaseRequest::setAsync(bool async) {
async_ = async;
setParameter(std::string("Async"), async ? "true" : "false");
}
std::string DeleteDatabaseRequest::getCatalogId() const {
return catalogId_;
}