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,109 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/dms/model/DescribeEventsRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::DatabaseMigrationService::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
DescribeEventsRequest::DescribeEventsRequest() :
m_sourceIdentifierHasBeenSet(false),
m_sourceType(SourceType::NOT_SET),
m_sourceTypeHasBeenSet(false),
m_startTimeHasBeenSet(false),
m_endTimeHasBeenSet(false),
m_duration(0),
m_durationHasBeenSet(false),
m_eventCategoriesHasBeenSet(false),
m_filtersHasBeenSet(false),
m_maxRecords(0),
m_maxRecordsHasBeenSet(false),
m_markerHasBeenSet(false)
{
}
Aws::String DescribeEventsRequest::SerializePayload() const
{
JsonValue payload;
if(m_sourceIdentifierHasBeenSet)
{
payload.WithString("SourceIdentifier", m_sourceIdentifier);
}
if(m_sourceTypeHasBeenSet)
{
payload.WithString("SourceType", SourceTypeMapper::GetNameForSourceType(m_sourceType));
}
if(m_startTimeHasBeenSet)
{
payload.WithDouble("StartTime", m_startTime.SecondsWithMSPrecision());
}
if(m_endTimeHasBeenSet)
{
payload.WithDouble("EndTime", m_endTime.SecondsWithMSPrecision());
}
if(m_durationHasBeenSet)
{
payload.WithInteger("Duration", m_duration);
}
if(m_eventCategoriesHasBeenSet)
{
Array<JsonValue> eventCategoriesJsonList(m_eventCategories.size());
for(unsigned eventCategoriesIndex = 0; eventCategoriesIndex < eventCategoriesJsonList.GetLength(); ++eventCategoriesIndex)
{
eventCategoriesJsonList[eventCategoriesIndex].AsString(m_eventCategories[eventCategoriesIndex]);
}
payload.WithArray("EventCategories", std::move(eventCategoriesJsonList));
}
if(m_filtersHasBeenSet)
{
Array<JsonValue> filtersJsonList(m_filters.size());
for(unsigned filtersIndex = 0; filtersIndex < filtersJsonList.GetLength(); ++filtersIndex)
{
filtersJsonList[filtersIndex].AsObject(m_filters[filtersIndex].Jsonize());
}
payload.WithArray("Filters", std::move(filtersJsonList));
}
if(m_maxRecordsHasBeenSet)
{
payload.WithInteger("MaxRecords", m_maxRecords);
}
if(m_markerHasBeenSet)
{
payload.WithString("Marker", m_marker);
}
return payload.View().WriteReadable();
}
Aws::Http::HeaderValueCollection DescribeEventsRequest::GetRequestSpecificHeaders() const
{
Aws::Http::HeaderValueCollection headers;
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AmazonDMSv20160101.DescribeEvents"));
return headers;
}