From bf2a0229beb5b06f0c05cd6e313f109937c3ac87 Mon Sep 17 00:00:00 2001 From: Marc Perrien Date: Mon, 29 May 2023 16:38:36 +0200 Subject: [PATCH 1/4] Fix typo in SSM create_document description Signed-off-by: Marc Perrien --- CHANGELOG.md | 4 ++++ chaosaws/ssm/actions.py | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5780023f..953c8508 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ [Unreleased]: https://github.com/chaostoolkit-incubator/chaostoolkit-aws/compare/0.23.4...HEAD +### Changed + +- Fix typo in SSM create_document description + ## [0.23.4][] - 2023-04-27 [0.23.4]: https://github.com/chaostoolkit-incubator/chaostoolkit-aws/compare/0.23.3...0.23.4 diff --git a/chaosaws/ssm/actions.py b/chaosaws/ssm/actions.py index 286ab5f8..800c6c69 100644 --- a/chaosaws/ssm/actions.py +++ b/chaosaws/ssm/actions.py @@ -21,7 +21,8 @@ def create_document( ) -> AWSResponse: """ creates a Systems Manager (SSM) document. - An SSM document defines the actions that SSM performs on your managed. + An SSM document defines the actions that SSM performs on your managed + instances. For more information about SSM documents: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-ssm-docs.html https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm.html#SSM.Client.create_document From 8628e599f0497842fd800397244856fa267f28e7 Mon Sep 17 00:00:00 2001 From: Marc Perrien Date: Mon, 29 May 2023 16:40:52 +0200 Subject: [PATCH 2/4] Fix CHANGELOG conflict Signed-off-by: Marc Perrien --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 953c8508..44d06ce5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### Changed - Fix typo in SSM create_document description +- Update EC2 update_min_instances description ## [0.23.4][] - 2023-04-27 From 1afa8098d54cb563bb58ad5f8e20a8bcefd8d1f7 Mon Sep 17 00:00:00 2001 From: Marc Perrien Date: Mon, 29 May 2023 16:48:47 +0200 Subject: [PATCH 3/4] Fix similar typos Signed-off-by: Marc Perrien --- CHANGELOG.md | 2 +- chaosaws/ssm/actions.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44d06ce5..3b6d23ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ ### Changed -- Fix typo in SSM create_document description +- Fix typo in SSM actions descriptions - Update EC2 update_min_instances description ## [0.23.4][] - 2023-04-27 diff --git a/chaosaws/ssm/actions.py b/chaosaws/ssm/actions.py index 800c6c69..ba1c2e02 100644 --- a/chaosaws/ssm/actions.py +++ b/chaosaws/ssm/actions.py @@ -67,7 +67,8 @@ def send_command( """ Runs commands on one or more managed instances. - An SSM document defines the actions that SSM performs on your managed. + An SSM document defines the actions that SSM performs on your managed + instances. For more information about SSM SendCommand: https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_SendCommand.html https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm.html#SSM.Client.send_command @@ -105,7 +106,8 @@ def delete_document( """ creates a Systems Manager (SSM) document. - An SSM document defines the actions that SSM performs on your managed. + An SSM document defines the actions that SSM performs on your managed + instances. For more information about SSM documents: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-ssm-docs.html https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm.html#SSM.Client.create_document From d8814b847fc9006b17fc7cc0763fa2860c92396c Mon Sep 17 00:00:00 2001 From: Marc Perrien Date: Mon, 29 May 2023 16:50:41 +0200 Subject: [PATCH 4/4] Fix typos Signed-off-by: Marc Perrien --- CHANGELOG.md | 2 +- chaosaws/ssm/actions.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b6d23ae..78f0672f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ ### Changed -- Fix typo in SSM actions descriptions +- Fix typos in SSM actions descriptions - Update EC2 update_min_instances description ## [0.23.4][] - 2023-04-27 diff --git a/chaosaws/ssm/actions.py b/chaosaws/ssm/actions.py index ba1c2e02..2f2ef7fb 100644 --- a/chaosaws/ssm/actions.py +++ b/chaosaws/ssm/actions.py @@ -20,7 +20,7 @@ def create_document( secrets: Secrets = None, ) -> AWSResponse: """ - creates a Systems Manager (SSM) document. + Creates a Systems Manager (SSM) document. An SSM document defines the actions that SSM performs on your managed instances. For more information about SSM documents: @@ -104,7 +104,7 @@ def delete_document( secrets: Secrets = None, ) -> AWSResponse: """ - creates a Systems Manager (SSM) document. + Deletes a Systems Manager (SSM) document. An SSM document defines the actions that SSM performs on your managed instances.