-
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.
- Loading branch information
Showing
66 changed files
with
2,771 additions
and
908 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.462 | ||
1.11.463 |
Submodule aws-crt-cpp
updated
27 files
+1 −1 | .clang-tidy | |
+42 −146 | .github/workflows/ci.yml | |
+1 −1 | .github/workflows/docs.yml | |
+1 −1 | .github/workflows/release.yml | |
+3 −13 | CMakeLists.txt | |
+1 −1 | VERSION | |
+1 −1 | crt/aws-c-cal | |
+1 −1 | crt/aws-c-common | |
+1 −1 | crt/aws-c-http | |
+1 −1 | crt/aws-c-io | |
+1 −1 | crt/aws-c-s3 | |
+1 −1 | crt/aws-c-sdkutils | |
+1 −1 | crt/aws-checksums | |
+1 −1 | crt/aws-lc | |
+1 −1 | crt/s2n | |
+0 −1 | include/aws/crt/Variant.h | |
+0 −2 | include/aws/crt/mqtt/Mqtt5Client.h | |
+1 −1 | include/aws/crt/mqtt/MqttConnection.h | |
+0 −2 | include/aws/crt/mqtt/private/Mqtt5ClientCore.h | |
+1 −1 | include/aws/crt/mqtt/private/MqttConnectionCore.h | |
+0 −550 | include/aws/iot/MqttRequestResponseClient.h | |
+0 −508 | source/iot/MqttRequestResponseClient.cpp | |
+0 −5 | source/mqtt/Mqtt5Client.cpp | |
+1 −1 | source/mqtt/MqttConnection.cpp | |
+1 −1 | source/mqtt/MqttConnectionCore.cpp | |
+0 −32 | tests/CMakeLists.txt | |
+0 −1,099 | tests/MqttRequestResponse.cpp |
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
32 changes: 32 additions & 0 deletions
32
generated/src/aws-cpp-sdk-ec2/include/aws/ec2/model/BandwidthWeightingType.h
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,32 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/ec2/EC2_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace EC2 | ||
{ | ||
namespace Model | ||
{ | ||
enum class BandwidthWeightingType | ||
{ | ||
NOT_SET, | ||
default_, | ||
vpc_1, | ||
ebs_1 | ||
}; | ||
|
||
namespace BandwidthWeightingTypeMapper | ||
{ | ||
AWS_EC2_API BandwidthWeightingType GetBandwidthWeightingTypeForName(const Aws::String& name); | ||
|
||
AWS_EC2_API Aws::String GetNameForBandwidthWeightingType(BandwidthWeightingType value); | ||
} // namespace BandwidthWeightingTypeMapper | ||
} // namespace Model | ||
} // namespace EC2 | ||
} // namespace Aws |
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
32 changes: 32 additions & 0 deletions
32
generated/src/aws-cpp-sdk-ec2/include/aws/ec2/model/InstanceBandwidthWeighting.h
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,32 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/ec2/EC2_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace EC2 | ||
{ | ||
namespace Model | ||
{ | ||
enum class InstanceBandwidthWeighting | ||
{ | ||
NOT_SET, | ||
default_, | ||
vpc_1, | ||
ebs_1 | ||
}; | ||
|
||
namespace InstanceBandwidthWeightingMapper | ||
{ | ||
AWS_EC2_API InstanceBandwidthWeighting GetInstanceBandwidthWeightingForName(const Aws::String& name); | ||
|
||
AWS_EC2_API Aws::String GetNameForInstanceBandwidthWeighting(InstanceBandwidthWeighting value); | ||
} // namespace InstanceBandwidthWeightingMapper | ||
} // namespace Model | ||
} // namespace EC2 | ||
} // namespace Aws |
Oops, something went wrong.