Browse Source

Support latest openAPIs.

sdk-team 5 years ago
parent
commit
31ce8cba5d

+ 3 - 0
CHANGELOG

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

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.702
+1.36.703

+ 0 - 3
slb/include/alibabacloud/slb/model/CreateLoadBalancerTCPListenerRequest.h

@@ -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_;

+ 0 - 3
slb/include/alibabacloud/slb/model/CreateLoadBalancerUDPListenerRequest.h

@@ -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_;

+ 0 - 2
slb/include/alibabacloud/slb/model/DescribeLoadBalancerTCPListenerAttributeResult.h

@@ -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_;

+ 0 - 2
slb/include/alibabacloud/slb/model/DescribeLoadBalancerUDPListenerAttributeResult.h

@@ -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_;

+ 0 - 3
slb/include/alibabacloud/slb/model/SetLoadBalancerTCPListenerAttributeRequest.h

@@ -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_;

+ 0 - 3
slb/include/alibabacloud/slb/model/SetLoadBalancerUDPListenerAttributeRequest.h

@@ -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_;

+ 0 - 11
slb/src/model/CreateLoadBalancerTCPListenerRequest.cc

@@ -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_;

+ 0 - 11
slb/src/model/CreateLoadBalancerUDPListenerRequest.cc

@@ -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_;

+ 0 - 7
slb/src/model/DescribeLoadBalancerTCPListenerAttributeResult.cc

@@ -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_;

+ 0 - 7
slb/src/model/DescribeLoadBalancerUDPListenerAttributeResult.cc

@@ -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_;

+ 0 - 11
slb/src/model/SetLoadBalancerTCPListenerAttributeRequest.cc

@@ -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_;

+ 0 - 11
slb/src/model/SetLoadBalancerUDPListenerAttributeRequest.cc

@@ -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_;