ECS SDK Auto Released By zhangzifa,Version:1.34.43
Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
@@ -55,7 +55,7 @@ bool DescribeCommandsRequest::getProxy_original_security_transport()const
|
||||
void DescribeCommandsRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", std::to_string(proxy_original_security_transport));
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getDescription()const
|
||||
@@ -187,7 +187,7 @@ bool DescribeCommandsRequest::getEnable()const
|
||||
void DescribeCommandsRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", std::to_string(enable));
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getRequestContent()const
|
||||
@@ -308,7 +308,7 @@ bool DescribeCommandsRequest::getProxy_trust_transport_info()const
|
||||
void DescribeCommandsRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", std::to_string(proxy_trust_transport_info));
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeCommandsRequest::getAk_mfa_present()const
|
||||
@@ -319,7 +319,7 @@ bool DescribeCommandsRequest::getAk_mfa_present()const
|
||||
void DescribeCommandsRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", std::to_string(ak_mfa_present));
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeCommandsRequest::getSecurity_transport()const
|
||||
@@ -330,7 +330,7 @@ bool DescribeCommandsRequest::getSecurity_transport()const
|
||||
void DescribeCommandsRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", std::to_string(security_transport));
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getRequestId()const
|
||||
|
||||
Reference in New Issue
Block a user