aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/TransitionStorageClass.cpp
diff options
context:
space:
mode:
authorunril <unril@yandex-team.ru>2022-02-10 16:46:05 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:05 +0300
commit11ae9eca250d0188b7962459cbc6706719e7dca9 (patch)
tree4b7d6755091980d33210de19b2eb35a401a761ea /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/TransitionStorageClass.cpp
parent9c914f41ba5e9f9365f404e892197553ac23809e (diff)
downloadydb-11ae9eca250d0188b7962459cbc6706719e7dca9.tar.gz
Restoring authorship annotation for <unril@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/TransitionStorageClass.cpp')
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/TransitionStorageClass.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/TransitionStorageClass.cpp b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/TransitionStorageClass.cpp
index 2149177071..3ccbbf4889 100644
--- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/TransitionStorageClass.cpp
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/TransitionStorageClass.cpp
@@ -23,8 +23,8 @@ namespace Aws
static const int GLACIER_HASH = HashingUtils::HashString("GLACIER");
static const int STANDARD_IA_HASH = HashingUtils::HashString("STANDARD_IA");
static const int ONEZONE_IA_HASH = HashingUtils::HashString("ONEZONE_IA");
- static const int INTELLIGENT_TIERING_HASH = HashingUtils::HashString("INTELLIGENT_TIERING");
- static const int DEEP_ARCHIVE_HASH = HashingUtils::HashString("DEEP_ARCHIVE");
+ static const int INTELLIGENT_TIERING_HASH = HashingUtils::HashString("INTELLIGENT_TIERING");
+ static const int DEEP_ARCHIVE_HASH = HashingUtils::HashString("DEEP_ARCHIVE");
TransitionStorageClass GetTransitionStorageClassForName(const Aws::String& name)
@@ -42,14 +42,14 @@ namespace Aws
{
return TransitionStorageClass::ONEZONE_IA;
}
- else if (hashCode == INTELLIGENT_TIERING_HASH)
- {
- return TransitionStorageClass::INTELLIGENT_TIERING;
- }
- else if (hashCode == DEEP_ARCHIVE_HASH)
- {
- return TransitionStorageClass::DEEP_ARCHIVE;
- }
+ else if (hashCode == INTELLIGENT_TIERING_HASH)
+ {
+ return TransitionStorageClass::INTELLIGENT_TIERING;
+ }
+ else if (hashCode == DEEP_ARCHIVE_HASH)
+ {
+ return TransitionStorageClass::DEEP_ARCHIVE;
+ }
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
@@ -70,10 +70,10 @@ namespace Aws
return "STANDARD_IA";
case TransitionStorageClass::ONEZONE_IA:
return "ONEZONE_IA";
- case TransitionStorageClass::INTELLIGENT_TIERING:
- return "INTELLIGENT_TIERING";
- case TransitionStorageClass::DEEP_ARCHIVE:
- return "DEEP_ARCHIVE";
+ case TransitionStorageClass::INTELLIGENT_TIERING:
+ return "INTELLIGENT_TIERING";
+ case TransitionStorageClass::DEEP_ARCHIVE:
+ return "DEEP_ARCHIVE";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
@@ -81,7 +81,7 @@ namespace Aws
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
- return {};
+ return {};
}
}