Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d1aad0c37 | ||
|
|
28c7a67d80 |
@@ -1,3 +1,9 @@
|
||||
2019-03-25 Version: 1.34.61
|
||||
1, cms fix duplicated struct definition
|
||||
|
||||
2019-03-25 Version: 1.34.60
|
||||
1, mts fix duplication struct definition
|
||||
|
||||
2019-03-25 Version: 1.34.59
|
||||
1, jarvis-pulic fix product code with dash
|
||||
|
||||
|
||||
@@ -111,4 +111,5 @@ add_subdirectory(httpdns)
|
||||
add_subdirectory(crm)
|
||||
add_subdirectory(kms)
|
||||
add_subdirectory(sas-api)
|
||||
add_subdirectory(jarvis-public)
|
||||
add_subdirectory(jarvis-public)
|
||||
add_subdirectory(mts)
|
||||
@@ -34,15 +34,6 @@ namespace AlibabaCloud
|
||||
public:
|
||||
struct Resource
|
||||
{
|
||||
struct Result
|
||||
{
|
||||
std::string message;
|
||||
std::string displayName;
|
||||
int code;
|
||||
bool success;
|
||||
long groupId;
|
||||
std::string name;
|
||||
};
|
||||
struct Result
|
||||
{
|
||||
std::string message;
|
||||
|
||||
@@ -47,27 +47,6 @@ namespace AlibabaCloud
|
||||
};
|
||||
struct FpShotResult
|
||||
{
|
||||
struct FpShot
|
||||
{
|
||||
struct FpShotSlice
|
||||
{
|
||||
struct Input
|
||||
{
|
||||
std::string start;
|
||||
std::string duration;
|
||||
};
|
||||
struct Duplication
|
||||
{
|
||||
std::string start;
|
||||
std::string duration;
|
||||
};
|
||||
Input input;
|
||||
Duplication duplication;
|
||||
};
|
||||
std::string similarity;
|
||||
std::string primaryKey;
|
||||
std::vector<FpShot::FpShotSlice> fpShotSlices;
|
||||
};
|
||||
struct FpShot
|
||||
{
|
||||
struct FpShotSlice
|
||||
|
||||
@@ -110,7 +110,7 @@ bool AddMediaRequest::getInputUnbind()const
|
||||
void AddMediaRequest::setInputUnbind(bool inputUnbind)
|
||||
{
|
||||
inputUnbind_ = inputUnbind;
|
||||
setParameter("InputUnbind", std::to_string(inputUnbind));
|
||||
setParameter("InputUnbind", inputUnbind ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AddMediaRequest::getAccessKeyId()const
|
||||
|
||||
@@ -99,7 +99,7 @@ bool CheckResourceRequest::getSuccess()const
|
||||
void CheckResourceRequest::setSuccess(bool success)
|
||||
{
|
||||
success_ = success;
|
||||
setParameter("Success", std::to_string(success));
|
||||
setParameter("Success", success ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CheckResourceRequest::getInterrupt()const
|
||||
@@ -110,7 +110,7 @@ bool CheckResourceRequest::getInterrupt()const
|
||||
void CheckResourceRequest::setInterrupt(bool interrupt)
|
||||
{
|
||||
interrupt_ = interrupt;
|
||||
setParameter("Interrupt", std::to_string(interrupt));
|
||||
setParameter("Interrupt", interrupt ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CheckResourceRequest::getGmtWakeup()const
|
||||
|
||||
@@ -55,7 +55,7 @@ bool LogicalDeleteResourceRequest::getSuccess()const
|
||||
void LogicalDeleteResourceRequest::setSuccess(bool success)
|
||||
{
|
||||
success_ = success;
|
||||
setParameter("Success", std::to_string(success));
|
||||
setParameter("Success", success ? "true" : "false");
|
||||
}
|
||||
|
||||
bool LogicalDeleteResourceRequest::getInterrupt()const
|
||||
@@ -66,7 +66,7 @@ bool LogicalDeleteResourceRequest::getInterrupt()const
|
||||
void LogicalDeleteResourceRequest::setInterrupt(bool interrupt)
|
||||
{
|
||||
interrupt_ = interrupt;
|
||||
setParameter("Interrupt", std::to_string(interrupt));
|
||||
setParameter("Interrupt", interrupt ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string LogicalDeleteResourceRequest::getGmtWakeup()const
|
||||
|
||||
@@ -55,7 +55,7 @@ bool PhysicalDeleteResourceRequest::getSuccess()const
|
||||
void PhysicalDeleteResourceRequest::setSuccess(bool success)
|
||||
{
|
||||
success_ = success;
|
||||
setParameter("Success", std::to_string(success));
|
||||
setParameter("Success", success ? "true" : "false");
|
||||
}
|
||||
|
||||
bool PhysicalDeleteResourceRequest::getInterrupt()const
|
||||
@@ -66,7 +66,7 @@ bool PhysicalDeleteResourceRequest::getInterrupt()const
|
||||
void PhysicalDeleteResourceRequest::setInterrupt(bool interrupt)
|
||||
{
|
||||
interrupt_ = interrupt;
|
||||
setParameter("Interrupt", std::to_string(interrupt));
|
||||
setParameter("Interrupt", interrupt ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string PhysicalDeleteResourceRequest::getGmtWakeup()const
|
||||
|
||||
@@ -44,7 +44,7 @@ bool QueryMediaListByURLRequest::getIncludeSummaryList()const
|
||||
void QueryMediaListByURLRequest::setIncludeSummaryList(bool includeSummaryList)
|
||||
{
|
||||
includeSummaryList_ = includeSummaryList;
|
||||
setParameter("IncludeSummaryList", std::to_string(includeSummaryList));
|
||||
setParameter("IncludeSummaryList", includeSummaryList ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string QueryMediaListByURLRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ bool QueryMediaListByURLRequest::getIncludeSnapshotList()const
|
||||
void QueryMediaListByURLRequest::setIncludeSnapshotList(bool includeSnapshotList)
|
||||
{
|
||||
includeSnapshotList_ = includeSnapshotList;
|
||||
setParameter("IncludeSnapshotList", std::to_string(includeSnapshotList));
|
||||
setParameter("IncludeSnapshotList", includeSnapshotList ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string QueryMediaListByURLRequest::getFileURLs()const
|
||||
@@ -110,7 +110,7 @@ bool QueryMediaListByURLRequest::getIncludePlayList()const
|
||||
void QueryMediaListByURLRequest::setIncludePlayList(bool includePlayList)
|
||||
{
|
||||
includePlayList_ = includePlayList;
|
||||
setParameter("IncludePlayList", std::to_string(includePlayList));
|
||||
setParameter("IncludePlayList", includePlayList ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string QueryMediaListByURLRequest::getAccessKeyId()const
|
||||
@@ -132,6 +132,6 @@ bool QueryMediaListByURLRequest::getIncludeMediaInfo()const
|
||||
void QueryMediaListByURLRequest::setIncludeMediaInfo(bool includeMediaInfo)
|
||||
{
|
||||
includeMediaInfo_ = includeMediaInfo;
|
||||
setParameter("IncludeMediaInfo", std::to_string(includeMediaInfo));
|
||||
setParameter("IncludeMediaInfo", includeMediaInfo ? "true" : "false");
|
||||
}
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ bool QueryMediaListRequest::getIncludeSummaryList()const
|
||||
void QueryMediaListRequest::setIncludeSummaryList(bool includeSummaryList)
|
||||
{
|
||||
includeSummaryList_ = includeSummaryList;
|
||||
setParameter("IncludeSummaryList", std::to_string(includeSummaryList));
|
||||
setParameter("IncludeSummaryList", includeSummaryList ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string QueryMediaListRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ bool QueryMediaListRequest::getIncludeSnapshotList()const
|
||||
void QueryMediaListRequest::setIncludeSnapshotList(bool includeSnapshotList)
|
||||
{
|
||||
includeSnapshotList_ = includeSnapshotList;
|
||||
setParameter("IncludeSnapshotList", std::to_string(includeSnapshotList));
|
||||
setParameter("IncludeSnapshotList", includeSnapshotList ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string QueryMediaListRequest::getOwnerAccount()const
|
||||
@@ -110,7 +110,7 @@ bool QueryMediaListRequest::getIncludePlayList()const
|
||||
void QueryMediaListRequest::setIncludePlayList(bool includePlayList)
|
||||
{
|
||||
includePlayList_ = includePlayList;
|
||||
setParameter("IncludePlayList", std::to_string(includePlayList));
|
||||
setParameter("IncludePlayList", includePlayList ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string QueryMediaListRequest::getAccessKeyId()const
|
||||
@@ -132,6 +132,6 @@ bool QueryMediaListRequest::getIncludeMediaInfo()const
|
||||
void QueryMediaListRequest::setIncludeMediaInfo(bool includeMediaInfo)
|
||||
{
|
||||
includeMediaInfo_ = includeMediaInfo;
|
||||
setParameter("IncludeMediaInfo", std::to_string(includeMediaInfo));
|
||||
setParameter("IncludeMediaInfo", includeMediaInfo ? "true" : "false");
|
||||
}
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ bool SubmitMediaInfoJobRequest::getAsync()const
|
||||
void SubmitMediaInfoJobRequest::setAsync(bool async)
|
||||
{
|
||||
async_ = async;
|
||||
setParameter("Async", std::to_string(async));
|
||||
setParameter("Async", async ? "true" : "false");
|
||||
}
|
||||
|
||||
long SubmitMediaInfoJobRequest::getResourceOwnerId()const
|
||||
|
||||
@@ -55,7 +55,7 @@ bool UpdateMediaPublishStateRequest::getPublish()const
|
||||
void UpdateMediaPublishStateRequest::setPublish(bool publish)
|
||||
{
|
||||
publish_ = publish;
|
||||
setParameter("Publish", std::to_string(publish));
|
||||
setParameter("Publish", publish ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string UpdateMediaPublishStateRequest::getOwnerAccount()const
|
||||
|
||||
Reference in New Issue
Block a user