From 98b7d4fa6a219a3f05b2a705c6f618352ca5ea15 Mon Sep 17 00:00:00 2001 From: Elysa <60367675+elysahall@users.noreply.github.com> Date: Thu, 14 Jul 2022 12:26:23 -0700 Subject: [PATCH 1/4] CLI examples for codeartifact, rds, sns (#7106) --- .../examples/codeartifact/describe-domain.rst | 5 ++-- .../rds/remove-from-global-cluster.rst | 2 +- .../check-if-phone-number-is-opted-out.rst | 24 +++++++++---------- awscli/examples/sns/opt-in-phone-number.rst | 16 ++++++------- 4 files changed, 24 insertions(+), 23 deletions(-) diff --git a/awscli/examples/codeartifact/describe-domain.rst b/awscli/examples/codeartifact/describe-domain.rst index 4e167f562496..91b1908c5604 100644 --- a/awscli/examples/codeartifact/describe-domain.rst +++ b/awscli/examples/codeartifact/describe-domain.rst @@ -2,7 +2,7 @@ The following ``describe-domain`` example returns a DomainDescription object for a domain named test-domain. :: - aws codeartifact create-domain \ + aws codeartifact describe-domain \ --domain test-domain Output:: @@ -16,7 +16,8 @@ Output:: "createdTime": "2020-10-20T13:16:48.559000-04:00", "encryptionKey": "arn:aws:kms:us-west-2:111122223333:key/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", "repositoryCount": 2, - "assetSizeBytes": 0 + "assetSizeBytes": 0, + "s3BucketArn": "arn:aws:s3:::assets-111122223333-us-west-2" } } diff --git a/awscli/examples/rds/remove-from-global-cluster.rst b/awscli/examples/rds/remove-from-global-cluster.rst index 57177f0498ec..1ef0dfb4a5a3 100644 --- a/awscli/examples/rds/remove-from-global-cluster.rst +++ b/awscli/examples/rds/remove-from-global-cluster.rst @@ -37,4 +37,4 @@ Output:: } } -For more information, see `Removing a cluster from an Amazon Aurora global database`__ in the *Amazon Aurora User Guide*. \ No newline at end of file +For more information, see `Removing a cluster from an Amazon Aurora global database `__ in the *Amazon Aurora User Guide*. \ No newline at end of file diff --git a/awscli/examples/sns/check-if-phone-number-is-opted-out.rst b/awscli/examples/sns/check-if-phone-number-is-opted-out.rst index b10d5e8cdd76..a6ee52e56101 100644 --- a/awscli/examples/sns/check-if-phone-number-is-opted-out.rst +++ b/awscli/examples/sns/check-if-phone-number-is-opted-out.rst @@ -1,12 +1,12 @@ -**To check SMS message opt-out for a phone number** - -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. :: - - aws sns check-if-phone-number-is-opted-out \ - --phone-number 555-555-0100 - -Output:: - - { - "isOptedOut": false - } +**To check SMS message opt-out for a phone number** + +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. :: + + aws sns check-if-phone-number-is-opted-out \ + --phone-number +1555550100 + +Output:: + + { + "isOptedOut": false + } \ No newline at end of file diff --git a/awscli/examples/sns/opt-in-phone-number.rst b/awscli/examples/sns/opt-in-phone-number.rst index 355afc6d1773..26a6b37d57bc 100644 --- a/awscli/examples/sns/opt-in-phone-number.rst +++ b/awscli/examples/sns/opt-in-phone-number.rst @@ -1,8 +1,8 @@ -**To opt-in for SMS messages** - -The following ``opt-in-phone-number`` example opts the specified phone number into receiving SMS messages. :: - - aws sns opt-in-phone-number \ - --phone-number +1-555-555-0100 - -This command produces no output. +**To opt-in for SMS messages** + +The following ``opt-in-phone-number`` example opts the specified phone number into receiving SMS messages. :: + + aws sns opt-in-phone-number \ + --phone-number +15555550100 + +This command produces no output. \ No newline at end of file From e4793d10ce493f62b15a9aaa4b72d41f7ecd8b16 Mon Sep 17 00:00:00 2001 From: Nisha Chatterjee <84740512+chatnish@users.noreply.github.com> Date: Thu, 14 Jul 2022 14:26:03 -0600 Subject: [PATCH 2/4] Update helptext to remove information in create clusters description (#7090) --- awscli/customizations/emr/helptext.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/awscli/customizations/emr/helptext.py b/awscli/customizations/emr/helptext.py index 985e371e6eee..a659eeb628cf 100755 --- a/awscli/customizations/emr/helptext.py +++ b/awscli/customizations/emr/helptext.py @@ -48,13 +48,7 @@ # create-cluster options help text CREATE_CLUSTER_DESCRIPTION = ( - 'Creates an Amazon EMR cluster with the specified configurations. ' - 'Quick start: ' - 'aws emr create-cluster --release-label ' - '--instance-type --instance-count ' - 'Values for the following can be set in the AWS CLI. ' - 'config file using the aws configure set command: --service-role, --log-uri, ' - 'and InstanceProfile and KeyName arguments under --ec2-attributes.') + 'Creates an Amazon EMR cluster with the specified configurations.') DESCRIBE_CLUSTER_DESCRIPTION = ( 'Provides cluster-level details including status, hardware ' @@ -511,4 +505,4 @@ '

You must grant the execution role the permissions needed ' 'to access the same IAM resources that the step can access. ' 'The execution role can be a cross-account IAM Role.

' -) \ No newline at end of file +) From 8b34595254e11c6dfd1a31c1af3639a12c3f4ed9 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Fri, 15 Jul 2022 18:08:06 +0000 Subject: [PATCH 3/4] Update changelog based on model updates --- .changes/next-release/api-change-datasync-79852.json | 5 +++++ .changes/next-release/api-change-drs-89120.json | 5 +++++ .changes/next-release/api-change-evidently-50299.json | 5 +++++ .changes/next-release/api-change-wafv2-18007.json | 5 +++++ 4 files changed, 20 insertions(+) create mode 100644 .changes/next-release/api-change-datasync-79852.json create mode 100644 .changes/next-release/api-change-drs-89120.json create mode 100644 .changes/next-release/api-change-evidently-50299.json create mode 100644 .changes/next-release/api-change-wafv2-18007.json diff --git a/.changes/next-release/api-change-datasync-79852.json b/.changes/next-release/api-change-datasync-79852.json new file mode 100644 index 000000000000..1d65bba8946e --- /dev/null +++ b/.changes/next-release/api-change-datasync-79852.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``datasync``", + "description": "Documentation updates for AWS DataSync regarding configuring Amazon FSx for ONTAP location security groups and SMB user permissions." +} diff --git a/.changes/next-release/api-change-drs-89120.json b/.changes/next-release/api-change-drs-89120.json new file mode 100644 index 000000000000..ae616e8814c8 --- /dev/null +++ b/.changes/next-release/api-change-drs-89120.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``drs``", + "description": "Changed existing APIs to allow choosing a dynamic volume type for replicating volumes, to reduce costs for customers." +} diff --git a/.changes/next-release/api-change-evidently-50299.json b/.changes/next-release/api-change-evidently-50299.json new file mode 100644 index 000000000000..b5cc51a2e7f1 --- /dev/null +++ b/.changes/next-release/api-change-evidently-50299.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``evidently``", + "description": "This release adds support for the new segmentation feature." +} diff --git a/.changes/next-release/api-change-wafv2-18007.json b/.changes/next-release/api-change-wafv2-18007.json new file mode 100644 index 000000000000..f8f2fdaacbf4 --- /dev/null +++ b/.changes/next-release/api-change-wafv2-18007.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``wafv2``", + "description": "This SDK release provide customers ability to add sensitivity level for WAF SQLI Match Statements." +} From 19d58f22da200d7834b2f097d5415395cd3790d3 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Fri, 15 Jul 2022 18:08:09 +0000 Subject: [PATCH 4/4] Bumping version to 1.25.31 --- .changes/1.25.31.json | 22 +++++++++++++++++++ .../api-change-datasync-79852.json | 5 ----- .../next-release/api-change-drs-89120.json | 5 ----- .../api-change-evidently-50299.json | 5 ----- .../next-release/api-change-wafv2-18007.json | 5 ----- CHANGELOG.rst | 9 ++++++++ awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 10 files changed, 35 insertions(+), 24 deletions(-) create mode 100644 .changes/1.25.31.json delete mode 100644 .changes/next-release/api-change-datasync-79852.json delete mode 100644 .changes/next-release/api-change-drs-89120.json delete mode 100644 .changes/next-release/api-change-evidently-50299.json delete mode 100644 .changes/next-release/api-change-wafv2-18007.json diff --git a/.changes/1.25.31.json b/.changes/1.25.31.json new file mode 100644 index 000000000000..e60c5e28710b --- /dev/null +++ b/.changes/1.25.31.json @@ -0,0 +1,22 @@ +[ + { + "category": "``datasync``", + "description": "Documentation updates for AWS DataSync regarding configuring Amazon FSx for ONTAP location security groups and SMB user permissions.", + "type": "api-change" + }, + { + "category": "``drs``", + "description": "Changed existing APIs to allow choosing a dynamic volume type for replicating volumes, to reduce costs for customers.", + "type": "api-change" + }, + { + "category": "``evidently``", + "description": "This release adds support for the new segmentation feature.", + "type": "api-change" + }, + { + "category": "``wafv2``", + "description": "This SDK release provide customers ability to add sensitivity level for WAF SQLI Match Statements.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-datasync-79852.json b/.changes/next-release/api-change-datasync-79852.json deleted file mode 100644 index 1d65bba8946e..000000000000 --- a/.changes/next-release/api-change-datasync-79852.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``datasync``", - "description": "Documentation updates for AWS DataSync regarding configuring Amazon FSx for ONTAP location security groups and SMB user permissions." -} diff --git a/.changes/next-release/api-change-drs-89120.json b/.changes/next-release/api-change-drs-89120.json deleted file mode 100644 index ae616e8814c8..000000000000 --- a/.changes/next-release/api-change-drs-89120.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``drs``", - "description": "Changed existing APIs to allow choosing a dynamic volume type for replicating volumes, to reduce costs for customers." -} diff --git a/.changes/next-release/api-change-evidently-50299.json b/.changes/next-release/api-change-evidently-50299.json deleted file mode 100644 index b5cc51a2e7f1..000000000000 --- a/.changes/next-release/api-change-evidently-50299.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``evidently``", - "description": "This release adds support for the new segmentation feature." -} diff --git a/.changes/next-release/api-change-wafv2-18007.json b/.changes/next-release/api-change-wafv2-18007.json deleted file mode 100644 index f8f2fdaacbf4..000000000000 --- a/.changes/next-release/api-change-wafv2-18007.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``wafv2``", - "description": "This SDK release provide customers ability to add sensitivity level for WAF SQLI Match Statements." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 149f333d1fa4..4fe326fd43da 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.25.31 +======= + +* api-change:``datasync``: Documentation updates for AWS DataSync regarding configuring Amazon FSx for ONTAP location security groups and SMB user permissions. +* api-change:``drs``: Changed existing APIs to allow choosing a dynamic volume type for replicating volumes, to reduce costs for customers. +* api-change:``evidently``: This release adds support for the new segmentation feature. +* api-change:``wafv2``: This SDK release provide customers ability to add sensitivity level for WAF SQLI Match Statements. + + 1.25.30 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 63e7f23b8d60..366c513a8913 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.25.30' +__version__ = '1.25.31' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index feedfc53d478..c6265be13fe2 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.25.' # The full version, including alpha/beta/rc tags. -release = '1.25.30' +release = '1.25.31' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 2774021038d0..e3173f5d4c19 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.27.30 + botocore==1.27.31 docutils>=0.10,<0.17 s3transfer>=0.6.0,<0.7.0 PyYAML>=3.10,<5.5 diff --git a/setup.py b/setup.py index 139e1ceeac6e..9adcdee05f46 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.27.30', + 'botocore==1.27.31', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',