-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update generated code * Update src/Service/RdsDataService/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
- Loading branch information
1 parent
12dd874
commit 99bad97
Showing
15 changed files
with
220 additions
and
30 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
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 |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.0-dev" | ||
"dev-master": "2.1-dev" | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace AsyncAws\RdsDataService\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* There was an error in processing the SQL statement. | ||
*/ | ||
final class DatabaseErrorException extends ClientException | ||
{ | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace AsyncAws\RdsDataService\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* The DB cluster doesn't have a DB instance. | ||
*/ | ||
final class DatabaseNotFoundException extends ClientException | ||
{ | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace AsyncAws\RdsDataService\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ServerException; | ||
|
||
/** | ||
* The writer instance in the DB cluster isn't available. | ||
*/ | ||
final class DatabaseUnavailableException extends ServerException | ||
{ | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace AsyncAws\RdsDataService\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* The HTTP endpoint for using RDS Data API isn't enabled for the DB cluster. | ||
*/ | ||
final class HttpEndpointNotEnabledException extends ClientException | ||
{ | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace AsyncAws\RdsDataService\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* The Secrets Manager secret used with the request isn't valid. | ||
*/ | ||
final class InvalidSecretException extends ClientException | ||
{ | ||
} |
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,16 @@ | ||
<?php | ||
|
||
namespace AsyncAws\RdsDataService\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* There was a problem with the Secrets Manager secret used with the request, caused by one of the following conditions:. | ||
* | ||
* - RDS Data API timed out retrieving the secret. | ||
* - The secret provided wasn't found. | ||
* - The secret couldn't be decrypted. | ||
*/ | ||
final class SecretsErrorException extends ClientException | ||
{ | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace AsyncAws\RdsDataService\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* The transaction ID wasn't found. | ||
*/ | ||
final class TransactionNotFoundException extends ClientException | ||
{ | ||
} |
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,16 @@ | ||
<?php | ||
|
||
namespace AsyncAws\RdsDataService\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* There was a problem with the result because of one of the following conditions:. | ||
* | ||
* - It contained an unsupported data type. | ||
* - It contained a multidimensional array. | ||
* - The size was too large. | ||
*/ | ||
final class UnsupportedResultException extends ClientException | ||
{ | ||
} |
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.