/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include #include #include #include using namespace Aws::Client; using namespace Aws::Utils; using namespace Aws::GreengrassV2; using namespace Aws::GreengrassV2::Model; namespace Aws { namespace GreengrassV2 { template<> AWS_GREENGRASSV2_API ConflictException GreengrassV2Error::GetModeledError() { assert(this->GetErrorType() == GreengrassV2Errors::CONFLICT); return ConflictException(this->GetJsonPayload().View()); } template<> AWS_GREENGRASSV2_API ThrottlingException GreengrassV2Error::GetModeledError() { assert(this->GetErrorType() == GreengrassV2Errors::THROTTLING); return ThrottlingException(this->GetJsonPayload().View()); } template<> AWS_GREENGRASSV2_API ServiceQuotaExceededException GreengrassV2Error::GetModeledError() { assert(this->GetErrorType() == GreengrassV2Errors::SERVICE_QUOTA_EXCEEDED); return ServiceQuotaExceededException(this->GetJsonPayload().View()); } template<> AWS_GREENGRASSV2_API InternalServerException GreengrassV2Error::GetModeledError() { assert(this->GetErrorType() == GreengrassV2Errors::INTERNAL_SERVER); return InternalServerException(this->GetJsonPayload().View()); } template<> AWS_GREENGRASSV2_API ResourceNotFoundException GreengrassV2Error::GetModeledError() { assert(this->GetErrorType() == GreengrassV2Errors::RESOURCE_NOT_FOUND); return ResourceNotFoundException(this->GetJsonPayload().View()); } template<> AWS_GREENGRASSV2_API ValidationException GreengrassV2Error::GetModeledError() { assert(this->GetErrorType() == GreengrassV2Errors::VALIDATION); return ValidationException(this->GetJsonPayload().View()); } namespace GreengrassV2ErrorMapper { static const int CONFLICT_HASH = HashingUtils::HashString("ConflictException"); static const int SERVICE_QUOTA_EXCEEDED_HASH = HashingUtils::HashString("ServiceQuotaExceededException"); static const int INTERNAL_SERVER_HASH = HashingUtils::HashString("InternalServerException"); static const int REQUEST_ALREADY_IN_PROGRESS_HASH = HashingUtils::HashString("RequestAlreadyInProgressException"); AWSError GetErrorForName(const char* errorName) { int hashCode = HashingUtils::HashString(errorName); if (hashCode == CONFLICT_HASH) { return AWSError(static_cast(GreengrassV2Errors::CONFLICT), false); } else if (hashCode == SERVICE_QUOTA_EXCEEDED_HASH) { return AWSError(static_cast(GreengrassV2Errors::SERVICE_QUOTA_EXCEEDED), false); } else if (hashCode == INTERNAL_SERVER_HASH) { return AWSError(static_cast(GreengrassV2Errors::INTERNAL_SERVER), false); } else if (hashCode == REQUEST_ALREADY_IN_PROGRESS_HASH) { return AWSError(static_cast(GreengrassV2Errors::REQUEST_ALREADY_IN_PROGRESS), false); } return AWSError(CoreErrors::UNKNOWN, false); } } // namespace GreengrassV2ErrorMapper } // namespace GreengrassV2 } // namespace Aws