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,114 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/machinelearning/model/DescribeMLModelsRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::MachineLearning::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
DescribeMLModelsRequest::DescribeMLModelsRequest() :
m_filterVariable(MLModelFilterVariable::NOT_SET),
m_filterVariableHasBeenSet(false),
m_eQHasBeenSet(false),
m_gTHasBeenSet(false),
m_lTHasBeenSet(false),
m_gEHasBeenSet(false),
m_lEHasBeenSet(false),
m_nEHasBeenSet(false),
m_prefixHasBeenSet(false),
m_sortOrder(SortOrder::NOT_SET),
m_sortOrderHasBeenSet(false),
m_nextTokenHasBeenSet(false),
m_limit(0),
m_limitHasBeenSet(false)
{
}
Aws::String DescribeMLModelsRequest::SerializePayload() const
{
JsonValue payload;
if(m_filterVariableHasBeenSet)
{
payload.WithString("FilterVariable", MLModelFilterVariableMapper::GetNameForMLModelFilterVariable(m_filterVariable));
}
if(m_eQHasBeenSet)
{
payload.WithString("EQ", m_eQ);
}
if(m_gTHasBeenSet)
{
payload.WithString("GT", m_gT);
}
if(m_lTHasBeenSet)
{
payload.WithString("LT", m_lT);
}
if(m_gEHasBeenSet)
{
payload.WithString("GE", m_gE);
}
if(m_lEHasBeenSet)
{
payload.WithString("LE", m_lE);
}
if(m_nEHasBeenSet)
{
payload.WithString("NE", m_nE);
}
if(m_prefixHasBeenSet)
{
payload.WithString("Prefix", m_prefix);
}
if(m_sortOrderHasBeenSet)
{
payload.WithString("SortOrder", SortOrderMapper::GetNameForSortOrder(m_sortOrder));
}
if(m_nextTokenHasBeenSet)
{
payload.WithString("NextToken", m_nextToken);
}
if(m_limitHasBeenSet)
{
payload.WithInteger("Limit", m_limit);
}
return payload.View().WriteReadable();
}
Aws::Http::HeaderValueCollection DescribeMLModelsRequest::GetRequestSpecificHeaders() const
{
Aws::Http::HeaderValueCollection headers;
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AmazonML_20141212.DescribeMLModels"));
return headers;
}