-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
1 parent
25f7075
commit 2387ea5
Showing
40 changed files
with
2,319 additions
and
76 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[ | ||
{ | ||
"type": "api-change", | ||
"category": "EC2InstanceConnect", | ||
"description": "This release includes a new exception type \"SerialConsoleSessionUnsupportedException\" for SendSerialConsoleSSHPublicKey API." | ||
}, | ||
{ | ||
"type": "enhancement", | ||
"category": "ElasticLoadBalancingv2", | ||
"description": "This release allows you to configure HTTP client keep-alive duration for communication between clients and Application Load Balancers." | ||
}, | ||
{ | ||
"type": "enhancement", | ||
"category": "RDS", | ||
"description": "Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2." | ||
}, | ||
{ | ||
"type": "enhancement", | ||
"category": "Amplify", | ||
"description": "Documentation updates for Amplify. Identifies the APIs available only to apps created using Amplify Gen 1." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "TimestreamInfluxDB", | ||
"description": "This is the initial SDK release for Amazon Timestream for InfluxDB. Amazon Timestream for InfluxDB is a new time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open source APIs." | ||
}, | ||
{ | ||
"type": "enhancement", | ||
"category": "SecretsManager", | ||
"description": "Doc only update for Secrets Manager" | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "FIS", | ||
"description": "This release adds support for previewing target resources before running a FIS experiment. It also adds resource ARNs for actions, experiments, and experiment templates to API responses." | ||
} | ||
] |
This file was deleted.
Oops, something went wrong.
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
9 changes: 9 additions & 0 deletions
9
src/TimestreamInfluxDB/Exception/TimestreamInfluxDBException.php
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,9 @@ | ||
<?php | ||
namespace Aws\TimestreamInfluxDB\Exception; | ||
|
||
use Aws\Exception\AwsException; | ||
|
||
/** | ||
* Represents an error interacting with the **Timestream InfluxDB** service. | ||
*/ | ||
class TimestreamInfluxDBException extends AwsException {} |
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,31 @@ | ||
<?php | ||
namespace Aws\TimestreamInfluxDB; | ||
|
||
use Aws\AwsClient; | ||
|
||
/** | ||
* This client is used to interact with the **Timestream InfluxDB** service. | ||
* @method \Aws\Result createDbInstance(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise createDbInstanceAsync(array $args = []) | ||
* @method \Aws\Result createDbParameterGroup(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise createDbParameterGroupAsync(array $args = []) | ||
* @method \Aws\Result deleteDbInstance(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise deleteDbInstanceAsync(array $args = []) | ||
* @method \Aws\Result getDbInstance(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise getDbInstanceAsync(array $args = []) | ||
* @method \Aws\Result getDbParameterGroup(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise getDbParameterGroupAsync(array $args = []) | ||
* @method \Aws\Result listDbInstances(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise listDbInstancesAsync(array $args = []) | ||
* @method \Aws\Result listDbParameterGroups(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise listDbParameterGroupsAsync(array $args = []) | ||
* @method \Aws\Result listTagsForResource(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = []) | ||
* @method \Aws\Result tagResource(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = []) | ||
* @method \Aws\Result untagResource(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = []) | ||
* @method \Aws\Result updateDbInstance(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise updateDbInstanceAsync(array $args = []) | ||
*/ | ||
class TimestreamInfluxDBClient extends AwsClient {} |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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.