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-cloudsearch/source/model/AccessPoliciesStatus.cpp

92 lines
2.3 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/cloudsearch/model/AccessPoliciesStatus.h>
#include <aws/core/utils/xml/XmlSerializer.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <utility>
using namespace Aws::Utils::Xml;
using namespace Aws::Utils;
namespace Aws
{
namespace CloudSearch
{
namespace Model
{
AccessPoliciesStatus::AccessPoliciesStatus() :
m_optionsHasBeenSet(false),
m_statusHasBeenSet(false)
{
}
AccessPoliciesStatus::AccessPoliciesStatus(const XmlNode& xmlNode) :
m_optionsHasBeenSet(false),
m_statusHasBeenSet(false)
{
*this = xmlNode;
}
AccessPoliciesStatus& AccessPoliciesStatus::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode optionsNode = resultNode.FirstChild("Options");
if(!optionsNode.IsNull())
{
m_options = Aws::Utils::Xml::DecodeEscapedXmlText(optionsNode.GetText());
m_optionsHasBeenSet = true;
}
XmlNode statusNode = resultNode.FirstChild("Status");
if(!statusNode.IsNull())
{
m_status = statusNode;
m_statusHasBeenSet = true;
}
}
return *this;
}
void AccessPoliciesStatus::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_optionsHasBeenSet)
{
oStream << location << index << locationValue << ".Options=" << StringUtils::URLEncode(m_options.c_str()) << "&";
}
if(m_statusHasBeenSet)
{
Aws::StringStream statusLocationAndMemberSs;
statusLocationAndMemberSs << location << index << locationValue << ".Status";
m_status.OutputToStream(oStream, statusLocationAndMemberSs.str().c_str());
}
}
void AccessPoliciesStatus::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_optionsHasBeenSet)
{
oStream << location << ".Options=" << StringUtils::URLEncode(m_options.c_str()) << "&";
}
if(m_statusHasBeenSet)
{
Aws::String statusLocationAndMember(location);
statusLocationAndMember += ".Status";
m_status.OutputToStream(oStream, statusLocationAndMember.c_str());
}
}
} // namespace Model
} // namespace CloudSearch
} // namespace Aws