ONS SDK Auto Released By wenting.ywt,Version:1.35.3
Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2019-03-29 Version: 1.35.3
|
||||
1, Add DLQ message openAPI.
|
||||
2, Add Query the subscription relational openAPI.
|
||||
3, Remove white list restrictions.
|
||||
|
||||
2019-03-28 Version: 1.35.2
|
||||
1, release bssopenapi
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsConsumerAccumulateRequest::getPreventCache()const
|
||||
void OnsConsumerAccumulateRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsConsumerAccumulateRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsConsumerAccumulateRequest::getInstanceId()const
|
||||
void OnsConsumerAccumulateRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsConsumerAccumulateRequest::getGroupId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsConsumerAccumulateRequest::getGroupId()const
|
||||
void OnsConsumerAccumulateRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
bool OnsConsumerAccumulateRequest::getDetail()const
|
||||
@@ -66,6 +66,6 @@ bool OnsConsumerAccumulateRequest::getDetail()const
|
||||
void OnsConsumerAccumulateRequest::setDetail(bool detail)
|
||||
{
|
||||
detail_ = detail;
|
||||
setParameter("Detail", detail ? "true" : "false");
|
||||
setCoreParameter("Detail", detail ? "true" : "false");
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsConsumerGetConnectionRequest::getPreventCache()const
|
||||
void OnsConsumerGetConnectionRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsConsumerGetConnectionRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsConsumerGetConnectionRequest::getInstanceId()const
|
||||
void OnsConsumerGetConnectionRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsConsumerGetConnectionRequest::getGroupId()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsConsumerGetConnectionRequest::getGroupId()const
|
||||
void OnsConsumerGetConnectionRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsConsumerResetOffsetRequest::getPreventCache()const
|
||||
void OnsConsumerResetOffsetRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsConsumerResetOffsetRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsConsumerResetOffsetRequest::getInstanceId()const
|
||||
void OnsConsumerResetOffsetRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsConsumerResetOffsetRequest::getGroupId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsConsumerResetOffsetRequest::getGroupId()const
|
||||
void OnsConsumerResetOffsetRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsConsumerResetOffsetRequest::getTopic()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsConsumerResetOffsetRequest::getTopic()const
|
||||
void OnsConsumerResetOffsetRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
long OnsConsumerResetOffsetRequest::getResetTimestamp()const
|
||||
@@ -77,7 +77,7 @@ long OnsConsumerResetOffsetRequest::getResetTimestamp()const
|
||||
void OnsConsumerResetOffsetRequest::setResetTimestamp(long resetTimestamp)
|
||||
{
|
||||
resetTimestamp_ = resetTimestamp;
|
||||
setParameter("ResetTimestamp", std::to_string(resetTimestamp));
|
||||
setCoreParameter("ResetTimestamp", std::to_string(resetTimestamp));
|
||||
}
|
||||
|
||||
int OnsConsumerResetOffsetRequest::getType()const
|
||||
@@ -88,6 +88,6 @@ int OnsConsumerResetOffsetRequest::getType()const
|
||||
void OnsConsumerResetOffsetRequest::setType(int type)
|
||||
{
|
||||
type_ = type;
|
||||
setParameter("Type", std::to_string(type));
|
||||
setCoreParameter("Type", std::to_string(type));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsConsumerStatusRequest::getPreventCache()const
|
||||
void OnsConsumerStatusRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsConsumerStatusRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsConsumerStatusRequest::getInstanceId()const
|
||||
void OnsConsumerStatusRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
bool OnsConsumerStatusRequest::getNeedJstack()const
|
||||
@@ -55,7 +55,7 @@ bool OnsConsumerStatusRequest::getNeedJstack()const
|
||||
void OnsConsumerStatusRequest::setNeedJstack(bool needJstack)
|
||||
{
|
||||
needJstack_ = needJstack;
|
||||
setParameter("NeedJstack", needJstack ? "true" : "false");
|
||||
setCoreParameter("NeedJstack", needJstack ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string OnsConsumerStatusRequest::getGroupId()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsConsumerStatusRequest::getGroupId()const
|
||||
void OnsConsumerStatusRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
bool OnsConsumerStatusRequest::getDetail()const
|
||||
@@ -77,6 +77,6 @@ bool OnsConsumerStatusRequest::getDetail()const
|
||||
void OnsConsumerStatusRequest::setDetail(bool detail)
|
||||
{
|
||||
detail_ = detail;
|
||||
setParameter("Detail", detail ? "true" : "false");
|
||||
setCoreParameter("Detail", detail ? "true" : "false");
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsConsumerTimeSpanRequest::getPreventCache()const
|
||||
void OnsConsumerTimeSpanRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsConsumerTimeSpanRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsConsumerTimeSpanRequest::getInstanceId()const
|
||||
void OnsConsumerTimeSpanRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsConsumerTimeSpanRequest::getGroupId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsConsumerTimeSpanRequest::getGroupId()const
|
||||
void OnsConsumerTimeSpanRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsConsumerTimeSpanRequest::getTopic()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsConsumerTimeSpanRequest::getTopic()const
|
||||
void OnsConsumerTimeSpanRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsDLQMessageGetByIdRequest::getPreventCache()const
|
||||
void OnsDLQMessageGetByIdRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsDLQMessageGetByIdRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsDLQMessageGetByIdRequest::getInstanceId()const
|
||||
void OnsDLQMessageGetByIdRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsDLQMessageGetByIdRequest::getGroupId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsDLQMessageGetByIdRequest::getGroupId()const
|
||||
void OnsDLQMessageGetByIdRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsDLQMessageGetByIdRequest::getMsgId()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsDLQMessageGetByIdRequest::getMsgId()const
|
||||
void OnsDLQMessageGetByIdRequest::setMsgId(const std::string& msgId)
|
||||
{
|
||||
msgId_ = msgId;
|
||||
setParameter("MsgId", msgId);
|
||||
setCoreParameter("MsgId", msgId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsDLQMessagePageQueryByGroupIdRequest::getPreventCache()const
|
||||
void OnsDLQMessagePageQueryByGroupIdRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsDLQMessagePageQueryByGroupIdRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsDLQMessagePageQueryByGroupIdRequest::getInstanceId()const
|
||||
void OnsDLQMessagePageQueryByGroupIdRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsDLQMessagePageQueryByGroupIdRequest::getGroupId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsDLQMessagePageQueryByGroupIdRequest::getGroupId()const
|
||||
void OnsDLQMessagePageQueryByGroupIdRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
int OnsDLQMessagePageQueryByGroupIdRequest::getPageSize()const
|
||||
@@ -66,7 +66,7 @@ int OnsDLQMessagePageQueryByGroupIdRequest::getPageSize()const
|
||||
void OnsDLQMessagePageQueryByGroupIdRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
long OnsDLQMessagePageQueryByGroupIdRequest::getEndTime()const
|
||||
@@ -77,7 +77,7 @@ long OnsDLQMessagePageQueryByGroupIdRequest::getEndTime()const
|
||||
void OnsDLQMessagePageQueryByGroupIdRequest::setEndTime(long endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", std::to_string(endTime));
|
||||
setCoreParameter("EndTime", std::to_string(endTime));
|
||||
}
|
||||
|
||||
long OnsDLQMessagePageQueryByGroupIdRequest::getBeginTime()const
|
||||
@@ -88,7 +88,7 @@ long OnsDLQMessagePageQueryByGroupIdRequest::getBeginTime()const
|
||||
void OnsDLQMessagePageQueryByGroupIdRequest::setBeginTime(long beginTime)
|
||||
{
|
||||
beginTime_ = beginTime;
|
||||
setParameter("BeginTime", std::to_string(beginTime));
|
||||
setCoreParameter("BeginTime", std::to_string(beginTime));
|
||||
}
|
||||
|
||||
int OnsDLQMessagePageQueryByGroupIdRequest::getCurrentPage()const
|
||||
@@ -99,7 +99,7 @@ int OnsDLQMessagePageQueryByGroupIdRequest::getCurrentPage()const
|
||||
void OnsDLQMessagePageQueryByGroupIdRequest::setCurrentPage(int currentPage)
|
||||
{
|
||||
currentPage_ = currentPage;
|
||||
setParameter("CurrentPage", std::to_string(currentPage));
|
||||
setCoreParameter("CurrentPage", std::to_string(currentPage));
|
||||
}
|
||||
|
||||
std::string OnsDLQMessagePageQueryByGroupIdRequest::getTaskId()const
|
||||
@@ -110,6 +110,6 @@ std::string OnsDLQMessagePageQueryByGroupIdRequest::getTaskId()const
|
||||
void OnsDLQMessagePageQueryByGroupIdRequest::setTaskId(const std::string& taskId)
|
||||
{
|
||||
taskId_ = taskId;
|
||||
setParameter("TaskId", taskId);
|
||||
setCoreParameter("TaskId", taskId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsDLQMessageResendByIdRequest::getPreventCache()const
|
||||
void OnsDLQMessageResendByIdRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsDLQMessageResendByIdRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsDLQMessageResendByIdRequest::getInstanceId()const
|
||||
void OnsDLQMessageResendByIdRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsDLQMessageResendByIdRequest::getGroupId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsDLQMessageResendByIdRequest::getGroupId()const
|
||||
void OnsDLQMessageResendByIdRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsDLQMessageResendByIdRequest::getMsgId()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsDLQMessageResendByIdRequest::getMsgId()const
|
||||
void OnsDLQMessageResendByIdRequest::setMsgId(const std::string& msgId)
|
||||
{
|
||||
msgId_ = msgId;
|
||||
setParameter("MsgId", msgId);
|
||||
setCoreParameter("MsgId", msgId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsGroupConsumerUpdateRequest::getPreventCache()const
|
||||
void OnsGroupConsumerUpdateRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
bool OnsGroupConsumerUpdateRequest::getReadEnable()const
|
||||
@@ -44,7 +44,7 @@ bool OnsGroupConsumerUpdateRequest::getReadEnable()const
|
||||
void OnsGroupConsumerUpdateRequest::setReadEnable(bool readEnable)
|
||||
{
|
||||
readEnable_ = readEnable;
|
||||
setParameter("ReadEnable", readEnable ? "true" : "false");
|
||||
setCoreParameter("ReadEnable", readEnable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string OnsGroupConsumerUpdateRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsGroupConsumerUpdateRequest::getInstanceId()const
|
||||
void OnsGroupConsumerUpdateRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsGroupConsumerUpdateRequest::getGroupId()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsGroupConsumerUpdateRequest::getGroupId()const
|
||||
void OnsGroupConsumerUpdateRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsGroupCreateRequest::getPreventCache()const
|
||||
void OnsGroupCreateRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsGroupCreateRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsGroupCreateRequest::getInstanceId()const
|
||||
void OnsGroupCreateRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsGroupCreateRequest::getGroupId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsGroupCreateRequest::getGroupId()const
|
||||
void OnsGroupCreateRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsGroupCreateRequest::getRemark()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsGroupCreateRequest::getRemark()const
|
||||
void OnsGroupCreateRequest::setRemark(const std::string& remark)
|
||||
{
|
||||
remark_ = remark;
|
||||
setParameter("Remark", remark);
|
||||
setCoreParameter("Remark", remark);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsGroupDeleteRequest::getPreventCache()const
|
||||
void OnsGroupDeleteRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsGroupDeleteRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsGroupDeleteRequest::getInstanceId()const
|
||||
void OnsGroupDeleteRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsGroupDeleteRequest::getGroupId()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsGroupDeleteRequest::getGroupId()const
|
||||
void OnsGroupDeleteRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsGroupListRequest::getPreventCache()const
|
||||
void OnsGroupListRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsGroupListRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsGroupListRequest::getInstanceId()const
|
||||
void OnsGroupListRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsGroupListRequest::getGroupId()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsGroupListRequest::getGroupId()const
|
||||
void OnsGroupListRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsGroupSubDetailRequest::getPreventCache()const
|
||||
void OnsGroupSubDetailRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsGroupSubDetailRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsGroupSubDetailRequest::getInstanceId()const
|
||||
void OnsGroupSubDetailRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsGroupSubDetailRequest::getGroupId()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsGroupSubDetailRequest::getGroupId()const
|
||||
void OnsGroupSubDetailRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsInstanceBaseInfoRequest::getPreventCache()const
|
||||
void OnsInstanceBaseInfoRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsInstanceBaseInfoRequest::getInstanceId()const
|
||||
@@ -44,6 +44,6 @@ std::string OnsInstanceBaseInfoRequest::getInstanceId()const
|
||||
void OnsInstanceBaseInfoRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsInstanceCreateRequest::getPreventCache()const
|
||||
void OnsInstanceCreateRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsInstanceCreateRequest::getInstanceName()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsInstanceCreateRequest::getInstanceName()const
|
||||
void OnsInstanceCreateRequest::setInstanceName(const std::string& instanceName)
|
||||
{
|
||||
instanceName_ = instanceName;
|
||||
setParameter("InstanceName", instanceName);
|
||||
setCoreParameter("InstanceName", instanceName);
|
||||
}
|
||||
|
||||
std::string OnsInstanceCreateRequest::getRemark()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsInstanceCreateRequest::getRemark()const
|
||||
void OnsInstanceCreateRequest::setRemark(const std::string& remark)
|
||||
{
|
||||
remark_ = remark;
|
||||
setParameter("Remark", remark);
|
||||
setCoreParameter("Remark", remark);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsInstanceDeleteRequest::getPreventCache()const
|
||||
void OnsInstanceDeleteRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsInstanceDeleteRequest::getInstanceId()const
|
||||
@@ -44,6 +44,6 @@ std::string OnsInstanceDeleteRequest::getInstanceId()const
|
||||
void OnsInstanceDeleteRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,6 +33,6 @@ long OnsInstanceInServiceListRequest::getPreventCache()const
|
||||
void OnsInstanceInServiceListRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsInstanceUpdateRequest::getPreventCache()const
|
||||
void OnsInstanceUpdateRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsInstanceUpdateRequest::getInstanceName()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsInstanceUpdateRequest::getInstanceName()const
|
||||
void OnsInstanceUpdateRequest::setInstanceName(const std::string& instanceName)
|
||||
{
|
||||
instanceName_ = instanceName;
|
||||
setParameter("InstanceName", instanceName);
|
||||
setCoreParameter("InstanceName", instanceName);
|
||||
}
|
||||
|
||||
std::string OnsInstanceUpdateRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsInstanceUpdateRequest::getInstanceId()const
|
||||
void OnsInstanceUpdateRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsInstanceUpdateRequest::getRemark()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsInstanceUpdateRequest::getRemark()const
|
||||
void OnsInstanceUpdateRequest::setRemark(const std::string& remark)
|
||||
{
|
||||
remark_ = remark;
|
||||
setParameter("Remark", remark);
|
||||
setCoreParameter("Remark", remark);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMessageGetByKeyRequest::getPreventCache()const
|
||||
void OnsMessageGetByKeyRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMessageGetByKeyRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMessageGetByKeyRequest::getInstanceId()const
|
||||
void OnsMessageGetByKeyRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMessageGetByKeyRequest::getTopic()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsMessageGetByKeyRequest::getTopic()const
|
||||
void OnsMessageGetByKeyRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
std::string OnsMessageGetByKeyRequest::getKey()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsMessageGetByKeyRequest::getKey()const
|
||||
void OnsMessageGetByKeyRequest::setKey(const std::string& key)
|
||||
{
|
||||
key_ = key;
|
||||
setParameter("Key", key);
|
||||
setCoreParameter("Key", key);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMessageGetByMsgIdRequest::getPreventCache()const
|
||||
void OnsMessageGetByMsgIdRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMessageGetByMsgIdRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMessageGetByMsgIdRequest::getInstanceId()const
|
||||
void OnsMessageGetByMsgIdRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMessageGetByMsgIdRequest::getMsgId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsMessageGetByMsgIdRequest::getMsgId()const
|
||||
void OnsMessageGetByMsgIdRequest::setMsgId(const std::string& msgId)
|
||||
{
|
||||
msgId_ = msgId;
|
||||
setParameter("MsgId", msgId);
|
||||
setCoreParameter("MsgId", msgId);
|
||||
}
|
||||
|
||||
std::string OnsMessageGetByMsgIdRequest::getTopic()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsMessageGetByMsgIdRequest::getTopic()const
|
||||
void OnsMessageGetByMsgIdRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMessagePageQueryByTopicRequest::getPreventCache()const
|
||||
void OnsMessagePageQueryByTopicRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMessagePageQueryByTopicRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMessagePageQueryByTopicRequest::getInstanceId()const
|
||||
void OnsMessagePageQueryByTopicRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
int OnsMessagePageQueryByTopicRequest::getPageSize()const
|
||||
@@ -55,7 +55,7 @@ int OnsMessagePageQueryByTopicRequest::getPageSize()const
|
||||
void OnsMessagePageQueryByTopicRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string OnsMessagePageQueryByTopicRequest::getTopic()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsMessagePageQueryByTopicRequest::getTopic()const
|
||||
void OnsMessagePageQueryByTopicRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
long OnsMessagePageQueryByTopicRequest::getEndTime()const
|
||||
@@ -77,7 +77,7 @@ long OnsMessagePageQueryByTopicRequest::getEndTime()const
|
||||
void OnsMessagePageQueryByTopicRequest::setEndTime(long endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", std::to_string(endTime));
|
||||
setCoreParameter("EndTime", std::to_string(endTime));
|
||||
}
|
||||
|
||||
long OnsMessagePageQueryByTopicRequest::getBeginTime()const
|
||||
@@ -88,7 +88,7 @@ long OnsMessagePageQueryByTopicRequest::getBeginTime()const
|
||||
void OnsMessagePageQueryByTopicRequest::setBeginTime(long beginTime)
|
||||
{
|
||||
beginTime_ = beginTime;
|
||||
setParameter("BeginTime", std::to_string(beginTime));
|
||||
setCoreParameter("BeginTime", std::to_string(beginTime));
|
||||
}
|
||||
|
||||
int OnsMessagePageQueryByTopicRequest::getCurrentPage()const
|
||||
@@ -99,7 +99,7 @@ int OnsMessagePageQueryByTopicRequest::getCurrentPage()const
|
||||
void OnsMessagePageQueryByTopicRequest::setCurrentPage(int currentPage)
|
||||
{
|
||||
currentPage_ = currentPage;
|
||||
setParameter("CurrentPage", std::to_string(currentPage));
|
||||
setCoreParameter("CurrentPage", std::to_string(currentPage));
|
||||
}
|
||||
|
||||
std::string OnsMessagePageQueryByTopicRequest::getTaskId()const
|
||||
@@ -110,6 +110,6 @@ std::string OnsMessagePageQueryByTopicRequest::getTaskId()const
|
||||
void OnsMessagePageQueryByTopicRequest::setTaskId(const std::string& taskId)
|
||||
{
|
||||
taskId_ = taskId;
|
||||
setParameter("TaskId", taskId);
|
||||
setCoreParameter("TaskId", taskId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMessagePushRequest::getPreventCache()const
|
||||
void OnsMessagePushRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMessagePushRequest::getClientId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMessagePushRequest::getClientId()const
|
||||
void OnsMessagePushRequest::setClientId(const std::string& clientId)
|
||||
{
|
||||
clientId_ = clientId;
|
||||
setParameter("ClientId", clientId);
|
||||
setCoreParameter("ClientId", clientId);
|
||||
}
|
||||
|
||||
std::string OnsMessagePushRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsMessagePushRequest::getInstanceId()const
|
||||
void OnsMessagePushRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMessagePushRequest::getGroupId()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsMessagePushRequest::getGroupId()const
|
||||
void OnsMessagePushRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsMessagePushRequest::getMsgId()const
|
||||
@@ -77,7 +77,7 @@ std::string OnsMessagePushRequest::getMsgId()const
|
||||
void OnsMessagePushRequest::setMsgId(const std::string& msgId)
|
||||
{
|
||||
msgId_ = msgId;
|
||||
setParameter("MsgId", msgId);
|
||||
setCoreParameter("MsgId", msgId);
|
||||
}
|
||||
|
||||
std::string OnsMessagePushRequest::getTopic()const
|
||||
@@ -88,6 +88,6 @@ std::string OnsMessagePushRequest::getTopic()const
|
||||
void OnsMessagePushRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMessageSendRequest::getPreventCache()const
|
||||
void OnsMessageSendRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMessageSendRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMessageSendRequest::getInstanceId()const
|
||||
void OnsMessageSendRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMessageSendRequest::getTopic()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsMessageSendRequest::getTopic()const
|
||||
void OnsMessageSendRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
std::string OnsMessageSendRequest::getTag()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsMessageSendRequest::getTag()const
|
||||
void OnsMessageSendRequest::setTag(const std::string& tag)
|
||||
{
|
||||
tag_ = tag;
|
||||
setParameter("Tag", tag);
|
||||
setCoreParameter("Tag", tag);
|
||||
}
|
||||
|
||||
std::string OnsMessageSendRequest::getMessage()const
|
||||
@@ -77,7 +77,7 @@ std::string OnsMessageSendRequest::getMessage()const
|
||||
void OnsMessageSendRequest::setMessage(const std::string& message)
|
||||
{
|
||||
message_ = message;
|
||||
setParameter("Message", message);
|
||||
setCoreParameter("Message", message);
|
||||
}
|
||||
|
||||
std::string OnsMessageSendRequest::getKey()const
|
||||
@@ -88,6 +88,6 @@ std::string OnsMessageSendRequest::getKey()const
|
||||
void OnsMessageSendRequest::setKey(const std::string& key)
|
||||
{
|
||||
key_ = key;
|
||||
setParameter("Key", key);
|
||||
setCoreParameter("Key", key);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMessageTraceRequest::getPreventCache()const
|
||||
void OnsMessageTraceRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMessageTraceRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMessageTraceRequest::getInstanceId()const
|
||||
void OnsMessageTraceRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMessageTraceRequest::getTopic()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsMessageTraceRequest::getTopic()const
|
||||
void OnsMessageTraceRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
std::string OnsMessageTraceRequest::getMsgId()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsMessageTraceRequest::getMsgId()const
|
||||
void OnsMessageTraceRequest::setMsgId(const std::string& msgId)
|
||||
{
|
||||
msgId_ = msgId;
|
||||
setParameter("MsgId", msgId);
|
||||
setCoreParameter("MsgId", msgId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMqttGroupIdCreateRequest::getPreventCache()const
|
||||
void OnsMqttGroupIdCreateRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMqttGroupIdCreateRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMqttGroupIdCreateRequest::getInstanceId()const
|
||||
void OnsMqttGroupIdCreateRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMqttGroupIdCreateRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsMqttGroupIdCreateRequest::getRegionId()const
|
||||
void OnsMqttGroupIdCreateRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string OnsMqttGroupIdCreateRequest::getGroupId()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsMqttGroupIdCreateRequest::getGroupId()const
|
||||
void OnsMqttGroupIdCreateRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsMqttGroupIdCreateRequest::getTopic()const
|
||||
@@ -77,6 +77,6 @@ std::string OnsMqttGroupIdCreateRequest::getTopic()const
|
||||
void OnsMqttGroupIdCreateRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMqttGroupIdDeleteRequest::getPreventCache()const
|
||||
void OnsMqttGroupIdDeleteRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMqttGroupIdDeleteRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMqttGroupIdDeleteRequest::getInstanceId()const
|
||||
void OnsMqttGroupIdDeleteRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMqttGroupIdDeleteRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsMqttGroupIdDeleteRequest::getRegionId()const
|
||||
void OnsMqttGroupIdDeleteRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string OnsMqttGroupIdDeleteRequest::getGroupId()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsMqttGroupIdDeleteRequest::getGroupId()const
|
||||
void OnsMqttGroupIdDeleteRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMqttGroupIdListRequest::getPreventCache()const
|
||||
void OnsMqttGroupIdListRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMqttGroupIdListRequest::getInstanceId()const
|
||||
@@ -44,6 +44,6 @@ std::string OnsMqttGroupIdListRequest::getInstanceId()const
|
||||
void OnsMqttGroupIdListRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMqttQueryClientByClientIdRequest::getPreventCache()const
|
||||
void OnsMqttQueryClientByClientIdRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryClientByClientIdRequest::getClientId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMqttQueryClientByClientIdRequest::getClientId()const
|
||||
void OnsMqttQueryClientByClientIdRequest::setClientId(const std::string& clientId)
|
||||
{
|
||||
clientId_ = clientId;
|
||||
setParameter("ClientId", clientId);
|
||||
setCoreParameter("ClientId", clientId);
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryClientByClientIdRequest::getInstanceId()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsMqttQueryClientByClientIdRequest::getInstanceId()const
|
||||
void OnsMqttQueryClientByClientIdRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMqttQueryClientByGroupIdRequest::getPreventCache()const
|
||||
void OnsMqttQueryClientByGroupIdRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryClientByGroupIdRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMqttQueryClientByGroupIdRequest::getInstanceId()const
|
||||
void OnsMqttQueryClientByGroupIdRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryClientByGroupIdRequest::getGroupId()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsMqttQueryClientByGroupIdRequest::getGroupId()const
|
||||
void OnsMqttQueryClientByGroupIdRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMqttQueryClientByTopicRequest::getPreventCache()const
|
||||
void OnsMqttQueryClientByTopicRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryClientByTopicRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMqttQueryClientByTopicRequest::getInstanceId()const
|
||||
void OnsMqttQueryClientByTopicRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryClientByTopicRequest::getParentTopic()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsMqttQueryClientByTopicRequest::getParentTopic()const
|
||||
void OnsMqttQueryClientByTopicRequest::setParentTopic(const std::string& parentTopic)
|
||||
{
|
||||
parentTopic_ = parentTopic;
|
||||
setParameter("ParentTopic", parentTopic);
|
||||
setCoreParameter("ParentTopic", parentTopic);
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryClientByTopicRequest::getSubTopic()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsMqttQueryClientByTopicRequest::getSubTopic()const
|
||||
void OnsMqttQueryClientByTopicRequest::setSubTopic(const std::string& subTopic)
|
||||
{
|
||||
subTopic_ = subTopic;
|
||||
setParameter("SubTopic", subTopic);
|
||||
setCoreParameter("SubTopic", subTopic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMqttQueryHistoryOnlineRequest::getPreventCache()const
|
||||
void OnsMqttQueryHistoryOnlineRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryHistoryOnlineRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMqttQueryHistoryOnlineRequest::getInstanceId()const
|
||||
void OnsMqttQueryHistoryOnlineRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryHistoryOnlineRequest::getGroupId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsMqttQueryHistoryOnlineRequest::getGroupId()const
|
||||
void OnsMqttQueryHistoryOnlineRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
long OnsMqttQueryHistoryOnlineRequest::getEndTime()const
|
||||
@@ -66,7 +66,7 @@ long OnsMqttQueryHistoryOnlineRequest::getEndTime()const
|
||||
void OnsMqttQueryHistoryOnlineRequest::setEndTime(long endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", std::to_string(endTime));
|
||||
setCoreParameter("EndTime", std::to_string(endTime));
|
||||
}
|
||||
|
||||
long OnsMqttQueryHistoryOnlineRequest::getBeginTime()const
|
||||
@@ -77,6 +77,6 @@ long OnsMqttQueryHistoryOnlineRequest::getBeginTime()const
|
||||
void OnsMqttQueryHistoryOnlineRequest::setBeginTime(long beginTime)
|
||||
{
|
||||
beginTime_ = beginTime;
|
||||
setParameter("BeginTime", std::to_string(beginTime));
|
||||
setCoreParameter("BeginTime", std::to_string(beginTime));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsMqttQueryMsgTransTrendRequest::getPreventCache()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryMsgTransTrendRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getInstanceId()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
int OnsMqttQueryMsgTransTrendRequest::getQos()const
|
||||
@@ -55,7 +55,7 @@ int OnsMqttQueryMsgTransTrendRequest::getQos()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setQos(int qos)
|
||||
{
|
||||
qos_ = qos;
|
||||
setParameter("Qos", std::to_string(qos));
|
||||
setCoreParameter("Qos", std::to_string(qos));
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryMsgTransTrendRequest::getTransType()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getTransType()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setTransType(const std::string& transType)
|
||||
{
|
||||
transType_ = transType;
|
||||
setParameter("TransType", transType);
|
||||
setCoreParameter("TransType", transType);
|
||||
}
|
||||
|
||||
long OnsMqttQueryMsgTransTrendRequest::getEndTime()const
|
||||
@@ -77,7 +77,7 @@ long OnsMqttQueryMsgTransTrendRequest::getEndTime()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setEndTime(long endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", std::to_string(endTime));
|
||||
setCoreParameter("EndTime", std::to_string(endTime));
|
||||
}
|
||||
|
||||
long OnsMqttQueryMsgTransTrendRequest::getBeginTime()const
|
||||
@@ -88,7 +88,7 @@ long OnsMqttQueryMsgTransTrendRequest::getBeginTime()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setBeginTime(long beginTime)
|
||||
{
|
||||
beginTime_ = beginTime;
|
||||
setParameter("BeginTime", std::to_string(beginTime));
|
||||
setCoreParameter("BeginTime", std::to_string(beginTime));
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryMsgTransTrendRequest::getTpsType()const
|
||||
@@ -99,7 +99,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getTpsType()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setTpsType(const std::string& tpsType)
|
||||
{
|
||||
tpsType_ = tpsType;
|
||||
setParameter("TpsType", tpsType);
|
||||
setCoreParameter("TpsType", tpsType);
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryMsgTransTrendRequest::getParentTopic()const
|
||||
@@ -110,7 +110,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getParentTopic()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setParentTopic(const std::string& parentTopic)
|
||||
{
|
||||
parentTopic_ = parentTopic;
|
||||
setParameter("ParentTopic", parentTopic);
|
||||
setCoreParameter("ParentTopic", parentTopic);
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryMsgTransTrendRequest::getMsgType()const
|
||||
@@ -121,7 +121,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getMsgType()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setMsgType(const std::string& msgType)
|
||||
{
|
||||
msgType_ = msgType;
|
||||
setParameter("MsgType", msgType);
|
||||
setCoreParameter("MsgType", msgType);
|
||||
}
|
||||
|
||||
std::string OnsMqttQueryMsgTransTrendRequest::getSubTopic()const
|
||||
@@ -132,6 +132,6 @@ std::string OnsMqttQueryMsgTransTrendRequest::getSubTopic()const
|
||||
void OnsMqttQueryMsgTransTrendRequest::setSubTopic(const std::string& subTopic)
|
||||
{
|
||||
subTopic_ = subTopic;
|
||||
setParameter("SubTopic", subTopic);
|
||||
setCoreParameter("SubTopic", subTopic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,6 +33,6 @@ long OnsRegionListRequest::getPreventCache()const
|
||||
void OnsRegionListRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTopicCreateRequest::getPreventCache()const
|
||||
void OnsTopicCreateRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsTopicCreateRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsTopicCreateRequest::getInstanceId()const
|
||||
void OnsTopicCreateRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
int OnsTopicCreateRequest::getMessageType()const
|
||||
@@ -55,7 +55,7 @@ int OnsTopicCreateRequest::getMessageType()const
|
||||
void OnsTopicCreateRequest::setMessageType(int messageType)
|
||||
{
|
||||
messageType_ = messageType;
|
||||
setParameter("MessageType", std::to_string(messageType));
|
||||
setCoreParameter("MessageType", std::to_string(messageType));
|
||||
}
|
||||
|
||||
std::string OnsTopicCreateRequest::getTopic()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsTopicCreateRequest::getTopic()const
|
||||
void OnsTopicCreateRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
std::string OnsTopicCreateRequest::getRemark()const
|
||||
@@ -77,6 +77,6 @@ std::string OnsTopicCreateRequest::getRemark()const
|
||||
void OnsTopicCreateRequest::setRemark(const std::string& remark)
|
||||
{
|
||||
remark_ = remark;
|
||||
setParameter("Remark", remark);
|
||||
setCoreParameter("Remark", remark);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTopicDeleteRequest::getPreventCache()const
|
||||
void OnsTopicDeleteRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsTopicDeleteRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsTopicDeleteRequest::getInstanceId()const
|
||||
void OnsTopicDeleteRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsTopicDeleteRequest::getTopic()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsTopicDeleteRequest::getTopic()const
|
||||
void OnsTopicDeleteRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTopicListRequest::getPreventCache()const
|
||||
void OnsTopicListRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsTopicListRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsTopicListRequest::getInstanceId()const
|
||||
void OnsTopicListRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsTopicListRequest::getTopic()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsTopicListRequest::getTopic()const
|
||||
void OnsTopicListRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTopicStatusRequest::getPreventCache()const
|
||||
void OnsTopicStatusRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsTopicStatusRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsTopicStatusRequest::getInstanceId()const
|
||||
void OnsTopicStatusRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsTopicStatusRequest::getTopic()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsTopicStatusRequest::getTopic()const
|
||||
void OnsTopicStatusRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTopicSubDetailRequest::getPreventCache()const
|
||||
void OnsTopicSubDetailRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsTopicSubDetailRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsTopicSubDetailRequest::getInstanceId()const
|
||||
void OnsTopicSubDetailRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsTopicSubDetailRequest::getTopic()const
|
||||
@@ -55,6 +55,6 @@ std::string OnsTopicSubDetailRequest::getTopic()const
|
||||
void OnsTopicSubDetailRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTopicUpdateRequest::getPreventCache()const
|
||||
void OnsTopicUpdateRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsTopicUpdateRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsTopicUpdateRequest::getInstanceId()const
|
||||
void OnsTopicUpdateRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
int OnsTopicUpdateRequest::getPerm()const
|
||||
@@ -55,7 +55,7 @@ int OnsTopicUpdateRequest::getPerm()const
|
||||
void OnsTopicUpdateRequest::setPerm(int perm)
|
||||
{
|
||||
perm_ = perm;
|
||||
setParameter("Perm", std::to_string(perm));
|
||||
setCoreParameter("Perm", std::to_string(perm));
|
||||
}
|
||||
|
||||
std::string OnsTopicUpdateRequest::getTopic()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsTopicUpdateRequest::getTopic()const
|
||||
void OnsTopicUpdateRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTraceGetResultRequest::getPreventCache()const
|
||||
void OnsTraceGetResultRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsTraceGetResultRequest::getQueryId()const
|
||||
@@ -44,6 +44,6 @@ std::string OnsTraceGetResultRequest::getQueryId()const
|
||||
void OnsTraceGetResultRequest::setQueryId(const std::string& queryId)
|
||||
{
|
||||
queryId_ = queryId;
|
||||
setParameter("QueryId", queryId);
|
||||
setCoreParameter("QueryId", queryId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTraceQueryByMsgIdRequest::getPreventCache()const
|
||||
void OnsTraceQueryByMsgIdRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsTraceQueryByMsgIdRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsTraceQueryByMsgIdRequest::getInstanceId()const
|
||||
void OnsTraceQueryByMsgIdRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsTraceQueryByMsgIdRequest::getTopic()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsTraceQueryByMsgIdRequest::getTopic()const
|
||||
void OnsTraceQueryByMsgIdRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
std::string OnsTraceQueryByMsgIdRequest::getMsgId()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsTraceQueryByMsgIdRequest::getMsgId()const
|
||||
void OnsTraceQueryByMsgIdRequest::setMsgId(const std::string& msgId)
|
||||
{
|
||||
msgId_ = msgId;
|
||||
setParameter("MsgId", msgId);
|
||||
setCoreParameter("MsgId", msgId);
|
||||
}
|
||||
|
||||
long OnsTraceQueryByMsgIdRequest::getEndTime()const
|
||||
@@ -77,7 +77,7 @@ long OnsTraceQueryByMsgIdRequest::getEndTime()const
|
||||
void OnsTraceQueryByMsgIdRequest::setEndTime(long endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", std::to_string(endTime));
|
||||
setCoreParameter("EndTime", std::to_string(endTime));
|
||||
}
|
||||
|
||||
long OnsTraceQueryByMsgIdRequest::getBeginTime()const
|
||||
@@ -88,6 +88,6 @@ long OnsTraceQueryByMsgIdRequest::getBeginTime()const
|
||||
void OnsTraceQueryByMsgIdRequest::setBeginTime(long beginTime)
|
||||
{
|
||||
beginTime_ = beginTime;
|
||||
setParameter("BeginTime", std::to_string(beginTime));
|
||||
setCoreParameter("BeginTime", std::to_string(beginTime));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTraceQueryByMsgKeyRequest::getPreventCache()const
|
||||
void OnsTraceQueryByMsgKeyRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsTraceQueryByMsgKeyRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsTraceQueryByMsgKeyRequest::getInstanceId()const
|
||||
void OnsTraceQueryByMsgKeyRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsTraceQueryByMsgKeyRequest::getTopic()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsTraceQueryByMsgKeyRequest::getTopic()const
|
||||
void OnsTraceQueryByMsgKeyRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
long OnsTraceQueryByMsgKeyRequest::getEndTime()const
|
||||
@@ -66,7 +66,7 @@ long OnsTraceQueryByMsgKeyRequest::getEndTime()const
|
||||
void OnsTraceQueryByMsgKeyRequest::setEndTime(long endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", std::to_string(endTime));
|
||||
setCoreParameter("EndTime", std::to_string(endTime));
|
||||
}
|
||||
|
||||
long OnsTraceQueryByMsgKeyRequest::getBeginTime()const
|
||||
@@ -77,7 +77,7 @@ long OnsTraceQueryByMsgKeyRequest::getBeginTime()const
|
||||
void OnsTraceQueryByMsgKeyRequest::setBeginTime(long beginTime)
|
||||
{
|
||||
beginTime_ = beginTime;
|
||||
setParameter("BeginTime", std::to_string(beginTime));
|
||||
setCoreParameter("BeginTime", std::to_string(beginTime));
|
||||
}
|
||||
|
||||
std::string OnsTraceQueryByMsgKeyRequest::getMsgKey()const
|
||||
@@ -88,6 +88,6 @@ std::string OnsTraceQueryByMsgKeyRequest::getMsgKey()const
|
||||
void OnsTraceQueryByMsgKeyRequest::setMsgKey(const std::string& msgKey)
|
||||
{
|
||||
msgKey_ = msgKey;
|
||||
setParameter("MsgKey", msgKey);
|
||||
setCoreParameter("MsgKey", msgKey);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTrendGroupOutputTpsRequest::getPreventCache()const
|
||||
void OnsTrendGroupOutputTpsRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
long OnsTrendGroupOutputTpsRequest::getPeriod()const
|
||||
@@ -44,7 +44,7 @@ long OnsTrendGroupOutputTpsRequest::getPeriod()const
|
||||
void OnsTrendGroupOutputTpsRequest::setPeriod(long period)
|
||||
{
|
||||
period_ = period;
|
||||
setParameter("Period", std::to_string(period));
|
||||
setCoreParameter("Period", std::to_string(period));
|
||||
}
|
||||
|
||||
std::string OnsTrendGroupOutputTpsRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsTrendGroupOutputTpsRequest::getInstanceId()const
|
||||
void OnsTrendGroupOutputTpsRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsTrendGroupOutputTpsRequest::getGroupId()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsTrendGroupOutputTpsRequest::getGroupId()const
|
||||
void OnsTrendGroupOutputTpsRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsTrendGroupOutputTpsRequest::getTopic()const
|
||||
@@ -77,7 +77,7 @@ std::string OnsTrendGroupOutputTpsRequest::getTopic()const
|
||||
void OnsTrendGroupOutputTpsRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
long OnsTrendGroupOutputTpsRequest::getEndTime()const
|
||||
@@ -88,7 +88,7 @@ long OnsTrendGroupOutputTpsRequest::getEndTime()const
|
||||
void OnsTrendGroupOutputTpsRequest::setEndTime(long endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", std::to_string(endTime));
|
||||
setCoreParameter("EndTime", std::to_string(endTime));
|
||||
}
|
||||
|
||||
long OnsTrendGroupOutputTpsRequest::getBeginTime()const
|
||||
@@ -99,7 +99,7 @@ long OnsTrendGroupOutputTpsRequest::getBeginTime()const
|
||||
void OnsTrendGroupOutputTpsRequest::setBeginTime(long beginTime)
|
||||
{
|
||||
beginTime_ = beginTime;
|
||||
setParameter("BeginTime", std::to_string(beginTime));
|
||||
setCoreParameter("BeginTime", std::to_string(beginTime));
|
||||
}
|
||||
|
||||
int OnsTrendGroupOutputTpsRequest::getType()const
|
||||
@@ -110,6 +110,6 @@ int OnsTrendGroupOutputTpsRequest::getType()const
|
||||
void OnsTrendGroupOutputTpsRequest::setType(int type)
|
||||
{
|
||||
type_ = type;
|
||||
setParameter("Type", std::to_string(type));
|
||||
setCoreParameter("Type", std::to_string(type));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsTrendTopicInputTpsRequest::getPreventCache()const
|
||||
void OnsTrendTopicInputTpsRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
long OnsTrendTopicInputTpsRequest::getPeriod()const
|
||||
@@ -44,7 +44,7 @@ long OnsTrendTopicInputTpsRequest::getPeriod()const
|
||||
void OnsTrendTopicInputTpsRequest::setPeriod(long period)
|
||||
{
|
||||
period_ = period;
|
||||
setParameter("Period", std::to_string(period));
|
||||
setCoreParameter("Period", std::to_string(period));
|
||||
}
|
||||
|
||||
std::string OnsTrendTopicInputTpsRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsTrendTopicInputTpsRequest::getInstanceId()const
|
||||
void OnsTrendTopicInputTpsRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsTrendTopicInputTpsRequest::getTopic()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsTrendTopicInputTpsRequest::getTopic()const
|
||||
void OnsTrendTopicInputTpsRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
long OnsTrendTopicInputTpsRequest::getEndTime()const
|
||||
@@ -77,7 +77,7 @@ long OnsTrendTopicInputTpsRequest::getEndTime()const
|
||||
void OnsTrendTopicInputTpsRequest::setEndTime(long endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", std::to_string(endTime));
|
||||
setCoreParameter("EndTime", std::to_string(endTime));
|
||||
}
|
||||
|
||||
long OnsTrendTopicInputTpsRequest::getBeginTime()const
|
||||
@@ -88,7 +88,7 @@ long OnsTrendTopicInputTpsRequest::getBeginTime()const
|
||||
void OnsTrendTopicInputTpsRequest::setBeginTime(long beginTime)
|
||||
{
|
||||
beginTime_ = beginTime;
|
||||
setParameter("BeginTime", std::to_string(beginTime));
|
||||
setCoreParameter("BeginTime", std::to_string(beginTime));
|
||||
}
|
||||
|
||||
int OnsTrendTopicInputTpsRequest::getType()const
|
||||
@@ -99,6 +99,6 @@ int OnsTrendTopicInputTpsRequest::getType()const
|
||||
void OnsTrendTopicInputTpsRequest::setType(int type)
|
||||
{
|
||||
type_ = type;
|
||||
setParameter("Type", std::to_string(type));
|
||||
setCoreParameter("Type", std::to_string(type));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsWarnCreateRequest::getPreventCache()const
|
||||
void OnsWarnCreateRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsWarnCreateRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsWarnCreateRequest::getInstanceId()const
|
||||
void OnsWarnCreateRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsWarnCreateRequest::getBlockTime()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsWarnCreateRequest::getBlockTime()const
|
||||
void OnsWarnCreateRequest::setBlockTime(const std::string& blockTime)
|
||||
{
|
||||
blockTime_ = blockTime;
|
||||
setParameter("BlockTime", blockTime);
|
||||
setCoreParameter("BlockTime", blockTime);
|
||||
}
|
||||
|
||||
std::string OnsWarnCreateRequest::getLevel()const
|
||||
@@ -66,7 +66,7 @@ std::string OnsWarnCreateRequest::getLevel()const
|
||||
void OnsWarnCreateRequest::setLevel(const std::string& level)
|
||||
{
|
||||
level_ = level;
|
||||
setParameter("Level", level);
|
||||
setCoreParameter("Level", level);
|
||||
}
|
||||
|
||||
std::string OnsWarnCreateRequest::getGroupId()const
|
||||
@@ -77,7 +77,7 @@ std::string OnsWarnCreateRequest::getGroupId()const
|
||||
void OnsWarnCreateRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsWarnCreateRequest::getDelayTime()const
|
||||
@@ -88,7 +88,7 @@ std::string OnsWarnCreateRequest::getDelayTime()const
|
||||
void OnsWarnCreateRequest::setDelayTime(const std::string& delayTime)
|
||||
{
|
||||
delayTime_ = delayTime;
|
||||
setParameter("DelayTime", delayTime);
|
||||
setCoreParameter("DelayTime", delayTime);
|
||||
}
|
||||
|
||||
std::string OnsWarnCreateRequest::getTopic()const
|
||||
@@ -99,7 +99,7 @@ std::string OnsWarnCreateRequest::getTopic()const
|
||||
void OnsWarnCreateRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
std::string OnsWarnCreateRequest::getThreshold()const
|
||||
@@ -110,7 +110,7 @@ std::string OnsWarnCreateRequest::getThreshold()const
|
||||
void OnsWarnCreateRequest::setThreshold(const std::string& threshold)
|
||||
{
|
||||
threshold_ = threshold;
|
||||
setParameter("Threshold", threshold);
|
||||
setCoreParameter("Threshold", threshold);
|
||||
}
|
||||
|
||||
std::string OnsWarnCreateRequest::getAlertTime()const
|
||||
@@ -121,7 +121,7 @@ std::string OnsWarnCreateRequest::getAlertTime()const
|
||||
void OnsWarnCreateRequest::setAlertTime(const std::string& alertTime)
|
||||
{
|
||||
alertTime_ = alertTime;
|
||||
setParameter("AlertTime", alertTime);
|
||||
setCoreParameter("AlertTime", alertTime);
|
||||
}
|
||||
|
||||
std::string OnsWarnCreateRequest::getContacts()const
|
||||
@@ -132,6 +132,6 @@ std::string OnsWarnCreateRequest::getContacts()const
|
||||
void OnsWarnCreateRequest::setContacts(const std::string& contacts)
|
||||
{
|
||||
contacts_ = contacts;
|
||||
setParameter("Contacts", contacts);
|
||||
setCoreParameter("Contacts", contacts);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long OnsWarnDeleteRequest::getPreventCache()const
|
||||
void OnsWarnDeleteRequest::setPreventCache(long preventCache)
|
||||
{
|
||||
preventCache_ = preventCache;
|
||||
setParameter("PreventCache", std::to_string(preventCache));
|
||||
setCoreParameter("PreventCache", std::to_string(preventCache));
|
||||
}
|
||||
|
||||
std::string OnsWarnDeleteRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string OnsWarnDeleteRequest::getInstanceId()const
|
||||
void OnsWarnDeleteRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsWarnDeleteRequest::getGroupId()const
|
||||
@@ -55,7 +55,7 @@ std::string OnsWarnDeleteRequest::getGroupId()const
|
||||
void OnsWarnDeleteRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setParameter("GroupId", groupId);
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
std::string OnsWarnDeleteRequest::getTopic()const
|
||||
@@ -66,6 +66,6 @@ std::string OnsWarnDeleteRequest::getTopic()const
|
||||
void OnsWarnDeleteRequest::setTopic(const std::string& topic)
|
||||
{
|
||||
topic_ = topic;
|
||||
setParameter("Topic", topic);
|
||||
setCoreParameter("Topic", topic);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user