Skip to content

Commit aade525

Browse files
Merge branch 'release-1.25.31'
* release-1.25.31: Bumping version to 1.25.31 Update changelog based on model updates Update helptext to remove information in create clusters description (#7090) CLI examples for codeartifact, rds, sns (#7106)
2 parents b30b08e + 19d58f2 commit aade525

File tree

11 files changed

+61
-35
lines changed

11 files changed

+61
-35
lines changed

.changes/1.25.31.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"category": "``datasync``",
4+
"description": "Documentation updates for AWS DataSync regarding configuring Amazon FSx for ONTAP location security groups and SMB user permissions.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``drs``",
9+
"description": "Changed existing APIs to allow choosing a dynamic volume type for replicating volumes, to reduce costs for customers.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``evidently``",
14+
"description": "This release adds support for the new segmentation feature.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``wafv2``",
19+
"description": "This SDK release provide customers ability to add sensitivity level for WAF SQLI Match Statements.",
20+
"type": "api-change"
21+
}
22+
]

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
CHANGELOG
33
=========
44

5+
1.25.31
6+
=======
7+
8+
* api-change:``datasync``: Documentation updates for AWS DataSync regarding configuring Amazon FSx for ONTAP location security groups and SMB user permissions.
9+
* api-change:``drs``: Changed existing APIs to allow choosing a dynamic volume type for replicating volumes, to reduce costs for customers.
10+
* api-change:``evidently``: This release adds support for the new segmentation feature.
11+
* api-change:``wafv2``: This SDK release provide customers ability to add sensitivity level for WAF SQLI Match Statements.
12+
13+
514
1.25.30
615
=======
716

awscli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
import os
1919

20-
__version__ = '1.25.30'
20+
__version__ = '1.25.31'
2121

2222
#
2323
# Get our data path to be added to botocore's search path

awscli/customizations/emr/helptext.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,7 @@
4848
# create-cluster options help text
4949

5050
CREATE_CLUSTER_DESCRIPTION = (
51-
'Creates an Amazon EMR cluster with the specified configurations. '
52-
'Quick start: '
53-
'aws emr create-cluster --release-label <release-label> '
54-
'--instance-type <instance-type> --instance-count <instance-count>'
55-
'Values for the following can be set in the AWS CLI. '
56-
'config file using the <code>aws configure set</code> command: <code>--service-role, --log-uri, '
57-
'and InstanceProfile and KeyName arguments under --ec2-attributes.')
51+
'Creates an Amazon EMR cluster with the specified configurations.')
5852

5953
DESCRIBE_CLUSTER_DESCRIPTION = (
6054
'Provides cluster-level details including status, hardware '
@@ -511,4 +505,4 @@
511505
'<p>You must grant the execution role the permissions needed '
512506
'to access the same IAM resources that the step can access. '
513507
'The execution role can be a cross-account IAM Role.</p> '
514-
)
508+
)

awscli/examples/codeartifact/describe-domain.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The following ``describe-domain`` example returns a DomainDescription object for a domain named test-domain. ::
44

5-
aws codeartifact create-domain \
5+
aws codeartifact describe-domain \
66
--domain test-domain
77

88
Output::
@@ -16,7 +16,8 @@ Output::
1616
"createdTime": "2020-10-20T13:16:48.559000-04:00",
1717
"encryptionKey": "arn:aws:kms:us-west-2:111122223333:key/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
1818
"repositoryCount": 2,
19-
"assetSizeBytes": 0
19+
"assetSizeBytes": 0,
20+
"s3BucketArn": "arn:aws:s3:::assets-111122223333-us-west-2"
2021
}
2122
}
2223

awscli/examples/rds/remove-from-global-cluster.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ Output::
3737
}
3838
}
3939

40-
For more information, see `Removing a cluster from an Amazon Aurora global database<https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-managing.html#aurora-global-database-detaching>`__ in the *Amazon Aurora User Guide*.
40+
For more information, see `Removing a cluster from an Amazon Aurora global database <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-managing.html#aurora-global-database-detaching>`__ in the *Amazon Aurora User Guide*.
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
**To check SMS message opt-out for a phone number**
2-
3-
The following ``check-if-phone-number-is-opted-out`` example checks whether the specified phone number is opted out of receiving SMS messages from the current AWS account. ::
4-
5-
aws sns check-if-phone-number-is-opted-out \
6-
--phone-number 555-555-0100
7-
8-
Output::
9-
10-
{
11-
"isOptedOut": false
12-
}
1+
**To check SMS message opt-out for a phone number**
2+
3+
The following ``check-if-phone-number-is-opted-out`` example checks whether the specified phone number is opted out of receiving SMS messages from the current AWS account. ::
4+
5+
aws sns check-if-phone-number-is-opted-out \
6+
--phone-number +1555550100
7+
8+
Output::
9+
10+
{
11+
"isOptedOut": false
12+
}
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
**To opt-in for SMS messages**
2-
3-
The following ``opt-in-phone-number`` example opts the specified phone number into receiving SMS messages. ::
4-
5-
aws sns opt-in-phone-number \
6-
--phone-number +1-555-555-0100
7-
8-
This command produces no output.
1+
**To opt-in for SMS messages**
2+
3+
The following ``opt-in-phone-number`` example opts the specified phone number into receiving SMS messages. ::
4+
5+
aws sns opt-in-phone-number \
6+
--phone-number +15555550100
7+
8+
This command produces no output.

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.25.'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.25.30'
55+
release = '1.25.31'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.27.30
6+
botocore==1.27.31
77
docutils>=0.10,<0.17
88
s3transfer>=0.6.0,<0.7.0
99
PyYAML>=3.10,<5.5

0 commit comments

Comments
 (0)