blob: 9eba8ffec69e311e3ab9321a53bc7b57a976931c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/s3/model/ListBucketInventoryConfigurationsResult.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;
ListBucketInventoryConfigurationsResult::ListBucketInventoryConfigurationsResult() :
m_isTruncated(false)
{
}
ListBucketInventoryConfigurationsResult::ListBucketInventoryConfigurationsResult(const Aws::AmazonWebServiceResult<XmlDocument>& result) :
m_isTruncated(false)
{
*this = result;
}
ListBucketInventoryConfigurationsResult& ListBucketInventoryConfigurationsResult::operator =(const Aws::AmazonWebServiceResult<XmlDocument>& result)
{
const XmlDocument& xmlDocument = result.GetPayload();
XmlNode resultNode = xmlDocument.GetRootElement();
if(!resultNode.IsNull())
{
XmlNode continuationTokenNode = resultNode.FirstChild("ContinuationToken");
if(!continuationTokenNode.IsNull())
{
m_continuationToken = Aws::Utils::Xml::DecodeEscapedXmlText(continuationTokenNode.GetText());
}
XmlNode inventoryConfigurationListNode = resultNode.FirstChild("InventoryConfiguration");
if(!inventoryConfigurationListNode.IsNull())
{
XmlNode inventoryConfigurationMember = inventoryConfigurationListNode;
while(!inventoryConfigurationMember.IsNull())
{
m_inventoryConfigurationList.push_back(inventoryConfigurationMember);
inventoryConfigurationMember = inventoryConfigurationMember.NextNode("InventoryConfiguration");
}
}
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 nextContinuationTokenNode = resultNode.FirstChild("NextContinuationToken");
if(!nextContinuationTokenNode.IsNull())
{
m_nextContinuationToken = Aws::Utils::Xml::DecodeEscapedXmlText(nextContinuationTokenNode.GetText());
}
}
return *this;
}
|