Skip to content

Commit 7aa7b2f

Browse files
committed
update generated code
1 parent 5242281 commit 7aa7b2f

File tree

7 files changed

+23
-15
lines changed

7 files changed

+23
-15
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.337.3"
3+
"${LATEST}": "3.338.2"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Ssm/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+
### Changed
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 2.1.5
610

711
### Changed

src/Service/Ssm/src/Input/PutParameterRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ final class PutParameterRequest extends Input
6161
* The parameter value that you want to add to the system. Standard parameters have a value limit of 4 KB. Advanced
6262
* parameters have a value limit of 8 KB.
6363
*
64-
* > Parameters can't be referenced or nested in the values of other parameters. You can't include `{{}}` or
65-
* > `{{ssm:*parameter-name*}}` in a parameter value.
64+
* > Parameters can't be referenced or nested in the values of other parameters. You can't include values wrapped in
65+
* > double brackets `{{}}` or `{{ssm:*parameter-name*}}` in a parameter value.
6666
*
6767
* @required
6868
*
@@ -187,8 +187,8 @@ final class PutParameterRequest extends Input
187187
private $tier;
188188

189189
/**
190-
* One or more policies to apply to a parameter. This operation takes a JSON array. Parameter Store, a capability of
191-
* Amazon Web Services Systems Manager supports the following policy types:
190+
* One or more policies to apply to a parameter. This operation takes a JSON array. Parameter Store, a tool in Amazon
191+
* Web Services Systems Manager supports the following policy types:
192192
*
193193
* Expiration: This policy deletes the parameter after it expires. When you create the policy, you specify the
194194
* expiration date. You can update the expiration date and time by updating the policy. Updating the *parameter* doesn't

src/Service/Ssm/src/SsmClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public function getParameters($input): GetParametersResult
159159
}
160160

161161
/**
162-
* Retrieve information about one or more parameters in a specific hierarchy.
162+
* Retrieve information about one or more parameters under a specified level in a hierarchy.
163163
*
164164
* Request results are returned on a best-effort basis. If you specify `MaxResults` in the request, the response
165165
* includes information up to the limit specified. The number of items returned, however, can be between zero and the

src/Service/SsoOidc/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+
### Changed
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 1.0.0
610

711
First version

src/Service/SsoOidc/src/Input/CreateTokenRequest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,39 +29,39 @@ final class CreateTokenRequest extends Input
2929
private $clientSecret;
3030

3131
/**
32-
* Supports the following OAuth grant types: Device Code and Refresh Token. Specify either of the following values,
33-
* depending on the grant type that you want:
32+
* Supports the following OAuth grant types: Authorization Code, Device Code, and Refresh Token. Specify one of the
33+
* following values, depending on the grant type that you want:
34+
*
35+
* * Authorization Code - `authorization_code`
3436
*
3537
* * Device Code - `urn:ietf:params:oauth:grant-type:device_code`
3638
*
3739
* * Refresh Token - `refresh_token`
3840
*
39-
* For information about how to obtain the device code, see the StartDeviceAuthorization topic.
40-
*
4141
* @required
4242
*
4343
* @var string|null
4444
*/
4545
private $grantType;
4646

4747
/**
48-
* Used only when calling this API for the Device Code grant type. This short-term code is used to identify this
48+
* Used only when calling this API for the Device Code grant type. This short-lived code is used to identify this
4949
* authorization request. This comes from the result of the StartDeviceAuthorization API.
5050
*
5151
* @var string|null
5252
*/
5353
private $deviceCode;
5454

5555
/**
56-
* Used only when calling this API for the Authorization Code grant type. The short-term code is used to identify this
57-
* authorization request. This grant type is currently unsupported for the CreateToken API.
56+
* Used only when calling this API for the Authorization Code grant type. The short-lived code is used to identify this
57+
* authorization request.
5858
*
5959
* @var string|null
6060
*/
6161
private $code;
6262

6363
/**
64-
* Used only when calling this API for the Refresh Token grant type. This token is used to refresh short-term tokens,
64+
* Used only when calling this API for the Refresh Token grant type. This token is used to refresh short-lived tokens,
6565
* such as the access token, that might expire.
6666
*
6767
* For more information about the features and limitations of the current IAM Identity Center OIDC implementation, see

src/Service/SsoOidc/src/SsoOidcClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class SsoOidcClient extends AbstractApi
2626
{
2727
/**
2828
* Creates and returns access and refresh tokens for clients that are authenticated using client secrets. The access
29-
* token can be used to fetch short-term credentials for the assigned AWS accounts or to access application APIs using
29+
* token can be used to fetch short-lived credentials for the assigned AWS accounts or to access application APIs using
3030
* `bearer` authentication.
3131
*
3232
* @see https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html

0 commit comments

Comments
 (0)