This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ssm/source/model/ComplianceItem.cpp

190 lines
4.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/ssm/model/ComplianceItem.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace SSM
{
namespace Model
{
ComplianceItem::ComplianceItem() :
m_complianceTypeHasBeenSet(false),
m_resourceTypeHasBeenSet(false),
m_resourceIdHasBeenSet(false),
m_idHasBeenSet(false),
m_titleHasBeenSet(false),
m_status(ComplianceStatus::NOT_SET),
m_statusHasBeenSet(false),
m_severity(ComplianceSeverity::NOT_SET),
m_severityHasBeenSet(false),
m_executionSummaryHasBeenSet(false),
m_detailsHasBeenSet(false)
{
}
ComplianceItem::ComplianceItem(JsonView jsonValue) :
m_complianceTypeHasBeenSet(false),
m_resourceTypeHasBeenSet(false),
m_resourceIdHasBeenSet(false),
m_idHasBeenSet(false),
m_titleHasBeenSet(false),
m_status(ComplianceStatus::NOT_SET),
m_statusHasBeenSet(false),
m_severity(ComplianceSeverity::NOT_SET),
m_severityHasBeenSet(false),
m_executionSummaryHasBeenSet(false),
m_detailsHasBeenSet(false)
{
*this = jsonValue;
}
ComplianceItem& ComplianceItem::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("ComplianceType"))
{
m_complianceType = jsonValue.GetString("ComplianceType");
m_complianceTypeHasBeenSet = true;
}
if(jsonValue.ValueExists("ResourceType"))
{
m_resourceType = jsonValue.GetString("ResourceType");
m_resourceTypeHasBeenSet = true;
}
if(jsonValue.ValueExists("ResourceId"))
{
m_resourceId = jsonValue.GetString("ResourceId");
m_resourceIdHasBeenSet = true;
}
if(jsonValue.ValueExists("Id"))
{
m_id = jsonValue.GetString("Id");
m_idHasBeenSet = true;
}
if(jsonValue.ValueExists("Title"))
{
m_title = jsonValue.GetString("Title");
m_titleHasBeenSet = true;
}
if(jsonValue.ValueExists("Status"))
{
m_status = ComplianceStatusMapper::GetComplianceStatusForName(jsonValue.GetString("Status"));
m_statusHasBeenSet = true;
}
if(jsonValue.ValueExists("Severity"))
{
m_severity = ComplianceSeverityMapper::GetComplianceSeverityForName(jsonValue.GetString("Severity"));
m_severityHasBeenSet = true;
}
if(jsonValue.ValueExists("ExecutionSummary"))
{
m_executionSummary = jsonValue.GetObject("ExecutionSummary");
m_executionSummaryHasBeenSet = true;
}
if(jsonValue.ValueExists("Details"))
{
Aws::Map<Aws::String, JsonView> detailsJsonMap = jsonValue.GetObject("Details").GetAllObjects();
for(auto& detailsItem : detailsJsonMap)
{
m_details[detailsItem.first] = detailsItem.second.AsString();
}
m_detailsHasBeenSet = true;
}
return *this;
}
JsonValue ComplianceItem::Jsonize() const
{
JsonValue payload;
if(m_complianceTypeHasBeenSet)
{
payload.WithString("ComplianceType", m_complianceType);
}
if(m_resourceTypeHasBeenSet)
{
payload.WithString("ResourceType", m_resourceType);
}
if(m_resourceIdHasBeenSet)
{
payload.WithString("ResourceId", m_resourceId);
}
if(m_idHasBeenSet)
{
payload.WithString("Id", m_id);
}
if(m_titleHasBeenSet)
{
payload.WithString("Title", m_title);
}
if(m_statusHasBeenSet)
{
payload.WithString("Status", ComplianceStatusMapper::GetNameForComplianceStatus(m_status));
}
if(m_severityHasBeenSet)
{
payload.WithString("Severity", ComplianceSeverityMapper::GetNameForComplianceSeverity(m_severity));
}
if(m_executionSummaryHasBeenSet)
{
payload.WithObject("ExecutionSummary", m_executionSummary.Jsonize());
}
if(m_detailsHasBeenSet)
{
JsonValue detailsJsonMap;
for(auto& detailsItem : m_details)
{
detailsJsonMap.WithString(detailsItem.first, detailsItem.second);
}
payload.WithObject("Details", std::move(detailsJsonMap));
}
return payload;
}
} // namespace Model
} // namespace SSM
} // namespace Aws