Support latest openAPIs.

This commit is contained in:
sdk-team
2021-04-29 06:10:40 +00:00
parent e1ae9bd807
commit 31ce8cba5d
14 changed files with 4 additions and 75 deletions

View File

@@ -1,3 +1,6 @@
2021-04-29 Version: 1.36.703
- Support latest openAPIs.
2021-04-28 Version: 1.36.702
- Export new API.

View File

@@ -1 +1 @@
1.36.702
1.36.703

View File

@@ -73,8 +73,6 @@ namespace AlibabaCloud
void setHealthCheckDomain(const std::string& healthCheckDomain);
long getOwnerId()const;
void setOwnerId(long ownerId);
bool getProxyProtocolVpcIdEnabled()const;
void setProxyProtocolVpcIdEnabled(bool proxyProtocolVpcIdEnabled);
std::string getTags()const;
void setTags(const std::string& tags);
std::string getLoadBalancerId()const;
@@ -147,7 +145,6 @@ namespace AlibabaCloud
std::string healthCheckMethod_;
std::string healthCheckDomain_;
long ownerId_;
bool proxyProtocolVpcIdEnabled_;
std::string tags_;
std::string loadBalancerId_;
std::string masterSlaveServerGroupId_;

View File

@@ -69,8 +69,6 @@ namespace AlibabaCloud
void setHealthCheckDomain(const std::string& healthCheckDomain);
long getOwnerId()const;
void setOwnerId(long ownerId);
bool getProxyProtocolVpcIdEnabled()const;
void setProxyProtocolVpcIdEnabled(bool proxyProtocolVpcIdEnabled);
std::string getTags()const;
void setTags(const std::string& tags);
std::string getLoadBalancerId()const;
@@ -147,7 +145,6 @@ namespace AlibabaCloud
std::string healthCheckMethod_;
std::string healthCheckDomain_;
long ownerId_;
bool proxyProtocolVpcIdEnabled_;
std::string tags_;
std::string loadBalancerId_;
std::string masterSlaveServerGroupId_;

View File

@@ -44,7 +44,6 @@ namespace AlibabaCloud
~DescribeLoadBalancerTCPListenerAttributeResult();
int getMaxConnection()const;
std::string getVServerGroupId()const;
bool getProxyProtocolVpcIdEnabled()const;
std::string getDescription()const;
std::string getSynProxy()const;
int getFailoverThreshold()const;
@@ -88,7 +87,6 @@ namespace AlibabaCloud
private:
int maxConnection_;
std::string vServerGroupId_;
bool proxyProtocolVpcIdEnabled_;
std::string description_;
std::string synProxy_;
int failoverThreshold_;

View File

@@ -44,7 +44,6 @@ namespace AlibabaCloud
~DescribeLoadBalancerUDPListenerAttributeResult();
int getMaxConnection()const;
std::string getVServerGroupId()const;
bool getProxyProtocolVpcIdEnabled()const;
std::string getDescription()const;
int getFailoverThreshold()const;
bool getProxyProtocolV2Enabled()const;
@@ -89,7 +88,6 @@ namespace AlibabaCloud
private:
int maxConnection_;
std::string vServerGroupId_;
bool proxyProtocolVpcIdEnabled_;
std::string description_;
int failoverThreshold_;
bool proxyProtocolV2Enabled_;

View File

@@ -77,8 +77,6 @@ namespace AlibabaCloud
void setSynProxy(const std::string& synProxy);
long getOwnerId()const;
void setOwnerId(long ownerId);
bool getProxyProtocolVpcIdEnabled()const;
void setProxyProtocolVpcIdEnabled(bool proxyProtocolVpcIdEnabled);
std::string getTags()const;
void setTags(const std::string& tags);
std::string getLoadBalancerId()const;
@@ -153,7 +151,6 @@ namespace AlibabaCloud
std::string healthCheckDomain_;
std::string synProxy_;
long ownerId_;
bool proxyProtocolVpcIdEnabled_;
std::string tags_;
std::string loadBalancerId_;
std::string masterSlaveServerGroupId_;

View File

@@ -71,8 +71,6 @@ namespace AlibabaCloud
void setHealthCheckDomain(const std::string& healthCheckDomain);
long getOwnerId()const;
void setOwnerId(long ownerId);
bool getProxyProtocolVpcIdEnabled()const;
void setProxyProtocolVpcIdEnabled(bool proxyProtocolVpcIdEnabled);
std::string getTags()const;
void setTags(const std::string& tags);
std::string getLoadBalancerId()const;
@@ -150,7 +148,6 @@ namespace AlibabaCloud
std::string healthCheckMethod_;
std::string healthCheckDomain_;
long ownerId_;
bool proxyProtocolVpcIdEnabled_;
std::string tags_;
std::string loadBalancerId_;
std::string masterSlaveServerGroupId_;

View File

@@ -208,17 +208,6 @@ void CreateLoadBalancerTCPListenerRequest::setOwnerId(long ownerId)
setParameter("OwnerId", std::to_string(ownerId));
}
bool CreateLoadBalancerTCPListenerRequest::getProxyProtocolVpcIdEnabled()const
{
return proxyProtocolVpcIdEnabled_;
}
void CreateLoadBalancerTCPListenerRequest::setProxyProtocolVpcIdEnabled(bool proxyProtocolVpcIdEnabled)
{
proxyProtocolVpcIdEnabled_ = proxyProtocolVpcIdEnabled;
setParameter("ProxyProtocolVpcIdEnabled", proxyProtocolVpcIdEnabled ? "true" : "false");
}
std::string CreateLoadBalancerTCPListenerRequest::getTags()const
{
return tags_;

View File

@@ -186,17 +186,6 @@ void CreateLoadBalancerUDPListenerRequest::setOwnerId(long ownerId)
setParameter("OwnerId", std::to_string(ownerId));
}
bool CreateLoadBalancerUDPListenerRequest::getProxyProtocolVpcIdEnabled()const
{
return proxyProtocolVpcIdEnabled_;
}
void CreateLoadBalancerUDPListenerRequest::setProxyProtocolVpcIdEnabled(bool proxyProtocolVpcIdEnabled)
{
proxyProtocolVpcIdEnabled_ = proxyProtocolVpcIdEnabled;
setParameter("ProxyProtocolVpcIdEnabled", proxyProtocolVpcIdEnabled ? "true" : "false");
}
std::string CreateLoadBalancerUDPListenerRequest::getTags()const
{
return tags_;

View File

@@ -110,8 +110,6 @@ void DescribeLoadBalancerTCPListenerAttributeResult::parse(const std::string &pa
persistenceTimeout_ = std::stoi(value["PersistenceTimeout"].asString());
if(!value["ProxyProtocolV2Enabled"].isNull())
proxyProtocolV2Enabled_ = value["ProxyProtocolV2Enabled"].asString() == "true";
if(!value["ProxyProtocolVpcIdEnabled"].isNull())
proxyProtocolVpcIdEnabled_ = value["ProxyProtocolVpcIdEnabled"].asString() == "true";
if(!value["Scheduler"].isNull())
scheduler_ = value["Scheduler"].asString();
if(!value["SlaveServerGroupId"].isNull())
@@ -141,11 +139,6 @@ std::string DescribeLoadBalancerTCPListenerAttributeResult::getVServerGroupId()c
return vServerGroupId_;
}
bool DescribeLoadBalancerTCPListenerAttributeResult::getProxyProtocolVpcIdEnabled()const
{
return proxyProtocolVpcIdEnabled_;
}
std::string DescribeLoadBalancerTCPListenerAttributeResult::getDescription()const
{
return description_;

View File

@@ -110,8 +110,6 @@ void DescribeLoadBalancerUDPListenerAttributeResult::parse(const std::string &pa
persistenceTimeout_ = std::stoi(value["PersistenceTimeout"].asString());
if(!value["ProxyProtocolV2Enabled"].isNull())
proxyProtocolV2Enabled_ = value["ProxyProtocolV2Enabled"].asString() == "true";
if(!value["ProxyProtocolVpcIdEnabled"].isNull())
proxyProtocolVpcIdEnabled_ = value["ProxyProtocolVpcIdEnabled"].asString() == "true";
if(!value["QuicVersion"].isNull())
quicVersion_ = value["QuicVersion"].asString();
if(!value["Scheduler"].isNull())
@@ -143,11 +141,6 @@ std::string DescribeLoadBalancerUDPListenerAttributeResult::getVServerGroupId()c
return vServerGroupId_;
}
bool DescribeLoadBalancerUDPListenerAttributeResult::getProxyProtocolVpcIdEnabled()const
{
return proxyProtocolVpcIdEnabled_;
}
std::string DescribeLoadBalancerUDPListenerAttributeResult::getDescription()const
{
return description_;

View File

@@ -230,17 +230,6 @@ void SetLoadBalancerTCPListenerAttributeRequest::setOwnerId(long ownerId)
setParameter("OwnerId", std::to_string(ownerId));
}
bool SetLoadBalancerTCPListenerAttributeRequest::getProxyProtocolVpcIdEnabled()const
{
return proxyProtocolVpcIdEnabled_;
}
void SetLoadBalancerTCPListenerAttributeRequest::setProxyProtocolVpcIdEnabled(bool proxyProtocolVpcIdEnabled)
{
proxyProtocolVpcIdEnabled_ = proxyProtocolVpcIdEnabled;
setParameter("ProxyProtocolVpcIdEnabled", proxyProtocolVpcIdEnabled ? "true" : "false");
}
std::string SetLoadBalancerTCPListenerAttributeRequest::getTags()const
{
return tags_;

View File

@@ -197,17 +197,6 @@ void SetLoadBalancerUDPListenerAttributeRequest::setOwnerId(long ownerId)
setParameter("OwnerId", std::to_string(ownerId));
}
bool SetLoadBalancerUDPListenerAttributeRequest::getProxyProtocolVpcIdEnabled()const
{
return proxyProtocolVpcIdEnabled_;
}
void SetLoadBalancerUDPListenerAttributeRequest::setProxyProtocolVpcIdEnabled(bool proxyProtocolVpcIdEnabled)
{
proxyProtocolVpcIdEnabled_ = proxyProtocolVpcIdEnabled;
setParameter("ProxyProtocolVpcIdEnabled", proxyProtocolVpcIdEnabled ? "true" : "false");
}
std::string SetLoadBalancerUDPListenerAttributeRequest::getTags()const
{
return tags_;