Skip to content

Commit

Permalink
Merge branch 'release-1.27.52'
Browse files Browse the repository at this point in the history
* release-1.27.52:
  Bumping version to 1.27.52
  Update changelog based on model updates
  Fix number-of-bytes error
  • Loading branch information
aws-sdk-python-automation committed Jan 18, 2023
2 parents 1064a3a + 9af21fd commit 4c05284
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 8 deletions.
22 changes: 22 additions & 0 deletions .changes/1.27.52.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"category": "``cloudwatch``",
"description": "Update cloudwatch command to latest version",
"type": "api-change"
},
{
"category": "``efs``",
"description": "Update efs command to latest version",
"type": "api-change"
},
{
"category": "``ivschat``",
"description": "Updates the range for a Chat Room's maximumMessageRatePerSecond field.",
"type": "api-change"
},
{
"category": "``wafv2``",
"description": "Improved the visibility of the guidance for updating AWS WAF resources, such as web ACLs and rule groups.",
"type": "api-change"
}
]
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
CHANGELOG
=========

1.27.52
=======

* api-change:``cloudwatch``: Update cloudwatch command to latest version
* api-change:``efs``: Update efs command to latest version
* api-change:``ivschat``: Updates the range for a Chat Room's maximumMessageRatePerSecond field.
* api-change:``wafv2``: Improved the visibility of the guidance for updating AWS WAF resources, such as web ACLs and rule groups.


1.27.51
=======

Expand Down
2 changes: 1 addition & 1 deletion awscli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""
import os

__version__ = '1.27.51'
__version__ = '1.27.52'

#
# Get our data path to be added to botocore's search path
Expand Down
8 changes: 4 additions & 4 deletions awscli/examples/kms/generate-data-key.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Example 1: To generate a 256-bit symmetric data key**

The following ``generate-data-key`` example requests a 256-bit symmetric data key for use outside of AWS. The command returns a plaintext data key for immediate use and deletion, and a copy of that data key encrypted under the specified KMS key. You can safely store the encrypted data key with the encrypted data.
The following ``generate-data-key`` example requests a 256-bit symmetric data key for use outside of AWS. The command returns a plaintext data key for immediate use and deletion, and a copy of that data key encrypted under the specified KMS key. You can safely store the encrypted data key with the encrypted data.

To request a 256-bit data key, use the ``key-spec`` parameter with a value of ``AES_256``. To request a 128-bit data key, use the ``key-spec`` parameter with a value of ``AES_128``. For all other data key lengths, use the ``number-of-bytes`` parameter.

Expand All @@ -24,17 +24,17 @@ For more information, see `Data keys <https://docs.aws.amazon.com/kms/latest/dev

**Example 2: To generate a 512-bit symmetric data key**

The following ``generate-data-key`` example requests a 512-bit symmetric data key for encryption and decryption. The command returns a plaintext data key for immediate use and deletion, and a copy of that data key encrypted under the specified KMS key. YOu can safely store the encrypted data key with the encrypted data.
The following ``generate-data-key`` example requests a 512-bit symmetric data key for encryption and decryption. The command returns a plaintext data key for immediate use and deletion, and a copy of that data key encrypted under the specified KMS key. You can safely store the encrypted data key with the encrypted data.

To request a key length other than 128 or 256 bits, use the ``number-of-bytes`` parameter.
To request a key length other than 128 or 256 bits, use the ``number-of-bytes`` parameter. To request a 512-bit data key, the following example uses the ``number-of-bytes`` parameter with a value of 64 (bytes).

The KMS key you specify must be a symmetric encryption KMS key, that is, a KMS key with a key spec value of SYMMETRIC_DEFAULT.

NOTE: The values in the output of this example are truncated for display. ::

aws kms generate-data-key \
--key-id 1234abcd-12ab-34cd-56ef-1234567890ab \
--number-of-bytes 512
--number-of-bytes 64

Output::
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '1.27.'
# The full version, including alpha/beta/rc tags.
release = '1.27.51'
release = '1.27.52'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore==1.29.51
botocore==1.29.52
docutils>=0.10,<0.17
s3transfer>=0.6.0,<0.7.0
PyYAML>=3.10,<5.5
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def find_version(*file_paths):


install_requires = [
'botocore==1.29.51',
'botocore==1.29.52',
'docutils>=0.10,<0.17',
's3transfer>=0.6.0,<0.7.0',
'PyYAML>=3.10,<5.5',
Expand Down

0 comments on commit 4c05284

Please sign in to comment.