in cpp/include/alibabacloud/open_api.hpp [51:117]
map<string, boost::any> toMap() override {
map<string, boost::any> res;
if (accessKeyId) {
res["accessKeyId"] = boost::any(*accessKeyId);
}
if (accessKeySecret) {
res["accessKeySecret"] = boost::any(*accessKeySecret);
}
if (securityToken) {
res["securityToken"] = boost::any(*securityToken);
}
if (protocol) {
res["protocol"] = boost::any(*protocol);
}
if (regionId) {
res["regionId"] = boost::any(*regionId);
}
if (readTimeout) {
res["readTimeout"] = boost::any(*readTimeout);
}
if (connectTimeout) {
res["connectTimeout"] = boost::any(*connectTimeout);
}
if (httpProxy) {
res["httpProxy"] = boost::any(*httpProxy);
}
if (httpsProxy) {
res["httpsProxy"] = boost::any(*httpsProxy);
}
if (endpoint) {
res["endpoint"] = boost::any(*endpoint);
}
if (noProxy) {
res["noProxy"] = boost::any(*noProxy);
}
if (maxIdleConns) {
res["maxIdleConns"] = boost::any(*maxIdleConns);
}
if (network) {
res["network"] = boost::any(*network);
}
if (userAgent) {
res["userAgent"] = boost::any(*userAgent);
}
if (suffix) {
res["suffix"] = boost::any(*suffix);
}
if (socks5Proxy) {
res["socks5Proxy"] = boost::any(*socks5Proxy);
}
if (socks5NetWork) {
res["socks5NetWork"] = boost::any(*socks5NetWork);
}
if (endpointType) {
res["endpointType"] = boost::any(*endpointType);
}
if (openPlatformEndpoint) {
res["openPlatformEndpoint"] = boost::any(*openPlatformEndpoint);
}
if (type) {
res["type"] = boost::any(*type);
}
if (signatureAlgorithm) {
res["signatureAlgorithm"] = boost::any(*signatureAlgorithm);
}
return res;
}