Skip to content

Commit

Permalink
Update generated code (#1838)
Browse files Browse the repository at this point in the history
update generated code
  • Loading branch information
async-aws-bot authored Jan 25, 2025
1 parent 5242281 commit c656231
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 15 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.337.3"
"${LATEST}": "3.338.2"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/Ssm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- AWS enhancement: Documentation updates.

## 2.1.5

### Changed
Expand Down
8 changes: 4 additions & 4 deletions src/Service/Ssm/src/Input/PutParameterRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ final class PutParameterRequest extends Input
* The parameter value that you want to add to the system. Standard parameters have a value limit of 4 KB. Advanced
* parameters have a value limit of 8 KB.
*
* > Parameters can't be referenced or nested in the values of other parameters. You can't include `{{}}` or
* > `{{ssm:*parameter-name*}}` in a parameter value.
* > Parameters can't be referenced or nested in the values of other parameters. You can't include values wrapped in
* > double brackets `{{}}` or `{{ssm:*parameter-name*}}` in a parameter value.
*
* @required
*
Expand Down Expand Up @@ -187,8 +187,8 @@ final class PutParameterRequest extends Input
private $tier;

/**
* One or more policies to apply to a parameter. This operation takes a JSON array. Parameter Store, a capability of
* Amazon Web Services Systems Manager supports the following policy types:
* One or more policies to apply to a parameter. This operation takes a JSON array. Parameter Store, a tool in Amazon
* Web Services Systems Manager supports the following policy types:
*
* Expiration: This policy deletes the parameter after it expires. When you create the policy, you specify the
* expiration date. You can update the expiration date and time by updating the policy. Updating the *parameter* doesn't
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Ssm/src/SsmClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public function getParameters($input): GetParametersResult
}

/**
* Retrieve information about one or more parameters in a specific hierarchy.
* Retrieve information about one or more parameters under a specified level in a hierarchy.
*
* Request results are returned on a best-effort basis. If you specify `MaxResults` in the request, the response
* includes information up to the limit specified. The number of items returned, however, can be between zero and the
Expand Down
4 changes: 4 additions & 0 deletions src/Service/SsoOidc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- AWS enhancement: Documentation updates.

## 1.0.0

First version
16 changes: 8 additions & 8 deletions src/Service/SsoOidc/src/Input/CreateTokenRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,39 +29,39 @@ final class CreateTokenRequest extends Input
private $clientSecret;

/**
* Supports the following OAuth grant types: Device Code and Refresh Token. Specify either of the following values,
* depending on the grant type that you want:
* Supports the following OAuth grant types: Authorization Code, Device Code, and Refresh Token. Specify one of the
* following values, depending on the grant type that you want:
*
* * Authorization Code - `authorization_code`
*
* * Device Code - `urn:ietf:params:oauth:grant-type:device_code`
*
* * Refresh Token - `refresh_token`
*
* For information about how to obtain the device code, see the StartDeviceAuthorization topic.
*
* @required
*
* @var string|null
*/
private $grantType;

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

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

/**
* Used only when calling this API for the Refresh Token grant type. This token is used to refresh short-term tokens,
* Used only when calling this API for the Refresh Token grant type. This token is used to refresh short-lived tokens,
* such as the access token, that might expire.
*
* For more information about the features and limitations of the current IAM Identity Center OIDC implementation, see
Expand Down
2 changes: 1 addition & 1 deletion src/Service/SsoOidc/src/SsoOidcClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class SsoOidcClient extends AbstractApi
{
/**
* Creates and returns access and refresh tokens for clients that are authenticated using client secrets. The access
* token can be used to fetch short-term credentials for the assigned AWS accounts or to access application APIs using
* token can be used to fetch short-lived credentials for the assigned AWS accounts or to access application APIs using
* `bearer` authentication.
*
* @see https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html
Expand Down

0 comments on commit c656231

Please sign in to comment.