75 lines
1.7 KiB
C++
75 lines
1.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/apigatewayv2/model/GetDeploymentResult.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
#include <aws/core/AmazonWebServiceResult.h>
|
|
#include <aws/core/utils/StringUtils.h>
|
|
#include <aws/core/utils/UnreferencedParam.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::ApiGatewayV2::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
using namespace Aws;
|
|
|
|
GetDeploymentResult::GetDeploymentResult() :
|
|
m_autoDeployed(false),
|
|
m_deploymentStatus(DeploymentStatus::NOT_SET)
|
|
{
|
|
}
|
|
|
|
GetDeploymentResult::GetDeploymentResult(const Aws::AmazonWebServiceResult<JsonValue>& result) :
|
|
m_autoDeployed(false),
|
|
m_deploymentStatus(DeploymentStatus::NOT_SET)
|
|
{
|
|
*this = result;
|
|
}
|
|
|
|
GetDeploymentResult& GetDeploymentResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result)
|
|
{
|
|
JsonView jsonValue = result.GetPayload().View();
|
|
if(jsonValue.ValueExists("autoDeployed"))
|
|
{
|
|
m_autoDeployed = jsonValue.GetBool("autoDeployed");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("createdDate"))
|
|
{
|
|
m_createdDate = jsonValue.GetString("createdDate");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("deploymentId"))
|
|
{
|
|
m_deploymentId = jsonValue.GetString("deploymentId");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("deploymentStatus"))
|
|
{
|
|
m_deploymentStatus = DeploymentStatusMapper::GetDeploymentStatusForName(jsonValue.GetString("deploymentStatus"));
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("deploymentStatusMessage"))
|
|
{
|
|
m_deploymentStatusMessage = jsonValue.GetString("deploymentStatusMessage");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("description"))
|
|
{
|
|
m_description = jsonValue.GetString("description");
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
}
|