Change RefreshAssets Public.

This commit is contained in:
sdk-team
2022-09-08 03:13:35 +00:00
parent 852d78709b
commit 1ac934250e
3 changed files with 25 additions and 1 deletions

View File

@@ -34,6 +34,15 @@ void RefreshAssetsRequest::setSourceIp(const std::string &sourceIp) {
setParameter(std::string("SourceIp"), sourceIp);
}
int RefreshAssetsRequest::getCloudAssetSubType() const {
return cloudAssetSubType_;
}
void RefreshAssetsRequest::setCloudAssetSubType(int cloudAssetSubType) {
cloudAssetSubType_ = cloudAssetSubType;
setParameter(std::string("CloudAssetSubType"), std::to_string(cloudAssetSubType));
}
std::string RefreshAssetsRequest::getAssetType() const {
return assetType_;
}
@@ -43,3 +52,12 @@ void RefreshAssetsRequest::setAssetType(const std::string &assetType) {
setParameter(std::string("AssetType"), assetType);
}
int RefreshAssetsRequest::getCloudAssetType() const {
return cloudAssetType_;
}
void RefreshAssetsRequest::setCloudAssetType(int cloudAssetType) {
cloudAssetType_ = cloudAssetType;
setParameter(std::string("CloudAssetType"), std::to_string(cloudAssetType));
}