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,119 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/dms/model/RefreshSchemasStatus.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace DatabaseMigrationService
{
namespace Model
{
RefreshSchemasStatus::RefreshSchemasStatus() :
m_endpointArnHasBeenSet(false),
m_replicationInstanceArnHasBeenSet(false),
m_status(RefreshSchemasStatusTypeValue::NOT_SET),
m_statusHasBeenSet(false),
m_lastRefreshDateHasBeenSet(false),
m_lastFailureMessageHasBeenSet(false)
{
}
RefreshSchemasStatus::RefreshSchemasStatus(JsonView jsonValue) :
m_endpointArnHasBeenSet(false),
m_replicationInstanceArnHasBeenSet(false),
m_status(RefreshSchemasStatusTypeValue::NOT_SET),
m_statusHasBeenSet(false),
m_lastRefreshDateHasBeenSet(false),
m_lastFailureMessageHasBeenSet(false)
{
*this = jsonValue;
}
RefreshSchemasStatus& RefreshSchemasStatus::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("EndpointArn"))
{
m_endpointArn = jsonValue.GetString("EndpointArn");
m_endpointArnHasBeenSet = true;
}
if(jsonValue.ValueExists("ReplicationInstanceArn"))
{
m_replicationInstanceArn = jsonValue.GetString("ReplicationInstanceArn");
m_replicationInstanceArnHasBeenSet = true;
}
if(jsonValue.ValueExists("Status"))
{
m_status = RefreshSchemasStatusTypeValueMapper::GetRefreshSchemasStatusTypeValueForName(jsonValue.GetString("Status"));
m_statusHasBeenSet = true;
}
if(jsonValue.ValueExists("LastRefreshDate"))
{
m_lastRefreshDate = jsonValue.GetDouble("LastRefreshDate");
m_lastRefreshDateHasBeenSet = true;
}
if(jsonValue.ValueExists("LastFailureMessage"))
{
m_lastFailureMessage = jsonValue.GetString("LastFailureMessage");
m_lastFailureMessageHasBeenSet = true;
}
return *this;
}
JsonValue RefreshSchemasStatus::Jsonize() const
{
JsonValue payload;
if(m_endpointArnHasBeenSet)
{
payload.WithString("EndpointArn", m_endpointArn);
}
if(m_replicationInstanceArnHasBeenSet)
{
payload.WithString("ReplicationInstanceArn", m_replicationInstanceArn);
}
if(m_statusHasBeenSet)
{
payload.WithString("Status", RefreshSchemasStatusTypeValueMapper::GetNameForRefreshSchemasStatusTypeValue(m_status));
}
if(m_lastRefreshDateHasBeenSet)
{
payload.WithDouble("LastRefreshDate", m_lastRefreshDate.SecondsWithMSPrecision());
}
if(m_lastFailureMessageHasBeenSet)
{
payload.WithString("LastFailureMessage", m_lastFailureMessage);
}
return payload;
}
} // namespace Model
} // namespace DatabaseMigrationService
} // namespace Aws