Skip to content

Commit 346e644

Browse files
committed
regenerate clients
1 parent 650deff commit 346e644

3,003 files changed

Lines changed: 10188 additions & 3755 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

generated/src/aws-cpp-sdk-AWSMigrationHub/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ file(GLOB AWS_AWSMIGRATIONHUB_MODEL_HEADERS
88
"include/aws/AWSMigrationHub/model/*.h"
99
)
1010

11+
file(GLOB AWS_AWSMIGRATIONHUB_INTERNAL_HEADERS
12+
"include/aws/AWSMigrationHub/internal/*.h"
13+
)
14+
1115
file(GLOB AWS_AWSMIGRATIONHUB_SOURCE
1216
"source/*.cpp"
1317
)
@@ -18,6 +22,7 @@ file(GLOB AWS_AWSMIGRATIONHUB_MODEL_SOURCE
1822

1923
file(GLOB AWSMIGRATIONHUB_UNIFIED_HEADERS
2024
${AWS_AWSMIGRATIONHUB_HEADERS}
25+
${AWS_AWSMIGRATIONHUB_INTERNAL_HEADERS}
2126
${AWS_AWSMIGRATIONHUB_MODEL_HEADERS}
2227
)
2328

@@ -39,6 +44,7 @@ if(WIN32)
3944
#if we are compiling for visual studio, create a sane directory tree.
4045
if(MSVC)
4146
source_group("Header Files\\aws\\AWSMigrationHub" FILES ${AWS_AWSMIGRATIONHUB_HEADERS})
47+
source_group("Header Files\\aws\\AWSMigrationHub\\internal" FILES ${AWS_AWSMIGRATIONHUB_INTERNAL_HEADERS})
4248
source_group("Header Files\\aws\\AWSMigrationHub\\model" FILES ${AWS_AWSMIGRATIONHUB_MODEL_HEADERS})
4349
source_group("Source Files" FILES ${AWS_AWSMIGRATIONHUB_SOURCE})
4450
source_group("Source Files\\model" FILES ${AWS_AWSMIGRATIONHUB_MODEL_SOURCE})

generated/src/aws-cpp-sdk-AWSMigrationHub/include/aws/AWSMigrationHub/MigrationHubEndpointProvider.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*/
55

66
#pragma once
7-
#include <aws/AWSMigrationHub/MigrationHubEndpointRules.h>
87
#include <aws/AWSMigrationHub/MigrationHub_EXPORTS.h>
98
#include <aws/core/client/GenericClientConfiguration.h>
109
#include <aws/core/endpoint/DefaultEndpointProvider.h>
@@ -42,9 +41,7 @@ class AWS_MIGRATIONHUB_API MigrationHubEndpointProvider : public MigrationHubDef
4241
public:
4342
using MigrationHubResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome;
4443

45-
MigrationHubEndpointProvider()
46-
: MigrationHubDefaultEpProviderBase(Aws::MigrationHub::MigrationHubEndpointRules::GetRulesBlob(),
47-
Aws::MigrationHub::MigrationHubEndpointRules::RulesBlobSize) {}
44+
MigrationHubEndpointProvider();
4845

4946
~MigrationHubEndpointProvider() {}
5047
};

generated/src/aws-cpp-sdk-AWSMigrationHub/include/aws/AWSMigrationHub/MigrationHub_EXPORTS.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@
2626
#define AWS_MIGRATIONHUB_API
2727
#define AWS_MIGRATIONHUB_EXTERN extern
2828
#endif // USE_IMPORT_EXPORT
29-
#else // defined (USE_WINDOWS_DLL_SEMANTICS) || defined (WIN32)
29+
#define AWS_MIGRATIONHUB_LOCAL
30+
#else // defined (USE_WINDOWS_DLL_SEMANTICS) || defined (WIN32)
3031
#define AWS_MIGRATIONHUB_API
3132
#define AWS_MIGRATIONHUB_EXTERN extern
33+
#if __GNUC__ >= 4
34+
#define AWS_MIGRATIONHUB_LOCAL __attribute__((visibility("hidden")))
35+
#else
36+
#define AWS_MIGRATIONHUB_LOCAL
37+
#endif
3238
#endif // defined (USE_WINDOWS_DLL_SEMANTICS) || defined (WIN32)

generated/src/aws-cpp-sdk-AWSMigrationHub/include/aws/AWSMigrationHub/MigrationHubEndpointRules.h renamed to generated/src/aws-cpp-sdk-AWSMigrationHub/include/aws/AWSMigrationHub/internal/MigrationHubEndpointRules.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace Aws {
1212
namespace MigrationHub {
13-
class MigrationHubEndpointRules {
13+
class AWS_MIGRATIONHUB_LOCAL MigrationHubEndpointRules {
1414
public:
1515
static const size_t RulesBlobStrLen;
1616
static const size_t RulesBlobSize;

generated/src/aws-cpp-sdk-AWSMigrationHub/source/MigrationHubEndpointProvider.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@
44
*/
55

66
#include <aws/AWSMigrationHub/MigrationHubEndpointProvider.h>
7+
#include <aws/AWSMigrationHub/internal/MigrationHubEndpointRules.h>
78

89
namespace Aws {
910
namespace MigrationHub {
10-
namespace Endpoint {} // namespace Endpoint
11+
namespace Endpoint {
12+
MigrationHubEndpointProvider::MigrationHubEndpointProvider()
13+
: MigrationHubDefaultEpProviderBase(Aws::MigrationHub::MigrationHubEndpointRules::GetRulesBlob(),
14+
Aws::MigrationHub::MigrationHubEndpointRules::RulesBlobSize) {}
15+
16+
} // namespace Endpoint
1117
} // namespace MigrationHub
1218
} // namespace Aws

generated/src/aws-cpp-sdk-AWSMigrationHub/source/MigrationHubEndpointRules.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0.
44
*/
55

6-
#include <aws/AWSMigrationHub/MigrationHubEndpointRules.h>
6+
#include <aws/AWSMigrationHub/internal/MigrationHubEndpointRules.h>
77
#include <aws/core/utils/memory/stl/AWSArray.h>
88

99
namespace Aws {

generated/src/aws-cpp-sdk-accessanalyzer/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ file(GLOB AWS_ACCESSANALYZER_MODEL_HEADERS
88
"include/aws/accessanalyzer/model/*.h"
99
)
1010

11+
file(GLOB AWS_ACCESSANALYZER_INTERNAL_HEADERS
12+
"include/aws/accessanalyzer/internal/*.h"
13+
)
14+
1115
file(GLOB AWS_ACCESSANALYZER_SOURCE
1216
"source/*.cpp"
1317
)
@@ -18,6 +22,7 @@ file(GLOB AWS_ACCESSANALYZER_MODEL_SOURCE
1822

1923
file(GLOB ACCESSANALYZER_UNIFIED_HEADERS
2024
${AWS_ACCESSANALYZER_HEADERS}
25+
${AWS_ACCESSANALYZER_INTERNAL_HEADERS}
2126
${AWS_ACCESSANALYZER_MODEL_HEADERS}
2227
)
2328

@@ -39,6 +44,7 @@ if(WIN32)
3944
#if we are compiling for visual studio, create a sane directory tree.
4045
if(MSVC)
4146
source_group("Header Files\\aws\\accessanalyzer" FILES ${AWS_ACCESSANALYZER_HEADERS})
47+
source_group("Header Files\\aws\\accessanalyzer\\internal" FILES ${AWS_ACCESSANALYZER_INTERNAL_HEADERS})
4248
source_group("Header Files\\aws\\accessanalyzer\\model" FILES ${AWS_ACCESSANALYZER_MODEL_HEADERS})
4349
source_group("Source Files" FILES ${AWS_ACCESSANALYZER_SOURCE})
4450
source_group("Source Files\\model" FILES ${AWS_ACCESSANALYZER_MODEL_SOURCE})

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/AccessAnalyzerEndpointProvider.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*/
55

66
#pragma once
7-
#include <aws/accessanalyzer/AccessAnalyzerEndpointRules.h>
87
#include <aws/accessanalyzer/AccessAnalyzer_EXPORTS.h>
98
#include <aws/core/client/GenericClientConfiguration.h>
109
#include <aws/core/endpoint/DefaultEndpointProvider.h>
@@ -42,9 +41,7 @@ class AWS_ACCESSANALYZER_API AccessAnalyzerEndpointProvider : public AccessAnaly
4241
public:
4342
using AccessAnalyzerResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome;
4443

45-
AccessAnalyzerEndpointProvider()
46-
: AccessAnalyzerDefaultEpProviderBase(Aws::AccessAnalyzer::AccessAnalyzerEndpointRules::GetRulesBlob(),
47-
Aws::AccessAnalyzer::AccessAnalyzerEndpointRules::RulesBlobSize) {}
44+
AccessAnalyzerEndpointProvider();
4845

4946
~AccessAnalyzerEndpointProvider() {}
5047
};

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/AccessAnalyzer_EXPORTS.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@
2626
#define AWS_ACCESSANALYZER_API
2727
#define AWS_ACCESSANALYZER_EXTERN extern
2828
#endif // USE_IMPORT_EXPORT
29-
#else // defined (USE_WINDOWS_DLL_SEMANTICS) || defined (WIN32)
29+
#define AWS_ACCESSANALYZER_LOCAL
30+
#else // defined (USE_WINDOWS_DLL_SEMANTICS) || defined (WIN32)
3031
#define AWS_ACCESSANALYZER_API
3132
#define AWS_ACCESSANALYZER_EXTERN extern
33+
#if __GNUC__ >= 4
34+
#define AWS_ACCESSANALYZER_LOCAL __attribute__((visibility("hidden")))
35+
#else
36+
#define AWS_ACCESSANALYZER_LOCAL
37+
#endif
3238
#endif // defined (USE_WINDOWS_DLL_SEMANTICS) || defined (WIN32)

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/AccessAnalyzerEndpointRules.h renamed to generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/internal/AccessAnalyzerEndpointRules.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace Aws {
1212
namespace AccessAnalyzer {
13-
class AccessAnalyzerEndpointRules {
13+
class AWS_ACCESSANALYZER_LOCAL AccessAnalyzerEndpointRules {
1414
public:
1515
static const size_t RulesBlobStrLen;
1616
static const size_t RulesBlobSize;

0 commit comments

Comments
 (0)