66 lines
2.2 KiB
C++
66 lines
2.2 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/s3/model/ListBucketMetricsConfigurationsResult.h>
|
|||
|
|
#include <aws/core/utils/xml/XmlSerializer.h>
|
|||
|
|
#include <aws/core/AmazonWebServiceResult.h>
|
|||
|
|
#include <aws/core/utils/StringUtils.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::S3::Model;
|
|||
|
|
using namespace Aws::Utils::Xml;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
using namespace Aws;
|
|||
|
|
|
|||
|
|
ListBucketMetricsConfigurationsResult::ListBucketMetricsConfigurationsResult() :
|
|||
|
|
m_isTruncated(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
ListBucketMetricsConfigurationsResult::ListBucketMetricsConfigurationsResult(const Aws::AmazonWebServiceResult<XmlDocument>& result) :
|
|||
|
|
m_isTruncated(false)
|
|||
|
|
{
|
|||
|
|
*this = result;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
ListBucketMetricsConfigurationsResult& ListBucketMetricsConfigurationsResult::operator =(const Aws::AmazonWebServiceResult<XmlDocument>& result)
|
|||
|
|
{
|
|||
|
|
const XmlDocument& xmlDocument = result.GetPayload();
|
|||
|
|
XmlNode resultNode = xmlDocument.GetRootElement();
|
|||
|
|
|
|||
|
|
if(!resultNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode isTruncatedNode = resultNode.FirstChild("IsTruncated");
|
|||
|
|
if(!isTruncatedNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_isTruncated = StringUtils::ConvertToBool(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(isTruncatedNode.GetText()).c_str()).c_str());
|
|||
|
|
}
|
|||
|
|
XmlNode continuationTokenNode = resultNode.FirstChild("ContinuationToken");
|
|||
|
|
if(!continuationTokenNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_continuationToken = Aws::Utils::Xml::DecodeEscapedXmlText(continuationTokenNode.GetText());
|
|||
|
|
}
|
|||
|
|
XmlNode nextContinuationTokenNode = resultNode.FirstChild("NextContinuationToken");
|
|||
|
|
if(!nextContinuationTokenNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_nextContinuationToken = Aws::Utils::Xml::DecodeEscapedXmlText(nextContinuationTokenNode.GetText());
|
|||
|
|
}
|
|||
|
|
XmlNode metricsConfigurationListNode = resultNode.FirstChild("MetricsConfiguration");
|
|||
|
|
if(!metricsConfigurationListNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode metricsConfigurationMember = metricsConfigurationListNode;
|
|||
|
|
while(!metricsConfigurationMember.IsNull())
|
|||
|
|
{
|
|||
|
|
m_metricsConfigurationList.push_back(metricsConfigurationMember);
|
|||
|
|
metricsConfigurationMember = metricsConfigurationMember.NextNode("MetricsConfiguration");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|