feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,102 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/monitoring/model/GetMetricStatisticsRequest.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
using namespace Aws::CloudWatch::Model;
using namespace Aws::Utils;
GetMetricStatisticsRequest::GetMetricStatisticsRequest() :
m_namespaceHasBeenSet(false),
m_metricNameHasBeenSet(false),
m_dimensionsHasBeenSet(false),
m_startTimeHasBeenSet(false),
m_endTimeHasBeenSet(false),
m_period(0),
m_periodHasBeenSet(false),
m_statisticsHasBeenSet(false),
m_extendedStatisticsHasBeenSet(false),
m_unit(StandardUnit::NOT_SET),
m_unitHasBeenSet(false)
{
}
Aws::String GetMetricStatisticsRequest::SerializePayload() const
{
Aws::StringStream ss;
ss << "Action=GetMetricStatistics&";
if(m_namespaceHasBeenSet)
{
ss << "Namespace=" << StringUtils::URLEncode(m_namespace.c_str()) << "&";
}
if(m_metricNameHasBeenSet)
{
ss << "MetricName=" << StringUtils::URLEncode(m_metricName.c_str()) << "&";
}
if(m_dimensionsHasBeenSet)
{
unsigned dimensionsCount = 1;
for(auto& item : m_dimensions)
{
item.OutputToStream(ss, "Dimensions.member.", dimensionsCount, "");
dimensionsCount++;
}
}
if(m_startTimeHasBeenSet)
{
ss << "StartTime=" << StringUtils::URLEncode(m_startTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
}
if(m_endTimeHasBeenSet)
{
ss << "EndTime=" << StringUtils::URLEncode(m_endTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
}
if(m_periodHasBeenSet)
{
ss << "Period=" << m_period << "&";
}
if(m_statisticsHasBeenSet)
{
unsigned statisticsCount = 1;
for(auto& item : m_statistics)
{
ss << "Statistics.member." << statisticsCount << "="
<< StringUtils::URLEncode(StatisticMapper::GetNameForStatistic(item).c_str()) << "&";
statisticsCount++;
}
}
if(m_extendedStatisticsHasBeenSet)
{
unsigned extendedStatisticsCount = 1;
for(auto& item : m_extendedStatistics)
{
ss << "ExtendedStatistics.member." << extendedStatisticsCount << "="
<< StringUtils::URLEncode(item.c_str()) << "&";
extendedStatisticsCount++;
}
}
if(m_unitHasBeenSet)
{
ss << "Unit=" << StandardUnitMapper::GetNameForStandardUnit(m_unit) << "&";
}
ss << "Version=2010-08-01";
return ss.str();
}
void GetMetricStatisticsRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const
{
uri.SetQueryString(SerializePayload());
}