Skip to content

Commit 7ef58d5

Browse files
committed
enable HTTPS_PROXY var for crt credentials providers
1 parent a930d2e commit 7ef58d5

436 files changed

Lines changed: 3797 additions & 3644 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/source/MigrationHubClient.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ const char* MigrationHubClient::GetAllocationTag() { return ALLOCATION_TAG; }
6565
MigrationHubClient::MigrationHubClient(const MigrationHub::MigrationHubClientConfiguration& clientConfiguration,
6666
std::shared_ptr<MigrationHubEndpointProviderBase> endpointProvider)
6767
: BASECLASS(clientConfiguration,
68-
Aws::MakeShared<AWSAuthV4Signer>(
69-
ALLOCATION_TAG,
70-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
71-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
68+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
69+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
70+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
71+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
7272
Aws::MakeShared<MigrationHubErrorMarshaller>(ALLOCATION_TAG)),
7373
m_clientConfiguration(clientConfiguration),
7474
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<MigrationHubEndpointProvider>(ALLOCATION_TAG)) {
@@ -102,10 +102,10 @@ MigrationHubClient::MigrationHubClient(const std::shared_ptr<AWSCredentialsProvi
102102
/* Legacy constructors due deprecation */
103103
MigrationHubClient::MigrationHubClient(const Aws::Client::ClientConfiguration& clientConfiguration)
104104
: BASECLASS(clientConfiguration,
105-
Aws::MakeShared<AWSAuthV4Signer>(
106-
ALLOCATION_TAG,
107-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
108-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
105+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
106+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
107+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
108+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
109109
Aws::MakeShared<MigrationHubErrorMarshaller>(ALLOCATION_TAG)),
110110
m_clientConfiguration(clientConfiguration),
111111
m_endpointProvider(Aws::MakeShared<MigrationHubEndpointProvider>(ALLOCATION_TAG)) {

generated/src/aws-cpp-sdk-accessanalyzer/source/AccessAnalyzerClient.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ const char* AccessAnalyzerClient::GetAllocationTag() { return ALLOCATION_TAG; }
8383
AccessAnalyzerClient::AccessAnalyzerClient(const AccessAnalyzer::AccessAnalyzerClientConfiguration& clientConfiguration,
8484
std::shared_ptr<AccessAnalyzerEndpointProviderBase> endpointProvider)
8585
: BASECLASS(clientConfiguration,
86-
Aws::MakeShared<AWSAuthV4Signer>(
87-
ALLOCATION_TAG,
88-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
89-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
86+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
87+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
88+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
89+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
9090
Aws::MakeShared<AccessAnalyzerErrorMarshaller>(ALLOCATION_TAG)),
9191
m_clientConfiguration(clientConfiguration),
9292
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<AccessAnalyzerEndpointProvider>(ALLOCATION_TAG)) {
@@ -120,10 +120,10 @@ AccessAnalyzerClient::AccessAnalyzerClient(const std::shared_ptr<AWSCredentialsP
120120
/* Legacy constructors due deprecation */
121121
AccessAnalyzerClient::AccessAnalyzerClient(const Aws::Client::ClientConfiguration& clientConfiguration)
122122
: BASECLASS(clientConfiguration,
123-
Aws::MakeShared<AWSAuthV4Signer>(
124-
ALLOCATION_TAG,
125-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
126-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
123+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
124+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
125+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
126+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
127127
Aws::MakeShared<AccessAnalyzerErrorMarshaller>(ALLOCATION_TAG)),
128128
m_clientConfiguration(clientConfiguration),
129129
m_endpointProvider(Aws::MakeShared<AccessAnalyzerEndpointProvider>(ALLOCATION_TAG)) {

generated/src/aws-cpp-sdk-account/source/AccountClient.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ const char* AccountClient::GetAllocationTag() { return ALLOCATION_TAG; }
5959
AccountClient::AccountClient(const Account::AccountClientConfiguration& clientConfiguration,
6060
std::shared_ptr<AccountEndpointProviderBase> endpointProvider)
6161
: BASECLASS(clientConfiguration,
62-
Aws::MakeShared<AWSAuthV4Signer>(
63-
ALLOCATION_TAG,
64-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
65-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
62+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
63+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
64+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
65+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
6666
Aws::MakeShared<AccountErrorMarshaller>(ALLOCATION_TAG)),
6767
m_clientConfiguration(clientConfiguration),
6868
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<AccountEndpointProvider>(ALLOCATION_TAG)) {
@@ -95,10 +95,10 @@ AccountClient::AccountClient(const std::shared_ptr<AWSCredentialsProvider>& cred
9595
/* Legacy constructors due deprecation */
9696
AccountClient::AccountClient(const Aws::Client::ClientConfiguration& clientConfiguration)
9797
: BASECLASS(clientConfiguration,
98-
Aws::MakeShared<AWSAuthV4Signer>(
99-
ALLOCATION_TAG,
100-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
101-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
98+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
99+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
100+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
101+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
102102
Aws::MakeShared<AccountErrorMarshaller>(ALLOCATION_TAG)),
103103
m_clientConfiguration(clientConfiguration),
104104
m_endpointProvider(Aws::MakeShared<AccountEndpointProvider>(ALLOCATION_TAG)) {

generated/src/aws-cpp-sdk-acm-pca/source/ACMPCAClient.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ const char* ACMPCAClient::GetAllocationTag() { return ALLOCATION_TAG; }
6767
ACMPCAClient::ACMPCAClient(const ACMPCA::ACMPCAClientConfiguration& clientConfiguration,
6868
std::shared_ptr<ACMPCAEndpointProviderBase> endpointProvider)
6969
: BASECLASS(clientConfiguration,
70-
Aws::MakeShared<AWSAuthV4Signer>(
71-
ALLOCATION_TAG,
72-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
73-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
70+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
71+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
72+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
73+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
7474
Aws::MakeShared<ACMPCAErrorMarshaller>(ALLOCATION_TAG)),
7575
m_clientConfiguration(clientConfiguration),
7676
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<ACMPCAEndpointProvider>(ALLOCATION_TAG)) {
@@ -103,10 +103,10 @@ ACMPCAClient::ACMPCAClient(const std::shared_ptr<AWSCredentialsProvider>& creden
103103
/* Legacy constructors due deprecation */
104104
ACMPCAClient::ACMPCAClient(const Aws::Client::ClientConfiguration& clientConfiguration)
105105
: BASECLASS(clientConfiguration,
106-
Aws::MakeShared<AWSAuthV4Signer>(
107-
ALLOCATION_TAG,
108-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
109-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
106+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
107+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
108+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
109+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
110110
Aws::MakeShared<ACMPCAErrorMarshaller>(ALLOCATION_TAG)),
111111
m_clientConfiguration(clientConfiguration),
112112
m_endpointProvider(Aws::MakeShared<ACMPCAEndpointProvider>(ALLOCATION_TAG)) {

generated/src/aws-cpp-sdk-acm/source/ACMClient.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ const char* ACMClient::GetAllocationTag() { return ALLOCATION_TAG; }
6060

6161
ACMClient::ACMClient(const ACM::ACMClientConfiguration& clientConfiguration, std::shared_ptr<ACMEndpointProviderBase> endpointProvider)
6262
: BASECLASS(clientConfiguration,
63-
Aws::MakeShared<AWSAuthV4Signer>(
64-
ALLOCATION_TAG,
65-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
66-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
63+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
64+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
65+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
66+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
6767
Aws::MakeShared<ACMErrorMarshaller>(ALLOCATION_TAG)),
6868
m_clientConfiguration(clientConfiguration),
6969
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<ACMEndpointProvider>(ALLOCATION_TAG)) {
@@ -95,10 +95,10 @@ ACMClient::ACMClient(const std::shared_ptr<AWSCredentialsProvider>& credentialsP
9595
/* Legacy constructors due deprecation */
9696
ACMClient::ACMClient(const Aws::Client::ClientConfiguration& clientConfiguration)
9797
: BASECLASS(clientConfiguration,
98-
Aws::MakeShared<AWSAuthV4Signer>(
99-
ALLOCATION_TAG,
100-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
101-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
98+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
99+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
100+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
101+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
102102
Aws::MakeShared<ACMErrorMarshaller>(ALLOCATION_TAG)),
103103
m_clientConfiguration(clientConfiguration),
104104
m_endpointProvider(Aws::MakeShared<ACMEndpointProvider>(ALLOCATION_TAG)) {

generated/src/aws-cpp-sdk-aiops/source/AIOpsClient.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ const char* AIOpsClient::GetAllocationTag() { return ALLOCATION_TAG; }
5555
AIOpsClient::AIOpsClient(const AIOps::AIOpsClientConfiguration& clientConfiguration,
5656
std::shared_ptr<AIOpsEndpointProviderBase> endpointProvider)
5757
: BASECLASS(clientConfiguration,
58-
Aws::MakeShared<AWSAuthV4Signer>(
59-
ALLOCATION_TAG,
60-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
61-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
58+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
59+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
60+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
61+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
6262
Aws::MakeShared<AIOpsErrorMarshaller>(ALLOCATION_TAG)),
6363
m_clientConfiguration(clientConfiguration),
6464
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<AIOpsEndpointProvider>(ALLOCATION_TAG)) {
@@ -91,10 +91,10 @@ AIOpsClient::AIOpsClient(const std::shared_ptr<AWSCredentialsProvider>& credenti
9191
/* Legacy constructors due deprecation */
9292
AIOpsClient::AIOpsClient(const Aws::Client::ClientConfiguration& clientConfiguration)
9393
: BASECLASS(clientConfiguration,
94-
Aws::MakeShared<AWSAuthV4Signer>(
95-
ALLOCATION_TAG,
96-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
97-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
94+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
95+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
96+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
97+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
9898
Aws::MakeShared<AIOpsErrorMarshaller>(ALLOCATION_TAG)),
9999
m_clientConfiguration(clientConfiguration),
100100
m_endpointProvider(Aws::MakeShared<AIOpsEndpointProvider>(ALLOCATION_TAG)) {

generated/src/aws-cpp-sdk-amp/source/PrometheusServiceClient.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ const char* PrometheusServiceClient::GetAllocationTag() { return ALLOCATION_TAG;
8888
PrometheusServiceClient::PrometheusServiceClient(const PrometheusService::PrometheusServiceClientConfiguration& clientConfiguration,
8989
std::shared_ptr<PrometheusServiceEndpointProviderBase> endpointProvider)
9090
: BASECLASS(clientConfiguration,
91-
Aws::MakeShared<AWSAuthV4Signer>(
92-
ALLOCATION_TAG,
93-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
94-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
91+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
92+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
93+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
94+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
9595
Aws::MakeShared<PrometheusServiceErrorMarshaller>(ALLOCATION_TAG)),
9696
m_clientConfiguration(clientConfiguration),
9797
m_endpointProvider(endpointProvider ? std::move(endpointProvider)
@@ -128,10 +128,10 @@ PrometheusServiceClient::PrometheusServiceClient(const std::shared_ptr<AWSCreden
128128
/* Legacy constructors due deprecation */
129129
PrometheusServiceClient::PrometheusServiceClient(const Aws::Client::ClientConfiguration& clientConfiguration)
130130
: BASECLASS(clientConfiguration,
131-
Aws::MakeShared<AWSAuthV4Signer>(
132-
ALLOCATION_TAG,
133-
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(ALLOCATION_TAG, clientConfiguration.credentialProviderConfig),
134-
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
131+
Aws::MakeShared<AWSAuthV4Signer>(ALLOCATION_TAG,
132+
Aws::MakeShared<DefaultAWSCredentialsProviderChain>(
133+
ALLOCATION_TAG, clientConfiguration.ResolveCredentialProviderConfig()),
134+
SERVICE_NAME, Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
135135
Aws::MakeShared<PrometheusServiceErrorMarshaller>(ALLOCATION_TAG)),
136136
m_clientConfiguration(clientConfiguration),
137137
m_endpointProvider(Aws::MakeShared<PrometheusServiceEndpointProvider>(ALLOCATION_TAG)) {

0 commit comments

Comments
 (0)