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,105 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/sagemaker/model/OutputConfig.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace SageMaker
{
namespace Model
{
OutputConfig::OutputConfig() :
m_s3OutputLocationHasBeenSet(false),
m_targetDevice(TargetDevice::NOT_SET),
m_targetDeviceHasBeenSet(false),
m_targetPlatformHasBeenSet(false),
m_compilerOptionsHasBeenSet(false)
{
}
OutputConfig::OutputConfig(JsonView jsonValue) :
m_s3OutputLocationHasBeenSet(false),
m_targetDevice(TargetDevice::NOT_SET),
m_targetDeviceHasBeenSet(false),
m_targetPlatformHasBeenSet(false),
m_compilerOptionsHasBeenSet(false)
{
*this = jsonValue;
}
OutputConfig& OutputConfig::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("S3OutputLocation"))
{
m_s3OutputLocation = jsonValue.GetString("S3OutputLocation");
m_s3OutputLocationHasBeenSet = true;
}
if(jsonValue.ValueExists("TargetDevice"))
{
m_targetDevice = TargetDeviceMapper::GetTargetDeviceForName(jsonValue.GetString("TargetDevice"));
m_targetDeviceHasBeenSet = true;
}
if(jsonValue.ValueExists("TargetPlatform"))
{
m_targetPlatform = jsonValue.GetObject("TargetPlatform");
m_targetPlatformHasBeenSet = true;
}
if(jsonValue.ValueExists("CompilerOptions"))
{
m_compilerOptions = jsonValue.GetString("CompilerOptions");
m_compilerOptionsHasBeenSet = true;
}
return *this;
}
JsonValue OutputConfig::Jsonize() const
{
JsonValue payload;
if(m_s3OutputLocationHasBeenSet)
{
payload.WithString("S3OutputLocation", m_s3OutputLocation);
}
if(m_targetDeviceHasBeenSet)
{
payload.WithString("TargetDevice", TargetDeviceMapper::GetNameForTargetDevice(m_targetDevice));
}
if(m_targetPlatformHasBeenSet)
{
payload.WithObject("TargetPlatform", m_targetPlatform.Jsonize());
}
if(m_compilerOptionsHasBeenSet)
{
payload.WithString("CompilerOptions", m_compilerOptions);
}
return payload;
}
} // namespace Model
} // namespace SageMaker
} // namespace Aws