aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/LifecycleExpiration.cpp
diff options
context:
space:
mode:
authorDevtools Arcadia <arcadia-devtools@yandex-team.ru>2022-02-07 18:08:42 +0300
committerDevtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net>2022-02-07 18:08:42 +0300
commit1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch)
treee26c9fed0de5d9873cce7e00bc214573dc2195b7 /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/LifecycleExpiration.cpp
downloadydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/LifecycleExpiration.cpp')
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/LifecycleExpiration.cpp100
1 files changed, 100 insertions, 0 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/LifecycleExpiration.cpp b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/LifecycleExpiration.cpp
new file mode 100644
index 0000000000..be347d18f0
--- /dev/null
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/LifecycleExpiration.cpp
@@ -0,0 +1,100 @@
+/**
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * SPDX-License-Identifier: Apache-2.0.
+ */
+
+#include <aws/s3/model/LifecycleExpiration.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 S3
+{
+namespace Model
+{
+
+LifecycleExpiration::LifecycleExpiration() :
+ m_dateHasBeenSet(false),
+ m_days(0),
+ m_daysHasBeenSet(false),
+ m_expiredObjectDeleteMarker(false),
+ m_expiredObjectDeleteMarkerHasBeenSet(false)
+{
+}
+
+LifecycleExpiration::LifecycleExpiration(const XmlNode& xmlNode) :
+ m_dateHasBeenSet(false),
+ m_days(0),
+ m_daysHasBeenSet(false),
+ m_expiredObjectDeleteMarker(false),
+ m_expiredObjectDeleteMarkerHasBeenSet(false)
+{
+ *this = xmlNode;
+}
+
+LifecycleExpiration& LifecycleExpiration::operator =(const XmlNode& xmlNode)
+{
+ XmlNode resultNode = xmlNode;
+
+ if(!resultNode.IsNull())
+ {
+ XmlNode dateNode = resultNode.FirstChild("Date");
+ if(!dateNode.IsNull())
+ {
+ m_date = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(dateNode.GetText()).c_str()).c_str(), DateFormat::ISO_8601);
+ m_dateHasBeenSet = true;
+ }
+ XmlNode daysNode = resultNode.FirstChild("Days");
+ if(!daysNode.IsNull())
+ {
+ m_days = StringUtils::ConvertToInt32(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(daysNode.GetText()).c_str()).c_str());
+ m_daysHasBeenSet = true;
+ }
+ XmlNode expiredObjectDeleteMarkerNode = resultNode.FirstChild("ExpiredObjectDeleteMarker");
+ if(!expiredObjectDeleteMarkerNode.IsNull())
+ {
+ m_expiredObjectDeleteMarker = StringUtils::ConvertToBool(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(expiredObjectDeleteMarkerNode.GetText()).c_str()).c_str());
+ m_expiredObjectDeleteMarkerHasBeenSet = true;
+ }
+ }
+
+ return *this;
+}
+
+void LifecycleExpiration::AddToNode(XmlNode& parentNode) const
+{
+ Aws::StringStream ss;
+ if(m_dateHasBeenSet)
+ {
+ XmlNode dateNode = parentNode.CreateChildElement("Date");
+ dateNode.SetText(m_date.ToGmtString(DateFormat::ISO_8601));
+ }
+
+ if(m_daysHasBeenSet)
+ {
+ XmlNode daysNode = parentNode.CreateChildElement("Days");
+ ss << m_days;
+ daysNode.SetText(ss.str());
+ ss.str("");
+ }
+
+ if(m_expiredObjectDeleteMarkerHasBeenSet)
+ {
+ XmlNode expiredObjectDeleteMarkerNode = parentNode.CreateChildElement("ExpiredObjectDeleteMarker");
+ ss << std::boolalpha << m_expiredObjectDeleteMarker;
+ expiredObjectDeleteMarkerNode.SetText(ss.str());
+ ss.str("");
+ }
+
+}
+
+} // namespace Model
+} // namespace S3
+} // namespace Aws