diff options
author | unril <unril@yandex-team.ru> | 2022-02-10 16:46:05 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:05 +0300 |
commit | 3b241dd57cf58f20bbbd63fa6a0a758dbec09b68 (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/TransitionStorageClass.cpp | |
parent | 11ae9eca250d0188b7962459cbc6706719e7dca9 (diff) | |
download | ydb-3b241dd57cf58f20bbbd63fa6a0a758dbec09b68.tar.gz |
Restoring authorship annotation for <unril@yandex-team.ru>. Commit 2 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.cpp | 30 |
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 3ccbbf4889..2149177071 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 {}; } } |