Skip to content

Commit 015e98b

Browse files
Update generated code (#1883)
* update generated code * Update src/Service/CognitoIdentityProvider/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 76e79e9 commit 015e98b

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.342.28"
3+
"${LATEST}": "3.342.32"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/CognitoIdentityProvider/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: methods `adminGetUser`, `adminInitiateAuth`, `getUser` and `initiateAuth` might throw an `UnsupportedOperationException`.
8+
59
### Changed
610

711
- Sort exception alphabetically.

src/Service/CognitoIdentityProvider/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "1.13-dev"
31+
"dev-master": "1.14-dev"
3232
}
3333
}
3434
}

src/Service/CognitoIdentityProvider/src/CognitoIdentityProviderClient.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,7 @@ public function adminGetUser($input): AdminGetUserResponse
586586
* @throws ResourceNotFoundException
587587
* @throws TooManyRequestsException
588588
* @throws UnexpectedLambdaException
589+
* @throws UnsupportedOperationException
589590
* @throws UserLambdaValidationException
590591
* @throws UserNotConfirmedException
591592
* @throws UserNotFoundException
@@ -607,6 +608,7 @@ public function adminInitiateAuth($input): AdminInitiateAuthResponse
607608
'ResourceNotFoundException' => ResourceNotFoundException::class,
608609
'TooManyRequestsException' => TooManyRequestsException::class,
609610
'UnexpectedLambdaException' => UnexpectedLambdaException::class,
611+
'UnsupportedOperationException' => UnsupportedOperationException::class,
610612
'UserLambdaValidationException' => UserLambdaValidationException::class,
611613
'UserNotConfirmedException' => UserNotConfirmedException::class,
612614
'UserNotFoundException' => UserNotFoundException::class,
@@ -1462,6 +1464,7 @@ public function getUser($input): GetUserResponse
14621464
* @throws ResourceNotFoundException
14631465
* @throws TooManyRequestsException
14641466
* @throws UnexpectedLambdaException
1467+
* @throws UnsupportedOperationException
14651468
* @throws UserLambdaValidationException
14661469
* @throws UserNotConfirmedException
14671470
* @throws UserNotFoundException
@@ -1483,6 +1486,7 @@ public function initiateAuth($input): InitiateAuthResponse
14831486
'ResourceNotFoundException' => ResourceNotFoundException::class,
14841487
'TooManyRequestsException' => TooManyRequestsException::class,
14851488
'UnexpectedLambdaException' => UnexpectedLambdaException::class,
1489+
'UnsupportedOperationException' => UnsupportedOperationException::class,
14861490
'UserLambdaValidationException' => UserLambdaValidationException::class,
14871491
'UserNotConfirmedException' => UserNotConfirmedException::class,
14881492
'UserNotFoundException' => UserNotFoundException::class,

0 commit comments

Comments
 (0)