Skip to content

Commit 125a4b9

Browse files
Update generated code (#1671)
update generated code
1 parent 1b73316 commit 125a4b9

File tree

7 files changed

+30
-6
lines changed

7 files changed

+30
-6
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.300.1"
3+
"${LATEST}": "3.300.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.0
610

711
### Added

src/Service/Ssm/src/Input/DeleteParameterRequest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ final class DeleteParameterRequest extends Input
1212
/**
1313
* The name of the parameter to delete.
1414
*
15+
* > You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
16+
*
1517
* @required
1618
*
1719
* @var string|null

src/Service/Ssm/src/Input/DeleteParametersRequest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ final class DeleteParametersRequest extends Input
1313
* The names of the parameters to delete. After deleting a parameter, wait for at least 30 seconds to create a parameter
1414
* with the same name.
1515
*
16+
* > You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
17+
*
1618
* @required
1719
*
1820
* @var string[]|null

src/Service/Ssm/src/Input/GetParameterRequest.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,16 @@
1010
final class GetParameterRequest extends Input
1111
{
1212
/**
13-
* The name of the parameter you want to query.
13+
* The name or Amazon Resource Name (ARN) of the parameter that you want to query. For parameters shared with you from
14+
* another account, you must use the full ARN.
1415
*
1516
* To query by parameter label, use `"Name": "name:label"`. To query by parameter version, use `"Name": "name:version"`.
1617
*
18+
* For more information about shared parameters, see Working with shared parameters [^1] in the *Amazon Web Services
19+
* Systems Manager User Guide*.
20+
*
21+
* [^1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sharing.html
22+
*
1723
* @required
1824
*
1925
* @var string|null

src/Service/Ssm/src/Input/GetParametersRequest.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,16 @@
1010
final class GetParametersRequest extends Input
1111
{
1212
/**
13-
* Names of the parameters for which you want to query information.
13+
* The names or Amazon Resource Names (ARNs) of the parameters that you want to query. For parameters shared with you
14+
* from another account, you must use the full ARNs.
1415
*
1516
* To query by parameter label, use `"Name": "name:label"`. To query by parameter version, use `"Name": "name:version"`.
1617
*
18+
* For more information about shared parameters, see Working with shared parameters [^1] in the *Amazon Web Services
19+
* Systems Manager User Guide*.
20+
*
21+
* [^1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sharing.html
22+
*
1723
* @required
1824
*
1925
* @var string[]|null

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,13 @@
1313
final class PutParameterRequest extends Input
1414
{
1515
/**
16-
* The fully qualified name of the parameter that you want to add to the system. The fully qualified name includes the
17-
* complete hierarchy of the parameter path and name. For parameters in a hierarchy, you must include a leading forward
18-
* slash character (/) when you create or reference a parameter. For example: `/Dev/DBServer/MySQL/db-string13`.
16+
* The fully qualified name of the parameter that you want to add to the system.
17+
*
18+
* > You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
19+
*
20+
* The fully qualified name includes the complete hierarchy of the parameter path and name. For parameters in a
21+
* hierarchy, you must include a leading forward slash character (/) when you create or reference a parameter. For
22+
* example: `/Dev/DBServer/MySQL/db-string13`
1923
*
2024
* Naming Constraints:
2125
*

0 commit comments

Comments
 (0)