-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Dual-Stack hsm2m.medium clusters. The customers will …
…now be able to create hsm2m.medium clusters having both IPv4 and IPv6 connection capabilities by specifying a new param called NetworkType=DUALSTACK during cluster creation. This release adds GroupId to the response for DeleteSecurityGroup. Add NodeRepairConfig in CreateNodegroupRequest and UpdateNodegroupConfigRequest AWS Elemental MediaConnect Gateway now supports Source Specific Multicast (SSM) for ingress bridges. This enables you to specify a source IP address in addition to a multicast IP when creating or updating an ingress bridge source. AWS Cloud Map now supports service-level attributes, allowing you to associate custom metadata directly with services. These attributes can be retrieved, updated, and deleted using the new GetServiceAttributes, UpdateServiceAttributes, and DeleteServiceAttributes API calls. Limit PutIntegration IntegrationName and ListIntegrations IntegrationNamePrefix parameters to 50 characters There was a sentence fragment in UpdateDirectConnectGatewayAttachment that was causing customer confusion as to whether it's an incomplete sentence or if it was a typo. Removed the fragment.
- Loading branch information
1 parent
dfc47a5
commit a2aa247
Showing
91 changed files
with
3,128 additions
and
914 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.11.466 | ||
1.11.467 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
add_project(cloudhsmv2-smoke-tests | ||
"Tests for the AWS CLOUDHSMV2 C++ SDK" | ||
testing-resources | ||
aws-cpp-sdk-cloudhsmv2 | ||
aws-cpp-sdk-core | ||
) | ||
file(GLOB AWS_CLOUDHSMV2_GENERATED_SMOKE_TEST_SRC | ||
"${CMAKE_CURRENT_SOURCE_DIR}/../RunTests.cpp" | ||
"${CMAKE_CURRENT_SOURCE_DIR}/*.cpp" | ||
) | ||
if(MSVC AND BUILD_SHARED_LIBS) | ||
add_definitions(-DGTEST_LINKED_AS_SHARED_LIBRARY=1) | ||
endif() | ||
|
||
if (CMAKE_CROSSCOMPILING) | ||
set(AUTORUN_UNIT_TESTS OFF) | ||
endif() | ||
|
||
if (AUTORUN_UNIT_TESTS) | ||
enable_testing() | ||
endif() | ||
|
||
if(PLATFORM_ANDROID AND BUILD_SHARED_LIBS) | ||
add_library(${PROJECT_NAME} "${AWS_CLOUDHSMV2_GENERATED_SMOKE_TEST_SRC}") | ||
else() | ||
add_executable(${PROJECT_NAME} "${AWS_CLOUDHSMV2_GENERATED_SMOKE_TEST_SRC}") | ||
endif() | ||
|
||
set_compiler_flags(${PROJECT_NAME}) | ||
set_compiler_warnings(${PROJECT_NAME}) | ||
|
||
target_include_directories(${PROJECT_NAME} PUBLIC | ||
${CMAKE_CURRENT_SOURCE_DIR}/../../src/aws-cpp-sdk-cloudhsmv2/include) | ||
|
||
target_link_libraries(${PROJECT_NAME} | ||
${PROJECT_LIBS}) | ||
|
||
if(NOT CMAKE_CROSSCOMPILING) | ||
SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES OUTPUT_NAME ${PROJECT_NAME}) | ||
endif() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
#include <aws/core/utils/memory/AWSMemory.h> | ||
#include <aws/core/client/ClientConfiguration.h> | ||
#include <aws/core/client/CoreErrors.h> | ||
#include <aws/core/utils/UnreferencedParam.h> | ||
#include <utility> | ||
#include <aws/core/auth/AWSCredentialsProviderChain.h> | ||
#include <aws/core/http/HttpTypes.h> | ||
#include <aws/core/client/AsyncCallerContext.h> | ||
#include <aws/core/utils/Outcome.h> | ||
#include <aws/core/utils/logging/LogMacros.h> | ||
#include <algorithm> | ||
#include <aws/testing/AwsCppSdkGTestSuite.h> | ||
#include <aws/testing/AwsTestHelpers.h> | ||
#include <aws/cloudhsmv2/CloudHSMV2Client.h> | ||
#include <aws/cloudhsmv2/model/DescribeClustersRequest.h> | ||
|
||
namespace CloudHSMV2SmokeTest{ | ||
using namespace Aws::Auth; | ||
using namespace Aws::Http; | ||
using namespace Aws::Client; | ||
|
||
using namespace Aws::CloudHSMV2; | ||
using namespace Aws::CloudHSMV2::Model; | ||
class CloudHSMV2SmokeTestSuite : public Aws::Testing::AwsCppSdkGTestSuite { | ||
public: | ||
static const char ALLOCATION_TAG[]; | ||
}; | ||
const char CloudHSMV2SmokeTestSuite::ALLOCATION_TAG[] = "CloudHSMV2SmokeTest"; | ||
TEST_F(CloudHSMV2SmokeTestSuite, DescribeClustersSuccess ) | ||
{ | ||
Aws::CloudHSMV2::CloudHSMV2ClientConfiguration clientConfiguration; | ||
clientConfiguration.region = "us-west-2"; | ||
clientConfiguration.useFIPS = false; | ||
clientConfiguration.useDualStack = false; | ||
auto clientSp = Aws::MakeShared<CloudHSMV2Client>(ALLOCATION_TAG, clientConfiguration); | ||
//populate input params | ||
|
||
DescribeClustersRequest input; | ||
auto outcome = clientSp->DescribeClusters(input); | ||
EXPECT_TRUE( outcome.IsSuccess()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.