regenerate code
This commit is contained in:
@@ -45,6 +45,8 @@ namespace AlibabaCloud
|
||||
void setEndTime(const std::string& endTime);
|
||||
long getOwnerId()const;
|
||||
void setOwnerId(long ownerId);
|
||||
std::string getInterval()const;
|
||||
void setInterval(const std::string& interval);
|
||||
std::string getRegion()const;
|
||||
void setRegion(const std::string& region);
|
||||
|
||||
@@ -54,6 +56,7 @@ namespace AlibabaCloud
|
||||
std::string storageType_;
|
||||
std::string endTime_;
|
||||
long ownerId_;
|
||||
std::string interval_;
|
||||
std::string region_;
|
||||
|
||||
};
|
||||
|
||||
@@ -45,6 +45,8 @@ namespace AlibabaCloud
|
||||
void setSpecification(const std::string& specification);
|
||||
long getOwnerId()const;
|
||||
void setOwnerId(long ownerId);
|
||||
std::string getInterval()const;
|
||||
void setInterval(const std::string& interval);
|
||||
std::string getRegion()const;
|
||||
void setRegion(const std::string& region);
|
||||
|
||||
@@ -54,6 +56,7 @@ namespace AlibabaCloud
|
||||
std::string endTime_;
|
||||
std::string specification_;
|
||||
long ownerId_;
|
||||
std::string interval_;
|
||||
std::string region_;
|
||||
|
||||
};
|
||||
|
||||
@@ -36,10 +36,16 @@ namespace AlibabaCloud
|
||||
{
|
||||
struct ListItem
|
||||
{
|
||||
std::string logoLabel;
|
||||
std::string liveScore;
|
||||
std::string pornLabel;
|
||||
std::string terrorismLabel;
|
||||
std::string terrorismScore;
|
||||
std::string adScore;
|
||||
std::string pornScore;
|
||||
std::string adLabel;
|
||||
std::string logoScore;
|
||||
std::string liveLabel;
|
||||
std::string timestamp;
|
||||
std::string url;
|
||||
};
|
||||
|
||||
@@ -39,12 +39,14 @@ namespace AlibabaCloud
|
||||
std::string tailSlateList;
|
||||
std::string packageSetting;
|
||||
std::string rotate;
|
||||
std::string userData;
|
||||
std::string definition;
|
||||
std::string transcodeFileRegular;
|
||||
std::vector<std::string> watermarkIds;
|
||||
std::string encryptSetting;
|
||||
std::string clip;
|
||||
std::string container;
|
||||
std::string type;
|
||||
std::string transcodeTemplateId;
|
||||
std::string transConfig;
|
||||
std::string video;
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::AddAITemplateRequest;
|
||||
|
||||
AddAITemplateRequest::AddAITemplateRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "AddAITemplate")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddAITemplateRequest::~AddAITemplateRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long AddAITemplateRequest::getResourceOwnerId()const
|
||||
void AddAITemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AddAITemplateRequest::getTemplateConfig()const
|
||||
@@ -44,7 +46,7 @@ std::string AddAITemplateRequest::getTemplateConfig()const
|
||||
void AddAITemplateRequest::setTemplateConfig(const std::string& templateConfig)
|
||||
{
|
||||
templateConfig_ = templateConfig;
|
||||
setCoreParameter("TemplateConfig", templateConfig);
|
||||
setParameter("TemplateConfig", templateConfig);
|
||||
}
|
||||
|
||||
std::string AddAITemplateRequest::getTemplateType()const
|
||||
@@ -55,7 +57,7 @@ std::string AddAITemplateRequest::getTemplateType()const
|
||||
void AddAITemplateRequest::setTemplateType(const std::string& templateType)
|
||||
{
|
||||
templateType_ = templateType;
|
||||
setCoreParameter("TemplateType", templateType);
|
||||
setParameter("TemplateType", templateType);
|
||||
}
|
||||
|
||||
std::string AddAITemplateRequest::getTemplateName()const
|
||||
@@ -66,7 +68,7 @@ std::string AddAITemplateRequest::getTemplateName()const
|
||||
void AddAITemplateRequest::setTemplateName(const std::string& templateName)
|
||||
{
|
||||
templateName_ = templateName;
|
||||
setCoreParameter("TemplateName", templateName);
|
||||
setParameter("TemplateName", templateName);
|
||||
}
|
||||
|
||||
std::string AddAITemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string AddAITemplateRequest::getResourceOwnerAccount()const
|
||||
void AddAITemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long AddAITemplateRequest::getOwnerId()const
|
||||
@@ -88,6 +90,6 @@ long AddAITemplateRequest::getOwnerId()const
|
||||
void AddAITemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::AddCategoryRequest;
|
||||
|
||||
AddCategoryRequest::AddCategoryRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "AddCategory")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddCategoryRequest::~AddCategoryRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddCategoryRequest::getResourceOwnerId()const
|
||||
void AddCategoryRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string AddCategoryRequest::getType()const
|
||||
@@ -44,7 +46,7 @@ std::string AddCategoryRequest::getType()const
|
||||
void AddCategoryRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setCoreParameter("Type", type);
|
||||
setParameter("Type", type);
|
||||
}
|
||||
|
||||
long AddCategoryRequest::getParentId()const
|
||||
@@ -55,7 +57,7 @@ long AddCategoryRequest::getParentId()const
|
||||
void AddCategoryRequest::setParentId(long parentId)
|
||||
{
|
||||
parentId_ = parentId;
|
||||
setCoreParameter("ParentId", std::to_string(parentId));
|
||||
setParameter("ParentId", std::to_string(parentId));
|
||||
}
|
||||
|
||||
std::string AddCategoryRequest::getCateName()const
|
||||
@@ -66,7 +68,7 @@ std::string AddCategoryRequest::getCateName()const
|
||||
void AddCategoryRequest::setCateName(const std::string& cateName)
|
||||
{
|
||||
cateName_ = cateName;
|
||||
setCoreParameter("CateName", cateName);
|
||||
setParameter("CateName", cateName);
|
||||
}
|
||||
|
||||
std::string AddCategoryRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string AddCategoryRequest::getResourceOwnerAccount()const
|
||||
void AddCategoryRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AddCategoryRequest::getOwnerId()const
|
||||
@@ -88,6 +90,6 @@ std::string AddCategoryRequest::getOwnerId()const
|
||||
void AddCategoryRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::AddEditingProjectRequest;
|
||||
|
||||
AddEditingProjectRequest::AddEditingProjectRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "AddEditingProject")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddEditingProjectRequest::~AddEditingProjectRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddEditingProjectRequest::getResourceOwnerId()const
|
||||
void AddEditingProjectRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string AddEditingProjectRequest::getDescription()const
|
||||
@@ -44,7 +46,7 @@ std::string AddEditingProjectRequest::getDescription()const
|
||||
void AddEditingProjectRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setCoreParameter("Description", description);
|
||||
setParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string AddEditingProjectRequest::getTitle()const
|
||||
@@ -55,7 +57,7 @@ std::string AddEditingProjectRequest::getTitle()const
|
||||
void AddEditingProjectRequest::setTitle(const std::string& title)
|
||||
{
|
||||
title_ = title;
|
||||
setCoreParameter("Title", title);
|
||||
setParameter("Title", title);
|
||||
}
|
||||
|
||||
std::string AddEditingProjectRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string AddEditingProjectRequest::getAccessKeyId()const
|
||||
void AddEditingProjectRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AddEditingProjectRequest::getCoverURL()const
|
||||
@@ -77,7 +79,7 @@ std::string AddEditingProjectRequest::getCoverURL()const
|
||||
void AddEditingProjectRequest::setCoverURL(const std::string& coverURL)
|
||||
{
|
||||
coverURL_ = coverURL;
|
||||
setCoreParameter("CoverURL", coverURL);
|
||||
setParameter("CoverURL", coverURL);
|
||||
}
|
||||
|
||||
std::string AddEditingProjectRequest::getDivision()const
|
||||
@@ -88,7 +90,7 @@ std::string AddEditingProjectRequest::getDivision()const
|
||||
void AddEditingProjectRequest::setDivision(const std::string& division)
|
||||
{
|
||||
division_ = division;
|
||||
setCoreParameter("Division", division);
|
||||
setParameter("Division", division);
|
||||
}
|
||||
|
||||
std::string AddEditingProjectRequest::getResourceOwnerAccount()const
|
||||
@@ -99,7 +101,7 @@ std::string AddEditingProjectRequest::getResourceOwnerAccount()const
|
||||
void AddEditingProjectRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AddEditingProjectRequest::getOwnerAccount()const
|
||||
@@ -110,7 +112,7 @@ std::string AddEditingProjectRequest::getOwnerAccount()const
|
||||
void AddEditingProjectRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AddEditingProjectRequest::getOwnerId()const
|
||||
@@ -121,7 +123,7 @@ std::string AddEditingProjectRequest::getOwnerId()const
|
||||
void AddEditingProjectRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string AddEditingProjectRequest::getTimeline()const
|
||||
@@ -132,6 +134,6 @@ std::string AddEditingProjectRequest::getTimeline()const
|
||||
void AddEditingProjectRequest::setTimeline(const std::string& timeline)
|
||||
{
|
||||
timeline_ = timeline;
|
||||
setCoreParameter("Timeline", timeline);
|
||||
setParameter("Timeline", timeline);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::AddTranscodeTemplateGroupRequest;
|
||||
|
||||
AddTranscodeTemplateGroupRequest::AddTranscodeTemplateGroupRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "AddTranscodeTemplateGroup")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddTranscodeTemplateGroupRequest::~AddTranscodeTemplateGroupRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddTranscodeTemplateGroupRequest::getTranscodeTemplateList()const
|
||||
void AddTranscodeTemplateGroupRequest::setTranscodeTemplateList(const std::string& transcodeTemplateList)
|
||||
{
|
||||
transcodeTemplateList_ = transcodeTemplateList;
|
||||
setCoreParameter("TranscodeTemplateList", transcodeTemplateList);
|
||||
setParameter("TranscodeTemplateList", transcodeTemplateList);
|
||||
}
|
||||
|
||||
long AddTranscodeTemplateGroupRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long AddTranscodeTemplateGroupRequest::getResourceOwnerId()const
|
||||
void AddTranscodeTemplateGroupRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AddTranscodeTemplateGroupRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string AddTranscodeTemplateGroupRequest::getAccessKeyId()const
|
||||
void AddTranscodeTemplateGroupRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AddTranscodeTemplateGroupRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string AddTranscodeTemplateGroupRequest::getResourceOwnerAccount()const
|
||||
void AddTranscodeTemplateGroupRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long AddTranscodeTemplateGroupRequest::getOwnerId()const
|
||||
@@ -77,7 +79,7 @@ long AddTranscodeTemplateGroupRequest::getOwnerId()const
|
||||
void AddTranscodeTemplateGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddTranscodeTemplateGroupRequest::getTranscodeTemplateGroupId()const
|
||||
@@ -88,7 +90,7 @@ std::string AddTranscodeTemplateGroupRequest::getTranscodeTemplateGroupId()const
|
||||
void AddTranscodeTemplateGroupRequest::setTranscodeTemplateGroupId(const std::string& transcodeTemplateGroupId)
|
||||
{
|
||||
transcodeTemplateGroupId_ = transcodeTemplateGroupId;
|
||||
setCoreParameter("TranscodeTemplateGroupId", transcodeTemplateGroupId);
|
||||
setParameter("TranscodeTemplateGroupId", transcodeTemplateGroupId);
|
||||
}
|
||||
|
||||
std::string AddTranscodeTemplateGroupRequest::getAppId()const
|
||||
@@ -99,7 +101,7 @@ std::string AddTranscodeTemplateGroupRequest::getAppId()const
|
||||
void AddTranscodeTemplateGroupRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
std::string AddTranscodeTemplateGroupRequest::getName()const
|
||||
@@ -110,6 +112,6 @@ std::string AddTranscodeTemplateGroupRequest::getName()const
|
||||
void AddTranscodeTemplateGroupRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setCoreParameter("Name", name);
|
||||
setParameter("Name", name);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::AddVodDomainRequest;
|
||||
|
||||
AddVodDomainRequest::AddVodDomainRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "AddVodDomain")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddVodDomainRequest::~AddVodDomainRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddVodDomainRequest::getSources()const
|
||||
void AddVodDomainRequest::setSources(const std::string& sources)
|
||||
{
|
||||
sources_ = sources;
|
||||
setCoreParameter("Sources", sources);
|
||||
setParameter("Sources", sources);
|
||||
}
|
||||
|
||||
std::string AddVodDomainRequest::getSecurityToken()const
|
||||
@@ -44,7 +46,7 @@ std::string AddVodDomainRequest::getSecurityToken()const
|
||||
void AddVodDomainRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AddVodDomainRequest::getScope()const
|
||||
@@ -55,7 +57,7 @@ std::string AddVodDomainRequest::getScope()const
|
||||
void AddVodDomainRequest::setScope(const std::string& scope)
|
||||
{
|
||||
scope_ = scope;
|
||||
setCoreParameter("Scope", scope);
|
||||
setParameter("Scope", scope);
|
||||
}
|
||||
|
||||
std::string AddVodDomainRequest::getOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string AddVodDomainRequest::getOwnerAccount()const
|
||||
void AddVodDomainRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AddVodDomainRequest::getDomainName()const
|
||||
@@ -77,7 +79,7 @@ std::string AddVodDomainRequest::getDomainName()const
|
||||
void AddVodDomainRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long AddVodDomainRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long AddVodDomainRequest::getOwnerId()const
|
||||
void AddVodDomainRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddVodDomainRequest::getCheckUrl()const
|
||||
@@ -99,6 +101,6 @@ std::string AddVodDomainRequest::getCheckUrl()const
|
||||
void AddVodDomainRequest::setCheckUrl(const std::string& checkUrl)
|
||||
{
|
||||
checkUrl_ = checkUrl;
|
||||
setCoreParameter("CheckUrl", checkUrl);
|
||||
setParameter("CheckUrl", checkUrl);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::AddVodTemplateRequest;
|
||||
|
||||
AddVodTemplateRequest::AddVodTemplateRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "AddVodTemplate")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddVodTemplateRequest::~AddVodTemplateRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long AddVodTemplateRequest::getResourceOwnerId()const
|
||||
void AddVodTemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AddVodTemplateRequest::getSubTemplateType()const
|
||||
@@ -44,7 +46,7 @@ std::string AddVodTemplateRequest::getSubTemplateType()const
|
||||
void AddVodTemplateRequest::setSubTemplateType(const std::string& subTemplateType)
|
||||
{
|
||||
subTemplateType_ = subTemplateType;
|
||||
setCoreParameter("SubTemplateType", subTemplateType);
|
||||
setParameter("SubTemplateType", subTemplateType);
|
||||
}
|
||||
|
||||
std::string AddVodTemplateRequest::getTemplateConfig()const
|
||||
@@ -55,7 +57,7 @@ std::string AddVodTemplateRequest::getTemplateConfig()const
|
||||
void AddVodTemplateRequest::setTemplateConfig(const std::string& templateConfig)
|
||||
{
|
||||
templateConfig_ = templateConfig;
|
||||
setCoreParameter("TemplateConfig", templateConfig);
|
||||
setParameter("TemplateConfig", templateConfig);
|
||||
}
|
||||
|
||||
std::string AddVodTemplateRequest::getTemplateType()const
|
||||
@@ -66,7 +68,7 @@ std::string AddVodTemplateRequest::getTemplateType()const
|
||||
void AddVodTemplateRequest::setTemplateType(const std::string& templateType)
|
||||
{
|
||||
templateType_ = templateType;
|
||||
setCoreParameter("TemplateType", templateType);
|
||||
setParameter("TemplateType", templateType);
|
||||
}
|
||||
|
||||
std::string AddVodTemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string AddVodTemplateRequest::getResourceOwnerAccount()const
|
||||
void AddVodTemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long AddVodTemplateRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long AddVodTemplateRequest::getOwnerId()const
|
||||
void AddVodTemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddVodTemplateRequest::getAppId()const
|
||||
@@ -99,7 +101,7 @@ std::string AddVodTemplateRequest::getAppId()const
|
||||
void AddVodTemplateRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
std::string AddVodTemplateRequest::getName()const
|
||||
@@ -110,6 +112,6 @@ std::string AddVodTemplateRequest::getName()const
|
||||
void AddVodTemplateRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setCoreParameter("Name", name);
|
||||
setParameter("Name", name);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::AddWatermarkRequest;
|
||||
|
||||
AddWatermarkRequest::AddWatermarkRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "AddWatermark")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddWatermarkRequest::~AddWatermarkRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long AddWatermarkRequest::getResourceOwnerId()const
|
||||
void AddWatermarkRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AddWatermarkRequest::getType()const
|
||||
@@ -44,7 +46,7 @@ std::string AddWatermarkRequest::getType()const
|
||||
void AddWatermarkRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setCoreParameter("Type", type);
|
||||
setParameter("Type", type);
|
||||
}
|
||||
|
||||
std::string AddWatermarkRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string AddWatermarkRequest::getAccessKeyId()const
|
||||
void AddWatermarkRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AddWatermarkRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string AddWatermarkRequest::getResourceOwnerAccount()const
|
||||
void AddWatermarkRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long AddWatermarkRequest::getOwnerId()const
|
||||
@@ -77,7 +79,7 @@ long AddWatermarkRequest::getOwnerId()const
|
||||
void AddWatermarkRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddWatermarkRequest::getWatermarkConfig()const
|
||||
@@ -88,7 +90,7 @@ std::string AddWatermarkRequest::getWatermarkConfig()const
|
||||
void AddWatermarkRequest::setWatermarkConfig(const std::string& watermarkConfig)
|
||||
{
|
||||
watermarkConfig_ = watermarkConfig;
|
||||
setCoreParameter("WatermarkConfig", watermarkConfig);
|
||||
setParameter("WatermarkConfig", watermarkConfig);
|
||||
}
|
||||
|
||||
std::string AddWatermarkRequest::getAppId()const
|
||||
@@ -99,7 +101,7 @@ std::string AddWatermarkRequest::getAppId()const
|
||||
void AddWatermarkRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
std::string AddWatermarkRequest::getName()const
|
||||
@@ -110,7 +112,7 @@ std::string AddWatermarkRequest::getName()const
|
||||
void AddWatermarkRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setCoreParameter("Name", name);
|
||||
setParameter("Name", name);
|
||||
}
|
||||
|
||||
std::string AddWatermarkRequest::getFileUrl()const
|
||||
@@ -121,6 +123,6 @@ std::string AddWatermarkRequest::getFileUrl()const
|
||||
void AddWatermarkRequest::setFileUrl(const std::string& fileUrl)
|
||||
{
|
||||
fileUrl_ = fileUrl;
|
||||
setCoreParameter("FileUrl", fileUrl);
|
||||
setParameter("FileUrl", fileUrl);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::AttachAppPolicyToIdentityRequest;
|
||||
|
||||
AttachAppPolicyToIdentityRequest::AttachAppPolicyToIdentityRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "AttachAppPolicyToIdentity")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AttachAppPolicyToIdentityRequest::~AttachAppPolicyToIdentityRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long AttachAppPolicyToIdentityRequest::getResourceOwnerId()const
|
||||
void AttachAppPolicyToIdentityRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AttachAppPolicyToIdentityRequest::getPolicyNames()const
|
||||
@@ -44,7 +46,7 @@ std::string AttachAppPolicyToIdentityRequest::getPolicyNames()const
|
||||
void AttachAppPolicyToIdentityRequest::setPolicyNames(const std::string& policyNames)
|
||||
{
|
||||
policyNames_ = policyNames;
|
||||
setCoreParameter("PolicyNames", policyNames);
|
||||
setParameter("PolicyNames", policyNames);
|
||||
}
|
||||
|
||||
std::string AttachAppPolicyToIdentityRequest::getResourceRealOwnerId()const
|
||||
@@ -55,7 +57,7 @@ std::string AttachAppPolicyToIdentityRequest::getResourceRealOwnerId()const
|
||||
void AttachAppPolicyToIdentityRequest::setResourceRealOwnerId(const std::string& resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", resourceRealOwnerId);
|
||||
setParameter("ResourceRealOwnerId", resourceRealOwnerId);
|
||||
}
|
||||
|
||||
std::string AttachAppPolicyToIdentityRequest::getIdentityName()const
|
||||
@@ -66,7 +68,7 @@ std::string AttachAppPolicyToIdentityRequest::getIdentityName()const
|
||||
void AttachAppPolicyToIdentityRequest::setIdentityName(const std::string& identityName)
|
||||
{
|
||||
identityName_ = identityName;
|
||||
setCoreParameter("IdentityName", identityName);
|
||||
setParameter("IdentityName", identityName);
|
||||
}
|
||||
|
||||
std::string AttachAppPolicyToIdentityRequest::getIdentityType()const
|
||||
@@ -77,7 +79,7 @@ std::string AttachAppPolicyToIdentityRequest::getIdentityType()const
|
||||
void AttachAppPolicyToIdentityRequest::setIdentityType(const std::string& identityType)
|
||||
{
|
||||
identityType_ = identityType;
|
||||
setCoreParameter("IdentityType", identityType);
|
||||
setParameter("IdentityType", identityType);
|
||||
}
|
||||
|
||||
std::string AttachAppPolicyToIdentityRequest::getResourceOwnerAccount()const
|
||||
@@ -88,7 +90,7 @@ std::string AttachAppPolicyToIdentityRequest::getResourceOwnerAccount()const
|
||||
void AttachAppPolicyToIdentityRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long AttachAppPolicyToIdentityRequest::getOwnerId()const
|
||||
@@ -99,7 +101,7 @@ long AttachAppPolicyToIdentityRequest::getOwnerId()const
|
||||
void AttachAppPolicyToIdentityRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AttachAppPolicyToIdentityRequest::getAppId()const
|
||||
@@ -110,6 +112,6 @@ std::string AttachAppPolicyToIdentityRequest::getAppId()const
|
||||
void AttachAppPolicyToIdentityRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::BatchSetVodDomainConfigsRequest;
|
||||
|
||||
BatchSetVodDomainConfigsRequest::BatchSetVodDomainConfigsRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "BatchSetVodDomainConfigs")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
BatchSetVodDomainConfigsRequest::~BatchSetVodDomainConfigsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string BatchSetVodDomainConfigsRequest::getFunctions()const
|
||||
void BatchSetVodDomainConfigsRequest::setFunctions(const std::string& functions)
|
||||
{
|
||||
functions_ = functions;
|
||||
setCoreParameter("Functions", functions);
|
||||
setParameter("Functions", functions);
|
||||
}
|
||||
|
||||
std::string BatchSetVodDomainConfigsRequest::getDomainNames()const
|
||||
@@ -44,7 +46,7 @@ std::string BatchSetVodDomainConfigsRequest::getDomainNames()const
|
||||
void BatchSetVodDomainConfigsRequest::setDomainNames(const std::string& domainNames)
|
||||
{
|
||||
domainNames_ = domainNames;
|
||||
setCoreParameter("DomainNames", domainNames);
|
||||
setParameter("DomainNames", domainNames);
|
||||
}
|
||||
|
||||
std::string BatchSetVodDomainConfigsRequest::getOwnerAccount()const
|
||||
@@ -55,7 +57,7 @@ std::string BatchSetVodDomainConfigsRequest::getOwnerAccount()const
|
||||
void BatchSetVodDomainConfigsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long BatchSetVodDomainConfigsRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long BatchSetVodDomainConfigsRequest::getOwnerId()const
|
||||
void BatchSetVodDomainConfigsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string BatchSetVodDomainConfigsRequest::getSecurityToken()const
|
||||
@@ -77,6 +79,6 @@ std::string BatchSetVodDomainConfigsRequest::getSecurityToken()const
|
||||
void BatchSetVodDomainConfigsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::BatchStartVodDomainRequest;
|
||||
|
||||
BatchStartVodDomainRequest::BatchStartVodDomainRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "BatchStartVodDomain")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
BatchStartVodDomainRequest::~BatchStartVodDomainRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string BatchStartVodDomainRequest::getDomainNames()const
|
||||
void BatchStartVodDomainRequest::setDomainNames(const std::string& domainNames)
|
||||
{
|
||||
domainNames_ = domainNames;
|
||||
setCoreParameter("DomainNames", domainNames);
|
||||
setParameter("DomainNames", domainNames);
|
||||
}
|
||||
|
||||
long BatchStartVodDomainRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long BatchStartVodDomainRequest::getOwnerId()const
|
||||
void BatchStartVodDomainRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string BatchStartVodDomainRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string BatchStartVodDomainRequest::getSecurityToken()const
|
||||
void BatchStartVodDomainRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::BatchStopVodDomainRequest;
|
||||
|
||||
BatchStopVodDomainRequest::BatchStopVodDomainRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "BatchStopVodDomain")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
BatchStopVodDomainRequest::~BatchStopVodDomainRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string BatchStopVodDomainRequest::getDomainNames()const
|
||||
void BatchStopVodDomainRequest::setDomainNames(const std::string& domainNames)
|
||||
{
|
||||
domainNames_ = domainNames;
|
||||
setCoreParameter("DomainNames", domainNames);
|
||||
setParameter("DomainNames", domainNames);
|
||||
}
|
||||
|
||||
long BatchStopVodDomainRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long BatchStopVodDomainRequest::getOwnerId()const
|
||||
void BatchStopVodDomainRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string BatchStopVodDomainRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string BatchStopVodDomainRequest::getSecurityToken()const
|
||||
void BatchStopVodDomainRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::CreateAppInfoRequest;
|
||||
|
||||
CreateAppInfoRequest::CreateAppInfoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "CreateAppInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CreateAppInfoRequest::~CreateAppInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long CreateAppInfoRequest::getResourceOwnerId()const
|
||||
void CreateAppInfoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateAppInfoRequest::getDescription()const
|
||||
@@ -44,7 +46,7 @@ std::string CreateAppInfoRequest::getDescription()const
|
||||
void CreateAppInfoRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setCoreParameter("Description", description);
|
||||
setParameter("Description", description);
|
||||
}
|
||||
|
||||
long CreateAppInfoRequest::getResourceRealOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long CreateAppInfoRequest::getResourceRealOwnerId()const
|
||||
void CreateAppInfoRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateAppInfoRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string CreateAppInfoRequest::getAccessKeyId()const
|
||||
void CreateAppInfoRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateAppInfoRequest::getAppName()const
|
||||
@@ -77,7 +79,7 @@ std::string CreateAppInfoRequest::getAppName()const
|
||||
void CreateAppInfoRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string CreateAppInfoRequest::getResourceOwnerAccount()const
|
||||
@@ -88,7 +90,7 @@ std::string CreateAppInfoRequest::getResourceOwnerAccount()const
|
||||
void CreateAppInfoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long CreateAppInfoRequest::getOwnerId()const
|
||||
@@ -99,6 +101,6 @@ long CreateAppInfoRequest::getOwnerId()const
|
||||
void CreateAppInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::CreateAuditRequest;
|
||||
|
||||
CreateAuditRequest::CreateAuditRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "CreateAudit")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CreateAuditRequest::~CreateAuditRequest()
|
||||
{}
|
||||
@@ -33,6 +35,6 @@ std::string CreateAuditRequest::getAuditContent()const
|
||||
void CreateAuditRequest::setAuditContent(const std::string& auditContent)
|
||||
{
|
||||
auditContent_ = auditContent;
|
||||
setCoreParameter("AuditContent", auditContent);
|
||||
setParameter("AuditContent", auditContent);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::CreateUploadAttachedMediaRequest;
|
||||
|
||||
CreateUploadAttachedMediaRequest::CreateUploadAttachedMediaRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "CreateUploadAttachedMedia")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CreateUploadAttachedMediaRequest::~CreateUploadAttachedMediaRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long CreateUploadAttachedMediaRequest::getResourceOwnerId()const
|
||||
void CreateUploadAttachedMediaRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getIcon()const
|
||||
@@ -44,7 +46,7 @@ std::string CreateUploadAttachedMediaRequest::getIcon()const
|
||||
void CreateUploadAttachedMediaRequest::setIcon(const std::string& icon)
|
||||
{
|
||||
icon_ = icon;
|
||||
setCoreParameter("Icon", icon);
|
||||
setParameter("Icon", icon);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getDescription()const
|
||||
@@ -55,7 +57,7 @@ std::string CreateUploadAttachedMediaRequest::getDescription()const
|
||||
void CreateUploadAttachedMediaRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setCoreParameter("Description", description);
|
||||
setParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getFileSize()const
|
||||
@@ -66,7 +68,7 @@ std::string CreateUploadAttachedMediaRequest::getFileSize()const
|
||||
void CreateUploadAttachedMediaRequest::setFileSize(const std::string& fileSize)
|
||||
{
|
||||
fileSize_ = fileSize;
|
||||
setCoreParameter("FileSize", fileSize);
|
||||
setParameter("FileSize", fileSize);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getTitle()const
|
||||
@@ -77,7 +79,7 @@ std::string CreateUploadAttachedMediaRequest::getTitle()const
|
||||
void CreateUploadAttachedMediaRequest::setTitle(const std::string& title)
|
||||
{
|
||||
title_ = title;
|
||||
setCoreParameter("Title", title);
|
||||
setParameter("Title", title);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getAccessKeyId()const
|
||||
@@ -88,7 +90,7 @@ std::string CreateUploadAttachedMediaRequest::getAccessKeyId()const
|
||||
void CreateUploadAttachedMediaRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getBusinessType()const
|
||||
@@ -99,7 +101,7 @@ std::string CreateUploadAttachedMediaRequest::getBusinessType()const
|
||||
void CreateUploadAttachedMediaRequest::setBusinessType(const std::string& businessType)
|
||||
{
|
||||
businessType_ = businessType;
|
||||
setCoreParameter("BusinessType", businessType);
|
||||
setParameter("BusinessType", businessType);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getStorageLocation()const
|
||||
@@ -110,7 +112,7 @@ std::string CreateUploadAttachedMediaRequest::getStorageLocation()const
|
||||
void CreateUploadAttachedMediaRequest::setStorageLocation(const std::string& storageLocation)
|
||||
{
|
||||
storageLocation_ = storageLocation;
|
||||
setCoreParameter("StorageLocation", storageLocation);
|
||||
setParameter("StorageLocation", storageLocation);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getUserData()const
|
||||
@@ -121,7 +123,7 @@ std::string CreateUploadAttachedMediaRequest::getUserData()const
|
||||
void CreateUploadAttachedMediaRequest::setUserData(const std::string& userData)
|
||||
{
|
||||
userData_ = userData;
|
||||
setCoreParameter("UserData", userData);
|
||||
setParameter("UserData", userData);
|
||||
}
|
||||
|
||||
long CreateUploadAttachedMediaRequest::getCateId()const
|
||||
@@ -132,7 +134,7 @@ long CreateUploadAttachedMediaRequest::getCateId()const
|
||||
void CreateUploadAttachedMediaRequest::setCateId(long cateId)
|
||||
{
|
||||
cateId_ = cateId;
|
||||
setCoreParameter("CateId", std::to_string(cateId));
|
||||
setParameter("CateId", std::to_string(cateId));
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getResourceOwnerAccount()const
|
||||
@@ -143,7 +145,7 @@ std::string CreateUploadAttachedMediaRequest::getResourceOwnerAccount()const
|
||||
void CreateUploadAttachedMediaRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getCateIds()const
|
||||
@@ -154,7 +156,7 @@ std::string CreateUploadAttachedMediaRequest::getCateIds()const
|
||||
void CreateUploadAttachedMediaRequest::setCateIds(const std::string& cateIds)
|
||||
{
|
||||
cateIds_ = cateIds;
|
||||
setCoreParameter("CateIds", cateIds);
|
||||
setParameter("CateIds", cateIds);
|
||||
}
|
||||
|
||||
long CreateUploadAttachedMediaRequest::getOwnerId()const
|
||||
@@ -165,7 +167,7 @@ long CreateUploadAttachedMediaRequest::getOwnerId()const
|
||||
void CreateUploadAttachedMediaRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getTags()const
|
||||
@@ -176,7 +178,7 @@ std::string CreateUploadAttachedMediaRequest::getTags()const
|
||||
void CreateUploadAttachedMediaRequest::setTags(const std::string& tags)
|
||||
{
|
||||
tags_ = tags;
|
||||
setCoreParameter("Tags", tags);
|
||||
setParameter("Tags", tags);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getMediaExt()const
|
||||
@@ -187,7 +189,7 @@ std::string CreateUploadAttachedMediaRequest::getMediaExt()const
|
||||
void CreateUploadAttachedMediaRequest::setMediaExt(const std::string& mediaExt)
|
||||
{
|
||||
mediaExt_ = mediaExt;
|
||||
setCoreParameter("MediaExt", mediaExt);
|
||||
setParameter("MediaExt", mediaExt);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getFileName()const
|
||||
@@ -198,7 +200,7 @@ std::string CreateUploadAttachedMediaRequest::getFileName()const
|
||||
void CreateUploadAttachedMediaRequest::setFileName(const std::string& fileName)
|
||||
{
|
||||
fileName_ = fileName;
|
||||
setCoreParameter("FileName", fileName);
|
||||
setParameter("FileName", fileName);
|
||||
}
|
||||
|
||||
std::string CreateUploadAttachedMediaRequest::getAppId()const
|
||||
@@ -209,6 +211,6 @@ std::string CreateUploadAttachedMediaRequest::getAppId()const
|
||||
void CreateUploadAttachedMediaRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::CreateUploadImageRequest;
|
||||
|
||||
CreateUploadImageRequest::CreateUploadImageRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "CreateUploadImage")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CreateUploadImageRequest::~CreateUploadImageRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long CreateUploadImageRequest::getResourceOwnerId()const
|
||||
void CreateUploadImageRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getDescription()const
|
||||
@@ -44,7 +46,7 @@ std::string CreateUploadImageRequest::getDescription()const
|
||||
void CreateUploadImageRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setCoreParameter("Description", description);
|
||||
setParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getTitle()const
|
||||
@@ -55,7 +57,7 @@ std::string CreateUploadImageRequest::getTitle()const
|
||||
void CreateUploadImageRequest::setTitle(const std::string& title)
|
||||
{
|
||||
title_ = title;
|
||||
setCoreParameter("Title", title);
|
||||
setParameter("Title", title);
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string CreateUploadImageRequest::getAccessKeyId()const
|
||||
void CreateUploadImageRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getStorageLocation()const
|
||||
@@ -77,7 +79,7 @@ std::string CreateUploadImageRequest::getStorageLocation()const
|
||||
void CreateUploadImageRequest::setStorageLocation(const std::string& storageLocation)
|
||||
{
|
||||
storageLocation_ = storageLocation;
|
||||
setCoreParameter("StorageLocation", storageLocation);
|
||||
setParameter("StorageLocation", storageLocation);
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getUserData()const
|
||||
@@ -88,7 +90,7 @@ std::string CreateUploadImageRequest::getUserData()const
|
||||
void CreateUploadImageRequest::setUserData(const std::string& userData)
|
||||
{
|
||||
userData_ = userData;
|
||||
setCoreParameter("UserData", userData);
|
||||
setParameter("UserData", userData);
|
||||
}
|
||||
|
||||
long CreateUploadImageRequest::getCateId()const
|
||||
@@ -99,7 +101,7 @@ long CreateUploadImageRequest::getCateId()const
|
||||
void CreateUploadImageRequest::setCateId(long cateId)
|
||||
{
|
||||
cateId_ = cateId;
|
||||
setCoreParameter("CateId", std::to_string(cateId));
|
||||
setParameter("CateId", std::to_string(cateId));
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getImageType()const
|
||||
@@ -110,7 +112,7 @@ std::string CreateUploadImageRequest::getImageType()const
|
||||
void CreateUploadImageRequest::setImageType(const std::string& imageType)
|
||||
{
|
||||
imageType_ = imageType;
|
||||
setCoreParameter("ImageType", imageType);
|
||||
setParameter("ImageType", imageType);
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getResourceOwnerAccount()const
|
||||
@@ -121,7 +123,7 @@ std::string CreateUploadImageRequest::getResourceOwnerAccount()const
|
||||
void CreateUploadImageRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getImageExt()const
|
||||
@@ -132,7 +134,7 @@ std::string CreateUploadImageRequest::getImageExt()const
|
||||
void CreateUploadImageRequest::setImageExt(const std::string& imageExt)
|
||||
{
|
||||
imageExt_ = imageExt;
|
||||
setCoreParameter("ImageExt", imageExt);
|
||||
setParameter("ImageExt", imageExt);
|
||||
}
|
||||
|
||||
long CreateUploadImageRequest::getOwnerId()const
|
||||
@@ -143,7 +145,7 @@ long CreateUploadImageRequest::getOwnerId()const
|
||||
void CreateUploadImageRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getTags()const
|
||||
@@ -154,7 +156,7 @@ std::string CreateUploadImageRequest::getTags()const
|
||||
void CreateUploadImageRequest::setTags(const std::string& tags)
|
||||
{
|
||||
tags_ = tags;
|
||||
setCoreParameter("Tags", tags);
|
||||
setParameter("Tags", tags);
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getOriginalFileName()const
|
||||
@@ -165,7 +167,7 @@ std::string CreateUploadImageRequest::getOriginalFileName()const
|
||||
void CreateUploadImageRequest::setOriginalFileName(const std::string& originalFileName)
|
||||
{
|
||||
originalFileName_ = originalFileName;
|
||||
setCoreParameter("OriginalFileName", originalFileName);
|
||||
setParameter("OriginalFileName", originalFileName);
|
||||
}
|
||||
|
||||
std::string CreateUploadImageRequest::getAppId()const
|
||||
@@ -176,6 +178,6 @@ std::string CreateUploadImageRequest::getAppId()const
|
||||
void CreateUploadImageRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::CreateUploadVideoRequest;
|
||||
|
||||
CreateUploadVideoRequest::CreateUploadVideoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "CreateUploadVideo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CreateUploadVideoRequest::~CreateUploadVideoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long CreateUploadVideoRequest::getResourceOwnerId()const
|
||||
void CreateUploadVideoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getTranscodeMode()const
|
||||
@@ -44,7 +46,7 @@ std::string CreateUploadVideoRequest::getTranscodeMode()const
|
||||
void CreateUploadVideoRequest::setTranscodeMode(const std::string& transcodeMode)
|
||||
{
|
||||
transcodeMode_ = transcodeMode;
|
||||
setCoreParameter("TranscodeMode", transcodeMode);
|
||||
setParameter("TranscodeMode", transcodeMode);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getDescription()const
|
||||
@@ -55,7 +57,7 @@ std::string CreateUploadVideoRequest::getDescription()const
|
||||
void CreateUploadVideoRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setCoreParameter("Description", description);
|
||||
setParameter("Description", description);
|
||||
}
|
||||
|
||||
long CreateUploadVideoRequest::getFileSize()const
|
||||
@@ -66,7 +68,7 @@ long CreateUploadVideoRequest::getFileSize()const
|
||||
void CreateUploadVideoRequest::setFileSize(long fileSize)
|
||||
{
|
||||
fileSize_ = fileSize;
|
||||
setCoreParameter("FileSize", std::to_string(fileSize));
|
||||
setParameter("FileSize", std::to_string(fileSize));
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getTitle()const
|
||||
@@ -77,7 +79,7 @@ std::string CreateUploadVideoRequest::getTitle()const
|
||||
void CreateUploadVideoRequest::setTitle(const std::string& title)
|
||||
{
|
||||
title_ = title;
|
||||
setCoreParameter("Title", title);
|
||||
setParameter("Title", title);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getStorageLocation()const
|
||||
@@ -88,7 +90,7 @@ std::string CreateUploadVideoRequest::getStorageLocation()const
|
||||
void CreateUploadVideoRequest::setStorageLocation(const std::string& storageLocation)
|
||||
{
|
||||
storageLocation_ = storageLocation;
|
||||
setCoreParameter("StorageLocation", storageLocation);
|
||||
setParameter("StorageLocation", storageLocation);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getCoverURL()const
|
||||
@@ -99,7 +101,7 @@ std::string CreateUploadVideoRequest::getCoverURL()const
|
||||
void CreateUploadVideoRequest::setCoverURL(const std::string& coverURL)
|
||||
{
|
||||
coverURL_ = coverURL;
|
||||
setCoreParameter("CoverURL", coverURL);
|
||||
setParameter("CoverURL", coverURL);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getUserData()const
|
||||
@@ -110,7 +112,7 @@ std::string CreateUploadVideoRequest::getUserData()const
|
||||
void CreateUploadVideoRequest::setUserData(const std::string& userData)
|
||||
{
|
||||
userData_ = userData;
|
||||
setCoreParameter("UserData", userData);
|
||||
setParameter("UserData", userData);
|
||||
}
|
||||
|
||||
long CreateUploadVideoRequest::getCateId()const
|
||||
@@ -121,7 +123,7 @@ long CreateUploadVideoRequest::getCateId()const
|
||||
void CreateUploadVideoRequest::setCateId(long cateId)
|
||||
{
|
||||
cateId_ = cateId;
|
||||
setCoreParameter("CateId", std::to_string(cateId));
|
||||
setParameter("CateId", std::to_string(cateId));
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getWorkflowId()const
|
||||
@@ -132,7 +134,7 @@ std::string CreateUploadVideoRequest::getWorkflowId()const
|
||||
void CreateUploadVideoRequest::setWorkflowId(const std::string& workflowId)
|
||||
{
|
||||
workflowId_ = workflowId;
|
||||
setCoreParameter("WorkflowId", workflowId);
|
||||
setParameter("WorkflowId", workflowId);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getCustomMediaInfo()const
|
||||
@@ -143,7 +145,7 @@ std::string CreateUploadVideoRequest::getCustomMediaInfo()const
|
||||
void CreateUploadVideoRequest::setCustomMediaInfo(const std::string& customMediaInfo)
|
||||
{
|
||||
customMediaInfo_ = customMediaInfo;
|
||||
setCoreParameter("CustomMediaInfo", customMediaInfo);
|
||||
setParameter("CustomMediaInfo", customMediaInfo);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getResourceOwnerAccount()const
|
||||
@@ -154,7 +156,7 @@ std::string CreateUploadVideoRequest::getResourceOwnerAccount()const
|
||||
void CreateUploadVideoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getIP()const
|
||||
@@ -165,7 +167,7 @@ std::string CreateUploadVideoRequest::getIP()const
|
||||
void CreateUploadVideoRequest::setIP(const std::string& iP)
|
||||
{
|
||||
iP_ = iP;
|
||||
setCoreParameter("IP", iP);
|
||||
setParameter("IP", iP);
|
||||
}
|
||||
|
||||
long CreateUploadVideoRequest::getOwnerId()const
|
||||
@@ -176,7 +178,7 @@ long CreateUploadVideoRequest::getOwnerId()const
|
||||
void CreateUploadVideoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getTags()const
|
||||
@@ -187,7 +189,7 @@ std::string CreateUploadVideoRequest::getTags()const
|
||||
void CreateUploadVideoRequest::setTags(const std::string& tags)
|
||||
{
|
||||
tags_ = tags;
|
||||
setCoreParameter("Tags", tags);
|
||||
setParameter("Tags", tags);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getFileName()const
|
||||
@@ -198,7 +200,7 @@ std::string CreateUploadVideoRequest::getFileName()const
|
||||
void CreateUploadVideoRequest::setFileName(const std::string& fileName)
|
||||
{
|
||||
fileName_ = fileName;
|
||||
setCoreParameter("FileName", fileName);
|
||||
setParameter("FileName", fileName);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getTemplateGroupId()const
|
||||
@@ -209,7 +211,7 @@ std::string CreateUploadVideoRequest::getTemplateGroupId()const
|
||||
void CreateUploadVideoRequest::setTemplateGroupId(const std::string& templateGroupId)
|
||||
{
|
||||
templateGroupId_ = templateGroupId;
|
||||
setCoreParameter("TemplateGroupId", templateGroupId);
|
||||
setParameter("TemplateGroupId", templateGroupId);
|
||||
}
|
||||
|
||||
std::string CreateUploadVideoRequest::getAppId()const
|
||||
@@ -220,6 +222,6 @@ std::string CreateUploadVideoRequest::getAppId()const
|
||||
void CreateUploadVideoRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteAITemplateRequest;
|
||||
|
||||
DeleteAITemplateRequest::DeleteAITemplateRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteAITemplate")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteAITemplateRequest::~DeleteAITemplateRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteAITemplateRequest::getResourceOwnerId()const
|
||||
void DeleteAITemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteAITemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteAITemplateRequest::getResourceOwnerAccount()const
|
||||
void DeleteAITemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long DeleteAITemplateRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteAITemplateRequest::getOwnerId()const
|
||||
void DeleteAITemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteAITemplateRequest::getTemplateId()const
|
||||
@@ -66,6 +68,6 @@ std::string DeleteAITemplateRequest::getTemplateId()const
|
||||
void DeleteAITemplateRequest::setTemplateId(const std::string& templateId)
|
||||
{
|
||||
templateId_ = templateId;
|
||||
setCoreParameter("TemplateId", templateId);
|
||||
setParameter("TemplateId", templateId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteAppInfoRequest;
|
||||
|
||||
DeleteAppInfoRequest::DeleteAppInfoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteAppInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteAppInfoRequest::~DeleteAppInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteAppInfoRequest::getResourceOwnerId()const
|
||||
void DeleteAppInfoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteAppInfoRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteAppInfoRequest::getResourceOwnerAccount()const
|
||||
void DeleteAppInfoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long DeleteAppInfoRequest::getResourceRealOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteAppInfoRequest::getResourceRealOwnerId()const
|
||||
void DeleteAppInfoRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
long DeleteAppInfoRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long DeleteAppInfoRequest::getOwnerId()const
|
||||
void DeleteAppInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteAppInfoRequest::getAccessKeyId()const
|
||||
@@ -77,7 +79,7 @@ std::string DeleteAppInfoRequest::getAccessKeyId()const
|
||||
void DeleteAppInfoRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteAppInfoRequest::getAppId()const
|
||||
@@ -88,6 +90,6 @@ std::string DeleteAppInfoRequest::getAppId()const
|
||||
void DeleteAppInfoRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteAttachedMediaRequest;
|
||||
|
||||
DeleteAttachedMediaRequest::DeleteAttachedMediaRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteAttachedMedia")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteAttachedMediaRequest::~DeleteAttachedMediaRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteAttachedMediaRequest::getResourceOwnerId()const
|
||||
void DeleteAttachedMediaRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteAttachedMediaRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteAttachedMediaRequest::getResourceOwnerAccount()const
|
||||
void DeleteAttachedMediaRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long DeleteAttachedMediaRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteAttachedMediaRequest::getOwnerId()const
|
||||
void DeleteAttachedMediaRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteAttachedMediaRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string DeleteAttachedMediaRequest::getAccessKeyId()const
|
||||
void DeleteAttachedMediaRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteAttachedMediaRequest::getMediaIds()const
|
||||
@@ -77,6 +79,6 @@ std::string DeleteAttachedMediaRequest::getMediaIds()const
|
||||
void DeleteAttachedMediaRequest::setMediaIds(const std::string& mediaIds)
|
||||
{
|
||||
mediaIds_ = mediaIds;
|
||||
setCoreParameter("MediaIds", mediaIds);
|
||||
setParameter("MediaIds", mediaIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteCategoryRequest;
|
||||
|
||||
DeleteCategoryRequest::DeleteCategoryRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteCategory")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteCategoryRequest::~DeleteCategoryRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteCategoryRequest::getResourceOwnerId()const
|
||||
void DeleteCategoryRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string DeleteCategoryRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteCategoryRequest::getResourceOwnerAccount()const
|
||||
void DeleteCategoryRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteCategoryRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteCategoryRequest::getOwnerId()const
|
||||
void DeleteCategoryRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
long DeleteCategoryRequest::getCateId()const
|
||||
@@ -66,6 +68,6 @@ long DeleteCategoryRequest::getCateId()const
|
||||
void DeleteCategoryRequest::setCateId(long cateId)
|
||||
{
|
||||
cateId_ = cateId;
|
||||
setCoreParameter("CateId", std::to_string(cateId));
|
||||
setParameter("CateId", std::to_string(cateId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteEditingProjectRequest;
|
||||
|
||||
DeleteEditingProjectRequest::DeleteEditingProjectRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteEditingProject")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteEditingProjectRequest::~DeleteEditingProjectRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteEditingProjectRequest::getResourceOwnerId()const
|
||||
void DeleteEditingProjectRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string DeleteEditingProjectRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteEditingProjectRequest::getResourceOwnerAccount()const
|
||||
void DeleteEditingProjectRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteEditingProjectRequest::getOwnerAccount()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteEditingProjectRequest::getOwnerAccount()const
|
||||
void DeleteEditingProjectRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteEditingProjectRequest::getProjectIds()const
|
||||
@@ -66,7 +68,7 @@ std::string DeleteEditingProjectRequest::getProjectIds()const
|
||||
void DeleteEditingProjectRequest::setProjectIds(const std::string& projectIds)
|
||||
{
|
||||
projectIds_ = projectIds;
|
||||
setCoreParameter("ProjectIds", projectIds);
|
||||
setParameter("ProjectIds", projectIds);
|
||||
}
|
||||
|
||||
std::string DeleteEditingProjectRequest::getOwnerId()const
|
||||
@@ -77,7 +79,7 @@ std::string DeleteEditingProjectRequest::getOwnerId()const
|
||||
void DeleteEditingProjectRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string DeleteEditingProjectRequest::getAccessKeyId()const
|
||||
@@ -88,6 +90,6 @@ std::string DeleteEditingProjectRequest::getAccessKeyId()const
|
||||
void DeleteEditingProjectRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteImageRequest;
|
||||
|
||||
DeleteImageRequest::DeleteImageRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteImage")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteImageRequest::~DeleteImageRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteImageRequest::getResourceOwnerId()const
|
||||
void DeleteImageRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getImageURLs()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteImageRequest::getImageURLs()const
|
||||
void DeleteImageRequest::setImageURLs(const std::string& imageURLs)
|
||||
{
|
||||
imageURLs_ = imageURLs;
|
||||
setCoreParameter("ImageURLs", imageURLs);
|
||||
setParameter("ImageURLs", imageURLs);
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteImageRequest::getAccessKeyId()const
|
||||
void DeleteImageRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getImageType()const
|
||||
@@ -66,7 +68,7 @@ std::string DeleteImageRequest::getImageType()const
|
||||
void DeleteImageRequest::setImageType(const std::string& imageType)
|
||||
{
|
||||
imageType_ = imageType;
|
||||
setCoreParameter("ImageType", imageType);
|
||||
setParameter("ImageType", imageType);
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string DeleteImageRequest::getResourceOwnerAccount()const
|
||||
void DeleteImageRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getVideoId()const
|
||||
@@ -88,7 +90,7 @@ std::string DeleteImageRequest::getVideoId()const
|
||||
void DeleteImageRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long DeleteImageRequest::getOwnerId()const
|
||||
@@ -99,7 +101,7 @@ long DeleteImageRequest::getOwnerId()const
|
||||
void DeleteImageRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getDeleteImageType()const
|
||||
@@ -110,7 +112,7 @@ std::string DeleteImageRequest::getDeleteImageType()const
|
||||
void DeleteImageRequest::setDeleteImageType(const std::string& deleteImageType)
|
||||
{
|
||||
deleteImageType_ = deleteImageType;
|
||||
setCoreParameter("DeleteImageType", deleteImageType);
|
||||
setParameter("DeleteImageType", deleteImageType);
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getImageIds()const
|
||||
@@ -121,6 +123,6 @@ std::string DeleteImageRequest::getImageIds()const
|
||||
void DeleteImageRequest::setImageIds(const std::string& imageIds)
|
||||
{
|
||||
imageIds_ = imageIds;
|
||||
setCoreParameter("ImageIds", imageIds);
|
||||
setParameter("ImageIds", imageIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteMessageCallbackRequest;
|
||||
|
||||
DeleteMessageCallbackRequest::DeleteMessageCallbackRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteMessageCallback")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteMessageCallbackRequest::~DeleteMessageCallbackRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteMessageCallbackRequest::getResourceOwnerId()const
|
||||
void DeleteMessageCallbackRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
long DeleteMessageCallbackRequest::getResourceRealOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DeleteMessageCallbackRequest::getResourceRealOwnerId()const
|
||||
void DeleteMessageCallbackRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteMessageCallbackRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteMessageCallbackRequest::getAccessKeyId()const
|
||||
void DeleteMessageCallbackRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteMessageCallbackRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string DeleteMessageCallbackRequest::getResourceOwnerAccount()const
|
||||
void DeleteMessageCallbackRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteMessageCallbackRequest::getOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string DeleteMessageCallbackRequest::getOwnerAccount()const
|
||||
void DeleteMessageCallbackRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteMessageCallbackRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ std::string DeleteMessageCallbackRequest::getOwnerId()const
|
||||
void DeleteMessageCallbackRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string DeleteMessageCallbackRequest::getAppId()const
|
||||
@@ -99,6 +101,6 @@ std::string DeleteMessageCallbackRequest::getAppId()const
|
||||
void DeleteMessageCallbackRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteMezzaninesRequest;
|
||||
|
||||
DeleteMezzaninesRequest::DeleteMezzaninesRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteMezzanines")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteMezzaninesRequest::~DeleteMezzaninesRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteMezzaninesRequest::getResourceOwnerId()const
|
||||
void DeleteMezzaninesRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteMezzaninesRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteMezzaninesRequest::getResourceOwnerAccount()const
|
||||
void DeleteMezzaninesRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long DeleteMezzaninesRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteMezzaninesRequest::getOwnerId()const
|
||||
void DeleteMezzaninesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DeleteMezzaninesRequest::getForce()const
|
||||
@@ -66,7 +68,7 @@ bool DeleteMezzaninesRequest::getForce()const
|
||||
void DeleteMezzaninesRequest::setForce(bool force)
|
||||
{
|
||||
force_ = force;
|
||||
setCoreParameter("Force", force ? "true" : "false");
|
||||
setParameter("Force", force ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteMezzaninesRequest::getVideoIds()const
|
||||
@@ -77,6 +79,6 @@ std::string DeleteMezzaninesRequest::getVideoIds()const
|
||||
void DeleteMezzaninesRequest::setVideoIds(const std::string& videoIds)
|
||||
{
|
||||
videoIds_ = videoIds;
|
||||
setCoreParameter("VideoIds", videoIds);
|
||||
setParameter("VideoIds", videoIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteMultipartUploadRequest;
|
||||
|
||||
DeleteMultipartUploadRequest::DeleteMultipartUploadRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteMultipartUpload")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteMultipartUploadRequest::~DeleteMultipartUploadRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteMultipartUploadRequest::getResourceOwnerId()const
|
||||
void DeleteMultipartUploadRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
long DeleteMultipartUploadRequest::getResourceRealOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DeleteMultipartUploadRequest::getResourceRealOwnerId()const
|
||||
void DeleteMultipartUploadRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteMultipartUploadRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteMultipartUploadRequest::getAccessKeyId()const
|
||||
void DeleteMultipartUploadRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteMultipartUploadRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string DeleteMultipartUploadRequest::getResourceOwnerAccount()const
|
||||
void DeleteMultipartUploadRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteMultipartUploadRequest::getOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string DeleteMultipartUploadRequest::getOwnerAccount()const
|
||||
void DeleteMultipartUploadRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteMultipartUploadRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ std::string DeleteMultipartUploadRequest::getOwnerId()const
|
||||
void DeleteMultipartUploadRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string DeleteMultipartUploadRequest::getMediaId()const
|
||||
@@ -99,7 +101,7 @@ std::string DeleteMultipartUploadRequest::getMediaId()const
|
||||
void DeleteMultipartUploadRequest::setMediaId(const std::string& mediaId)
|
||||
{
|
||||
mediaId_ = mediaId;
|
||||
setCoreParameter("MediaId", mediaId);
|
||||
setParameter("MediaId", mediaId);
|
||||
}
|
||||
|
||||
std::string DeleteMultipartUploadRequest::getMediaType()const
|
||||
@@ -110,6 +112,6 @@ std::string DeleteMultipartUploadRequest::getMediaType()const
|
||||
void DeleteMultipartUploadRequest::setMediaType(const std::string& mediaType)
|
||||
{
|
||||
mediaType_ = mediaType;
|
||||
setCoreParameter("MediaType", mediaType);
|
||||
setParameter("MediaType", mediaType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteStreamRequest;
|
||||
|
||||
DeleteStreamRequest::DeleteStreamRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteStream")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteStreamRequest::~DeleteStreamRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteStreamRequest::getResourceOwnerId()const
|
||||
void DeleteStreamRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteStreamRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteStreamRequest::getResourceOwnerAccount()const
|
||||
void DeleteStreamRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteStreamRequest::getVideoId()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteStreamRequest::getVideoId()const
|
||||
void DeleteStreamRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long DeleteStreamRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long DeleteStreamRequest::getOwnerId()const
|
||||
void DeleteStreamRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteStreamRequest::getJobIds()const
|
||||
@@ -77,6 +79,6 @@ std::string DeleteStreamRequest::getJobIds()const
|
||||
void DeleteStreamRequest::setJobIds(const std::string& jobIds)
|
||||
{
|
||||
jobIds_ = jobIds;
|
||||
setCoreParameter("JobIds", jobIds);
|
||||
setParameter("JobIds", jobIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteTranscodeTemplateGroupRequest;
|
||||
|
||||
DeleteTranscodeTemplateGroupRequest::DeleteTranscodeTemplateGroupRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteTranscodeTemplateGroup")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteTranscodeTemplateGroupRequest::~DeleteTranscodeTemplateGroupRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteTranscodeTemplateGroupRequest::getResourceOwnerId()const
|
||||
void DeleteTranscodeTemplateGroupRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteTranscodeTemplateGroupRequest::getTranscodeTemplateIds()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteTranscodeTemplateGroupRequest::getTranscodeTemplateIds()const
|
||||
void DeleteTranscodeTemplateGroupRequest::setTranscodeTemplateIds(const std::string& transcodeTemplateIds)
|
||||
{
|
||||
transcodeTemplateIds_ = transcodeTemplateIds;
|
||||
setCoreParameter("TranscodeTemplateIds", transcodeTemplateIds);
|
||||
setParameter("TranscodeTemplateIds", transcodeTemplateIds);
|
||||
}
|
||||
|
||||
std::string DeleteTranscodeTemplateGroupRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteTranscodeTemplateGroupRequest::getAccessKeyId()const
|
||||
void DeleteTranscodeTemplateGroupRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteTranscodeTemplateGroupRequest::getForceDelGroup()const
|
||||
@@ -66,7 +68,7 @@ std::string DeleteTranscodeTemplateGroupRequest::getForceDelGroup()const
|
||||
void DeleteTranscodeTemplateGroupRequest::setForceDelGroup(const std::string& forceDelGroup)
|
||||
{
|
||||
forceDelGroup_ = forceDelGroup;
|
||||
setCoreParameter("ForceDelGroup", forceDelGroup);
|
||||
setParameter("ForceDelGroup", forceDelGroup);
|
||||
}
|
||||
|
||||
std::string DeleteTranscodeTemplateGroupRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string DeleteTranscodeTemplateGroupRequest::getResourceOwnerAccount()const
|
||||
void DeleteTranscodeTemplateGroupRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long DeleteTranscodeTemplateGroupRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long DeleteTranscodeTemplateGroupRequest::getOwnerId()const
|
||||
void DeleteTranscodeTemplateGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteTranscodeTemplateGroupRequest::getTranscodeTemplateGroupId()const
|
||||
@@ -99,6 +101,6 @@ std::string DeleteTranscodeTemplateGroupRequest::getTranscodeTemplateGroupId()co
|
||||
void DeleteTranscodeTemplateGroupRequest::setTranscodeTemplateGroupId(const std::string& transcodeTemplateGroupId)
|
||||
{
|
||||
transcodeTemplateGroupId_ = transcodeTemplateGroupId;
|
||||
setCoreParameter("TranscodeTemplateGroupId", transcodeTemplateGroupId);
|
||||
setParameter("TranscodeTemplateGroupId", transcodeTemplateGroupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteVideoRequest;
|
||||
|
||||
DeleteVideoRequest::DeleteVideoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteVideo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteVideoRequest::~DeleteVideoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteVideoRequest::getResourceOwnerId()const
|
||||
void DeleteVideoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteVideoRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteVideoRequest::getResourceOwnerAccount()const
|
||||
void DeleteVideoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long DeleteVideoRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteVideoRequest::getOwnerId()const
|
||||
void DeleteVideoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteVideoRequest::getVideoIds()const
|
||||
@@ -66,6 +68,6 @@ std::string DeleteVideoRequest::getVideoIds()const
|
||||
void DeleteVideoRequest::setVideoIds(const std::string& videoIds)
|
||||
{
|
||||
videoIds_ = videoIds;
|
||||
setCoreParameter("VideoIds", videoIds);
|
||||
setParameter("VideoIds", videoIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteVodDomainRequest;
|
||||
|
||||
DeleteVodDomainRequest::DeleteVodDomainRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteVodDomain")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteVodDomainRequest::~DeleteVodDomainRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteVodDomainRequest::getOwnerAccount()const
|
||||
void DeleteVodDomainRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteVodDomainRequest::getDomainName()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteVodDomainRequest::getDomainName()const
|
||||
void DeleteVodDomainRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteVodDomainRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteVodDomainRequest::getOwnerId()const
|
||||
void DeleteVodDomainRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteVodDomainRequest::getSecurityToken()const
|
||||
@@ -66,6 +68,6 @@ std::string DeleteVodDomainRequest::getSecurityToken()const
|
||||
void DeleteVodDomainRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteVodSpecificConfigRequest;
|
||||
|
||||
DeleteVodSpecificConfigRequest::DeleteVodSpecificConfigRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteVodSpecificConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteVodSpecificConfigRequest::~DeleteVodSpecificConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteVodSpecificConfigRequest::getDomainName()const
|
||||
void DeleteVodSpecificConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteVodSpecificConfigRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DeleteVodSpecificConfigRequest::getOwnerId()const
|
||||
void DeleteVodSpecificConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteVodSpecificConfigRequest::getSecurityToken()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteVodSpecificConfigRequest::getSecurityToken()const
|
||||
void DeleteVodSpecificConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteVodSpecificConfigRequest::getConfigId()const
|
||||
@@ -66,6 +68,6 @@ std::string DeleteVodSpecificConfigRequest::getConfigId()const
|
||||
void DeleteVodSpecificConfigRequest::setConfigId(const std::string& configId)
|
||||
{
|
||||
configId_ = configId;
|
||||
setCoreParameter("ConfigId", configId);
|
||||
setParameter("ConfigId", configId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteVodTemplateRequest;
|
||||
|
||||
DeleteVodTemplateRequest::DeleteVodTemplateRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteVodTemplate")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteVodTemplateRequest::~DeleteVodTemplateRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteVodTemplateRequest::getResourceOwnerId()const
|
||||
void DeleteVodTemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteVodTemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteVodTemplateRequest::getResourceOwnerAccount()const
|
||||
void DeleteVodTemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long DeleteVodTemplateRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteVodTemplateRequest::getOwnerId()const
|
||||
void DeleteVodTemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteVodTemplateRequest::getVodTemplateId()const
|
||||
@@ -66,6 +68,6 @@ std::string DeleteVodTemplateRequest::getVodTemplateId()const
|
||||
void DeleteVodTemplateRequest::setVodTemplateId(const std::string& vodTemplateId)
|
||||
{
|
||||
vodTemplateId_ = vodTemplateId;
|
||||
setCoreParameter("VodTemplateId", vodTemplateId);
|
||||
setParameter("VodTemplateId", vodTemplateId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DeleteWatermarkRequest;
|
||||
|
||||
DeleteWatermarkRequest::DeleteWatermarkRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DeleteWatermark")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteWatermarkRequest::~DeleteWatermarkRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteWatermarkRequest::getResourceOwnerId()const
|
||||
void DeleteWatermarkRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteWatermarkRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteWatermarkRequest::getResourceOwnerAccount()const
|
||||
void DeleteWatermarkRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long DeleteWatermarkRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteWatermarkRequest::getOwnerId()const
|
||||
void DeleteWatermarkRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteWatermarkRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string DeleteWatermarkRequest::getAccessKeyId()const
|
||||
void DeleteWatermarkRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteWatermarkRequest::getWatermarkId()const
|
||||
@@ -77,6 +79,6 @@ std::string DeleteWatermarkRequest::getWatermarkId()const
|
||||
void DeleteWatermarkRequest::setWatermarkId(const std::string& watermarkId)
|
||||
{
|
||||
watermarkId_ = watermarkId;
|
||||
setCoreParameter("WatermarkId", watermarkId);
|
||||
setParameter("WatermarkId", watermarkId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribePlayTopVideosRequest;
|
||||
|
||||
DescribePlayTopVideosRequest::DescribePlayTopVideosRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribePlayTopVideos")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribePlayTopVideosRequest::~DescribePlayTopVideosRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DescribePlayTopVideosRequest::getPageSize()const
|
||||
void DescribePlayTopVideosRequest::setPageSize(long pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
long DescribePlayTopVideosRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DescribePlayTopVideosRequest::getOwnerId()const
|
||||
void DescribePlayTopVideosRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribePlayTopVideosRequest::getBizDate()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribePlayTopVideosRequest::getBizDate()const
|
||||
void DescribePlayTopVideosRequest::setBizDate(const std::string& bizDate)
|
||||
{
|
||||
bizDate_ = bizDate;
|
||||
setCoreParameter("BizDate", bizDate);
|
||||
setParameter("BizDate", bizDate);
|
||||
}
|
||||
|
||||
long DescribePlayTopVideosRequest::getPageNo()const
|
||||
@@ -66,6 +68,6 @@ long DescribePlayTopVideosRequest::getPageNo()const
|
||||
void DescribePlayTopVideosRequest::setPageNo(long pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribePlayUserAvgRequest;
|
||||
|
||||
DescribePlayUserAvgRequest::DescribePlayUserAvgRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribePlayUserAvg")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribePlayUserAvgRequest::~DescribePlayUserAvgRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribePlayUserAvgRequest::getStartTime()const
|
||||
void DescribePlayUserAvgRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribePlayUserAvgRequest::getEndTime()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribePlayUserAvgRequest::getEndTime()const
|
||||
void DescribePlayUserAvgRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribePlayUserAvgRequest::getOwnerId()const
|
||||
@@ -55,6 +57,6 @@ long DescribePlayUserAvgRequest::getOwnerId()const
|
||||
void DescribePlayUserAvgRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribePlayUserTotalRequest;
|
||||
|
||||
DescribePlayUserTotalRequest::DescribePlayUserTotalRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribePlayUserTotal")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribePlayUserTotalRequest::~DescribePlayUserTotalRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribePlayUserTotalRequest::getStartTime()const
|
||||
void DescribePlayUserTotalRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribePlayUserTotalRequest::getEndTime()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribePlayUserTotalRequest::getEndTime()const
|
||||
void DescribePlayUserTotalRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribePlayUserTotalRequest::getOwnerId()const
|
||||
@@ -55,6 +57,6 @@ long DescribePlayUserTotalRequest::getOwnerId()const
|
||||
void DescribePlayUserTotalRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribePlayVideoStatisRequest;
|
||||
|
||||
DescribePlayVideoStatisRequest::DescribePlayVideoStatisRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribePlayVideoStatis")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribePlayVideoStatisRequest::~DescribePlayVideoStatisRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribePlayVideoStatisRequest::getStartTime()const
|
||||
void DescribePlayVideoStatisRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribePlayVideoStatisRequest::getEndTime()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribePlayVideoStatisRequest::getEndTime()const
|
||||
void DescribePlayVideoStatisRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
std::string DescribePlayVideoStatisRequest::getVideoId()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribePlayVideoStatisRequest::getVideoId()const
|
||||
void DescribePlayVideoStatisRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long DescribePlayVideoStatisRequest::getOwnerId()const
|
||||
@@ -66,6 +68,6 @@ long DescribePlayVideoStatisRequest::getOwnerId()const
|
||||
void DescribePlayVideoStatisRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodAIDataRequest;
|
||||
|
||||
DescribeVodAIDataRequest::DescribeVodAIDataRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodAIData")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodAIDataRequest::~DescribeVodAIDataRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodAIDataRequest::getStartTime()const
|
||||
void DescribeVodAIDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeVodAIDataRequest::getAIType()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeVodAIDataRequest::getAIType()const
|
||||
void DescribeVodAIDataRequest::setAIType(const std::string& aIType)
|
||||
{
|
||||
aIType_ = aIType;
|
||||
setCoreParameter("AIType", aIType);
|
||||
setParameter("AIType", aIType);
|
||||
}
|
||||
|
||||
std::string DescribeVodAIDataRequest::getEndTime()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeVodAIDataRequest::getEndTime()const
|
||||
void DescribeVodAIDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeVodAIDataRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long DescribeVodAIDataRequest::getOwnerId()const
|
||||
void DescribeVodAIDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodAIDataRequest::getRegion()const
|
||||
@@ -77,6 +79,6 @@ std::string DescribeVodAIDataRequest::getRegion()const
|
||||
void DescribeVodAIDataRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setCoreParameter("Region", region);
|
||||
setParameter("Region", region);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodCertificateListRequest;
|
||||
|
||||
DescribeVodCertificateListRequest::DescribeVodCertificateListRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodCertificateList")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodCertificateListRequest::~DescribeVodCertificateListRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodCertificateListRequest::getDomainName()const
|
||||
void DescribeVodCertificateListRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeVodCertificateListRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DescribeVodCertificateListRequest::getOwnerId()const
|
||||
void DescribeVodCertificateListRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodCertificateListRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string DescribeVodCertificateListRequest::getSecurityToken()const
|
||||
void DescribeVodCertificateListRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodDomainBpsDataRequest;
|
||||
|
||||
DescribeVodDomainBpsDataRequest::DescribeVodDomainBpsDataRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodDomainBpsData")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodDomainBpsDataRequest::~DescribeVodDomainBpsDataRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodDomainBpsDataRequest::getLocationNameEn()const
|
||||
void DescribeVodDomainBpsDataRequest::setLocationNameEn(const std::string& locationNameEn)
|
||||
{
|
||||
locationNameEn_ = locationNameEn;
|
||||
setCoreParameter("LocationNameEn", locationNameEn);
|
||||
setParameter("LocationNameEn", locationNameEn);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainBpsDataRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeVodDomainBpsDataRequest::getStartTime()const
|
||||
void DescribeVodDomainBpsDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainBpsDataRequest::getIspNameEn()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeVodDomainBpsDataRequest::getIspNameEn()const
|
||||
void DescribeVodDomainBpsDataRequest::setIspNameEn(const std::string& ispNameEn)
|
||||
{
|
||||
ispNameEn_ = ispNameEn;
|
||||
setCoreParameter("IspNameEn", ispNameEn);
|
||||
setParameter("IspNameEn", ispNameEn);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainBpsDataRequest::getDomainName()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeVodDomainBpsDataRequest::getDomainName()const
|
||||
void DescribeVodDomainBpsDataRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainBpsDataRequest::getEndTime()const
|
||||
@@ -77,7 +79,7 @@ std::string DescribeVodDomainBpsDataRequest::getEndTime()const
|
||||
void DescribeVodDomainBpsDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeVodDomainBpsDataRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long DescribeVodDomainBpsDataRequest::getOwnerId()const
|
||||
void DescribeVodDomainBpsDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainBpsDataRequest::getInterval()const
|
||||
@@ -99,6 +101,6 @@ std::string DescribeVodDomainBpsDataRequest::getInterval()const
|
||||
void DescribeVodDomainBpsDataRequest::setInterval(const std::string& interval)
|
||||
{
|
||||
interval_ = interval;
|
||||
setCoreParameter("Interval", interval);
|
||||
setParameter("Interval", interval);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodDomainCertificateInfoRequest;
|
||||
|
||||
DescribeVodDomainCertificateInfoRequest::DescribeVodDomainCertificateInfoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodDomainCertificateInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodDomainCertificateInfoRequest::~DescribeVodDomainCertificateInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodDomainCertificateInfoRequest::getDomainName()const
|
||||
void DescribeVodDomainCertificateInfoRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeVodDomainCertificateInfoRequest::getOwnerId()const
|
||||
@@ -44,6 +46,6 @@ long DescribeVodDomainCertificateInfoRequest::getOwnerId()const
|
||||
void DescribeVodDomainCertificateInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodDomainConfigsRequest;
|
||||
|
||||
DescribeVodDomainConfigsRequest::DescribeVodDomainConfigsRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodDomainConfigs")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodDomainConfigsRequest::~DescribeVodDomainConfigsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodDomainConfigsRequest::getFunctionNames()const
|
||||
void DescribeVodDomainConfigsRequest::setFunctionNames(const std::string& functionNames)
|
||||
{
|
||||
functionNames_ = functionNames;
|
||||
setCoreParameter("FunctionNames", functionNames);
|
||||
setParameter("FunctionNames", functionNames);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainConfigsRequest::getDomainName()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeVodDomainConfigsRequest::getDomainName()const
|
||||
void DescribeVodDomainConfigsRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeVodDomainConfigsRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DescribeVodDomainConfigsRequest::getOwnerId()const
|
||||
void DescribeVodDomainConfigsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainConfigsRequest::getSecurityToken()const
|
||||
@@ -66,6 +68,6 @@ std::string DescribeVodDomainConfigsRequest::getSecurityToken()const
|
||||
void DescribeVodDomainConfigsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodDomainDetailRequest;
|
||||
|
||||
DescribeVodDomainDetailRequest::DescribeVodDomainDetailRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodDomainDetail")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodDomainDetailRequest::~DescribeVodDomainDetailRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodDomainDetailRequest::getDomainName()const
|
||||
void DescribeVodDomainDetailRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeVodDomainDetailRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DescribeVodDomainDetailRequest::getOwnerId()const
|
||||
void DescribeVodDomainDetailRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainDetailRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string DescribeVodDomainDetailRequest::getSecurityToken()const
|
||||
void DescribeVodDomainDetailRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodDomainLogRequest;
|
||||
|
||||
DescribeVodDomainLogRequest::DescribeVodDomainLogRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodDomainLog")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodDomainLogRequest::~DescribeVodDomainLogRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodDomainLogRequest::getStartTime()const
|
||||
void DescribeVodDomainLogRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
long DescribeVodDomainLogRequest::getPageNumber()const
|
||||
@@ -44,7 +46,7 @@ long DescribeVodDomainLogRequest::getPageNumber()const
|
||||
void DescribeVodDomainLogRequest::setPageNumber(long pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
long DescribeVodDomainLogRequest::getPageSize()const
|
||||
@@ -55,7 +57,7 @@ long DescribeVodDomainLogRequest::getPageSize()const
|
||||
void DescribeVodDomainLogRequest::setPageSize(long pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainLogRequest::getDomainName()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeVodDomainLogRequest::getDomainName()const
|
||||
void DescribeVodDomainLogRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainLogRequest::getEndTime()const
|
||||
@@ -77,7 +79,7 @@ std::string DescribeVodDomainLogRequest::getEndTime()const
|
||||
void DescribeVodDomainLogRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeVodDomainLogRequest::getOwnerId()const
|
||||
@@ -88,6 +90,6 @@ long DescribeVodDomainLogRequest::getOwnerId()const
|
||||
void DescribeVodDomainLogRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodDomainTrafficDataRequest;
|
||||
|
||||
DescribeVodDomainTrafficDataRequest::DescribeVodDomainTrafficDataRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodDomainTrafficData")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodDomainTrafficDataRequest::~DescribeVodDomainTrafficDataRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodDomainTrafficDataRequest::getLocationNameEn()const
|
||||
void DescribeVodDomainTrafficDataRequest::setLocationNameEn(const std::string& locationNameEn)
|
||||
{
|
||||
locationNameEn_ = locationNameEn;
|
||||
setCoreParameter("LocationNameEn", locationNameEn);
|
||||
setParameter("LocationNameEn", locationNameEn);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainTrafficDataRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeVodDomainTrafficDataRequest::getStartTime()const
|
||||
void DescribeVodDomainTrafficDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainTrafficDataRequest::getIspNameEn()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeVodDomainTrafficDataRequest::getIspNameEn()const
|
||||
void DescribeVodDomainTrafficDataRequest::setIspNameEn(const std::string& ispNameEn)
|
||||
{
|
||||
ispNameEn_ = ispNameEn;
|
||||
setCoreParameter("IspNameEn", ispNameEn);
|
||||
setParameter("IspNameEn", ispNameEn);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainTrafficDataRequest::getDomainName()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeVodDomainTrafficDataRequest::getDomainName()const
|
||||
void DescribeVodDomainTrafficDataRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainTrafficDataRequest::getEndTime()const
|
||||
@@ -77,7 +79,7 @@ std::string DescribeVodDomainTrafficDataRequest::getEndTime()const
|
||||
void DescribeVodDomainTrafficDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeVodDomainTrafficDataRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long DescribeVodDomainTrafficDataRequest::getOwnerId()const
|
||||
void DescribeVodDomainTrafficDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainTrafficDataRequest::getInterval()const
|
||||
@@ -99,6 +101,6 @@ std::string DescribeVodDomainTrafficDataRequest::getInterval()const
|
||||
void DescribeVodDomainTrafficDataRequest::setInterval(const std::string& interval)
|
||||
{
|
||||
interval_ = interval;
|
||||
setCoreParameter("Interval", interval);
|
||||
setParameter("Interval", interval);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodDomainUsageDataRequest;
|
||||
|
||||
DescribeVodDomainUsageDataRequest::DescribeVodDomainUsageDataRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodDomainUsageData")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodDomainUsageDataRequest::~DescribeVodDomainUsageDataRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodDomainUsageDataRequest::getStartTime()const
|
||||
void DescribeVodDomainUsageDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainUsageDataRequest::getType()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeVodDomainUsageDataRequest::getType()const
|
||||
void DescribeVodDomainUsageDataRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setCoreParameter("Type", type);
|
||||
setParameter("Type", type);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainUsageDataRequest::getArea()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeVodDomainUsageDataRequest::getArea()const
|
||||
void DescribeVodDomainUsageDataRequest::setArea(const std::string& area)
|
||||
{
|
||||
area_ = area;
|
||||
setCoreParameter("Area", area);
|
||||
setParameter("Area", area);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainUsageDataRequest::getDomainName()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeVodDomainUsageDataRequest::getDomainName()const
|
||||
void DescribeVodDomainUsageDataRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainUsageDataRequest::getEndTime()const
|
||||
@@ -77,7 +79,7 @@ std::string DescribeVodDomainUsageDataRequest::getEndTime()const
|
||||
void DescribeVodDomainUsageDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeVodDomainUsageDataRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long DescribeVodDomainUsageDataRequest::getOwnerId()const
|
||||
void DescribeVodDomainUsageDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodDomainUsageDataRequest::getField()const
|
||||
@@ -99,6 +101,6 @@ std::string DescribeVodDomainUsageDataRequest::getField()const
|
||||
void DescribeVodDomainUsageDataRequest::setField(const std::string& field)
|
||||
{
|
||||
field_ = field;
|
||||
setCoreParameter("Field", field);
|
||||
setParameter("Field", field);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodRefreshQuotaRequest;
|
||||
|
||||
DescribeVodRefreshQuotaRequest::DescribeVodRefreshQuotaRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodRefreshQuota")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodRefreshQuotaRequest::~DescribeVodRefreshQuotaRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DescribeVodRefreshQuotaRequest::getOwnerId()const
|
||||
void DescribeVodRefreshQuotaRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodRefreshQuotaRequest::getSecurityToken()const
|
||||
@@ -44,6 +46,6 @@ std::string DescribeVodRefreshQuotaRequest::getSecurityToken()const
|
||||
void DescribeVodRefreshQuotaRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodRefreshTasksRequest;
|
||||
|
||||
DescribeVodRefreshTasksRequest::DescribeVodRefreshTasksRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodRefreshTasks")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodRefreshTasksRequest::~DescribeVodRefreshTasksRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodRefreshTasksRequest::getObjectPath()const
|
||||
void DescribeVodRefreshTasksRequest::setObjectPath(const std::string& objectPath)
|
||||
{
|
||||
objectPath_ = objectPath;
|
||||
setCoreParameter("ObjectPath", objectPath);
|
||||
setParameter("ObjectPath", objectPath);
|
||||
}
|
||||
|
||||
std::string DescribeVodRefreshTasksRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeVodRefreshTasksRequest::getStartTime()const
|
||||
void DescribeVodRefreshTasksRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
int DescribeVodRefreshTasksRequest::getPageNumber()const
|
||||
@@ -55,7 +57,7 @@ int DescribeVodRefreshTasksRequest::getPageNumber()const
|
||||
void DescribeVodRefreshTasksRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
std::string DescribeVodRefreshTasksRequest::getResourceGroupId()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeVodRefreshTasksRequest::getResourceGroupId()const
|
||||
void DescribeVodRefreshTasksRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string DescribeVodRefreshTasksRequest::getSecurityToken()const
|
||||
@@ -77,7 +79,7 @@ std::string DescribeVodRefreshTasksRequest::getSecurityToken()const
|
||||
void DescribeVodRefreshTasksRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
int DescribeVodRefreshTasksRequest::getPageSize()const
|
||||
@@ -88,7 +90,7 @@ int DescribeVodRefreshTasksRequest::getPageSize()const
|
||||
void DescribeVodRefreshTasksRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeVodRefreshTasksRequest::getObjectType()const
|
||||
@@ -99,7 +101,7 @@ std::string DescribeVodRefreshTasksRequest::getObjectType()const
|
||||
void DescribeVodRefreshTasksRequest::setObjectType(const std::string& objectType)
|
||||
{
|
||||
objectType_ = objectType;
|
||||
setCoreParameter("ObjectType", objectType);
|
||||
setParameter("ObjectType", objectType);
|
||||
}
|
||||
|
||||
std::string DescribeVodRefreshTasksRequest::getTaskId()const
|
||||
@@ -110,7 +112,7 @@ std::string DescribeVodRefreshTasksRequest::getTaskId()const
|
||||
void DescribeVodRefreshTasksRequest::setTaskId(const std::string& taskId)
|
||||
{
|
||||
taskId_ = taskId;
|
||||
setCoreParameter("TaskId", taskId);
|
||||
setParameter("TaskId", taskId);
|
||||
}
|
||||
|
||||
std::string DescribeVodRefreshTasksRequest::getDomainName()const
|
||||
@@ -121,7 +123,7 @@ std::string DescribeVodRefreshTasksRequest::getDomainName()const
|
||||
void DescribeVodRefreshTasksRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string DescribeVodRefreshTasksRequest::getEndTime()const
|
||||
@@ -132,7 +134,7 @@ std::string DescribeVodRefreshTasksRequest::getEndTime()const
|
||||
void DescribeVodRefreshTasksRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeVodRefreshTasksRequest::getOwnerId()const
|
||||
@@ -143,7 +145,7 @@ long DescribeVodRefreshTasksRequest::getOwnerId()const
|
||||
void DescribeVodRefreshTasksRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodRefreshTasksRequest::getStatus()const
|
||||
@@ -154,6 +156,6 @@ std::string DescribeVodRefreshTasksRequest::getStatus()const
|
||||
void DescribeVodRefreshTasksRequest::setStatus(const std::string& status)
|
||||
{
|
||||
status_ = status;
|
||||
setCoreParameter("Status", status);
|
||||
setParameter("Status", status);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodStorageDataRequest;
|
||||
|
||||
DescribeVodStorageDataRequest::DescribeVodStorageDataRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodStorageData")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodStorageDataRequest::~DescribeVodStorageDataRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodStorageDataRequest::getStartTime()const
|
||||
void DescribeVodStorageDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeVodStorageDataRequest::getStorage()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeVodStorageDataRequest::getStorage()const
|
||||
void DescribeVodStorageDataRequest::setStorage(const std::string& storage)
|
||||
{
|
||||
storage_ = storage;
|
||||
setCoreParameter("Storage", storage);
|
||||
setParameter("Storage", storage);
|
||||
}
|
||||
|
||||
std::string DescribeVodStorageDataRequest::getStorageType()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeVodStorageDataRequest::getStorageType()const
|
||||
void DescribeVodStorageDataRequest::setStorageType(const std::string& storageType)
|
||||
{
|
||||
storageType_ = storageType;
|
||||
setCoreParameter("StorageType", storageType);
|
||||
setParameter("StorageType", storageType);
|
||||
}
|
||||
|
||||
std::string DescribeVodStorageDataRequest::getEndTime()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeVodStorageDataRequest::getEndTime()const
|
||||
void DescribeVodStorageDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeVodStorageDataRequest::getOwnerId()const
|
||||
@@ -77,7 +79,18 @@ long DescribeVodStorageDataRequest::getOwnerId()const
|
||||
void DescribeVodStorageDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodStorageDataRequest::getInterval()const
|
||||
{
|
||||
return interval_;
|
||||
}
|
||||
|
||||
void DescribeVodStorageDataRequest::setInterval(const std::string& interval)
|
||||
{
|
||||
interval_ = interval;
|
||||
setParameter("Interval", interval);
|
||||
}
|
||||
|
||||
std::string DescribeVodStorageDataRequest::getRegion()const
|
||||
@@ -88,6 +101,6 @@ std::string DescribeVodStorageDataRequest::getRegion()const
|
||||
void DescribeVodStorageDataRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setCoreParameter("Region", region);
|
||||
setParameter("Region", region);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodTranscodeDataRequest;
|
||||
|
||||
DescribeVodTranscodeDataRequest::DescribeVodTranscodeDataRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodTranscodeData")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodTranscodeDataRequest::~DescribeVodTranscodeDataRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeVodTranscodeDataRequest::getStartTime()const
|
||||
void DescribeVodTranscodeDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeVodTranscodeDataRequest::getStorage()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeVodTranscodeDataRequest::getStorage()const
|
||||
void DescribeVodTranscodeDataRequest::setStorage(const std::string& storage)
|
||||
{
|
||||
storage_ = storage;
|
||||
setCoreParameter("Storage", storage);
|
||||
setParameter("Storage", storage);
|
||||
}
|
||||
|
||||
std::string DescribeVodTranscodeDataRequest::getEndTime()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeVodTranscodeDataRequest::getEndTime()const
|
||||
void DescribeVodTranscodeDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
std::string DescribeVodTranscodeDataRequest::getSpecification()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeVodTranscodeDataRequest::getSpecification()const
|
||||
void DescribeVodTranscodeDataRequest::setSpecification(const std::string& specification)
|
||||
{
|
||||
specification_ = specification;
|
||||
setCoreParameter("Specification", specification);
|
||||
setParameter("Specification", specification);
|
||||
}
|
||||
|
||||
long DescribeVodTranscodeDataRequest::getOwnerId()const
|
||||
@@ -77,7 +79,18 @@ long DescribeVodTranscodeDataRequest::getOwnerId()const
|
||||
void DescribeVodTranscodeDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodTranscodeDataRequest::getInterval()const
|
||||
{
|
||||
return interval_;
|
||||
}
|
||||
|
||||
void DescribeVodTranscodeDataRequest::setInterval(const std::string& interval)
|
||||
{
|
||||
interval_ = interval;
|
||||
setParameter("Interval", interval);
|
||||
}
|
||||
|
||||
std::string DescribeVodTranscodeDataRequest::getRegion()const
|
||||
@@ -88,6 +101,6 @@ std::string DescribeVodTranscodeDataRequest::getRegion()const
|
||||
void DescribeVodTranscodeDataRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setCoreParameter("Region", region);
|
||||
setParameter("Region", region);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DescribeVodUserDomainsRequest;
|
||||
|
||||
DescribeVodUserDomainsRequest::DescribeVodUserDomainsRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DescribeVodUserDomains")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeVodUserDomainsRequest::~DescribeVodUserDomainsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ int DescribeVodUserDomainsRequest::getPageNumber()const
|
||||
void DescribeVodUserDomainsRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
bool DescribeVodUserDomainsRequest::getCheckDomainShow()const
|
||||
@@ -44,7 +46,7 @@ bool DescribeVodUserDomainsRequest::getCheckDomainShow()const
|
||||
void DescribeVodUserDomainsRequest::setCheckDomainShow(bool checkDomainShow)
|
||||
{
|
||||
checkDomainShow_ = checkDomainShow;
|
||||
setCoreParameter("CheckDomainShow", checkDomainShow ? "true" : "false");
|
||||
setParameter("CheckDomainShow", checkDomainShow ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeVodUserDomainsRequest::getSecurityToken()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeVodUserDomainsRequest::getSecurityToken()const
|
||||
void DescribeVodUserDomainsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeVodUserDomainsRequest::getCdnType()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeVodUserDomainsRequest::getCdnType()const
|
||||
void DescribeVodUserDomainsRequest::setCdnType(const std::string& cdnType)
|
||||
{
|
||||
cdnType_ = cdnType;
|
||||
setCoreParameter("CdnType", cdnType);
|
||||
setParameter("CdnType", cdnType);
|
||||
}
|
||||
|
||||
int DescribeVodUserDomainsRequest::getPageSize()const
|
||||
@@ -77,7 +79,7 @@ int DescribeVodUserDomainsRequest::getPageSize()const
|
||||
void DescribeVodUserDomainsRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeVodUserDomainsRequest::getFuncFilter()const
|
||||
@@ -88,7 +90,7 @@ std::string DescribeVodUserDomainsRequest::getFuncFilter()const
|
||||
void DescribeVodUserDomainsRequest::setFuncFilter(const std::string& funcFilter)
|
||||
{
|
||||
funcFilter_ = funcFilter;
|
||||
setCoreParameter("FuncFilter", funcFilter);
|
||||
setParameter("FuncFilter", funcFilter);
|
||||
}
|
||||
|
||||
std::string DescribeVodUserDomainsRequest::getDomainName()const
|
||||
@@ -99,7 +101,7 @@ std::string DescribeVodUserDomainsRequest::getDomainName()const
|
||||
void DescribeVodUserDomainsRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeVodUserDomainsRequest::getOwnerId()const
|
||||
@@ -110,7 +112,7 @@ long DescribeVodUserDomainsRequest::getOwnerId()const
|
||||
void DescribeVodUserDomainsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeVodUserDomainsRequest::getFuncId()const
|
||||
@@ -121,7 +123,7 @@ std::string DescribeVodUserDomainsRequest::getFuncId()const
|
||||
void DescribeVodUserDomainsRequest::setFuncId(const std::string& funcId)
|
||||
{
|
||||
funcId_ = funcId;
|
||||
setCoreParameter("FuncId", funcId);
|
||||
setParameter("FuncId", funcId);
|
||||
}
|
||||
|
||||
std::string DescribeVodUserDomainsRequest::getDomainStatus()const
|
||||
@@ -132,7 +134,7 @@ std::string DescribeVodUserDomainsRequest::getDomainStatus()const
|
||||
void DescribeVodUserDomainsRequest::setDomainStatus(const std::string& domainStatus)
|
||||
{
|
||||
domainStatus_ = domainStatus;
|
||||
setCoreParameter("DomainStatus", domainStatus);
|
||||
setParameter("DomainStatus", domainStatus);
|
||||
}
|
||||
|
||||
std::string DescribeVodUserDomainsRequest::getDomainSearchType()const
|
||||
@@ -143,6 +145,6 @@ std::string DescribeVodUserDomainsRequest::getDomainSearchType()const
|
||||
void DescribeVodUserDomainsRequest::setDomainSearchType(const std::string& domainSearchType)
|
||||
{
|
||||
domainSearchType_ = domainSearchType;
|
||||
setCoreParameter("DomainSearchType", domainSearchType);
|
||||
setParameter("DomainSearchType", domainSearchType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::DetachAppPolicyFromIdentityRequest;
|
||||
|
||||
DetachAppPolicyFromIdentityRequest::DetachAppPolicyFromIdentityRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "DetachAppPolicyFromIdentity")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DetachAppPolicyFromIdentityRequest::~DetachAppPolicyFromIdentityRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DetachAppPolicyFromIdentityRequest::getResourceOwnerId()const
|
||||
void DetachAppPolicyFromIdentityRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DetachAppPolicyFromIdentityRequest::getPolicyNames()const
|
||||
@@ -44,7 +46,7 @@ std::string DetachAppPolicyFromIdentityRequest::getPolicyNames()const
|
||||
void DetachAppPolicyFromIdentityRequest::setPolicyNames(const std::string& policyNames)
|
||||
{
|
||||
policyNames_ = policyNames;
|
||||
setCoreParameter("PolicyNames", policyNames);
|
||||
setParameter("PolicyNames", policyNames);
|
||||
}
|
||||
|
||||
std::string DetachAppPolicyFromIdentityRequest::getIdentityName()const
|
||||
@@ -55,7 +57,7 @@ std::string DetachAppPolicyFromIdentityRequest::getIdentityName()const
|
||||
void DetachAppPolicyFromIdentityRequest::setIdentityName(const std::string& identityName)
|
||||
{
|
||||
identityName_ = identityName;
|
||||
setCoreParameter("IdentityName", identityName);
|
||||
setParameter("IdentityName", identityName);
|
||||
}
|
||||
|
||||
std::string DetachAppPolicyFromIdentityRequest::getIdentityType()const
|
||||
@@ -66,7 +68,7 @@ std::string DetachAppPolicyFromIdentityRequest::getIdentityType()const
|
||||
void DetachAppPolicyFromIdentityRequest::setIdentityType(const std::string& identityType)
|
||||
{
|
||||
identityType_ = identityType;
|
||||
setCoreParameter("IdentityType", identityType);
|
||||
setParameter("IdentityType", identityType);
|
||||
}
|
||||
|
||||
std::string DetachAppPolicyFromIdentityRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string DetachAppPolicyFromIdentityRequest::getResourceOwnerAccount()const
|
||||
void DetachAppPolicyFromIdentityRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long DetachAppPolicyFromIdentityRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long DetachAppPolicyFromIdentityRequest::getOwnerId()const
|
||||
void DetachAppPolicyFromIdentityRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DetachAppPolicyFromIdentityRequest::getAppId()const
|
||||
@@ -99,6 +101,6 @@ std::string DetachAppPolicyFromIdentityRequest::getAppId()const
|
||||
void DetachAppPolicyFromIdentityRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetAIMediaAuditJobRequest;
|
||||
|
||||
GetAIMediaAuditJobRequest::GetAIMediaAuditJobRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetAIMediaAuditJob")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetAIMediaAuditJobRequest::~GetAIMediaAuditJobRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetAIMediaAuditJobRequest::getResourceOwnerId()const
|
||||
void GetAIMediaAuditJobRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetAIMediaAuditJobRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetAIMediaAuditJobRequest::getResourceOwnerAccount()const
|
||||
void GetAIMediaAuditJobRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetAIMediaAuditJobRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ std::string GetAIMediaAuditJobRequest::getOwnerId()const
|
||||
void GetAIMediaAuditJobRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string GetAIMediaAuditJobRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetAIMediaAuditJobRequest::getAccessKeyId()const
|
||||
void GetAIMediaAuditJobRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetAIMediaAuditJobRequest::getJobId()const
|
||||
@@ -77,6 +79,6 @@ std::string GetAIMediaAuditJobRequest::getJobId()const
|
||||
void GetAIMediaAuditJobRequest::setJobId(const std::string& jobId)
|
||||
{
|
||||
jobId_ = jobId;
|
||||
setCoreParameter("JobId", jobId);
|
||||
setParameter("JobId", jobId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetAITemplateRequest;
|
||||
|
||||
GetAITemplateRequest::GetAITemplateRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetAITemplate")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetAITemplateRequest::~GetAITemplateRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetAITemplateRequest::getResourceOwnerId()const
|
||||
void GetAITemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetAITemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetAITemplateRequest::getResourceOwnerAccount()const
|
||||
void GetAITemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetAITemplateRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetAITemplateRequest::getOwnerId()const
|
||||
void GetAITemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetAITemplateRequest::getTemplateId()const
|
||||
@@ -66,6 +68,6 @@ std::string GetAITemplateRequest::getTemplateId()const
|
||||
void GetAITemplateRequest::setTemplateId(const std::string& templateId)
|
||||
{
|
||||
templateId_ = templateId;
|
||||
setCoreParameter("TemplateId", templateId);
|
||||
setParameter("TemplateId", templateId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetAIVideoTagResultRequest;
|
||||
|
||||
GetAIVideoTagResultRequest::GetAIVideoTagResultRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetAIVideoTagResult")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetAIVideoTagResultRequest::~GetAIVideoTagResultRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string GetAIVideoTagResultRequest::getResourceOwnerId()const
|
||||
void GetAIVideoTagResultRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string GetAIVideoTagResultRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetAIVideoTagResultRequest::getResourceOwnerAccount()const
|
||||
void GetAIVideoTagResultRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetAIVideoTagResultRequest::getOwnerAccount()const
|
||||
@@ -55,7 +57,7 @@ std::string GetAIVideoTagResultRequest::getOwnerAccount()const
|
||||
void GetAIVideoTagResultRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string GetAIVideoTagResultRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetAIVideoTagResultRequest::getOwnerId()const
|
||||
void GetAIVideoTagResultRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string GetAIVideoTagResultRequest::getMediaId()const
|
||||
@@ -77,7 +79,7 @@ std::string GetAIVideoTagResultRequest::getMediaId()const
|
||||
void GetAIVideoTagResultRequest::setMediaId(const std::string& mediaId)
|
||||
{
|
||||
mediaId_ = mediaId;
|
||||
setCoreParameter("MediaId", mediaId);
|
||||
setParameter("MediaId", mediaId);
|
||||
}
|
||||
|
||||
std::string GetAIVideoTagResultRequest::getAccessKeyId()const
|
||||
@@ -88,6 +90,6 @@ std::string GetAIVideoTagResultRequest::getAccessKeyId()const
|
||||
void GetAIVideoTagResultRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetAppInfosRequest;
|
||||
|
||||
GetAppInfosRequest::GetAppInfosRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetAppInfos")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetAppInfosRequest::~GetAppInfosRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetAppInfosRequest::getResourceOwnerId()const
|
||||
void GetAppInfosRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetAppInfosRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetAppInfosRequest::getResourceOwnerAccount()const
|
||||
void GetAppInfosRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetAppInfosRequest::getResourceRealOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetAppInfosRequest::getResourceRealOwnerId()const
|
||||
void GetAppInfosRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
long GetAppInfosRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long GetAppInfosRequest::getOwnerId()const
|
||||
void GetAppInfosRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetAppInfosRequest::getAccessKeyId()const
|
||||
@@ -77,7 +79,7 @@ std::string GetAppInfosRequest::getAccessKeyId()const
|
||||
void GetAppInfosRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetAppInfosRequest::getAppIds()const
|
||||
@@ -88,6 +90,6 @@ std::string GetAppInfosRequest::getAppIds()const
|
||||
void GetAppInfosRequest::setAppIds(const std::string& appIds)
|
||||
{
|
||||
appIds_ = appIds;
|
||||
setCoreParameter("AppIds", appIds);
|
||||
setParameter("AppIds", appIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetAttachedMediaInfoRequest;
|
||||
|
||||
GetAttachedMediaInfoRequest::GetAttachedMediaInfoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetAttachedMediaInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetAttachedMediaInfoRequest::~GetAttachedMediaInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetAttachedMediaInfoRequest::getResourceOwnerId()const
|
||||
void GetAttachedMediaInfoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long GetAttachedMediaInfoRequest::getResourceRealOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long GetAttachedMediaInfoRequest::getResourceRealOwnerId()const
|
||||
void GetAttachedMediaInfoRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
std::string GetAttachedMediaInfoRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string GetAttachedMediaInfoRequest::getAccessKeyId()const
|
||||
void GetAttachedMediaInfoRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetAttachedMediaInfoRequest::getOutputType()const
|
||||
@@ -66,7 +68,7 @@ std::string GetAttachedMediaInfoRequest::getOutputType()const
|
||||
void GetAttachedMediaInfoRequest::setOutputType(const std::string& outputType)
|
||||
{
|
||||
outputType_ = outputType;
|
||||
setCoreParameter("OutputType", outputType);
|
||||
setParameter("OutputType", outputType);
|
||||
}
|
||||
|
||||
std::string GetAttachedMediaInfoRequest::getMediaIds()const
|
||||
@@ -77,7 +79,7 @@ std::string GetAttachedMediaInfoRequest::getMediaIds()const
|
||||
void GetAttachedMediaInfoRequest::setMediaIds(const std::string& mediaIds)
|
||||
{
|
||||
mediaIds_ = mediaIds;
|
||||
setCoreParameter("MediaIds", mediaIds);
|
||||
setParameter("MediaIds", mediaIds);
|
||||
}
|
||||
|
||||
long GetAttachedMediaInfoRequest::getAuthTimeout()const
|
||||
@@ -88,7 +90,7 @@ long GetAttachedMediaInfoRequest::getAuthTimeout()const
|
||||
void GetAttachedMediaInfoRequest::setAuthTimeout(long authTimeout)
|
||||
{
|
||||
authTimeout_ = authTimeout;
|
||||
setCoreParameter("AuthTimeout", std::to_string(authTimeout));
|
||||
setParameter("AuthTimeout", std::to_string(authTimeout));
|
||||
}
|
||||
|
||||
std::string GetAttachedMediaInfoRequest::getResourceOwnerAccount()const
|
||||
@@ -99,7 +101,7 @@ std::string GetAttachedMediaInfoRequest::getResourceOwnerAccount()const
|
||||
void GetAttachedMediaInfoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetAttachedMediaInfoRequest::getOwnerId()const
|
||||
@@ -110,6 +112,6 @@ long GetAttachedMediaInfoRequest::getOwnerId()const
|
||||
void GetAttachedMediaInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetAuditHistoryRequest;
|
||||
|
||||
GetAuditHistoryRequest::GetAuditHistoryRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetAuditHistory")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetAuditHistoryRequest::~GetAuditHistoryRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetAuditHistoryRequest::getPageSize()const
|
||||
void GetAuditHistoryRequest::setPageSize(long pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string GetAuditHistoryRequest::getVideoId()const
|
||||
@@ -44,7 +46,7 @@ std::string GetAuditHistoryRequest::getVideoId()const
|
||||
void GetAuditHistoryRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long GetAuditHistoryRequest::getPageNo()const
|
||||
@@ -55,7 +57,7 @@ long GetAuditHistoryRequest::getPageNo()const
|
||||
void GetAuditHistoryRequest::setPageNo(long pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
std::string GetAuditHistoryRequest::getSortBy()const
|
||||
@@ -66,6 +68,6 @@ std::string GetAuditHistoryRequest::getSortBy()const
|
||||
void GetAuditHistoryRequest::setSortBy(const std::string& sortBy)
|
||||
{
|
||||
sortBy_ = sortBy;
|
||||
setCoreParameter("SortBy", sortBy);
|
||||
setParameter("SortBy", sortBy);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetCategoriesRequest;
|
||||
|
||||
GetCategoriesRequest::GetCategoriesRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetCategories")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetCategoriesRequest::~GetCategoriesRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string GetCategoriesRequest::getResourceOwnerId()const
|
||||
void GetCategoriesRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string GetCategoriesRequest::getType()const
|
||||
@@ -44,7 +46,7 @@ std::string GetCategoriesRequest::getType()const
|
||||
void GetCategoriesRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setCoreParameter("Type", type);
|
||||
setParameter("Type", type);
|
||||
}
|
||||
|
||||
long GetCategoriesRequest::getCateId()const
|
||||
@@ -55,7 +57,7 @@ long GetCategoriesRequest::getCateId()const
|
||||
void GetCategoriesRequest::setCateId(long cateId)
|
||||
{
|
||||
cateId_ = cateId;
|
||||
setCoreParameter("CateId", std::to_string(cateId));
|
||||
setParameter("CateId", std::to_string(cateId));
|
||||
}
|
||||
|
||||
long GetCategoriesRequest::getPageSize()const
|
||||
@@ -66,7 +68,7 @@ long GetCategoriesRequest::getPageSize()const
|
||||
void GetCategoriesRequest::setPageSize(long pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string GetCategoriesRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string GetCategoriesRequest::getResourceOwnerAccount()const
|
||||
void GetCategoriesRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetCategoriesRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ std::string GetCategoriesRequest::getOwnerId()const
|
||||
void GetCategoriesRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
long GetCategoriesRequest::getPageNo()const
|
||||
@@ -99,7 +101,7 @@ long GetCategoriesRequest::getPageNo()const
|
||||
void GetCategoriesRequest::setPageNo(long pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
std::string GetCategoriesRequest::getSortBy()const
|
||||
@@ -110,6 +112,6 @@ std::string GetCategoriesRequest::getSortBy()const
|
||||
void GetCategoriesRequest::setSortBy(const std::string& sortBy)
|
||||
{
|
||||
sortBy_ = sortBy;
|
||||
setCoreParameter("SortBy", sortBy);
|
||||
setParameter("SortBy", sortBy);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetDefaultAITemplateRequest;
|
||||
|
||||
GetDefaultAITemplateRequest::GetDefaultAITemplateRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetDefaultAITemplate")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetDefaultAITemplateRequest::~GetDefaultAITemplateRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetDefaultAITemplateRequest::getResourceOwnerId()const
|
||||
void GetDefaultAITemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetDefaultAITemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetDefaultAITemplateRequest::getResourceOwnerAccount()const
|
||||
void GetDefaultAITemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetDefaultAITemplateRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetDefaultAITemplateRequest::getOwnerId()const
|
||||
void GetDefaultAITemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetDefaultAITemplateRequest::getTemplateType()const
|
||||
@@ -66,6 +68,6 @@ std::string GetDefaultAITemplateRequest::getTemplateType()const
|
||||
void GetDefaultAITemplateRequest::setTemplateType(const std::string& templateType)
|
||||
{
|
||||
templateType_ = templateType;
|
||||
setCoreParameter("TemplateType", templateType);
|
||||
setParameter("TemplateType", templateType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetEditingProjectMaterialsRequest;
|
||||
|
||||
GetEditingProjectMaterialsRequest::GetEditingProjectMaterialsRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetEditingProjectMaterials")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetEditingProjectMaterialsRequest::~GetEditingProjectMaterialsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string GetEditingProjectMaterialsRequest::getResourceOwnerId()const
|
||||
void GetEditingProjectMaterialsRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectMaterialsRequest::getType()const
|
||||
@@ -44,7 +46,7 @@ std::string GetEditingProjectMaterialsRequest::getType()const
|
||||
void GetEditingProjectMaterialsRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setCoreParameter("Type", type);
|
||||
setParameter("Type", type);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectMaterialsRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string GetEditingProjectMaterialsRequest::getAccessKeyId()const
|
||||
void GetEditingProjectMaterialsRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectMaterialsRequest::getMaterialType()const
|
||||
@@ -66,7 +68,7 @@ std::string GetEditingProjectMaterialsRequest::getMaterialType()const
|
||||
void GetEditingProjectMaterialsRequest::setMaterialType(const std::string& materialType)
|
||||
{
|
||||
materialType_ = materialType;
|
||||
setCoreParameter("MaterialType", materialType);
|
||||
setParameter("MaterialType", materialType);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectMaterialsRequest::getProjectId()const
|
||||
@@ -77,7 +79,7 @@ std::string GetEditingProjectMaterialsRequest::getProjectId()const
|
||||
void GetEditingProjectMaterialsRequest::setProjectId(const std::string& projectId)
|
||||
{
|
||||
projectId_ = projectId;
|
||||
setCoreParameter("ProjectId", projectId);
|
||||
setParameter("ProjectId", projectId);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectMaterialsRequest::getResourceOwnerAccount()const
|
||||
@@ -88,7 +90,7 @@ std::string GetEditingProjectMaterialsRequest::getResourceOwnerAccount()const
|
||||
void GetEditingProjectMaterialsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectMaterialsRequest::getOwnerAccount()const
|
||||
@@ -99,7 +101,7 @@ std::string GetEditingProjectMaterialsRequest::getOwnerAccount()const
|
||||
void GetEditingProjectMaterialsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectMaterialsRequest::getOwnerId()const
|
||||
@@ -110,6 +112,6 @@ std::string GetEditingProjectMaterialsRequest::getOwnerId()const
|
||||
void GetEditingProjectMaterialsRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetEditingProjectRequest;
|
||||
|
||||
GetEditingProjectRequest::GetEditingProjectRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetEditingProject")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetEditingProjectRequest::~GetEditingProjectRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string GetEditingProjectRequest::getResourceOwnerId()const
|
||||
void GetEditingProjectRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetEditingProjectRequest::getResourceOwnerAccount()const
|
||||
void GetEditingProjectRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectRequest::getOwnerAccount()const
|
||||
@@ -55,7 +57,7 @@ std::string GetEditingProjectRequest::getOwnerAccount()const
|
||||
void GetEditingProjectRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetEditingProjectRequest::getOwnerId()const
|
||||
void GetEditingProjectRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectRequest::getAccessKeyId()const
|
||||
@@ -77,7 +79,7 @@ std::string GetEditingProjectRequest::getAccessKeyId()const
|
||||
void GetEditingProjectRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetEditingProjectRequest::getProjectId()const
|
||||
@@ -88,6 +90,6 @@ std::string GetEditingProjectRequest::getProjectId()const
|
||||
void GetEditingProjectRequest::setProjectId(const std::string& projectId)
|
||||
{
|
||||
projectId_ = projectId;
|
||||
setCoreParameter("ProjectId", projectId);
|
||||
setParameter("ProjectId", projectId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetImageInfoRequest;
|
||||
|
||||
GetImageInfoRequest::GetImageInfoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetImageInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetImageInfoRequest::~GetImageInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetImageInfoRequest::getResourceOwnerId()const
|
||||
void GetImageInfoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetImageInfoRequest::getImageId()const
|
||||
@@ -44,7 +46,7 @@ std::string GetImageInfoRequest::getImageId()const
|
||||
void GetImageInfoRequest::setImageId(const std::string& imageId)
|
||||
{
|
||||
imageId_ = imageId;
|
||||
setCoreParameter("ImageId", imageId);
|
||||
setParameter("ImageId", imageId);
|
||||
}
|
||||
|
||||
std::string GetImageInfoRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string GetImageInfoRequest::getAccessKeyId()const
|
||||
void GetImageInfoRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetImageInfoRequest::getOutputType()const
|
||||
@@ -66,7 +68,7 @@ std::string GetImageInfoRequest::getOutputType()const
|
||||
void GetImageInfoRequest::setOutputType(const std::string& outputType)
|
||||
{
|
||||
outputType_ = outputType;
|
||||
setCoreParameter("OutputType", outputType);
|
||||
setParameter("OutputType", outputType);
|
||||
}
|
||||
|
||||
long GetImageInfoRequest::getAuthTimeout()const
|
||||
@@ -77,7 +79,7 @@ long GetImageInfoRequest::getAuthTimeout()const
|
||||
void GetImageInfoRequest::setAuthTimeout(long authTimeout)
|
||||
{
|
||||
authTimeout_ = authTimeout;
|
||||
setCoreParameter("AuthTimeout", std::to_string(authTimeout));
|
||||
setParameter("AuthTimeout", std::to_string(authTimeout));
|
||||
}
|
||||
|
||||
std::string GetImageInfoRequest::getResourceOwnerAccount()const
|
||||
@@ -88,7 +90,7 @@ std::string GetImageInfoRequest::getResourceOwnerAccount()const
|
||||
void GetImageInfoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetImageInfoRequest::getOwnerId()const
|
||||
@@ -99,6 +101,6 @@ long GetImageInfoRequest::getOwnerId()const
|
||||
void GetImageInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetMediaAuditResultDetailRequest;
|
||||
|
||||
GetMediaAuditResultDetailRequest::GetMediaAuditResultDetailRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetMediaAuditResultDetail")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetMediaAuditResultDetailRequest::~GetMediaAuditResultDetailRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetMediaAuditResultDetailRequest::getResourceOwnerId()const
|
||||
void GetMediaAuditResultDetailRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultDetailRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetMediaAuditResultDetailRequest::getResourceOwnerAccount()const
|
||||
void GetMediaAuditResultDetailRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultDetailRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ std::string GetMediaAuditResultDetailRequest::getOwnerId()const
|
||||
void GetMediaAuditResultDetailRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultDetailRequest::getMediaId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetMediaAuditResultDetailRequest::getMediaId()const
|
||||
void GetMediaAuditResultDetailRequest::setMediaId(const std::string& mediaId)
|
||||
{
|
||||
mediaId_ = mediaId;
|
||||
setCoreParameter("MediaId", mediaId);
|
||||
setParameter("MediaId", mediaId);
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultDetailRequest::getAccessKeyId()const
|
||||
@@ -77,7 +79,7 @@ std::string GetMediaAuditResultDetailRequest::getAccessKeyId()const
|
||||
void GetMediaAuditResultDetailRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
int GetMediaAuditResultDetailRequest::getPageNo()const
|
||||
@@ -88,6 +90,6 @@ int GetMediaAuditResultDetailRequest::getPageNo()const
|
||||
void GetMediaAuditResultDetailRequest::setPageNo(int pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
|
||||
@@ -58,6 +58,18 @@ void GetMediaAuditResultDetailResult::parse(const std::string &payload)
|
||||
listItemObject.timestamp = mediaAuditResultDetailNodeListListItem["Timestamp"].asString();
|
||||
if(!mediaAuditResultDetailNodeListListItem["Url"].isNull())
|
||||
listItemObject.url = mediaAuditResultDetailNodeListListItem["Url"].asString();
|
||||
if(!mediaAuditResultDetailNodeListListItem["AdLabel"].isNull())
|
||||
listItemObject.adLabel = mediaAuditResultDetailNodeListListItem["AdLabel"].asString();
|
||||
if(!mediaAuditResultDetailNodeListListItem["AdScore"].isNull())
|
||||
listItemObject.adScore = mediaAuditResultDetailNodeListListItem["AdScore"].asString();
|
||||
if(!mediaAuditResultDetailNodeListListItem["LiveLabel"].isNull())
|
||||
listItemObject.liveLabel = mediaAuditResultDetailNodeListListItem["LiveLabel"].asString();
|
||||
if(!mediaAuditResultDetailNodeListListItem["LiveScore"].isNull())
|
||||
listItemObject.liveScore = mediaAuditResultDetailNodeListListItem["LiveScore"].asString();
|
||||
if(!mediaAuditResultDetailNodeListListItem["LogoLabel"].isNull())
|
||||
listItemObject.logoLabel = mediaAuditResultDetailNodeListListItem["LogoLabel"].asString();
|
||||
if(!mediaAuditResultDetailNodeListListItem["LogoScore"].isNull())
|
||||
listItemObject.logoScore = mediaAuditResultDetailNodeListListItem["LogoScore"].asString();
|
||||
mediaAuditResultDetail_.list.push_back(listItemObject);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetMediaAuditResultRequest;
|
||||
|
||||
GetMediaAuditResultRequest::GetMediaAuditResultRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetMediaAuditResult")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetMediaAuditResultRequest::~GetMediaAuditResultRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetMediaAuditResultRequest::getResourceOwnerId()const
|
||||
void GetMediaAuditResultRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetMediaAuditResultRequest::getResourceOwnerAccount()const
|
||||
void GetMediaAuditResultRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetMediaAuditResultRequest::getResourceRealOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetMediaAuditResultRequest::getResourceRealOwnerId()const
|
||||
void GetMediaAuditResultRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetMediaAuditResultRequest::getOwnerId()const
|
||||
void GetMediaAuditResultRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultRequest::getMediaId()const
|
||||
@@ -77,7 +79,7 @@ std::string GetMediaAuditResultRequest::getMediaId()const
|
||||
void GetMediaAuditResultRequest::setMediaId(const std::string& mediaId)
|
||||
{
|
||||
mediaId_ = mediaId;
|
||||
setCoreParameter("MediaId", mediaId);
|
||||
setParameter("MediaId", mediaId);
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultRequest::getAccessKeyId()const
|
||||
@@ -88,6 +90,6 @@ std::string GetMediaAuditResultRequest::getAccessKeyId()const
|
||||
void GetMediaAuditResultRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetMediaAuditResultTimelineRequest;
|
||||
|
||||
GetMediaAuditResultTimelineRequest::GetMediaAuditResultTimelineRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetMediaAuditResultTimeline")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetMediaAuditResultTimelineRequest::~GetMediaAuditResultTimelineRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetMediaAuditResultTimelineRequest::getResourceOwnerId()const
|
||||
void GetMediaAuditResultTimelineRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultTimelineRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetMediaAuditResultTimelineRequest::getResourceOwnerAccount()const
|
||||
void GetMediaAuditResultTimelineRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultTimelineRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ std::string GetMediaAuditResultTimelineRequest::getOwnerId()const
|
||||
void GetMediaAuditResultTimelineRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultTimelineRequest::getMediaId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetMediaAuditResultTimelineRequest::getMediaId()const
|
||||
void GetMediaAuditResultTimelineRequest::setMediaId(const std::string& mediaId)
|
||||
{
|
||||
mediaId_ = mediaId;
|
||||
setCoreParameter("MediaId", mediaId);
|
||||
setParameter("MediaId", mediaId);
|
||||
}
|
||||
|
||||
std::string GetMediaAuditResultTimelineRequest::getAccessKeyId()const
|
||||
@@ -77,6 +79,6 @@ std::string GetMediaAuditResultTimelineRequest::getAccessKeyId()const
|
||||
void GetMediaAuditResultTimelineRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetMediaDNAResultRequest;
|
||||
|
||||
GetMediaDNAResultRequest::GetMediaDNAResultRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetMediaDNAResult")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetMediaDNAResultRequest::~GetMediaDNAResultRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string GetMediaDNAResultRequest::getResourceOwnerId()const
|
||||
void GetMediaDNAResultRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string GetMediaDNAResultRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetMediaDNAResultRequest::getResourceOwnerAccount()const
|
||||
void GetMediaDNAResultRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetMediaDNAResultRequest::getOwnerAccount()const
|
||||
@@ -55,7 +57,7 @@ std::string GetMediaDNAResultRequest::getOwnerAccount()const
|
||||
void GetMediaDNAResultRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string GetMediaDNAResultRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetMediaDNAResultRequest::getOwnerId()const
|
||||
void GetMediaDNAResultRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string GetMediaDNAResultRequest::getMediaId()const
|
||||
@@ -77,7 +79,7 @@ std::string GetMediaDNAResultRequest::getMediaId()const
|
||||
void GetMediaDNAResultRequest::setMediaId(const std::string& mediaId)
|
||||
{
|
||||
mediaId_ = mediaId;
|
||||
setCoreParameter("MediaId", mediaId);
|
||||
setParameter("MediaId", mediaId);
|
||||
}
|
||||
|
||||
std::string GetMediaDNAResultRequest::getAccessKeyId()const
|
||||
@@ -88,6 +90,6 @@ std::string GetMediaDNAResultRequest::getAccessKeyId()const
|
||||
void GetMediaDNAResultRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetMessageCallbackRequest;
|
||||
|
||||
GetMessageCallbackRequest::GetMessageCallbackRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetMessageCallback")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetMessageCallbackRequest::~GetMessageCallbackRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string GetMessageCallbackRequest::getResourceOwnerId()const
|
||||
void GetMessageCallbackRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
long GetMessageCallbackRequest::getResourceRealOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long GetMessageCallbackRequest::getResourceRealOwnerId()const
|
||||
void GetMessageCallbackRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
std::string GetMessageCallbackRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string GetMessageCallbackRequest::getAccessKeyId()const
|
||||
void GetMessageCallbackRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetMessageCallbackRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string GetMessageCallbackRequest::getResourceOwnerAccount()const
|
||||
void GetMessageCallbackRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetMessageCallbackRequest::getOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string GetMessageCallbackRequest::getOwnerAccount()const
|
||||
void GetMessageCallbackRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string GetMessageCallbackRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ std::string GetMessageCallbackRequest::getOwnerId()const
|
||||
void GetMessageCallbackRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string GetMessageCallbackRequest::getAppId()const
|
||||
@@ -99,6 +101,6 @@ std::string GetMessageCallbackRequest::getAppId()const
|
||||
void GetMessageCallbackRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetMezzanineInfoRequest;
|
||||
|
||||
GetMezzanineInfoRequest::GetMezzanineInfoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetMezzanineInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetMezzanineInfoRequest::~GetMezzanineInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetMezzanineInfoRequest::getResourceOwnerId()const
|
||||
void GetMezzanineInfoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetMezzanineInfoRequest::getOutputType()const
|
||||
@@ -44,7 +46,7 @@ std::string GetMezzanineInfoRequest::getOutputType()const
|
||||
void GetMezzanineInfoRequest::setOutputType(const std::string& outputType)
|
||||
{
|
||||
outputType_ = outputType;
|
||||
setCoreParameter("OutputType", outputType);
|
||||
setParameter("OutputType", outputType);
|
||||
}
|
||||
|
||||
long GetMezzanineInfoRequest::getAuthTimeout()const
|
||||
@@ -55,7 +57,7 @@ long GetMezzanineInfoRequest::getAuthTimeout()const
|
||||
void GetMezzanineInfoRequest::setAuthTimeout(long authTimeout)
|
||||
{
|
||||
authTimeout_ = authTimeout;
|
||||
setCoreParameter("AuthTimeout", std::to_string(authTimeout));
|
||||
setParameter("AuthTimeout", std::to_string(authTimeout));
|
||||
}
|
||||
|
||||
std::string GetMezzanineInfoRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string GetMezzanineInfoRequest::getResourceOwnerAccount()const
|
||||
void GetMezzanineInfoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetMezzanineInfoRequest::getVideoId()const
|
||||
@@ -77,7 +79,7 @@ std::string GetMezzanineInfoRequest::getVideoId()const
|
||||
void GetMezzanineInfoRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long GetMezzanineInfoRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long GetMezzanineInfoRequest::getOwnerId()const
|
||||
void GetMezzanineInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool GetMezzanineInfoRequest::getPreviewSegment()const
|
||||
@@ -99,7 +101,7 @@ bool GetMezzanineInfoRequest::getPreviewSegment()const
|
||||
void GetMezzanineInfoRequest::setPreviewSegment(bool previewSegment)
|
||||
{
|
||||
previewSegment_ = previewSegment;
|
||||
setCoreParameter("PreviewSegment", previewSegment ? "true" : "false");
|
||||
setParameter("PreviewSegment", previewSegment ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string GetMezzanineInfoRequest::getAdditionType()const
|
||||
@@ -110,6 +112,6 @@ std::string GetMezzanineInfoRequest::getAdditionType()const
|
||||
void GetMezzanineInfoRequest::setAdditionType(const std::string& additionType)
|
||||
{
|
||||
additionType_ = additionType;
|
||||
setCoreParameter("AdditionType", additionType);
|
||||
setParameter("AdditionType", additionType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetPlayInfoRequest;
|
||||
|
||||
GetPlayInfoRequest::GetPlayInfoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetPlayInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetPlayInfoRequest::~GetPlayInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetPlayInfoRequest::getResourceOwnerId()const
|
||||
void GetPlayInfoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getFormats()const
|
||||
@@ -44,7 +46,7 @@ std::string GetPlayInfoRequest::getFormats()const
|
||||
void GetPlayInfoRequest::setFormats(const std::string& formats)
|
||||
{
|
||||
formats_ = formats;
|
||||
setCoreParameter("Formats", formats);
|
||||
setParameter("Formats", formats);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getChannel()const
|
||||
@@ -55,7 +57,7 @@ std::string GetPlayInfoRequest::getChannel()const
|
||||
void GetPlayInfoRequest::setChannel(const std::string& channel)
|
||||
{
|
||||
channel_ = channel;
|
||||
setCoreParameter("Channel", channel);
|
||||
setParameter("Channel", channel);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getPlayerVersion()const
|
||||
@@ -66,7 +68,7 @@ std::string GetPlayInfoRequest::getPlayerVersion()const
|
||||
void GetPlayInfoRequest::setPlayerVersion(const std::string& playerVersion)
|
||||
{
|
||||
playerVersion_ = playerVersion;
|
||||
setCoreParameter("PlayerVersion", playerVersion);
|
||||
setParameter("PlayerVersion", playerVersion);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getRand()const
|
||||
@@ -77,7 +79,7 @@ std::string GetPlayInfoRequest::getRand()const
|
||||
void GetPlayInfoRequest::setRand(const std::string& rand)
|
||||
{
|
||||
rand_ = rand;
|
||||
setCoreParameter("Rand", rand);
|
||||
setParameter("Rand", rand);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getReAuthInfo()const
|
||||
@@ -88,7 +90,7 @@ std::string GetPlayInfoRequest::getReAuthInfo()const
|
||||
void GetPlayInfoRequest::setReAuthInfo(const std::string& reAuthInfo)
|
||||
{
|
||||
reAuthInfo_ = reAuthInfo;
|
||||
setCoreParameter("ReAuthInfo", reAuthInfo);
|
||||
setParameter("ReAuthInfo", reAuthInfo);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getPlayConfig()const
|
||||
@@ -99,7 +101,7 @@ std::string GetPlayInfoRequest::getPlayConfig()const
|
||||
void GetPlayInfoRequest::setPlayConfig(const std::string& playConfig)
|
||||
{
|
||||
playConfig_ = playConfig;
|
||||
setCoreParameter("PlayConfig", playConfig);
|
||||
setParameter("PlayConfig", playConfig);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getOutputType()const
|
||||
@@ -110,7 +112,7 @@ std::string GetPlayInfoRequest::getOutputType()const
|
||||
void GetPlayInfoRequest::setOutputType(const std::string& outputType)
|
||||
{
|
||||
outputType_ = outputType;
|
||||
setCoreParameter("OutputType", outputType);
|
||||
setParameter("OutputType", outputType);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getDefinition()const
|
||||
@@ -121,7 +123,7 @@ std::string GetPlayInfoRequest::getDefinition()const
|
||||
void GetPlayInfoRequest::setDefinition(const std::string& definition)
|
||||
{
|
||||
definition_ = definition;
|
||||
setCoreParameter("Definition", definition);
|
||||
setParameter("Definition", definition);
|
||||
}
|
||||
|
||||
long GetPlayInfoRequest::getAuthTimeout()const
|
||||
@@ -132,7 +134,7 @@ long GetPlayInfoRequest::getAuthTimeout()const
|
||||
void GetPlayInfoRequest::setAuthTimeout(long authTimeout)
|
||||
{
|
||||
authTimeout_ = authTimeout;
|
||||
setCoreParameter("AuthTimeout", std::to_string(authTimeout));
|
||||
setParameter("AuthTimeout", std::to_string(authTimeout));
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getStreamType()const
|
||||
@@ -143,7 +145,7 @@ std::string GetPlayInfoRequest::getStreamType()const
|
||||
void GetPlayInfoRequest::setStreamType(const std::string& streamType)
|
||||
{
|
||||
streamType_ = streamType;
|
||||
setCoreParameter("StreamType", streamType);
|
||||
setParameter("StreamType", streamType);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getResourceOwnerAccount()const
|
||||
@@ -154,7 +156,7 @@ std::string GetPlayInfoRequest::getResourceOwnerAccount()const
|
||||
void GetPlayInfoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getVideoId()const
|
||||
@@ -165,7 +167,7 @@ std::string GetPlayInfoRequest::getVideoId()const
|
||||
void GetPlayInfoRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long GetPlayInfoRequest::getOwnerId()const
|
||||
@@ -176,7 +178,7 @@ long GetPlayInfoRequest::getOwnerId()const
|
||||
void GetPlayInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getResultType()const
|
||||
@@ -187,7 +189,7 @@ std::string GetPlayInfoRequest::getResultType()const
|
||||
void GetPlayInfoRequest::setResultType(const std::string& resultType)
|
||||
{
|
||||
resultType_ = resultType;
|
||||
setCoreParameter("ResultType", resultType);
|
||||
setParameter("ResultType", resultType);
|
||||
}
|
||||
|
||||
std::string GetPlayInfoRequest::getAuthInfo()const
|
||||
@@ -198,6 +200,6 @@ std::string GetPlayInfoRequest::getAuthInfo()const
|
||||
void GetPlayInfoRequest::setAuthInfo(const std::string& authInfo)
|
||||
{
|
||||
authInfo_ = authInfo;
|
||||
setCoreParameter("AuthInfo", authInfo);
|
||||
setParameter("AuthInfo", authInfo);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetTranscodeSummaryRequest;
|
||||
|
||||
GetTranscodeSummaryRequest::GetTranscodeSummaryRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetTranscodeSummary")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetTranscodeSummaryRequest::~GetTranscodeSummaryRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetTranscodeSummaryRequest::getResourceOwnerId()const
|
||||
void GetTranscodeSummaryRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetTranscodeSummaryRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetTranscodeSummaryRequest::getResourceOwnerAccount()const
|
||||
void GetTranscodeSummaryRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetTranscodeSummaryRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetTranscodeSummaryRequest::getOwnerId()const
|
||||
void GetTranscodeSummaryRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetTranscodeSummaryRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetTranscodeSummaryRequest::getAccessKeyId()const
|
||||
void GetTranscodeSummaryRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetTranscodeSummaryRequest::getVideoIds()const
|
||||
@@ -77,6 +79,6 @@ std::string GetTranscodeSummaryRequest::getVideoIds()const
|
||||
void GetTranscodeSummaryRequest::setVideoIds(const std::string& videoIds)
|
||||
{
|
||||
videoIds_ = videoIds;
|
||||
setCoreParameter("VideoIds", videoIds);
|
||||
setParameter("VideoIds", videoIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetTranscodeTaskRequest;
|
||||
|
||||
GetTranscodeTaskRequest::GetTranscodeTaskRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetTranscodeTask")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetTranscodeTaskRequest::~GetTranscodeTaskRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetTranscodeTaskRequest::getResourceOwnerId()const
|
||||
void GetTranscodeTaskRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetTranscodeTaskRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetTranscodeTaskRequest::getResourceOwnerAccount()const
|
||||
void GetTranscodeTaskRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetTranscodeTaskRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetTranscodeTaskRequest::getOwnerId()const
|
||||
void GetTranscodeTaskRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetTranscodeTaskRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetTranscodeTaskRequest::getAccessKeyId()const
|
||||
void GetTranscodeTaskRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetTranscodeTaskRequest::getTranscodeTaskId()const
|
||||
@@ -77,6 +79,6 @@ std::string GetTranscodeTaskRequest::getTranscodeTaskId()const
|
||||
void GetTranscodeTaskRequest::setTranscodeTaskId(const std::string& transcodeTaskId)
|
||||
{
|
||||
transcodeTaskId_ = transcodeTaskId;
|
||||
setCoreParameter("TranscodeTaskId", transcodeTaskId);
|
||||
setParameter("TranscodeTaskId", transcodeTaskId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetTranscodeTemplateGroupRequest;
|
||||
|
||||
GetTranscodeTemplateGroupRequest::GetTranscodeTemplateGroupRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetTranscodeTemplateGroup")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetTranscodeTemplateGroupRequest::~GetTranscodeTemplateGroupRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetTranscodeTemplateGroupRequest::getResourceOwnerId()const
|
||||
void GetTranscodeTemplateGroupRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetTranscodeTemplateGroupRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetTranscodeTemplateGroupRequest::getResourceOwnerAccount()const
|
||||
void GetTranscodeTemplateGroupRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetTranscodeTemplateGroupRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetTranscodeTemplateGroupRequest::getOwnerId()const
|
||||
void GetTranscodeTemplateGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetTranscodeTemplateGroupRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetTranscodeTemplateGroupRequest::getAccessKeyId()const
|
||||
void GetTranscodeTemplateGroupRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetTranscodeTemplateGroupRequest::getTranscodeTemplateGroupId()const
|
||||
@@ -77,6 +79,6 @@ std::string GetTranscodeTemplateGroupRequest::getTranscodeTemplateGroupId()const
|
||||
void GetTranscodeTemplateGroupRequest::setTranscodeTemplateGroupId(const std::string& transcodeTemplateGroupId)
|
||||
{
|
||||
transcodeTemplateGroupId_ = transcodeTemplateGroupId;
|
||||
setCoreParameter("TranscodeTemplateGroupId", transcodeTemplateGroupId);
|
||||
setParameter("TranscodeTemplateGroupId", transcodeTemplateGroupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -92,6 +92,10 @@ void GetTranscodeTemplateGroupResult::parse(const std::string &payload)
|
||||
transcodeTemplateObject.clip = transcodeTemplateGroupNodeTranscodeTemplateListTranscodeTemplate["Clip"].asString();
|
||||
if(!transcodeTemplateGroupNodeTranscodeTemplateListTranscodeTemplate["Rotate"].isNull())
|
||||
transcodeTemplateObject.rotate = transcodeTemplateGroupNodeTranscodeTemplateListTranscodeTemplate["Rotate"].asString();
|
||||
if(!transcodeTemplateGroupNodeTranscodeTemplateListTranscodeTemplate["Type"].isNull())
|
||||
transcodeTemplateObject.type = transcodeTemplateGroupNodeTranscodeTemplateListTranscodeTemplate["Type"].asString();
|
||||
if(!transcodeTemplateGroupNodeTranscodeTemplateListTranscodeTemplate["UserData"].isNull())
|
||||
transcodeTemplateObject.userData = transcodeTemplateGroupNodeTranscodeTemplateListTranscodeTemplate["UserData"].asString();
|
||||
auto allWatermarkIds = value["WatermarkIds"]["WatermarkId"];
|
||||
for (auto value : allWatermarkIds)
|
||||
transcodeTemplateObject.watermarkIds.push_back(value.asString());
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetURLUploadInfosRequest;
|
||||
|
||||
GetURLUploadInfosRequest::GetURLUploadInfosRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetURLUploadInfos")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetURLUploadInfosRequest::~GetURLUploadInfosRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetURLUploadInfosRequest::getResourceOwnerId()const
|
||||
void GetURLUploadInfosRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetURLUploadInfosRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetURLUploadInfosRequest::getResourceOwnerAccount()const
|
||||
void GetURLUploadInfosRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetURLUploadInfosRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetURLUploadInfosRequest::getOwnerId()const
|
||||
void GetURLUploadInfosRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetURLUploadInfosRequest::getJobIds()const
|
||||
@@ -66,7 +68,7 @@ std::string GetURLUploadInfosRequest::getJobIds()const
|
||||
void GetURLUploadInfosRequest::setJobIds(const std::string& jobIds)
|
||||
{
|
||||
jobIds_ = jobIds;
|
||||
setCoreParameter("JobIds", jobIds);
|
||||
setParameter("JobIds", jobIds);
|
||||
}
|
||||
|
||||
std::string GetURLUploadInfosRequest::getUploadURLs()const
|
||||
@@ -77,6 +79,6 @@ std::string GetURLUploadInfosRequest::getUploadURLs()const
|
||||
void GetURLUploadInfosRequest::setUploadURLs(const std::string& uploadURLs)
|
||||
{
|
||||
uploadURLs_ = uploadURLs;
|
||||
setCoreParameter("UploadURLs", uploadURLs);
|
||||
setParameter("UploadURLs", uploadURLs);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetUploadDetailsRequest;
|
||||
|
||||
GetUploadDetailsRequest::GetUploadDetailsRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetUploadDetails")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetUploadDetailsRequest::~GetUploadDetailsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetUploadDetailsRequest::getResourceOwnerId()const
|
||||
void GetUploadDetailsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long GetUploadDetailsRequest::getResourceRealOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long GetUploadDetailsRequest::getResourceRealOwnerId()const
|
||||
void GetUploadDetailsRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
std::string GetUploadDetailsRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string GetUploadDetailsRequest::getAccessKeyId()const
|
||||
void GetUploadDetailsRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetUploadDetailsRequest::getMediaIds()const
|
||||
@@ -66,7 +68,7 @@ std::string GetUploadDetailsRequest::getMediaIds()const
|
||||
void GetUploadDetailsRequest::setMediaIds(const std::string& mediaIds)
|
||||
{
|
||||
mediaIds_ = mediaIds;
|
||||
setCoreParameter("MediaIds", mediaIds);
|
||||
setParameter("MediaIds", mediaIds);
|
||||
}
|
||||
|
||||
std::string GetUploadDetailsRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string GetUploadDetailsRequest::getResourceOwnerAccount()const
|
||||
void GetUploadDetailsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetUploadDetailsRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long GetUploadDetailsRequest::getOwnerId()const
|
||||
void GetUploadDetailsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetUploadDetailsRequest::getMediaType()const
|
||||
@@ -99,6 +101,6 @@ std::string GetUploadDetailsRequest::getMediaType()const
|
||||
void GetUploadDetailsRequest::setMediaType(const std::string& mediaType)
|
||||
{
|
||||
mediaType_ = mediaType;
|
||||
setCoreParameter("MediaType", mediaType);
|
||||
setParameter("MediaType", mediaType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetVideoInfoRequest;
|
||||
|
||||
GetVideoInfoRequest::GetVideoInfoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetVideoInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetVideoInfoRequest::~GetVideoInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetVideoInfoRequest::getResourceOwnerId()const
|
||||
void GetVideoInfoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetVideoInfoRequest::getResultTypes()const
|
||||
@@ -44,7 +46,7 @@ std::string GetVideoInfoRequest::getResultTypes()const
|
||||
void GetVideoInfoRequest::setResultTypes(const std::string& resultTypes)
|
||||
{
|
||||
resultTypes_ = resultTypes;
|
||||
setCoreParameter("ResultTypes", resultTypes);
|
||||
setParameter("ResultTypes", resultTypes);
|
||||
}
|
||||
|
||||
std::string GetVideoInfoRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +57,7 @@ std::string GetVideoInfoRequest::getResourceOwnerAccount()const
|
||||
void GetVideoInfoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetVideoInfoRequest::getVideoId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetVideoInfoRequest::getVideoId()const
|
||||
void GetVideoInfoRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long GetVideoInfoRequest::getOwnerId()const
|
||||
@@ -77,7 +79,7 @@ long GetVideoInfoRequest::getOwnerId()const
|
||||
void GetVideoInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetVideoInfoRequest::getAdditionType()const
|
||||
@@ -88,6 +90,6 @@ std::string GetVideoInfoRequest::getAdditionType()const
|
||||
void GetVideoInfoRequest::setAdditionType(const std::string& additionType)
|
||||
{
|
||||
additionType_ = additionType;
|
||||
setCoreParameter("AdditionType", additionType);
|
||||
setParameter("AdditionType", additionType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetVideoInfosRequest;
|
||||
|
||||
GetVideoInfosRequest::GetVideoInfosRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetVideoInfos")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetVideoInfosRequest::~GetVideoInfosRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetVideoInfosRequest::getResourceOwnerId()const
|
||||
void GetVideoInfosRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetVideoInfosRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetVideoInfosRequest::getResourceOwnerAccount()const
|
||||
void GetVideoInfosRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetVideoInfosRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetVideoInfosRequest::getOwnerId()const
|
||||
void GetVideoInfosRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetVideoInfosRequest::getAdditionType()const
|
||||
@@ -66,7 +68,7 @@ std::string GetVideoInfosRequest::getAdditionType()const
|
||||
void GetVideoInfosRequest::setAdditionType(const std::string& additionType)
|
||||
{
|
||||
additionType_ = additionType;
|
||||
setCoreParameter("AdditionType", additionType);
|
||||
setParameter("AdditionType", additionType);
|
||||
}
|
||||
|
||||
std::string GetVideoInfosRequest::getVideoIds()const
|
||||
@@ -77,6 +79,6 @@ std::string GetVideoInfosRequest::getVideoIds()const
|
||||
void GetVideoInfosRequest::setVideoIds(const std::string& videoIds)
|
||||
{
|
||||
videoIds_ = videoIds;
|
||||
setCoreParameter("VideoIds", videoIds);
|
||||
setParameter("VideoIds", videoIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetVideoListRequest;
|
||||
|
||||
GetVideoListRequest::GetVideoListRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetVideoList")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetVideoListRequest::~GetVideoListRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetVideoListRequest::getResourceOwnerId()const
|
||||
void GetVideoListRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetVideoListRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string GetVideoListRequest::getStartTime()const
|
||||
void GetVideoListRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string GetVideoListRequest::getStorageLocation()const
|
||||
@@ -55,7 +57,7 @@ std::string GetVideoListRequest::getStorageLocation()const
|
||||
void GetVideoListRequest::setStorageLocation(const std::string& storageLocation)
|
||||
{
|
||||
storageLocation_ = storageLocation;
|
||||
setCoreParameter("StorageLocation", storageLocation);
|
||||
setParameter("StorageLocation", storageLocation);
|
||||
}
|
||||
|
||||
long GetVideoListRequest::getCateId()const
|
||||
@@ -66,7 +68,7 @@ long GetVideoListRequest::getCateId()const
|
||||
void GetVideoListRequest::setCateId(long cateId)
|
||||
{
|
||||
cateId_ = cateId;
|
||||
setCoreParameter("CateId", std::to_string(cateId));
|
||||
setParameter("CateId", std::to_string(cateId));
|
||||
}
|
||||
|
||||
int GetVideoListRequest::getPageSize()const
|
||||
@@ -77,7 +79,7 @@ int GetVideoListRequest::getPageSize()const
|
||||
void GetVideoListRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string GetVideoListRequest::getResourceOwnerAccount()const
|
||||
@@ -88,7 +90,7 @@ std::string GetVideoListRequest::getResourceOwnerAccount()const
|
||||
void GetVideoListRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetVideoListRequest::getEndTime()const
|
||||
@@ -99,7 +101,7 @@ std::string GetVideoListRequest::getEndTime()const
|
||||
void GetVideoListRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long GetVideoListRequest::getOwnerId()const
|
||||
@@ -110,7 +112,7 @@ long GetVideoListRequest::getOwnerId()const
|
||||
void GetVideoListRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int GetVideoListRequest::getPageNo()const
|
||||
@@ -121,7 +123,7 @@ int GetVideoListRequest::getPageNo()const
|
||||
void GetVideoListRequest::setPageNo(int pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
std::string GetVideoListRequest::getSortBy()const
|
||||
@@ -132,7 +134,7 @@ std::string GetVideoListRequest::getSortBy()const
|
||||
void GetVideoListRequest::setSortBy(const std::string& sortBy)
|
||||
{
|
||||
sortBy_ = sortBy;
|
||||
setCoreParameter("SortBy", sortBy);
|
||||
setParameter("SortBy", sortBy);
|
||||
}
|
||||
|
||||
std::string GetVideoListRequest::getStatus()const
|
||||
@@ -143,6 +145,6 @@ std::string GetVideoListRequest::getStatus()const
|
||||
void GetVideoListRequest::setStatus(const std::string& status)
|
||||
{
|
||||
status_ = status;
|
||||
setCoreParameter("Status", status);
|
||||
setParameter("Status", status);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetVideoPlayAuthRequest;
|
||||
|
||||
GetVideoPlayAuthRequest::GetVideoPlayAuthRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetVideoPlayAuth")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetVideoPlayAuthRequest::~GetVideoPlayAuthRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetVideoPlayAuthRequest::getResourceOwnerId()const
|
||||
void GetVideoPlayAuthRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetVideoPlayAuthRequest::getReAuthInfo()const
|
||||
@@ -44,7 +46,7 @@ std::string GetVideoPlayAuthRequest::getReAuthInfo()const
|
||||
void GetVideoPlayAuthRequest::setReAuthInfo(const std::string& reAuthInfo)
|
||||
{
|
||||
reAuthInfo_ = reAuthInfo;
|
||||
setCoreParameter("ReAuthInfo", reAuthInfo);
|
||||
setParameter("ReAuthInfo", reAuthInfo);
|
||||
}
|
||||
|
||||
std::string GetVideoPlayAuthRequest::getPlayConfig()const
|
||||
@@ -55,7 +57,7 @@ std::string GetVideoPlayAuthRequest::getPlayConfig()const
|
||||
void GetVideoPlayAuthRequest::setPlayConfig(const std::string& playConfig)
|
||||
{
|
||||
playConfig_ = playConfig;
|
||||
setCoreParameter("PlayConfig", playConfig);
|
||||
setParameter("PlayConfig", playConfig);
|
||||
}
|
||||
|
||||
std::string GetVideoPlayAuthRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string GetVideoPlayAuthRequest::getResourceOwnerAccount()const
|
||||
void GetVideoPlayAuthRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string GetVideoPlayAuthRequest::getVideoId()const
|
||||
@@ -77,7 +79,7 @@ std::string GetVideoPlayAuthRequest::getVideoId()const
|
||||
void GetVideoPlayAuthRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long GetVideoPlayAuthRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long GetVideoPlayAuthRequest::getOwnerId()const
|
||||
void GetVideoPlayAuthRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
long GetVideoPlayAuthRequest::getAuthInfoTimeout()const
|
||||
@@ -99,6 +101,6 @@ long GetVideoPlayAuthRequest::getAuthInfoTimeout()const
|
||||
void GetVideoPlayAuthRequest::setAuthInfoTimeout(long authInfoTimeout)
|
||||
{
|
||||
authInfoTimeout_ = authInfoTimeout;
|
||||
setCoreParameter("AuthInfoTimeout", std::to_string(authInfoTimeout));
|
||||
setParameter("AuthInfoTimeout", std::to_string(authInfoTimeout));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetVodTemplateRequest;
|
||||
|
||||
GetVodTemplateRequest::GetVodTemplateRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetVodTemplate")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetVodTemplateRequest::~GetVodTemplateRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetVodTemplateRequest::getResourceOwnerId()const
|
||||
void GetVodTemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetVodTemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetVodTemplateRequest::getResourceOwnerAccount()const
|
||||
void GetVodTemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetVodTemplateRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetVodTemplateRequest::getOwnerId()const
|
||||
void GetVodTemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetVodTemplateRequest::getVodTemplateId()const
|
||||
@@ -66,6 +68,6 @@ std::string GetVodTemplateRequest::getVodTemplateId()const
|
||||
void GetVodTemplateRequest::setVodTemplateId(const std::string& vodTemplateId)
|
||||
{
|
||||
vodTemplateId_ = vodTemplateId;
|
||||
setCoreParameter("VodTemplateId", vodTemplateId);
|
||||
setParameter("VodTemplateId", vodTemplateId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::GetWatermarkRequest;
|
||||
|
||||
GetWatermarkRequest::GetWatermarkRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "GetWatermark")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetWatermarkRequest::~GetWatermarkRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long GetWatermarkRequest::getResourceOwnerId()const
|
||||
void GetWatermarkRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string GetWatermarkRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string GetWatermarkRequest::getResourceOwnerAccount()const
|
||||
void GetWatermarkRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long GetWatermarkRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long GetWatermarkRequest::getOwnerId()const
|
||||
void GetWatermarkRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string GetWatermarkRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string GetWatermarkRequest::getAccessKeyId()const
|
||||
void GetWatermarkRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string GetWatermarkRequest::getWatermarkId()const
|
||||
@@ -77,6 +79,6 @@ std::string GetWatermarkRequest::getWatermarkId()const
|
||||
void GetWatermarkRequest::setWatermarkId(const std::string& watermarkId)
|
||||
{
|
||||
watermarkId_ = watermarkId;
|
||||
setCoreParameter("WatermarkId", watermarkId);
|
||||
setParameter("WatermarkId", watermarkId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListAIJobRequest;
|
||||
|
||||
ListAIJobRequest::ListAIJobRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListAIJob")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListAIJobRequest::~ListAIJobRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string ListAIJobRequest::getResourceOwnerId()const
|
||||
void ListAIJobRequest::setResourceOwnerId(const std::string& resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", resourceOwnerId);
|
||||
setParameter("ResourceOwnerId", resourceOwnerId);
|
||||
}
|
||||
|
||||
std::string ListAIJobRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string ListAIJobRequest::getResourceOwnerAccount()const
|
||||
void ListAIJobRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string ListAIJobRequest::getOwnerAccount()const
|
||||
@@ -55,7 +57,7 @@ std::string ListAIJobRequest::getOwnerAccount()const
|
||||
void ListAIJobRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string ListAIJobRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ std::string ListAIJobRequest::getOwnerId()const
|
||||
void ListAIJobRequest::setOwnerId(const std::string& ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", ownerId);
|
||||
setParameter("OwnerId", ownerId);
|
||||
}
|
||||
|
||||
std::string ListAIJobRequest::getAccessKeyId()const
|
||||
@@ -77,7 +79,7 @@ std::string ListAIJobRequest::getAccessKeyId()const
|
||||
void ListAIJobRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string ListAIJobRequest::getJobIds()const
|
||||
@@ -88,6 +90,6 @@ std::string ListAIJobRequest::getJobIds()const
|
||||
void ListAIJobRequest::setJobIds(const std::string& jobIds)
|
||||
{
|
||||
jobIds_ = jobIds;
|
||||
setCoreParameter("JobIds", jobIds);
|
||||
setParameter("JobIds", jobIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListAITemplateRequest;
|
||||
|
||||
ListAITemplateRequest::ListAITemplateRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListAITemplate")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListAITemplateRequest::~ListAITemplateRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ListAITemplateRequest::getResourceOwnerId()const
|
||||
void ListAITemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ListAITemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string ListAITemplateRequest::getResourceOwnerAccount()const
|
||||
void ListAITemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long ListAITemplateRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long ListAITemplateRequest::getOwnerId()const
|
||||
void ListAITemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ListAITemplateRequest::getTemplateType()const
|
||||
@@ -66,6 +68,6 @@ std::string ListAITemplateRequest::getTemplateType()const
|
||||
void ListAITemplateRequest::setTemplateType(const std::string& templateType)
|
||||
{
|
||||
templateType_ = templateType;
|
||||
setCoreParameter("TemplateType", templateType);
|
||||
setParameter("TemplateType", templateType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListAppInfoRequest;
|
||||
|
||||
ListAppInfoRequest::ListAppInfoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListAppInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListAppInfoRequest::~ListAppInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ListAppInfoRequest::getResourceOwnerId()const
|
||||
void ListAppInfoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long ListAppInfoRequest::getResourceRealOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long ListAppInfoRequest::getResourceRealOwnerId()const
|
||||
void ListAppInfoRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
std::string ListAppInfoRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string ListAppInfoRequest::getAccessKeyId()const
|
||||
void ListAppInfoRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
int ListAppInfoRequest::getPageSize()const
|
||||
@@ -66,7 +68,7 @@ int ListAppInfoRequest::getPageSize()const
|
||||
void ListAppInfoRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string ListAppInfoRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string ListAppInfoRequest::getResourceOwnerAccount()const
|
||||
void ListAppInfoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long ListAppInfoRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long ListAppInfoRequest::getOwnerId()const
|
||||
void ListAppInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int ListAppInfoRequest::getPageNo()const
|
||||
@@ -99,7 +101,7 @@ int ListAppInfoRequest::getPageNo()const
|
||||
void ListAppInfoRequest::setPageNo(int pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
std::string ListAppInfoRequest::getStatus()const
|
||||
@@ -110,6 +112,6 @@ std::string ListAppInfoRequest::getStatus()const
|
||||
void ListAppInfoRequest::setStatus(const std::string& status)
|
||||
{
|
||||
status_ = status;
|
||||
setCoreParameter("Status", status);
|
||||
setParameter("Status", status);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListAppPoliciesForIdentityRequest;
|
||||
|
||||
ListAppPoliciesForIdentityRequest::ListAppPoliciesForIdentityRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListAppPoliciesForIdentity")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListAppPoliciesForIdentityRequest::~ListAppPoliciesForIdentityRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ListAppPoliciesForIdentityRequest::getResourceOwnerId()const
|
||||
void ListAppPoliciesForIdentityRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ListAppPoliciesForIdentityRequest::getIdentityName()const
|
||||
@@ -44,7 +46,7 @@ std::string ListAppPoliciesForIdentityRequest::getIdentityName()const
|
||||
void ListAppPoliciesForIdentityRequest::setIdentityName(const std::string& identityName)
|
||||
{
|
||||
identityName_ = identityName;
|
||||
setCoreParameter("IdentityName", identityName);
|
||||
setParameter("IdentityName", identityName);
|
||||
}
|
||||
|
||||
std::string ListAppPoliciesForIdentityRequest::getIdentityType()const
|
||||
@@ -55,7 +57,7 @@ std::string ListAppPoliciesForIdentityRequest::getIdentityType()const
|
||||
void ListAppPoliciesForIdentityRequest::setIdentityType(const std::string& identityType)
|
||||
{
|
||||
identityType_ = identityType;
|
||||
setCoreParameter("IdentityType", identityType);
|
||||
setParameter("IdentityType", identityType);
|
||||
}
|
||||
|
||||
std::string ListAppPoliciesForIdentityRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string ListAppPoliciesForIdentityRequest::getResourceOwnerAccount()const
|
||||
void ListAppPoliciesForIdentityRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long ListAppPoliciesForIdentityRequest::getOwnerId()const
|
||||
@@ -77,7 +79,7 @@ long ListAppPoliciesForIdentityRequest::getOwnerId()const
|
||||
void ListAppPoliciesForIdentityRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ListAppPoliciesForIdentityRequest::getAppId()const
|
||||
@@ -88,6 +90,6 @@ std::string ListAppPoliciesForIdentityRequest::getAppId()const
|
||||
void ListAppPoliciesForIdentityRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListAuditSecurityIpRequest;
|
||||
|
||||
ListAuditSecurityIpRequest::ListAuditSecurityIpRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListAuditSecurityIp")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListAuditSecurityIpRequest::~ListAuditSecurityIpRequest()
|
||||
{}
|
||||
@@ -33,6 +35,6 @@ std::string ListAuditSecurityIpRequest::getSecurityGroupName()const
|
||||
void ListAuditSecurityIpRequest::setSecurityGroupName(const std::string& securityGroupName)
|
||||
{
|
||||
securityGroupName_ = securityGroupName;
|
||||
setCoreParameter("SecurityGroupName", securityGroupName);
|
||||
setParameter("SecurityGroupName", securityGroupName);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListLiveRecordVideoRequest;
|
||||
|
||||
ListLiveRecordVideoRequest::ListLiveRecordVideoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListLiveRecordVideo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListLiveRecordVideoRequest::~ListLiveRecordVideoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ListLiveRecordVideoRequest::getResourceOwnerId()const
|
||||
void ListLiveRecordVideoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ListLiveRecordVideoRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string ListLiveRecordVideoRequest::getStartTime()const
|
||||
void ListLiveRecordVideoRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string ListLiveRecordVideoRequest::getAppName()const
|
||||
@@ -55,7 +57,7 @@ std::string ListLiveRecordVideoRequest::getAppName()const
|
||||
void ListLiveRecordVideoRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
int ListLiveRecordVideoRequest::getPageSize()const
|
||||
@@ -66,7 +68,7 @@ int ListLiveRecordVideoRequest::getPageSize()const
|
||||
void ListLiveRecordVideoRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string ListLiveRecordVideoRequest::getStreamName()const
|
||||
@@ -77,7 +79,7 @@ std::string ListLiveRecordVideoRequest::getStreamName()const
|
||||
void ListLiveRecordVideoRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setCoreParameter("StreamName", streamName);
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string ListLiveRecordVideoRequest::getQueryType()const
|
||||
@@ -88,7 +90,7 @@ std::string ListLiveRecordVideoRequest::getQueryType()const
|
||||
void ListLiveRecordVideoRequest::setQueryType(const std::string& queryType)
|
||||
{
|
||||
queryType_ = queryType;
|
||||
setCoreParameter("QueryType", queryType);
|
||||
setParameter("QueryType", queryType);
|
||||
}
|
||||
|
||||
std::string ListLiveRecordVideoRequest::getResourceOwnerAccount()const
|
||||
@@ -99,7 +101,7 @@ std::string ListLiveRecordVideoRequest::getResourceOwnerAccount()const
|
||||
void ListLiveRecordVideoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string ListLiveRecordVideoRequest::getDomainName()const
|
||||
@@ -110,7 +112,7 @@ std::string ListLiveRecordVideoRequest::getDomainName()const
|
||||
void ListLiveRecordVideoRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string ListLiveRecordVideoRequest::getEndTime()const
|
||||
@@ -121,7 +123,7 @@ std::string ListLiveRecordVideoRequest::getEndTime()const
|
||||
void ListLiveRecordVideoRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long ListLiveRecordVideoRequest::getOwnerId()const
|
||||
@@ -132,7 +134,7 @@ long ListLiveRecordVideoRequest::getOwnerId()const
|
||||
void ListLiveRecordVideoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int ListLiveRecordVideoRequest::getPageNo()const
|
||||
@@ -143,7 +145,7 @@ int ListLiveRecordVideoRequest::getPageNo()const
|
||||
void ListLiveRecordVideoRequest::setPageNo(int pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
std::string ListLiveRecordVideoRequest::getSortBy()const
|
||||
@@ -154,6 +156,6 @@ std::string ListLiveRecordVideoRequest::getSortBy()const
|
||||
void ListLiveRecordVideoRequest::setSortBy(const std::string& sortBy)
|
||||
{
|
||||
sortBy_ = sortBy;
|
||||
setCoreParameter("SortBy", sortBy);
|
||||
setParameter("SortBy", sortBy);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListSnapshotsRequest;
|
||||
|
||||
ListSnapshotsRequest::ListSnapshotsRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListSnapshots")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListSnapshotsRequest::~ListSnapshotsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ListSnapshotsRequest::getResourceOwnerId()const
|
||||
void ListSnapshotsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ListSnapshotsRequest::getAccessKeyId()const
|
||||
@@ -44,7 +46,7 @@ std::string ListSnapshotsRequest::getAccessKeyId()const
|
||||
void ListSnapshotsRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string ListSnapshotsRequest::getPageSize()const
|
||||
@@ -55,7 +57,7 @@ std::string ListSnapshotsRequest::getPageSize()const
|
||||
void ListSnapshotsRequest::setPageSize(const std::string& pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", pageSize);
|
||||
setParameter("PageSize", pageSize);
|
||||
}
|
||||
|
||||
std::string ListSnapshotsRequest::getAuthTimeout()const
|
||||
@@ -66,7 +68,7 @@ std::string ListSnapshotsRequest::getAuthTimeout()const
|
||||
void ListSnapshotsRequest::setAuthTimeout(const std::string& authTimeout)
|
||||
{
|
||||
authTimeout_ = authTimeout;
|
||||
setCoreParameter("AuthTimeout", authTimeout);
|
||||
setParameter("AuthTimeout", authTimeout);
|
||||
}
|
||||
|
||||
std::string ListSnapshotsRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string ListSnapshotsRequest::getResourceOwnerAccount()const
|
||||
void ListSnapshotsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string ListSnapshotsRequest::getVideoId()const
|
||||
@@ -88,7 +90,7 @@ std::string ListSnapshotsRequest::getVideoId()const
|
||||
void ListSnapshotsRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long ListSnapshotsRequest::getOwnerId()const
|
||||
@@ -99,7 +101,7 @@ long ListSnapshotsRequest::getOwnerId()const
|
||||
void ListSnapshotsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ListSnapshotsRequest::getSnapshotType()const
|
||||
@@ -110,7 +112,7 @@ std::string ListSnapshotsRequest::getSnapshotType()const
|
||||
void ListSnapshotsRequest::setSnapshotType(const std::string& snapshotType)
|
||||
{
|
||||
snapshotType_ = snapshotType;
|
||||
setCoreParameter("SnapshotType", snapshotType);
|
||||
setParameter("SnapshotType", snapshotType);
|
||||
}
|
||||
|
||||
std::string ListSnapshotsRequest::getPageNo()const
|
||||
@@ -121,6 +123,6 @@ std::string ListSnapshotsRequest::getPageNo()const
|
||||
void ListSnapshotsRequest::setPageNo(const std::string& pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", pageNo);
|
||||
setParameter("PageNo", pageNo);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListTranscodeTaskRequest;
|
||||
|
||||
ListTranscodeTaskRequest::ListTranscodeTaskRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListTranscodeTask")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListTranscodeTaskRequest::~ListTranscodeTaskRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ListTranscodeTaskRequest::getResourceOwnerId()const
|
||||
void ListTranscodeTaskRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ListTranscodeTaskRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string ListTranscodeTaskRequest::getStartTime()const
|
||||
void ListTranscodeTaskRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string ListTranscodeTaskRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string ListTranscodeTaskRequest::getAccessKeyId()const
|
||||
void ListTranscodeTaskRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
int ListTranscodeTaskRequest::getPageSize()const
|
||||
@@ -66,7 +68,7 @@ int ListTranscodeTaskRequest::getPageSize()const
|
||||
void ListTranscodeTaskRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string ListTranscodeTaskRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string ListTranscodeTaskRequest::getResourceOwnerAccount()const
|
||||
void ListTranscodeTaskRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string ListTranscodeTaskRequest::getEndTime()const
|
||||
@@ -88,7 +90,7 @@ std::string ListTranscodeTaskRequest::getEndTime()const
|
||||
void ListTranscodeTaskRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
std::string ListTranscodeTaskRequest::getVideoId()const
|
||||
@@ -99,7 +101,7 @@ std::string ListTranscodeTaskRequest::getVideoId()const
|
||||
void ListTranscodeTaskRequest::setVideoId(const std::string& videoId)
|
||||
{
|
||||
videoId_ = videoId;
|
||||
setCoreParameter("VideoId", videoId);
|
||||
setParameter("VideoId", videoId);
|
||||
}
|
||||
|
||||
long ListTranscodeTaskRequest::getOwnerId()const
|
||||
@@ -110,7 +112,7 @@ long ListTranscodeTaskRequest::getOwnerId()const
|
||||
void ListTranscodeTaskRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int ListTranscodeTaskRequest::getPageNo()const
|
||||
@@ -121,6 +123,6 @@ int ListTranscodeTaskRequest::getPageNo()const
|
||||
void ListTranscodeTaskRequest::setPageNo(int pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListTranscodeTemplateGroupRequest;
|
||||
|
||||
ListTranscodeTemplateGroupRequest::ListTranscodeTemplateGroupRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListTranscodeTemplateGroup")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListTranscodeTemplateGroupRequest::~ListTranscodeTemplateGroupRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ListTranscodeTemplateGroupRequest::getResourceOwnerId()const
|
||||
void ListTranscodeTemplateGroupRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ListTranscodeTemplateGroupRequest::getAccessKeyId()const
|
||||
@@ -44,7 +46,7 @@ std::string ListTranscodeTemplateGroupRequest::getAccessKeyId()const
|
||||
void ListTranscodeTemplateGroupRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
int ListTranscodeTemplateGroupRequest::getPageSize()const
|
||||
@@ -55,7 +57,7 @@ int ListTranscodeTemplateGroupRequest::getPageSize()const
|
||||
void ListTranscodeTemplateGroupRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string ListTranscodeTemplateGroupRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string ListTranscodeTemplateGroupRequest::getResourceOwnerAccount()const
|
||||
void ListTranscodeTemplateGroupRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long ListTranscodeTemplateGroupRequest::getOwnerId()const
|
||||
@@ -77,7 +79,7 @@ long ListTranscodeTemplateGroupRequest::getOwnerId()const
|
||||
void ListTranscodeTemplateGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int ListTranscodeTemplateGroupRequest::getPageNo()const
|
||||
@@ -88,7 +90,7 @@ int ListTranscodeTemplateGroupRequest::getPageNo()const
|
||||
void ListTranscodeTemplateGroupRequest::setPageNo(int pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
std::string ListTranscodeTemplateGroupRequest::getAppId()const
|
||||
@@ -99,6 +101,6 @@ std::string ListTranscodeTemplateGroupRequest::getAppId()const
|
||||
void ListTranscodeTemplateGroupRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListVodTemplateRequest;
|
||||
|
||||
ListVodTemplateRequest::ListVodTemplateRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListVodTemplate")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListVodTemplateRequest::~ListVodTemplateRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ListVodTemplateRequest::getResourceOwnerId()const
|
||||
void ListVodTemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ListVodTemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +46,7 @@ std::string ListVodTemplateRequest::getResourceOwnerAccount()const
|
||||
void ListVodTemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long ListVodTemplateRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long ListVodTemplateRequest::getOwnerId()const
|
||||
void ListVodTemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ListVodTemplateRequest::getTemplateType()const
|
||||
@@ -66,7 +68,7 @@ std::string ListVodTemplateRequest::getTemplateType()const
|
||||
void ListVodTemplateRequest::setTemplateType(const std::string& templateType)
|
||||
{
|
||||
templateType_ = templateType;
|
||||
setCoreParameter("TemplateType", templateType);
|
||||
setParameter("TemplateType", templateType);
|
||||
}
|
||||
|
||||
std::string ListVodTemplateRequest::getAppId()const
|
||||
@@ -77,6 +79,6 @@ std::string ListVodTemplateRequest::getAppId()const
|
||||
void ListVodTemplateRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ListWatermarkRequest;
|
||||
|
||||
ListWatermarkRequest::ListWatermarkRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ListWatermark")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ListWatermarkRequest::~ListWatermarkRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ListWatermarkRequest::getResourceOwnerId()const
|
||||
void ListWatermarkRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ListWatermarkRequest::getAccessKeyId()const
|
||||
@@ -44,7 +46,7 @@ std::string ListWatermarkRequest::getAccessKeyId()const
|
||||
void ListWatermarkRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
int ListWatermarkRequest::getPageSize()const
|
||||
@@ -55,7 +57,7 @@ int ListWatermarkRequest::getPageSize()const
|
||||
void ListWatermarkRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string ListWatermarkRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string ListWatermarkRequest::getResourceOwnerAccount()const
|
||||
void ListWatermarkRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long ListWatermarkRequest::getOwnerId()const
|
||||
@@ -77,7 +79,7 @@ long ListWatermarkRequest::getOwnerId()const
|
||||
void ListWatermarkRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int ListWatermarkRequest::getPageNo()const
|
||||
@@ -88,7 +90,7 @@ int ListWatermarkRequest::getPageNo()const
|
||||
void ListWatermarkRequest::setPageNo(int pageNo)
|
||||
{
|
||||
pageNo_ = pageNo;
|
||||
setCoreParameter("PageNo", std::to_string(pageNo));
|
||||
setParameter("PageNo", std::to_string(pageNo));
|
||||
}
|
||||
|
||||
std::string ListWatermarkRequest::getAppId()const
|
||||
@@ -99,6 +101,6 @@ std::string ListWatermarkRequest::getAppId()const
|
||||
void ListWatermarkRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::MoveAppResourceRequest;
|
||||
|
||||
MoveAppResourceRequest::MoveAppResourceRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "MoveAppResource")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
MoveAppResourceRequest::~MoveAppResourceRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long MoveAppResourceRequest::getResourceOwnerId()const
|
||||
void MoveAppResourceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long MoveAppResourceRequest::getResourceRealOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long MoveAppResourceRequest::getResourceRealOwnerId()const
|
||||
void MoveAppResourceRequest::setResourceRealOwnerId(long resourceRealOwnerId)
|
||||
{
|
||||
resourceRealOwnerId_ = resourceRealOwnerId;
|
||||
setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
setParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
|
||||
}
|
||||
|
||||
std::string MoveAppResourceRequest::getAccessKeyId()const
|
||||
@@ -55,7 +57,7 @@ std::string MoveAppResourceRequest::getAccessKeyId()const
|
||||
void MoveAppResourceRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string MoveAppResourceRequest::getTargetAppId()const
|
||||
@@ -66,7 +68,7 @@ std::string MoveAppResourceRequest::getTargetAppId()const
|
||||
void MoveAppResourceRequest::setTargetAppId(const std::string& targetAppId)
|
||||
{
|
||||
targetAppId_ = targetAppId;
|
||||
setCoreParameter("TargetAppId", targetAppId);
|
||||
setParameter("TargetAppId", targetAppId);
|
||||
}
|
||||
|
||||
std::string MoveAppResourceRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +79,7 @@ std::string MoveAppResourceRequest::getResourceOwnerAccount()const
|
||||
void MoveAppResourceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long MoveAppResourceRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long MoveAppResourceRequest::getOwnerId()const
|
||||
void MoveAppResourceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string MoveAppResourceRequest::getResourceType()const
|
||||
@@ -99,7 +101,7 @@ std::string MoveAppResourceRequest::getResourceType()const
|
||||
void MoveAppResourceRequest::setResourceType(const std::string& resourceType)
|
||||
{
|
||||
resourceType_ = resourceType;
|
||||
setCoreParameter("ResourceType", resourceType);
|
||||
setParameter("ResourceType", resourceType);
|
||||
}
|
||||
|
||||
std::string MoveAppResourceRequest::getResourceIds()const
|
||||
@@ -110,6 +112,6 @@ std::string MoveAppResourceRequest::getResourceIds()const
|
||||
void MoveAppResourceRequest::setResourceIds(const std::string& resourceIds)
|
||||
{
|
||||
resourceIds_ = resourceIds;
|
||||
setCoreParameter("ResourceIds", resourceIds);
|
||||
setParameter("ResourceIds", resourceIds);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::PreloadVodObjectCachesRequest;
|
||||
|
||||
PreloadVodObjectCachesRequest::PreloadVodObjectCachesRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "PreloadVodObjectCaches")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
PreloadVodObjectCachesRequest::~PreloadVodObjectCachesRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string PreloadVodObjectCachesRequest::getObjectPath()const
|
||||
void PreloadVodObjectCachesRequest::setObjectPath(const std::string& objectPath)
|
||||
{
|
||||
objectPath_ = objectPath;
|
||||
setCoreParameter("ObjectPath", objectPath);
|
||||
setParameter("ObjectPath", objectPath);
|
||||
}
|
||||
|
||||
long PreloadVodObjectCachesRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long PreloadVodObjectCachesRequest::getOwnerId()const
|
||||
void PreloadVodObjectCachesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string PreloadVodObjectCachesRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string PreloadVodObjectCachesRequest::getSecurityToken()const
|
||||
void PreloadVodObjectCachesRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Vod::Model::ProduceEditingProjectVideoRequest;
|
||||
|
||||
ProduceEditingProjectVideoRequest::ProduceEditingProjectVideoRequest() :
|
||||
RpcServiceRequest("vod", "2017-03-21", "ProduceEditingProjectVideo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ProduceEditingProjectVideoRequest::~ProduceEditingProjectVideoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ProduceEditingProjectVideoRequest::getResourceOwnerId()const
|
||||
void ProduceEditingProjectVideoRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getDescription()const
|
||||
@@ -44,7 +46,7 @@ std::string ProduceEditingProjectVideoRequest::getDescription()const
|
||||
void ProduceEditingProjectVideoRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setCoreParameter("Description", description);
|
||||
setParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getTitle()const
|
||||
@@ -55,7 +57,7 @@ std::string ProduceEditingProjectVideoRequest::getTitle()const
|
||||
void ProduceEditingProjectVideoRequest::setTitle(const std::string& title)
|
||||
{
|
||||
title_ = title;
|
||||
setCoreParameter("Title", title);
|
||||
setParameter("Title", title);
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getAccessKeyId()const
|
||||
@@ -66,7 +68,7 @@ std::string ProduceEditingProjectVideoRequest::getAccessKeyId()const
|
||||
void ProduceEditingProjectVideoRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getCoverURL()const
|
||||
@@ -77,7 +79,7 @@ std::string ProduceEditingProjectVideoRequest::getCoverURL()const
|
||||
void ProduceEditingProjectVideoRequest::setCoverURL(const std::string& coverURL)
|
||||
{
|
||||
coverURL_ = coverURL;
|
||||
setCoreParameter("CoverURL", coverURL);
|
||||
setParameter("CoverURL", coverURL);
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getUserData()const
|
||||
@@ -88,7 +90,7 @@ std::string ProduceEditingProjectVideoRequest::getUserData()const
|
||||
void ProduceEditingProjectVideoRequest::setUserData(const std::string& userData)
|
||||
{
|
||||
userData_ = userData;
|
||||
setCoreParameter("UserData", userData);
|
||||
setParameter("UserData", userData);
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getProduceConfig()const
|
||||
@@ -99,7 +101,7 @@ std::string ProduceEditingProjectVideoRequest::getProduceConfig()const
|
||||
void ProduceEditingProjectVideoRequest::setProduceConfig(const std::string& produceConfig)
|
||||
{
|
||||
produceConfig_ = produceConfig;
|
||||
setCoreParameter("ProduceConfig", produceConfig);
|
||||
setParameter("ProduceConfig", produceConfig);
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getProjectId()const
|
||||
@@ -110,7 +112,7 @@ std::string ProduceEditingProjectVideoRequest::getProjectId()const
|
||||
void ProduceEditingProjectVideoRequest::setProjectId(const std::string& projectId)
|
||||
{
|
||||
projectId_ = projectId;
|
||||
setCoreParameter("ProjectId", projectId);
|
||||
setParameter("ProjectId", projectId);
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getMediaMetadata()const
|
||||
@@ -121,7 +123,7 @@ std::string ProduceEditingProjectVideoRequest::getMediaMetadata()const
|
||||
void ProduceEditingProjectVideoRequest::setMediaMetadata(const std::string& mediaMetadata)
|
||||
{
|
||||
mediaMetadata_ = mediaMetadata;
|
||||
setCoreParameter("MediaMetadata", mediaMetadata);
|
||||
setParameter("MediaMetadata", mediaMetadata);
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getResourceOwnerAccount()const
|
||||
@@ -132,7 +134,7 @@ std::string ProduceEditingProjectVideoRequest::getResourceOwnerAccount()const
|
||||
void ProduceEditingProjectVideoRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
long ProduceEditingProjectVideoRequest::getOwnerId()const
|
||||
@@ -143,7 +145,7 @@ long ProduceEditingProjectVideoRequest::getOwnerId()const
|
||||
void ProduceEditingProjectVideoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ProduceEditingProjectVideoRequest::getTimeline()const
|
||||
@@ -154,6 +156,6 @@ std::string ProduceEditingProjectVideoRequest::getTimeline()const
|
||||
void ProduceEditingProjectVideoRequest::setTimeline(const std::string& timeline)
|
||||
{
|
||||
timeline_ = timeline;
|
||||
setCoreParameter("Timeline", timeline);
|
||||
setParameter("Timeline", timeline);
|
||||
}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user