Skip to content

Commit 3a6429e

Browse files
committed
Updated protocol tests
1 parent 5df501c commit 3a6429e

File tree

20 files changed

+70
-37
lines changed

20 files changed

+70
-37
lines changed

generated/protocol-tests/test-clients/aws-cpp-sdk-ec2-protocol/source/EC2ProtocolClient.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,10 @@ EC2ProtocolClient::EC2ProtocolClient(const std::shared_ptr<AWSCredentialsProvide
105105
/* Legacy constructors due deprecation */
106106
EC2ProtocolClient::EC2ProtocolClient(const Client::ClientConfiguration& clientConfiguration)
107107
: BASECLASS(clientConfiguration,
108-
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG, Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG),
109-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
108+
Aws::MakeShared<AWSAuthV4Signer>(
109+
ALLOCATION_TAG,
110+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
111+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
110112
Aws::MakeShared<EC2ProtocolErrorMarshaller>(ALLOCATION_TAG)),
111113
m_clientConfiguration(clientConfiguration),
112114
m_endpointProvider(Aws::MakeShared<EC2ProtocolEndpointProvider>(ALLOCATION_TAG)) {

generated/protocol-tests/test-clients/aws-cpp-sdk-json-protocol/source/JsonProtocolClient.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,10 @@ JsonProtocolClient::JsonProtocolClient(const std::shared_ptr<AWSCredentialsProvi
9898
/* Legacy constructors due deprecation */
9999
JsonProtocolClient::JsonProtocolClient(const Client::ClientConfiguration& clientConfiguration)
100100
: BASECLASS(clientConfiguration,
101-
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG, Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG),
102-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
101+
Aws::MakeShared<AWSAuthV4Signer>(
102+
ALLOCATION_TAG,
103+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
104+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
103105
Aws::MakeShared<JsonProtocolErrorMarshaller>(ALLOCATION_TAG)),
104106
m_clientConfiguration(clientConfiguration),
105107
m_endpointProvider(Aws::MakeShared<JsonProtocolEndpointProvider>(ALLOCATION_TAG)) {

generated/protocol-tests/test-clients/aws-cpp-sdk-json-rpc-10/source/JSONRPC10Client.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ JSONRPC10Client::JSONRPC10Client(const std::shared_ptr<AWSCredentialsProvider>&
9191
/* Legacy constructors due deprecation */
9292
JSONRPC10Client::JSONRPC10Client(const Client::ClientConfiguration& clientConfiguration)
9393
: BASECLASS(clientConfiguration,
94-
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG, Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG),
95-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
94+
Aws::MakeShared<AWSAuthV4Signer>(
95+
ALLOCATION_TAG,
96+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
97+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
9698
Aws::MakeShared<JSONRPC10ErrorMarshaller>(ALLOCATION_TAG)),
9799
m_clientConfiguration(clientConfiguration),
98100
m_endpointProvider(Aws::MakeShared<JSONRPC10EndpointProvider>(ALLOCATION_TAG)) {

generated/protocol-tests/test-clients/aws-cpp-sdk-protocol-mock/source/ProtocolMockClient.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,10 @@ ProtocolMockClient::ProtocolMockClient(const std::shared_ptr<AWSCredentialsProvi
8686
/* Legacy constructors due deprecation */
8787
ProtocolMockClient::ProtocolMockClient(const Client::ClientConfiguration& clientConfiguration)
8888
: BASECLASS(clientConfiguration,
89-
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG, Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG),
90-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
89+
Aws::MakeShared<AWSAuthV4Signer>(
90+
ALLOCATION_TAG,
91+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
92+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
9193
Aws::MakeShared<ProtocolMockErrorMarshaller>(ALLOCATION_TAG)),
9294
m_clientConfiguration(clientConfiguration),
9395
m_endpointProvider(Aws::MakeShared<ProtocolMockEndpointProvider>(ALLOCATION_TAG)) {

generated/protocol-tests/test-clients/aws-cpp-sdk-query-compatible-json-rpc-10/source/QueryCompatibleJSONRPC10Client.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,10 @@ QueryCompatibleJSONRPC10Client::QueryCompatibleJSONRPC10Client(
8787
/* Legacy constructors due deprecation */
8888
QueryCompatibleJSONRPC10Client::QueryCompatibleJSONRPC10Client(const Client::ClientConfiguration& clientConfiguration)
8989
: BASECLASS(clientConfiguration,
90-
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG, Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG),
91-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
90+
Aws::MakeShared<AWSAuthV4Signer>(
91+
ALLOCATION_TAG,
92+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
93+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
9294
Aws::MakeShared<QueryCompatibleJSONRPC10ErrorMarshaller>(ALLOCATION_TAG)),
9395
m_clientConfiguration(clientConfiguration),
9496
m_endpointProvider(Aws::MakeShared<QueryCompatibleJSONRPC10EndpointProvider>(ALLOCATION_TAG)) {

generated/protocol-tests/test-clients/aws-cpp-sdk-query-protocol/source/QueryProtocolClient.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,10 @@ QueryProtocolClient::QueryProtocolClient(const std::shared_ptr<AWSCredentialsPro
114114
/* Legacy constructors due deprecation */
115115
QueryProtocolClient::QueryProtocolClient(const Client::ClientConfiguration& clientConfiguration)
116116
: BASECLASS(clientConfiguration,
117-
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG, Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG),
118-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
117+
Aws::MakeShared<AWSAuthV4Signer>(
118+
ALLOCATION_TAG,
119+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
120+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
119121
Aws::MakeShared<QueryProtocolErrorMarshaller>(ALLOCATION_TAG)),
120122
m_clientConfiguration(clientConfiguration),
121123
m_endpointProvider(Aws::MakeShared<QueryProtocolEndpointProvider>(ALLOCATION_TAG)) {

generated/protocol-tests/test-clients/aws-cpp-sdk-rest-json-protocol/source/RestJsonProtocolClient.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,9 @@ RestJsonProtocolClient::RestJsonProtocolClient(const std::shared_ptr<AWSCredenti
148148
RestJsonProtocolClient::RestJsonProtocolClient(const Client::ClientConfiguration& clientConfiguration)
149149
: BASECLASS(clientConfiguration,
150150
Aws::MakeShared<Aws::Auth::DefaultAuthSignerProvider>(
151-
ALLOCATION_TAG, Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG), SERVICE_NAME,
152-
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
151+
ALLOCATION_TAG,
152+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
153+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
153154
Aws::MakeShared<RestJsonProtocolErrorMarshaller>(ALLOCATION_TAG)),
154155
m_clientConfiguration(clientConfiguration),
155156
m_endpointProvider(Aws::MakeShared<RestJsonProtocolEndpointProvider>(ALLOCATION_TAG)) {

generated/protocol-tests/test-clients/aws-cpp-sdk-rest-xml-protocol/source/RestXmlProtocolClient.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,9 @@ RestXmlProtocolClient::RestXmlProtocolClient(const std::shared_ptr<AWSCredential
148148
RestXmlProtocolClient::RestXmlProtocolClient(const Client::ClientConfiguration& clientConfiguration)
149149
: BASECLASS(clientConfiguration,
150150
Aws::MakeShared<Aws::Auth::DefaultAuthSignerProvider>(
151-
ALLOCATION_TAG, Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG), SERVICE_NAME,
152-
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
151+
ALLOCATION_TAG,
152+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
153+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
153154
Aws::MakeShared<RestXmlProtocolErrorMarshaller>(ALLOCATION_TAG)),
154155
m_clientConfiguration(clientConfiguration),
155156
m_endpointProvider(Aws::MakeShared<RestXmlProtocolEndpointProvider>(ALLOCATION_TAG)) {

generated/protocol-tests/test-clients/aws-cpp-sdk-rpcv2protocol/include/aws/rpcv2protocol/RpcV2ProtocolRequest.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ class AWS_RPCV2PROTOCOL_API RpcV2ProtocolRequest : public Aws::AmazonSerializabl
2727
if (headers.size() == 0 || (headers.size() > 0 && headers.count(Aws::Http::CONTENT_TYPE_HEADER) == 0)) {
2828
}
2929
headers.emplace(Aws::Http::HeaderValuePair(Aws::Http::API_VERSION_HEADER, "2020-07-14"));
30-
headers.emplace(Aws::Http::HeaderValuePair("smithy-protocol", "rpc-v2-cbor"));
31-
headers.emplace(Aws::Http::HeaderValuePair("Accept", "application/cbor"));
32-
3330
return headers;
3431
}
3532

generated/protocol-tests/test-clients/aws-cpp-sdk-rpcv2protocol/source/RpcV2ProtocolClient.cpp

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ RpcV2ProtocolClient::RpcV2ProtocolClient(const std::shared_ptr<AWSCredentialsPro
9191
/* Legacy constructors due deprecation */
9292
RpcV2ProtocolClient::RpcV2ProtocolClient(const Client::ClientConfiguration& clientConfiguration)
9393
: BASECLASS(clientConfiguration,
94-
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG, Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG),
95-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
94+
Aws::MakeShared<AWSAuthV4Signer>(
95+
ALLOCATION_TAG,
96+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
97+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
9698
Aws::MakeShared<RpcV2ProtocolErrorMarshaller>(ALLOCATION_TAG)),
9799
m_clientConfiguration(clientConfiguration),
98100
m_endpointProvider(Aws::MakeShared<RpcV2ProtocolEndpointProvider>(ALLOCATION_TAG)) {
@@ -165,7 +167,7 @@ EmptyInputOutputOutcome RpcV2ProtocolClient::EmptyInputOutput(const EmptyInputOu
165167
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
166168
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, EmptyInputOutput, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
167169
endpointResolutionOutcome.GetError().GetMessage());
168-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/EmptyInputOutput");
170+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/EmptyInputOutput");
169171
return EmptyInputOutputOutcome(
170172
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
171173
},
@@ -195,7 +197,7 @@ Float16Outcome RpcV2ProtocolClient::Float16(const Float16Request& request) const
195197
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
196198
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, Float16, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
197199
endpointResolutionOutcome.GetError().GetMessage());
198-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/Float16");
200+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/Float16");
199201
return Float16Outcome(
200202
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
201203
},
@@ -225,7 +227,7 @@ FractionalSecondsOutcome RpcV2ProtocolClient::FractionalSeconds(const Fractional
225227
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
226228
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, FractionalSeconds, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
227229
endpointResolutionOutcome.GetError().GetMessage());
228-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/FractionalSeconds");
230+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/FractionalSeconds");
229231
return FractionalSecondsOutcome(
230232
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
231233
},
@@ -255,7 +257,7 @@ GreetingWithErrorsOutcome RpcV2ProtocolClient::GreetingWithErrors(const Greeting
255257
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
256258
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, GreetingWithErrors, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
257259
endpointResolutionOutcome.GetError().GetMessage());
258-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/GreetingWithErrors");
260+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/GreetingWithErrors");
259261
return GreetingWithErrorsOutcome(
260262
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
261263
},
@@ -285,7 +287,7 @@ NoInputOutputOutcome RpcV2ProtocolClient::NoInputOutput(const NoInputOutputReque
285287
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
286288
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, NoInputOutput, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
287289
endpointResolutionOutcome.GetError().GetMessage());
288-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/NoInputOutput");
290+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/NoInputOutput");
289291
return NoInputOutputOutcome(
290292
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
291293
},
@@ -315,7 +317,7 @@ OptionalInputOutputOutcome RpcV2ProtocolClient::OptionalInputOutput(const Option
315317
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
316318
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, OptionalInputOutput, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
317319
endpointResolutionOutcome.GetError().GetMessage());
318-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/OptionalInputOutput");
320+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/OptionalInputOutput");
319321
return OptionalInputOutputOutcome(
320322
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
321323
},
@@ -345,7 +347,7 @@ RecursiveShapesOutcome RpcV2ProtocolClient::RecursiveShapes(const RecursiveShape
345347
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
346348
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, RecursiveShapes, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
347349
endpointResolutionOutcome.GetError().GetMessage());
348-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/RecursiveShapes");
350+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/RecursiveShapes");
349351
return RecursiveShapesOutcome(
350352
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
351353
},
@@ -375,7 +377,7 @@ RpcV2CborDenseMapsOutcome RpcV2ProtocolClient::RpcV2CborDenseMaps(const RpcV2Cbo
375377
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
376378
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, RpcV2CborDenseMaps, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
377379
endpointResolutionOutcome.GetError().GetMessage());
378-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/RpcV2CborDenseMaps");
380+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/RpcV2CborDenseMaps");
379381
return RpcV2CborDenseMapsOutcome(
380382
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
381383
},
@@ -405,7 +407,7 @@ RpcV2CborListsOutcome RpcV2ProtocolClient::RpcV2CborLists(const RpcV2CborListsRe
405407
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
406408
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, RpcV2CborLists, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
407409
endpointResolutionOutcome.GetError().GetMessage());
408-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/RpcV2CborLists");
410+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/RpcV2CborLists");
409411
return RpcV2CborListsOutcome(
410412
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
411413
},
@@ -435,7 +437,7 @@ SimpleScalarPropertiesOutcome RpcV2ProtocolClient::SimpleScalarProperties(const
435437
{TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}});
436438
AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, SimpleScalarProperties, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE,
437439
endpointResolutionOutcome.GetError().GetMessage());
438-
endpointResolutionOutcome.GetResult().AddPathSegment("/service/RpcV2Protocol/operation/SimpleScalarProperties");
440+
endpointResolutionOutcome.GetResult().AddPathSegments("/service/RpcV2Protocol/operation/SimpleScalarProperties");
439441
return SimpleScalarPropertiesOutcome(
440442
MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_POST, Aws::Auth::SIGV4_SIGNER));
441443
},

0 commit comments

Comments
 (0)