Skip to content

Commit

Permalink
reset not needed files
Browse files Browse the repository at this point in the history
  • Loading branch information
sbera87 committed Nov 22, 2024
1 parent 1addb58 commit d890e65
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ namespace Client
class AWS_ACM_API ACMErrorMarshaller : public Aws::Client::JsonErrorMarshaller
{
public:

Aws::Client::AWSError<Aws::Client::CoreErrors> FindErrorByName(const char* exceptionName) const override;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ namespace Client
class AWS_SQS_API SQSErrorMarshaller : public Aws::Client::JsonErrorMarshaller
{
public:

explicit SQSErrorMarshaller(bool queryCompatibilityMode) : Aws::Client::JsonErrorMarshaller(queryCompatibilityMode){}
Aws::Client::AWSError<Aws::Client::CoreErrors> FindErrorByName(const char* exceptionName) const override;
};

Expand Down
1 change: 0 additions & 1 deletion generated/src/aws-cpp-sdk-sqs/include/aws/sqs/SQSRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ namespace SQS
if(headers.size() == 0 || (headers.size() > 0 && headers.count(Aws::Http::CONTENT_TYPE_HEADER) == 0))
{
headers.emplace(Aws::Http::HeaderValuePair(Aws::Http::CONTENT_TYPE_HEADER, Aws::AMZN_JSON_CONTENT_TYPE_1_0 ));
headers.emplace(Aws::Http::HeaderValuePair(Aws::Http::X_AMZN_QUERY_MODE,"True"));
}
headers.emplace(Aws::Http::HeaderValuePair(Aws::Http::API_VERSION_HEADER, "2012-11-05"));
return headers;
Expand Down
12 changes: 6 additions & 6 deletions generated/src/aws-cpp-sdk-sqs/source/SQSClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ SQSClient::SQSClient(const SQS::SQSClientConfiguration& clientConfiguration,
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG),
SERVICE_NAME,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG, true)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<SQSEndpointProvider>(ALLOCATION_TAG))
{
Expand All @@ -91,7 +91,7 @@ SQSClient::SQSClient(const AWSCredentials& credentials,
Aws::MakeShared<SimpleAWSCredentialsProvider>(ALLOCATION_TAG, credentials),
SERVICE_NAME,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG, true)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<SQSEndpointProvider>(ALLOCATION_TAG))
{
Expand All @@ -106,7 +106,7 @@ SQSClient::SQSClient(const std::shared_ptr<AWSCredentialsProvider>& credentialsP
credentialsProvider,
SERVICE_NAME,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG, true)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<SQSEndpointProvider>(ALLOCATION_TAG))
{
Expand All @@ -120,7 +120,7 @@ SQSClient::SQSClient(const std::shared_ptr<AWSCredentialsProvider>& credentialsP
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG),
SERVICE_NAME,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG, true)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_endpointProvider(Aws::MakeShared<SQSEndpointProvider>(ALLOCATION_TAG))
{
Expand All @@ -134,7 +134,7 @@ SQSClient::SQSClient(const AWSCredentials& credentials,
Aws::MakeShared<SimpleAWSCredentialsProvider>(ALLOCATION_TAG, credentials),
SERVICE_NAME,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG, true)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_endpointProvider(Aws::MakeShared<SQSEndpointProvider>(ALLOCATION_TAG))
{
Expand All @@ -148,7 +148,7 @@ SQSClient::SQSClient(const std::shared_ptr<AWSCredentialsProvider>& credentialsP
credentialsProvider,
SERVICE_NAME,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG, true)),
Aws::MakeShared<SQSErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_endpointProvider(Aws::MakeShared<SQSEndpointProvider>(ALLOCATION_TAG))
{
Expand Down

0 comments on commit d890e65

Please sign in to comment.