public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/3] cloud: Execute user-data scripts at the end of initialization
@ 2022-05-19  9:40 Michael Tremer
  2022-05-19  9:40 ` [PATCH 2/3] python3-botocore: Update to 1.25.12 Michael Tremer
  2022-05-19  9:40 ` [PATCH 3/3] aws-cli: Update to 1.23.12 Michael Tremer
  0 siblings, 2 replies; 6+ messages in thread
From: Michael Tremer @ 2022-05-19  9:40 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 10178 bytes --]

This is useful when the user-data needs to reboot an instance.
Previously, some initialization did not happen which is now being done
first before the user-data script is being executed.

This gives users more flexibility about what they are doing in those
scripts.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 src/initscripts/helper/aws-setup      | 35 +++++++++++------------
 src/initscripts/helper/azure-setup    | 35 +++++++++++------------
 src/initscripts/helper/exoscale-setup | 35 +++++++++++------------
 src/initscripts/helper/gcp-setup      | 35 +++++++++++------------
 src/initscripts/helper/oci-setup      | 41 +++++++++++++--------------
 5 files changed, 83 insertions(+), 98 deletions(-)

diff --git a/src/initscripts/helper/aws-setup b/src/initscripts/helper/aws-setup
index a40d4beeb..f14f4eb57 100644
--- a/src/initscripts/helper/aws-setup
+++ b/src/initscripts/helper/aws-setup
@@ -118,25 +118,6 @@ import_aws_configuration() {
 		fi
 	done
 
-	# Download the user-data script only on the first boot
-	if [ ! -e "/var/ipfire/main/firstsetup_ok" ]; then
-		# Download user-data
-		local user_data="$(get user-data)"
-
-		# Save user-data script to be executed later
-		if [ "${user_data:0:2}" = "#!" ]; then
-			echo "${user_data}" > /tmp/aws-user-data.script
-			chmod 700 /tmp/aws-user-data.script
-
-			# Run the user-data script
-			local now="$(date -u +"%s")"
-			/tmp/aws-user-data.script &>/var/log/user-data.log.${now}
-
-			# Delete the script right away
-			rm /tmp/aws-user-data.script
-		fi
-	fi
-
 	# Import network configuration
 	# After this, no network connectivity will be available from this script due to the
 	# renaming of the network interfaces for which they have to be shut down
@@ -259,6 +240,22 @@ import_aws_configuration() {
 			echo "2,ACCEPT,INPUTFW,ON,std_net_src,ALL,ipfire,RED1,,TCP,,,ON,,,TGT_PORT,444,,,,,,,,,,,00:00,00:00,,AUTO,,dnat,,,,,second"
 		) >> /var/ipfire/firewall/input
 
+		# Download user-data
+		local user_data="$(get user-data)"
+
+		# Save user-data script to be executed later
+		if [ "${user_data:0:2}" = "#!" ]; then
+			echo "${user_data}" > /tmp/aws-user-data.script
+			chmod 700 /tmp/aws-user-data.script
+
+			# Run the user-data script
+			local now="$(date -u +"%s")"
+			/tmp/aws-user-data.script &>/var/log/user-data.log.${now}
+
+			# Delete the script right away
+			rm /tmp/aws-user-data.script
+		fi
+
 		# This script has now completed the first steps of setup
 		touch /var/ipfire/main/firstsetup_ok
 	fi
diff --git a/src/initscripts/helper/azure-setup b/src/initscripts/helper/azure-setup
index 1eff57799..7a4422a35 100644
--- a/src/initscripts/helper/azure-setup
+++ b/src/initscripts/helper/azure-setup
@@ -141,25 +141,6 @@ import_azure_configuration() {
 		fi
 	done
 
-	# Download the user-data script only on the first boot
-	if [ ! -e "/var/ipfire/main/firstsetup_ok" ]; then
-		# Download user-data
-		local user_data="$(get customData)"
-
-		# Save user-data script to be executed later
-		if [ "${user_data:0:2}" = "#!" ]; then
-			echo "${user_data}" > /tmp/azure-user-data.script
-			chmod 700 /tmp/azure-user-data.script
-
-			# Run the user-data script
-			local now="$(date -u +"%s")"
-			/tmp/azure-user-data.script &>/var/log/user-data.log.${now}
-
-			# Delete the script right away
-			rm /tmp/azure-user-data.script
-		fi
-	fi
-
 	# Import network configuration
 	# After this, no network connectivity will be available from this script due to the
 	# renaming of the network interfaces for which they have to be shut down
@@ -279,6 +260,22 @@ import_azure_configuration() {
 			echo "2,ACCEPT,INPUTFW,ON,std_net_src,ALL,ipfire,RED1,,TCP,,,ON,,,TGT_PORT,444,,,,,,,,,,,00:00,00:00,,AUTO,,dnat,,,,,second"
 		) >> /var/ipfire/firewall/input
 
+		# Download user-data
+		local user_data="$(get customData)"
+
+		# Save user-data script to be executed later
+		if [ "${user_data:0:2}" = "#!" ]; then
+			echo "${user_data}" > /tmp/azure-user-data.script
+			chmod 700 /tmp/azure-user-data.script
+
+			# Run the user-data script
+			local now="$(date -u +"%s")"
+			/tmp/azure-user-data.script &>/var/log/user-data.log.${now}
+
+			# Delete the script right away
+			rm /tmp/azure-user-data.script
+		fi
+
 		# This script has now completed the first steps of setup
 		touch /var/ipfire/main/firstsetup_ok
 	fi
diff --git a/src/initscripts/helper/exoscale-setup b/src/initscripts/helper/exoscale-setup
index e9295cc9c..02fdda2a3 100644
--- a/src/initscripts/helper/exoscale-setup
+++ b/src/initscripts/helper/exoscale-setup
@@ -83,25 +83,6 @@ import_exoscale_configuration() {
 		chown setup.nobody "/home/setup/.ssh/authorized_keys"
 	fi
 
-	# Download the user-data script only on the first boot
-	if [ ! -e "/var/ipfire/main/firstsetup_ok" ]; then
-		# Download user-data
-		local user_data="$(get user-data)"
-
-		# Save user-data script to be executed later
-		if [ "${user_data:0:2}" = "#!" ]; then
-			echo "${user_data}" > /tmp/user-data.script
-			chmod 700 /tmp/user-data.script
-
-			# Run the user-data script
-			local now="$(date -u +"%s")"
-			/tmp/user-data.script &>/var/log/user-data.log.${now}
-
-			# Delete the script right away
-			rm /tmp/user-data.script
-		fi
-	fi
-
 	# Import any previous settings for the local interfaces
 	 eval $(/usr/local/bin/readhash <(grep -E "^(GREEN|ORANGE)_.*=" /var/ipfire/ethernet/settings 2>/dev/null))
 
@@ -208,6 +189,22 @@ import_exoscale_configuration() {
 			echo "2,ACCEPT,INPUTFW,ON,std_net_src,ALL,ipfire,RED1,,TCP,,,ON,,,TGT_PORT,444,,,,,,,,,,,00:00,00:00,,AUTO,,dnat,,,,,second"
 		) >> /var/ipfire/firewall/input
 
+		# Download user-data
+		local user_data="$(get user-data)"
+
+		# Save user-data script to be executed later
+		if [ "${user_data:0:2}" = "#!" ]; then
+			echo "${user_data}" > /tmp/user-data.script
+			chmod 700 /tmp/user-data.script
+
+			# Run the user-data script
+			local now="$(date -u +"%s")"
+			/tmp/user-data.script &>/var/log/user-data.log.${now}
+
+			# Delete the script right away
+			rm /tmp/user-data.script
+		fi
+
 		# This script has now completed the first steps of setup
 		touch /var/ipfire/main/firstsetup_ok
 	fi
diff --git a/src/initscripts/helper/gcp-setup b/src/initscripts/helper/gcp-setup
index 935194931..4f5148c3e 100644
--- a/src/initscripts/helper/gcp-setup
+++ b/src/initscripts/helper/gcp-setup
@@ -118,25 +118,6 @@ import_gcp_configuration() {
 		fi
 	done <<<"$(get instance/attributes/ssh-keys)"
 
-	# Download the user-data script only on the first boot
-	if [ ! -e "/var/ipfire/main/firstsetup_ok" ]; then
-		# Download a startup script
-		local script="$(get instance/attributes/startup-script)"
-
-		# Execute the script
-		if [ "${script:0:2}" = "#!" ]; then
-			echo "${script}" > /tmp/gcp-startup.script
-			chmod 700 /tmp/gcp-startup.script
-
-			# Run the script
-			local now="$(date -u +"%s")"
-			/tmp/gcp-startup.script &>/var/log/startup-script.log.${now}
-
-			# Delete the script right away
-			rm /tmp/gcp-startup.script
-		fi
-	fi
-
 	# Import network configuration
 	# After this, no network connectivity will be available from this script due to the
 	# renaming of the network interfaces for which they have to be shut down
@@ -249,6 +230,22 @@ import_gcp_configuration() {
 			echo "2,ACCEPT,INPUTFW,ON,std_net_src,ALL,ipfire,RED1,,TCP,,,ON,,,TGT_PORT,444,,,,,,,,,,,00:00,00:00,,AUTO,,dnat,,,,,second"
 		) >> /var/ipfire/firewall/input
 
+		# Download a startup script
+		local script="$(get instance/attributes/startup-script)"
+
+		# Execute the script
+		if [ "${script:0:2}" = "#!" ]; then
+			echo "${script}" > /tmp/gcp-startup.script
+			chmod 700 /tmp/gcp-startup.script
+
+			# Run the script
+			local now="$(date -u +"%s")"
+			/tmp/gcp-startup.script &>/var/log/startup-script.log.${now}
+
+			# Delete the script right away
+			rm /tmp/gcp-startup.script
+		fi
+
 		# This script has now completed the first steps of setup
 		touch /var/ipfire/main/firstsetup_ok
 	fi
diff --git a/src/initscripts/helper/oci-setup b/src/initscripts/helper/oci-setup
index 782fde5a2..312014b74 100644
--- a/src/initscripts/helper/oci-setup
+++ b/src/initscripts/helper/oci-setup
@@ -147,28 +147,6 @@ import_oci_configuration() {
 		fi
 	done <<<"$(get instance/metadata/ssh_authorized_keys)"
 
-	# Download the user-data script only on the first boot
-	if [ ! -e "/var/ipfire/main/firstsetup_ok" ]; then
-		# Download a startup script
-		local script="$(get instance/metadata/user_data)"
-
-		# Try to decode this
-		script="$(try_base64_decode "${script}")"
-
-		# Execute the script
-		if [ "${script:0:2}" = "#!" ]; then
-			echo "${script}" > /tmp/user-data.script
-			chmod 700 /tmp/user-data.script
-
-			# Run the script
-			local now="$(date -u +"%s")"
-			/tmp/user-data.script &>/var/log/user-data.log.${now}
-
-			# Delete the script right away
-			rm /tmp/user-data.script
-		fi
-	fi
-
 	# Import network configuration
 	# After this, no network connectivity will be available from this script due to the
 	# renaming of the network interfaces for which they have to be shut down
@@ -285,6 +263,25 @@ import_oci_configuration() {
 			echo "2,ACCEPT,INPUTFW,ON,std_net_src,ALL,ipfire,RED1,,TCP,,,ON,,,TGT_PORT,444,,,,,,,,,,,00:00,00:00,,AUTO,,dnat,,,,,second"
 		) >> /var/ipfire/firewall/input
 
+		# Download a startup script
+		local script="$(get instance/metadata/user_data)"
+
+		# Try to decode this
+		script="$(try_base64_decode "${script}")"
+
+		# Execute the script
+		if [ "${script:0:2}" = "#!" ]; then
+			echo "${script}" > /tmp/user-data.script
+			chmod 700 /tmp/user-data.script
+
+			# Run the script
+			local now="$(date -u +"%s")"
+			/tmp/user-data.script &>/var/log/user-data.log.${now}
+
+			# Delete the script right away
+			rm /tmp/user-data.script
+		fi
+
 		# This script has now completed the first steps of setup
 		touch /var/ipfire/main/firstsetup_ok
 	fi
-- 
2.30.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 2/3] python3-botocore: Update to 1.25.12
  2022-05-19  9:40 [PATCH 1/3] cloud: Execute user-data scripts at the end of initialization Michael Tremer
@ 2022-05-19  9:40 ` Michael Tremer
  2022-06-20 15:03   ` jose.dias
  2022-05-19  9:40 ` [PATCH 3/3] aws-cli: Update to 1.23.12 Michael Tremer
  1 sibling, 1 reply; 6+ messages in thread
From: Michael Tremer @ 2022-05-19  9:40 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 5099 bytes --]

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/rootfiles/packages/python3-botocore | 21 +++++++++++++++------
 lfs/python3-botocore                       |  6 +++---
 2 files changed, 18 insertions(+), 9 deletions(-)

diff --git a/config/rootfiles/packages/python3-botocore b/config/rootfiles/packages/python3-botocore
index 638dff0eb..3696fe528 100644
--- a/config/rootfiles/packages/python3-botocore
+++ b/config/rootfiles/packages/python3-botocore
@@ -1,10 +1,10 @@
 #usr/lib/python3.10/site-packages/botocore
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/PKG-INFO
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/SOURCES.txt
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/dependency_links.txt
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/requires.txt
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/top_level.txt
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/PKG-INFO
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/SOURCES.txt
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/dependency_links.txt
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/requires.txt
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/top_level.txt
 usr/lib/python3.10/site-packages/botocore/__init__.py
 usr/lib/python3.10/site-packages/botocore/args.py
 usr/lib/python3.10/site-packages/botocore/auth.py
@@ -183,6 +183,10 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
 #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-20
 #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-20/paginators-1.json
 #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-20/service-2.json
+#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelines
+#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelines/2021-07-15
+#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelines/2021-07-15/paginators-1.json
+#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelines/2021-07-15/service-2.json
 #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings
 #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-15
 #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-15/paginators-1.json
@@ -202,6 +206,7 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
 #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol
 #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30
 #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/paginators-1.json
+#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/paginators-1.sdk-extras.json
 #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/service-2.json
 #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/waiters-2.json
 #usr/lib/python3.10/site-packages/botocore/data/clouddirectory
@@ -848,6 +853,10 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
 #usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14
 #usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/paginators-1.json
 #usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/service-2.json
+#usr/lib/python3.10/site-packages/botocore/data/ivschat
+#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14
+#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14/paginators-1.json
+#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14/service-2.json
 #usr/lib/python3.10/site-packages/botocore/data/kafka
 #usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14
 #usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14/paginators-1.json
diff --git a/lfs/python3-botocore b/lfs/python3-botocore
index cbda1ca52..b5776f7c1 100644
--- a/lfs/python3-botocore
+++ b/lfs/python3-botocore
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.24.37
+VER        = 1.25.12
 SUMMARY    = Python interface for AWS
 
 THISAPP    = botocore-$(VER)
@@ -33,7 +33,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = python3-botocore
-PAK_VER    = 5
+PAK_VER    = 6
 
 DEPS       = python3-dateutil python3-jmespath python3-urllib3
 
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 5e5495ba399e910479c0172eb4c572a5c0371db720906586c88dc59d8bfc58a50699b05125e1e554a8571b64654604447be1e1a4bfdc2b992272101060638908
+$(DL_FILE)_BLAKE2 = 6a15053917c9aac6e61490accbb3eddb5e243dfd900c5585dc527e2c7adb96e3d2094d5a0b67e7e59de48dc622591fe287dd23aff1c7b912311b31c582748d35
 
 install : $(TARGET)
 
-- 
2.30.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 3/3] aws-cli: Update to 1.23.12
  2022-05-19  9:40 [PATCH 1/3] cloud: Execute user-data scripts at the end of initialization Michael Tremer
  2022-05-19  9:40 ` [PATCH 2/3] python3-botocore: Update to 1.25.12 Michael Tremer
@ 2022-05-19  9:40 ` Michael Tremer
  1 sibling, 0 replies; 6+ messages in thread
From: Michael Tremer @ 2022-05-19  9:40 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 119272 bytes --]

This package and python3-botocore have to match exactly. Amazon does not
seem to care too much about compatibility between different versions
which is why we need to keep both in sync.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/rootfiles/packages/aws-cli | 565 +++++++++++++++++++++++++++++-
 lfs/aws-cli                       |   8 +-
 2 files changed, 561 insertions(+), 12 deletions(-)

diff --git a/config/rootfiles/packages/aws-cli b/config/rootfiles/packages/aws-cli
index 1509d02fe..317ad3a94 100644
--- a/config/rootfiles/packages/aws-cli
+++ b/config/rootfiles/packages/aws-cli
@@ -4,12 +4,12 @@ usr/bin/aws_bash_completer
 usr/bin/aws_completer
 #usr/bin/aws_zsh_completer.sh
 #usr/lib/python3.10/site-packages/awscli
-#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info
-#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/PKG-INFO
-#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/SOURCES.txt
-#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/dependency_links.txt
-#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/requires.txt
-#usr/lib/python3.10/site-packages/awscli-1.18.188-py3.10.egg-info/top_level.txt
+#usr/lib/python3.10/site-packages/awscli-1.23.12-py3.10.egg-info
+#usr/lib/python3.10/site-packages/awscli-1.23.12-py3.10.egg-info/PKG-INFO
+#usr/lib/python3.10/site-packages/awscli-1.23.12-py3.10.egg-info/SOURCES.txt
+#usr/lib/python3.10/site-packages/awscli-1.23.12-py3.10.egg-info/dependency_links.txt
+#usr/lib/python3.10/site-packages/awscli-1.23.12-py3.10.egg-info/requires.txt
+#usr/lib/python3.10/site-packages/awscli-1.23.12-py3.10.egg-info/top_level.txt
 usr/lib/python3.10/site-packages/awscli/__init__.py
 usr/lib/python3.10/site-packages/awscli/__main__.py
 usr/lib/python3.10/site-packages/awscli/alias.py
@@ -110,6 +110,7 @@ usr/lib/python3.10/site-packages/awscli/customizations/ecr_public.py
 usr/lib/python3.10/site-packages/awscli/customizations/ecs/__init__.py
 usr/lib/python3.10/site-packages/awscli/customizations/ecs/deploy.py
 usr/lib/python3.10/site-packages/awscli/customizations/ecs/exceptions.py
+usr/lib/python3.10/site-packages/awscli/customizations/ecs/executecommand.py
 usr/lib/python3.10/site-packages/awscli/customizations/ecs/filehelpers.py
 #usr/lib/python3.10/site-packages/awscli/customizations/eks
 usr/lib/python3.10/site-packages/awscli/customizations/eks/__init__.py
@@ -148,6 +149,13 @@ usr/lib/python3.10/site-packages/awscli/customizations/emr/ssh.py
 usr/lib/python3.10/site-packages/awscli/customizations/emr/sshutils.py
 usr/lib/python3.10/site-packages/awscli/customizations/emr/steputils.py
 usr/lib/python3.10/site-packages/awscli/customizations/emr/terminateclusters.py
+usr/lib/python3.10/site-packages/awscli/customizations/emrcontainers
+usr/lib/python3.10/site-packages/awscli/customizations/emrcontainers/__init__.py
+usr/lib/python3.10/site-packages/awscli/customizations/emrcontainers/base36.py
+usr/lib/python3.10/site-packages/awscli/customizations/emrcontainers/constants.py
+usr/lib/python3.10/site-packages/awscli/customizations/emrcontainers/eks.py
+usr/lib/python3.10/site-packages/awscli/customizations/emrcontainers/iam.py
+usr/lib/python3.10/site-packages/awscli/customizations/emrcontainers/update_role_trust_policy.py
 usr/lib/python3.10/site-packages/awscli/customizations/flatten.py
 #usr/lib/python3.10/site-packages/awscli/customizations/gamelift
 usr/lib/python3.10/site-packages/awscli/customizations/gamelift/__init__.py
@@ -407,10 +415,38 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-stage.rst
 #usr/lib/python3.10/site-packages/awscli/examples/apigatewayv2/update-vpc-link.rst
 #usr/lib/python3.10/site-packages/awscli/examples/appconfig
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/create-application.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/create-configuration-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/create-environment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/create-hosted-configuration-version.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/delete-application.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/delete-configuration-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/delete-deployment-strategy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/delete-environment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/delete-hosted-configuration-version.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/get-application.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/get-configuration-profile.rst
 #usr/lib/python3.10/site-packages/awscli/examples/appconfig/get-configuration.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/get-deployment-strategy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/get-deployment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/get-environment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/get-hosted-configuration-version.rst
 #usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-applications.rst
 #usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-configuration-profiles.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-deployment-strategies.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-deployments.rst
 #usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-environments.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-hosted-configuration-versions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/start-deployment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/stop-deployment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/untag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/update-application.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/update-configuration-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/update-deployment-strategy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/update-environment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/appconfig/validate-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling
 #usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/delete-scaling-policy.rst
 #usr/lib/python3.10/site-packages/awscli/examples/application-autoscaling/delete-scheduled-action.rst
@@ -451,6 +487,29 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/appmesh/update-virtual-node.rst
 #usr/lib/python3.10/site-packages/awscli/examples/appmesh/update-virtual-router.rst
 #usr/lib/python3.10/site-packages/awscli/examples/appmesh/update-virtual-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/associate-custom-domain.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/create-auto-scaling-configuration.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/create-connection.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/create-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/delete-auto-scaling-configuration.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/delete-connection.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/delete-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/describe-auto-scaling-configuration.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/describe-custom-domains.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/describe-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/disassociate-custom-domain.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/list-auto-scaling-configurations.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/list-connections.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/list-operations.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/list-services.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/pause-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/resume-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/start-deployment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/untag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/apprunner/update-service.rst
 #usr/lib/python3.10/site-packages/awscli/examples/athena
 #usr/lib/python3.10/site-packages/awscli/examples/athena/batch-get-named-query.rst
 #usr/lib/python3.10/site-packages/awscli/examples/athena/batch-get-query-execution.rst
@@ -503,6 +562,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-policy.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-scheduled-action.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-tags.rst
+#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/delete-warm-pool.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-account-limits.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-adjustment-types.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-auto-scaling-groups.rst
@@ -522,6 +582,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-scheduled-actions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-tags.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-termination-policy-types.rst
+#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/describe-warm-pool.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/detach-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/detach-load-balancer-target-groups.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/detach-load-balancers.rst
@@ -534,6 +595,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/put-notification-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/put-scaling-policy.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/put-scheduled-update-group-action.rst
+#usr/lib/python3.10/site-packages/awscli/examples/autoscaling/put-warm-pool.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/record-lifecycle-action-heartbeat.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/resume-processes.rst
 #usr/lib/python3.10/site-packages/awscli/examples/autoscaling/set-desired-capacity.rst
@@ -689,15 +751,26 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/cloud9/list-environments.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloud9/update-environment-membership.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloud9/update-environment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudcontrol
+#usr/lib/python3.10/site-packages/awscli/examples/cloudcontrol/create-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudcontrol/delete-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudcontrol/get-resource-request-status.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudcontrol/get-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudcontrol/list-resource-requests.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudcontrol/list-resources.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudcontrol/update-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/_deploy_description.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/_package_description.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/activate-type.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/batch-describe-type-configurations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/cancel-update-stack.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/continue-update-rollback.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/create-change-set.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/create-stack-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/create-stack-set.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/create-stack.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/deactivate-type.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/delete-change-set.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/delete-stack-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/delete-stack-set.rst
@@ -706,6 +779,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/deregister-type.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-account-limits.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-change-set.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-publisher.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-drift-detection-status.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-events.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/describe-stack-instance.rst
@@ -738,11 +812,15 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-type-versions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/list-types.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/package.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/publish-type.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/register-publisher.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/register-type.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/set-stack-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/set-type-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/set-type-default-version.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/signal-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/stop-stack-set-operation.rst
+#usr/lib/python3.10/site-packages/awscli/examples/cloudformation/test-type.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/update-stack-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/update-stack-set.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudformation/update-stack.rst
@@ -827,6 +905,38 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/put-metric-alarm.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/put-metric-data.rst
 #usr/lib/python3.10/site-packages/awscli/examples/cloudwatch/set-alarm-state.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/associate-external-connection.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/copy-package-versions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/create-domain.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/create-repository.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/delete-domain-permissions-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/delete-domain.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/delete-package-versions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/delete-repository-permissions-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/delete-repository.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/describe-domain.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/describe-repository.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/disassociate-external-connection.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/dispose-package-versions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/get-authorization-token.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/get-domain-permissions-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/get-package-version-asset.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/get-package-version-readme.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/get-repository-endpoint.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/get-repository-permissions-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/list-domains.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/list-package-version-assets.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/list-package-version-dependencies.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/list-package-versions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/list-packages.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/list-repositories-in-domain.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/list-repositories.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/login.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/put-domain-permissions-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/put-repository-permissions-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/update-package-versions-status.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeartifact/update-repository.rst
 #usr/lib/python3.10/site-packages/awscli/examples/codebuild
 #usr/lib/python3.10/site-packages/awscli/examples/codebuild/batch-delete-builds.rst
 #usr/lib/python3.10/site-packages/awscli/examples/codebuild/batch-get-build-batches.rst
@@ -947,6 +1057,21 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-pull-request-title.rst
 #usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-repository-description.rst
 #usr/lib/python3.10/site-packages/awscli/examples/codecommit/update-repository-name.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/associate-repository.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/create-code-review.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/describe-code-review.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/describe-recommendation-feedback.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/describe-repository-association.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/disassociate-repository.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/list-code-reviews.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/list-recommendation-feedback.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/list-recommendations.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/list-repository-associations.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/put-recommendation-feedback.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/codeguru-reviewer/untag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/codepipeline
 #usr/lib/python3.10/site-packages/awscli/examples/codepipeline/acknowledge-job.rst
 #usr/lib/python3.10/site-packages/awscli/examples/codepipeline/create-custom-action-type.rst
@@ -1274,7 +1399,10 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/detective/list-graphs.rst
 #usr/lib/python3.10/site-packages/awscli/examples/detective/list-invitations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/detective/list-members.rst
+#usr/lib/python3.10/site-packages/awscli/examples/detective/list-tags-for-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/detective/reject-invitation.rst
+#usr/lib/python3.10/site-packages/awscli/examples/detective/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/detective/untag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/devicefarm
 #usr/lib/python3.10/site-packages/awscli/examples/devicefarm/create-device-pool.rst
 #usr/lib/python3.10/site-packages/awscli/examples/devicefarm/create-project.rst
@@ -1495,6 +1623,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/advertise-byoip-cidr.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/allocate-address.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/allocate-hosts.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/allocate-ipam-pool-cidr.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/apply-security-groups-to-client-vpn-target-network.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/assign-ipv6-addresses.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/assign-private-ip-addresses.rst
@@ -1502,6 +1631,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-client-vpn-target-network.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-dhcp-options.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-iam-instance-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-instance-event-window.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-route-table.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-subnet-cidr-block.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/associate-transit-gateway-multicast-domain.rst
@@ -1517,6 +1647,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/authorize-security-group-ingress.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/bundle-instance.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-bundle-task.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-capacity-reservation-fleets.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-capacity-reservation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-conversion-task.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/cancel-export-task.rst
@@ -1528,6 +1659,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/copy-fpga-image.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/copy-image.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/copy-snapshot.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-capacity-reservation-fleet.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-capacity-reservation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-client-vpn-endpoint.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-client-vpn-route.rst
@@ -1540,8 +1672,12 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-flow-logs.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-fpga-image.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-image.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-instance-event-window.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-instance-export-task.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-internet-gateway.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-ipam-pool.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-ipam-scope.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-ipam.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-key-pair.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-launch-template-version.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-launch-template.rst
@@ -1551,22 +1687,31 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-nat-gateway.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-acl-entry.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-acl.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-insights-access-scope.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-insights-path.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-interface-permission.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-network-interface.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-placement-group.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-replace-root-volume-task.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-reserved-instances-listing.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-restore-image-task.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-route-table.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-route.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-security-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-snapshot.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-snapshots.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-spot-datafeed-subscription.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-store-image-task.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-subnet-cidr-reservation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-subnet.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-tags.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-traffic-mirror-filter-rule.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-traffic-mirror-filter.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-traffic-mirror-session.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-traffic-mirror-target.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-connect-peer.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-connect.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-multicast-domain.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-peering-attachment.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-prefix-list-reference.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-transit-gateway-route-table.rst
@@ -1582,6 +1727,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpn-connection-route.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpn-connection.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/create-vpn-gateway.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-carrier-gateway.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-client-vpn-endpoint.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-client-vpn-route.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-customer-gateway.rst
@@ -1590,7 +1736,10 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-fleets.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-flow-logs.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-fpga-image.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-instance-event-window.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-internet-gateway.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-ipam-scope.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-ipam.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-key-pair.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-launch-template-versions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-launch-template.rst
@@ -1599,6 +1748,9 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-nat-gateway.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-acl-entry.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-acl.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-insights-access-scope.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-insights-analysis.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-insights-path.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-interface-permission.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-network-interface.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-placement-group.rst
@@ -1608,12 +1760,15 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-security-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-snapshot.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-spot-datafeed-subscription.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-subnet-cidr-reservation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-subnet.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-tags.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-traffic-mirror-filter-rule.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-traffic-mirror-filter.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-traffic-mirror-session.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-traffic-mirror-target.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-connect-peer.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-connect.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-multicast-domain.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-peering-attachment.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-transit-gateway-prefix-list-reference.rst
@@ -1631,23 +1786,28 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpn-connection.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/delete-vpn-gateway.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/deprovision-byoip-cidr.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/deprovision-ipam-pool-cidr.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/deregister-image.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/deregister-instance-event-notification-attributes.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/deregister-transit-gateway-multicast-group-members.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/deregister-transit-gateway-multicast-group-source.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-account-attributes.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-addresses-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-addresses.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-aggregate-id-format.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-availability-zones.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-bundle-tasks.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-byoip-cidrs.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-capacity-reservation-fleets.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-capacity-reservations.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-carrier-gateways.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-classic-link-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-authorization-rules.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-connections.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-endpoints.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-routes.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-client-vpn-target-networks.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-coip-pools.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-conversion-tasks.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-customer-gateways.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-dhcp-options.rst
@@ -1655,6 +1815,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-elastic-gpus.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-export-image-tasks.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-export-tasks.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fast-launch-images.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fast-snapshot-restores.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fleet-history.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-fleet-instances.rst
@@ -1675,22 +1836,33 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-credit-specifications.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-event-notification-attributes.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-event-windows.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-status.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-type-offerings.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instance-types.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-internet-gateways.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-ipam-pools.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-ipam-scopes.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-ipams.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-ipv6-pools.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-key-pairs.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-launch-template-versions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-launch-templates.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-local-gateway-route-table-virtual-interface-group-associations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-local-gateway-route-table-vpc-associations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-local-gateway-route-tables.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-local-gateway-virtual-interface-groups.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-local-gateway-virtual-interfaces.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-local-gateways.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-managed-prefix-lists.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-moving-addresses.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-nat-gateways.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-acls.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-insights-access-scope-analyses.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-insights-access-scopes.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-insights-analyses.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-insights-paths.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-interface-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-interface-permissions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-network-interfaces.rst
@@ -1699,6 +1871,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-principal-id-format.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-public-ipv4-pools.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-regions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-replace-root-volume-tasks.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-reserved-instances-listings.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-reserved-instances-modifications.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-reserved-instances-offerings.rst
@@ -1707,8 +1880,10 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-scheduled-instance-availability.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-scheduled-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-security-group-references.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-security-group-rules.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-security-groups.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-snapshot-attribute.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-snapshot-tier-status.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-snapshots.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-datafeed-subscription.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-fleet-instances.rst
@@ -1717,12 +1892,16 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-instance-requests.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-spot-price-history.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-stale-security-groups.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-store-image-tasks.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-subnets.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-tags.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-traffic-mirror-filters.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-traffic-mirror-sessions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-traffic-mirror-targets.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-attachments.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-connect-peers.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-connects.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-multicast-domains.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-peering-attachments.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-route-tables.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/describe-transit-gateway-vpc-attachments.rst
@@ -1750,7 +1929,10 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/detach-volume.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/detach-vpn-gateway.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-ebs-encryption-by-default.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-fast-launch.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-fast-snapshot-restores.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-image-deprecation.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-serial-console-access.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-transit-gateway-route-table-propagation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-vgw-route-propagation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disable-vpc-classic-link-dns-support.rst
@@ -1758,13 +1940,18 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-address.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-client-vpn-target-network.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-iam-instance-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-instance-event-window.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-route-table.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-subnet-cidr-block.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-transit-gateway-multicast-domain.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-transit-gateway-route-table.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/disassociate-vpc-cidr-block.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-ebs-encryption-by-default.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-fast-launch.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-fast-snapshot-restores.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-image-deprecation.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-ipam-organization-admin-account.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-serial-console-access.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-transit-gateway-route-table-propagation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-vgw-route-propagation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/enable-volume-io.rst
@@ -1775,18 +1962,30 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/export-image.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-associated-ipv6-pool-cidrs.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-capacity-reservation-usage.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-coip-pool-usage.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-console-output.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-console-screenshot.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-default-credit-specification.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-ebs-default-kms-key-id.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-ebs-encryption-by-default.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-flow-logs-integration-template.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-groups-for-capacity-reservation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-host-reservation-purchase-preview.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-instance-types-from-instance-requirements.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-ipam-address-history.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-ipam-pool-allocations.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-ipam-pool-cidrs.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-ipam-resource-cidrs.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-launch-template-data.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-managed-prefix-list-associations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-managed-prefix-list-entries.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-network-insights-access-scope-analysis-findings.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-network-insights-access-scope-content.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-password-data.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-reserved-instances-exchange-quote.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-serial-console-access-status.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-spot-placement-scores.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/get-subnet-cidr-reservations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-transit-gateway-attachment-propagations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-transit-gateway-multicast-domain-associations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/get-transit-gateway-prefix-list-references.rst
@@ -1796,7 +1995,11 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/import-image.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/import-key-pair.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/import-snapshot.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/list-images-in-recycle-bin.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/list-snapshots-in-recycle-bin.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-address-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-availability-zone-group.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-capacity-reservation-fleet.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-capacity-reservation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-client-vpn-endpoint.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-default-credit-specification.rst
@@ -1811,13 +2014,19 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-capacity-reservation-attributes.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-credit-specification.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-event-start-time.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-event-window.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-metadata-options.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-instance-placement.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-ipam-pool.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-ipam-resource-cidr.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-ipam.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-launch-template.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-managed-prefix-list.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-network-interface-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-reserved-instances.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-security-group-rules.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-snapshot-attribute.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-snapshot-tier.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-spot-fleet-request.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-subnet-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-traffic-mirror-filter-network-services.rst
@@ -1841,16 +2050,19 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/modify-vpn-tunnel-options.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/monitor-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/move-address-to-vpc.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/move-byoip-cidr-to-ipam.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/network-insights-access-scope.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/provision-byoip-cidr.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/provision-ipam-pool-cidr.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/purchase-host-reservation.rst
-#usr/lib/python3.10/site-packages/awscli/examples/ec2/purchase-reserved-instance-offering.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/purchase-reserved-instances-offering.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/purchase-scheduled-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/reboot-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/register-image.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/register-instance-event-notification-attributes.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/register-transit-gateway-multicase-group-sources.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/register-transit-gateway-multicast-group-members.rst
-#usr/lib/python3.10/site-packages/awscli/examples/ec2/register-transit-gateway-multicast-group-source.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/register-transit-gateway-multicast-group-sources.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/reject-transit-gateway-peering-attachment.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/reject-transit-gateway-vpc-attachments.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/reject-vpc-endpoint-connections.rst
@@ -1866,6 +2078,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/report-instance-status.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/request-spot-fleet.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/request-spot-instances.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-address-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-ebs-default-kms-key-id.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-fpga-image-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-image-attribute.rst
@@ -1873,7 +2086,10 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-network-interface-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/reset-snapshot-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/restore-address-to-classic.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/restore-image-from-recycle-bin.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/restore-managed-prefix-list-version.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/restore-snapshot-from-recycle-bin.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/restore-snapshot-tier.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/revoke-client-vpn-ingress.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/revoke-security-group-egress.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/revoke-security-group-ingress.rst
@@ -1884,6 +2100,8 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/search-transit-gateway-routes.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/send-diagnostic-interrupt.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/start-instances.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/start-network-insights-access-scope-analysis.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ec2/start-network-insights-analysis.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/stop-instances.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/terminate-client-vpn-connections.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ec2/terminate-instances.rst
@@ -2219,6 +2437,10 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/elbv2/wait/target-deregistered.rst
 #usr/lib/python3.10/site-packages/awscli/examples/elbv2/wait/target-in-service.rst
 #usr/lib/python3.10/site-packages/awscli/examples/emr
+#usr/lib/python3.10/site-packages/awscli/examples/emr-containers
+#usr/lib/python3.10/site-packages/awscli/examples/emr-containers/update-role-trust-policy
+#usr/lib/python3.10/site-packages/awscli/examples/emr-containers/update-role-trust-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/emr-containers/update-role-trust-policy/_description.rst
 #usr/lib/python3.10/site-packages/awscli/examples/emr/add-instance-fleet.rst
 #usr/lib/python3.10/site-packages/awscli/examples/emr/add-steps.rst
 #usr/lib/python3.10/site-packages/awscli/examples/emr/add-tags.rst
@@ -2267,6 +2489,21 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/firehose/list-delivery-streams.rst
 #usr/lib/python3.10/site-packages/awscli/examples/firehose/put-record-batch.rst
 #usr/lib/python3.10/site-packages/awscli/examples/firehose/put-record.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis
+#usr/lib/python3.10/site-packages/awscli/examples/fis/create-experiment-template.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/delete-experiment-template.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/get-action.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/get-experiment-template.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/get-experiment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/list-actions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/list-experiment-templates.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/list-experiments.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/start-experiment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/stop-experiment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/untag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/fis/update-experiment-template.rst
 #usr/lib/python3.10/site-packages/awscli/examples/fms
 #usr/lib/python3.10/site-packages/awscli/examples/fms/associate-admin-account.rst
 #usr/lib/python3.10/site-packages/awscli/examples/fms/delete-notification-channel.rst
@@ -2343,17 +2580,32 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/glacier/wait/vault-exists.rst
 #usr/lib/python3.10/site-packages/awscli/examples/glacier/wait/vault-not-exists.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/add-custom-routing-endpoints.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/advertise-byoip-cidr.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/allow-custom-routing-traffic.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/create-accelerator.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/create-custom-routing-accelerator.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/create-custom-routing-endpoint-group.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/create-custom-routing-listener.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/create-endpoint-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/create-listener.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/deny-custom-routing-traffic.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/deprovision-byoip-cidr.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-accelerator-attributes.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-accelerator.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-custom-routing-accelerator-attributes.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-custom-routing-accelerator.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-custom-routing-endpoint-group.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-custom-routing-listener.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-endpoint-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/describe-listener.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-accelerators.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-byoip-cidr.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-custom-routing-accelerators.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-custom-routing-endpoint-groups.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-custom-routing-listeners.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-custom-routing-port-mappings-by-destination.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-custom-routing-port-mappings.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-endpoint-groups.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-listeners.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/list-tags-for-resource.rst
@@ -2362,6 +2614,9 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/untag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-accelerator-attributes.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-accelerator.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-custom-routing-accelerator-attributes.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-custom-routing-accelerator.rst
+#usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-custom-routing-listener.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-endpoint-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/update-listener.rst
 #usr/lib/python3.10/site-packages/awscli/examples/globalaccelerator/withdraw-byoip-cidr.rst
@@ -2435,6 +2690,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-service-role-for-account.rst
 #usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-subscription-definition-version.rst
 #usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-subscription-definition.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrass/get-thing-runtime-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-bulk-deployment-detailed-reports.rst
 #usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-bulk-deployments.rst
 #usr/lib/python3.10/site-packages/awscli/examples/greengrass/list-connector-definition-versions.rst
@@ -2471,6 +2727,35 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-logger-definition.rst
 #usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-resource-definition.rst
 #usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-subscription-definition.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrass/update-thing-runtime-configuration.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/associate-service-role-to-account.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/batch-associate-client-device-with-core-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/batch-disassociate-client-device-from-core-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/cancel-deployment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/create-component-version.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/create-deployment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/delete-component.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/delete-core-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/describe-component.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/disassociate-service-role-from-account.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/get-component-version-artifact.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/get-component.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/get-connectivity-info.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/get-core-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/get-deployment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/get-service-role-for-account.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/list-client-devices-associated-with-core-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/list-component-versions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/list-components.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/list-core-devices.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/list-deployments.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/list-effective-deployments.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/list-installed-components.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/untag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/greengrassv2/update-connectivity-info.rst
 #usr/lib/python3.10/site-packages/awscli/examples/guardduty
 #usr/lib/python3.10/site-packages/awscli/examples/guardduty/accept-invitation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/guardduty/archive-findings.rst
@@ -2500,6 +2785,20 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/health/describe-affected-entities.rst
 #usr/lib/python3.10/site-packages/awscli/examples/health/describe-event-details.rst
 #usr/lib/python3.10/site-packages/awscli/examples/health/describe-events.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/create-fhir-datastore.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/delete-fhir-datastore.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/describe-fhir-datastore.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/describe-fhir-export-job.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/describe-fhir-import-job.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/list-fhir-datastores.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/list-fhir-export-jobs.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/list-fhir-import-jobs.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/start-fhir-export-job.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/start-fhir-import-job.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/healthlake/untag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iam
 #usr/lib/python3.10/site-packages/awscli/examples/iam/add-client-id-to-open-id-connect-provider.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iam/add-role-to-instance-profile.rst
@@ -2755,6 +3054,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/iot/create-authorizer.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/create-billing-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/create-certificate-from-csr.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iot/create-custom-metric.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/create-dimension.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/create-domain-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/create-dynamic-thing-group.rst
@@ -2782,6 +3082,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/iot/delete-billing-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/delete-ca-certificate.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/delete-certificate.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iot/delete-custom-metric.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/delete-dimension.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/delete-domain-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/delete-dynamic-thing-group.rst
@@ -2814,6 +3115,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/iot/describe-billing-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/describe-ca-certificate.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/describe-certificate.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iot/describe-custom-metric.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/describe-default-authorizer.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/describe-dimension.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/describe-domain-configuration.rst
@@ -2837,6 +3139,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/iot/detach-thing-principal.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/disable-topic-rule.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/enable-topic-rule.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iot/get-behavior-model-training-summaries.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/get-cardinality.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/get-effective-policies.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/get-indexing-configuration.rst
@@ -2863,12 +3166,14 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-ca-certificates.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-certificates-by-ca.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-certificates.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iot/list-custom-metrics.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-dimensions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-domain-configurations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-indices.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-job-executions-for-job.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-job-executions-for-thing.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-jobs.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iot/list-mitigation-actions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-mitigations-actions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-ota-updates.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/list-outgoing-certificates.rst
@@ -2921,6 +3226,8 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/iot/update-billing-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/update-ca-certificate.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/update-certificate.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iot/update-custom-metric.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iot/update-dimension.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/update-domain-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/update-dynamic-thing-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iot/update-event-configurations.rst
@@ -3143,21 +3450,79 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/update-flow-template.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/update-system-template.rst
 #usr/lib/python3.10/site-packages/awscli/examples/iotthingsgraph/upload-entity-definitions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/associate-aws-account-with-partner-account.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/associate-wireless-device-with-thing.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/associate-wireless-gateway-with-certificate.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/associate-wireless-gateway-with-thing.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/create-destination.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/create-device-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/create-service-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/create-wireless-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/create-wireless-gateway-task-definition.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/create-wireless-gateway-task.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/create-wireless-gateway.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/delete-destination.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/delete-device-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/delete-service-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/delete-wireless-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/delete-wireless-gateway-task-definition.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/delete-wireless-gateway-task.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/delete-wireless-gateway.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/disassociate-aws-account-from-partner-account.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/disassociate-wireless-device-from-thing.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/disassociate-wireless-gateway-from-certificate.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/disassociate-wireless-gateway-from-thing.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-destination.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-device-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-partner-account.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-service-endpoint.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-service-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-wireless-device-statistics.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-wireless-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-wireless-gateway-certificate.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-wireless-gateway-firmware-information.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-wireless-gateway-statistics.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-wireless-gateway-task-definition.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-wireless-gateway-task.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/get-wireless-gateway.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/list-destinations.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/list-device-profiles.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/list-partner-accounts.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/list-service-profiles.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/list-wireless-devices.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/list-wireless-gateway-task-definitions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/list-wireless-gateways.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/send-data-to-wireless-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/test-wireless-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/untag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/update-destination.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/update-partner-account.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/update-wireless-device.rst
+#usr/lib/python3.10/site-packages/awscli/examples/iotwireless/update-wireless-gateway.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/batch-get-channel.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/batch-get-stream-key.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/create-channel.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ivs/create-recording-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/create-stream-key.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/delete-playback-key-pair.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ivs/delete-recording-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/delete-stream-key.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/get-channel.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/get-playback-key-pair.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ivs/get-recording-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/get-stream-key.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ivs/get-stream-session.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/get-stream.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/import-playback-key-pair.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/list-channels.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/list-playback-key-pairs.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ivs/list-recording-configurations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/list-stream-keys.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ivs/list-stream-sessions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/list-streams.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/list-tags-for-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ivs/put-metadata.rst
@@ -3517,12 +3882,16 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/associate-customer-gateway.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/associate-link.rst
+#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-core-network.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-device.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-global-network.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-link.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-site.rst
+#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/create-vpc-attachment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-attachment.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-bucket-analytics-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-bucket-metrics-configuration.rst
+#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-core-network.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-device.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-global-network.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/delete-link.rst
@@ -3542,6 +3911,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-public-access-block.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-sites.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-transit-gateway-registrations.rst
+#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/get-vpc-attachment.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/list-bucket-analytics-configurations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/list-bucket-metrics-configurations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/list-tags-for-resource.rst
@@ -3549,12 +3919,24 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/put-object-retention.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/put-public-access-block.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/register-transit-gateway.rst
+#usr/lib/python3.10/site-packages/awscli/examples/networkmanager/reject-attachment.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/tag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/untag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/update-device.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/update-global-network.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/update-link.rst
 #usr/lib/python3.10/site-packages/awscli/examples/networkmanager/update-site.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/get-eula.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/get-launch-profile-details.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/get-launch-profile.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/get-studio.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/list-eula-acceptances.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/list-eulas.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/list-launch-profiles.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/list-studio-components.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/list-studio-members.rst
+#usr/lib/python3.10/site-packages/awscli/examples/nimble/list-studios.rst
 #usr/lib/python3.10/site-packages/awscli/examples/opsworks
 #usr/lib/python3.10/site-packages/awscli/examples/opsworks/assign-instance.rst
 #usr/lib/python3.10/site-packages/awscli/examples/opsworks/assign-volume.rst
@@ -3674,6 +4056,11 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/organizations/remove-account-from-organization.rst
 #usr/lib/python3.10/site-packages/awscli/examples/organizations/update-organizational-unit.rst
 #usr/lib/python3.10/site-packages/awscli/examples/organizations/update-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/outposts
+#usr/lib/python3.10/site-packages/awscli/examples/outposts/get-outpost-instance-types.rst
+#usr/lib/python3.10/site-packages/awscli/examples/outposts/get-outpost.rst
+#usr/lib/python3.10/site-packages/awscli/examples/outposts/list-outposts.rst
+#usr/lib/python3.10/site-packages/awscli/examples/outposts/list-sites.rst
 #usr/lib/python3.10/site-packages/awscli/examples/pi
 #usr/lib/python3.10/site-packages/awscli/examples/pi/describe-dimension-keys.rst
 #usr/lib/python3.10/site-packages/awscli/examples/pi/get-resource-metrics.rst
@@ -3696,6 +4083,17 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/pricing/describe-services.rst
 #usr/lib/python3.10/site-packages/awscli/examples/pricing/get-attribute-values.rst
 #usr/lib/python3.10/site-packages/awscli/examples/pricing/get-products.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton
+#usr/lib/python3.10/site-packages/awscli/examples/proton/cancel-service-instance-deployment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton/cancel-service-pipeline-deployment.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton/create-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton/delete-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton/get-service-instance.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton/get-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton/list-service-instances.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton/update-service-instance.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton/update-service-pipeline.rst
+#usr/lib/python3.10/site-packages/awscli/examples/proton/update-service.rst
 #usr/lib/python3.10/site-packages/awscli/examples/qldb
 #usr/lib/python3.10/site-packages/awscli/examples/qldb/cancel-journal-kinesis-stream.rst
 #usr/lib/python3.10/site-packages/awscli/examples/qldb/create-ledger.rst
@@ -3715,20 +4113,29 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/qldb/stream-journal-to-kinesis.rst
 #usr/lib/python3.10/site-packages/awscli/examples/qldb/tag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/qldb/untag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/qldb/update-ledger-permissions-mode.rst
 #usr/lib/python3.10/site-packages/awscli/examples/qldb/update-ledger.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram
 #usr/lib/python3.10/site-packages/awscli/examples/ram/accept-resource-share-invitation.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ram/associate-resource-share-permission.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/associate-resource-share.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/create-resource-share.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/delete-resource-share.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ram/disassociate-resource-share-permission.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/disassociate-resource-share.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/enable-sharing-with-aws-organization.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ram/get-permission.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/get-resource-policies.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/get-resource-share-associations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/get-resource-share-invitations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/get-resource-shares.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ram/list-pending-invitation-resources.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ram/list-permissions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/list-principals.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ram/list-resource-share-permissions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ram/list-resource-types.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/list-resources.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ram/promote-resource-share-created-from-policy.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/reject-resource-share-invitation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/tag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ram/untag-resource.rst
@@ -3741,11 +4148,14 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/rds-data/execute-statement.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds-data/rollback-transaction.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/add-option-to-option-group.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/add-role-to-db-cluster.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/add-role-to-db-instance.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/add-source-identifier-to-subscription.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/add-tags-to-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/apply-pending-maintenance-action.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/authorize-db-security-group-ingress.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/backtrack-db-cluster.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/cancel-export-task.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/copy-db-cluster-parameter-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/copy-db-cluster-snapshot.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/copy-db-parameter-group.rst
@@ -3768,6 +4178,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-cluster-parameter-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-cluster-snapshot.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-cluster.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-instance-automated-backup.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-instance.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-parameter-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/delete-db-security-group.rst
@@ -3778,6 +4189,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/rds/delete-option-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/describe-account-attributes.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/describe-certificates.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-cluster-backtracks.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-cluster-endpoints.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-cluster-parameter-groups.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/describe-db-cluster-parameters.rst
@@ -3811,8 +4223,12 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/rds/describe-valid-db-instance-modifications.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/download-db-log-file-portion.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/generate-auth-token.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/generate-db-auth-token.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-certificates.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-current-db-cluster-capacity.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-cluster-endpoint.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-cluster-parameter-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-cluster-snapshot-attribute.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-cluster.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-instance.rst
@@ -3823,22 +4239,33 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/rds/modify-db-subnet-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/modify-event-subscription.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/modify-global-cluster.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/promote-read-replica-db-cluster.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/promote-read-replica.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/purchase-reserved-db-instance.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/purchase-reserved-db-instances-offerings.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/reboot-db-instance.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/remove-from-global-cluster.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/remove-option-from-option-group.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/remove-role-from-db-cluster.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/remove-role-from-db-instance.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/remove-source-identifier-from-subscription.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/remove-tags-from-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/reset-db-cluster-parameter-group.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/reset-db-parameter-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-cluster-from-s3.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-cluster-from-snapshot.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-cluster-to-point-in-time.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-instance-from-db-snapshot.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-instance-from-s3.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/restore-db-instance-to-point-in-time.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/start-activity-stream.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/start-db-cluster.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/start-db-instance-automated-backups-replication.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/start-db-instance.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/start-export-task.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/stop-activity-stream.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/stop-db-cluster.rst
+#usr/lib/python3.10/site-packages/awscli/examples/rds/stop-db-instance-automated-backups-replication.rst
 #usr/lib/python3.10/site-packages/awscli/examples/rds/stop-db-instance.rst
 #usr/lib/python3.10/site-packages/awscli/examples/redshift
 #usr/lib/python3.10/site-packages/awscli/examples/redshift/accept-reserved-node-exchange.rst
@@ -3969,8 +4396,10 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/resource-groups/get-group-query.rst
 #usr/lib/python3.10/site-packages/awscli/examples/resource-groups/get-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/resource-groups/get-tags.rst
+#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/list-group-resources.rst
 #usr/lib/python3.10/site-packages/awscli/examples/resource-groups/list-groups.rst
 #usr/lib/python3.10/site-packages/awscli/examples/resource-groups/list-resource-groups.rst
+#usr/lib/python3.10/site-packages/awscli/examples/resource-groups/put-group-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/resource-groups/search-resources.rst
 #usr/lib/python3.10/site-packages/awscli/examples/resource-groups/tag.rst
 #usr/lib/python3.10/site-packages/awscli/examples/resource-groups/untag.rst
@@ -4059,25 +4488,50 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/route53domains/update-tags-for-domain.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53domains/view-billing.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/associate-firewall-rule-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/associate-resolver-endpoint-ip-address.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/associate-resolver-rule.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/create-firewall-domain-list.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/create-firewall-rule-group.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/create-firewall-rule.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/create-resolver-endpoint.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/create-resolver-rule.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/delete-firewall-domain-list.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/delete-firewall-rule-group.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/delete-firewall-rule.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/delete-resolver-endpoint.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/delete-resolver-rule.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/disassociate-firewall-rule-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/disassociate-resolver-endpoint-ip-address.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/disassociate-resolver-rule.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-firewall-config.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-firewall-domain-list.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-firewall-rule-group-association.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-firewall-rule-group-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-firewall-rule-group.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-resolver-endpoint.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-resolver-rule-association.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/get-resolver-rule.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/import-firewall-domains.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-firewall-configs.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-firewall-domain-lists.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-firewall-domains.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-firewall-rule-group-associations.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-firewall-rule-groups.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-firewall-rules.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-resolver-endpoint-ip-addresses.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-resolver-endpoints.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-resolver-rule-associations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-resolver-rules.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/put-firewall-rule-group-policy.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/put-resolver-rule-policy.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/tag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/untag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/update-firewall-config.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/update-firewall-domains.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/update-firewall-rule-group-association.rst
+#usr/lib/python3.10/site-packages/awscli/examples/route53resolver/update-firewall-rule.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/update-resolver-endpoint.rst
 #usr/lib/python3.10/site-packages/awscli/examples/route53resolver/update-resolver-rule.rst
 #usr/lib/python3.10/site-packages/awscli/examples/s3
@@ -4215,38 +4669,51 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/list-secrets.rst
 #usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/put-resource-policy.rst
 #usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/put-secret-value.rst
+#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/remove-regions-from-replication.rst
+#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/replicate-secret-to-regions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/restore-secret.rst
 #usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/rotate-secret.rst
+#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/stop-replication-to-replica.rst
 #usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/tag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/untag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/update-secret-version-stage.rst
 #usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/update-secret.rst
+#usr/lib/python3.10/site-packages/awscli/examples/secretsmanager/validate-resource-policy.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/accept-administrator-invitation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/accept-invitation.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/batch-disable-standards.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/batch-enable-standards.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/batch-import-findings.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/batch-update-findings.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/create-action-target.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/create-finding-aggregator.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/create-insight.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/create-members.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/decline-invitations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/delete-action-target.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/delete-finding-aggregator.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/delete-insight.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/delete-invitations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/delete-members.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-action-targets.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-hub.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-organization-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-products.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-standards-controls.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/describe-standards.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/disable-import-findings-for-product.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/disable-organization-admin-account.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/disable-security-hub.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/disassociate-from-administrator-account.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/disassociate-from-master-account.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/disassociate-members.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/enable-import-findings-for-product.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/enable-organization-admin-account.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/enable-security-hub.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-administrator-account.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-enabled-standards.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-finding-aggregator.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-findings.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-insight-results.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-insights.rst
@@ -4255,13 +4722,17 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/get-members.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/invite-members.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-enabled-products-for-import.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-finding-aggregators.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-invitations.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-members.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-organization-admin-accounts.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/list-tags-for-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/tag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/untag-resource.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-action-target.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-finding-aggregator.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-insight.rst
+#usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-organization-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-security-hub-configuration.rst
 #usr/lib/python3.10/site-packages/awscli/examples/securityhub/update-standards-control.rst
 #usr/lib/python3.10/site-packages/awscli/examples/serverlessrepo
@@ -4318,6 +4789,18 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/update-product.rst
 #usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/update-provisioning-artifact.rst
 #usr/lib/python3.10/site-packages/awscli/examples/servicecatalog/update-tag-option.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/create-private-dns-namespace.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/create-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/delete-namespace.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/delete-service.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/deregister-instance.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/discover-instances.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/get-operation.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/list-instances.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/list-namespaces.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/list-services.rst
+#usr/lib/python3.10/site-packages/awscli/examples/servicediscovery/register-instance.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ses
 #usr/lib/python3.10/site-packages/awscli/examples/ses/delete-identity.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ses/get-identity-dkim-attributes.rst
@@ -4421,7 +4904,67 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/sqs/tag-queue.rst
 #usr/lib/python3.10/site-packages/awscli/examples/sqs/untag-queue.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/accept-page.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/activate-contact-channel.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/command-name.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/create-contact-channel.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/create-contact.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/deactivate-contact-channel.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/delete-contact-channel.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/delete-contact.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/describe-engagement.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/describe-page.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/get-contact-channel.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/get-contact-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/get-contact.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/list-contact-channels.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/list-contacts.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/list-engagements.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/list-page-receipts.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/list-pages-by-contact.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/list-pages-by-engagement.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/put-contact-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/send-activation-code.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/start-engagement.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/stop-engagement.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/untag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/update-contact-channel.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-contacts/update-contact.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/create-replication-set.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/create-response-plan.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/create-timeline-event.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/delete-incident-record.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/delete-replication-set.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/delete-resource-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/delete-response-plan.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/delete-timeline-event.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/get-incident-record.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/get-replication-set.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/get-resource-policies.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/get-response-plan.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/get-timeline-event.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/list-incident-records.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/list-related-items.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/list-replication-sets.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/list-response-plans.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/list-tags-for-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/list-timeline-events.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/put-resource-policy.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/start-incident.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/tag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/untag-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/update-deletion-protection.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/update-incident-record.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/update-related-items.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/update-replication-set.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/update-response-plan.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm-incidents/update-timeline-event.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/add-tags-to-resource.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm/associate-ops-item-related-item.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/cancel-command.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/cancel-maintenance-window-execution.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/create-activation.rst
@@ -4477,6 +5020,7 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-patch-groups.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-patch-properties.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/describe-sessions.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm/disassociate-ops-item-related-item.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/get-automation-execution.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/get-calendar-state.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/get-command-invocation.rst
@@ -4507,9 +5051,11 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/list-commands.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/list-compliance-items.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/list-compliance-summaries.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-document-metadata-history.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/list-document-versions.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/list-documents.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/list-inventory-entries.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm/list-ops-item-related-items.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/list-resource-compliance-summaries.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/list-resource-data-sync.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/list-tags-for-resource.rst
@@ -4528,12 +5074,15 @@ usr/lib/python3.10/site-packages/awscli/examples
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/send-command.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/start-associations-once.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/start-automation-execution.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm/start-change-request-execution.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/start-session.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/stop-automation-execution.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/terminate-session.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm/unlabel-parameter-version.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/update-association-status.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/update-association.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/update-document-default-version.rst
+#usr/lib/python3.10/site-packages/awscli/examples/ssm/update-document-metadata.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/update-document.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/update-maintenance-window-target.rst
 #usr/lib/python3.10/site-packages/awscli/examples/ssm/update-maintenance-window-task.rst
diff --git a/lfs/aws-cli b/lfs/aws-cli
index a46a400fa..a2160732c 100644
--- a/lfs/aws-cli
+++ b/lfs/aws-cli
@@ -26,15 +26,15 @@ include Config
 
 SUMMARY    = Amazon Web Services Command Line Interface
 
-VER        = 1.18.188
+VER        = 1.23.12
 
-THISAPP    = awscli-$(VER)
+THISAPP    = aws-cli-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = aws-cli
-PAK_VER    = 5
+PAK_VER    = 6
 
 DEPS       = python3-botocore python3-colorama python3-docutils python3-pyasn1 python3-rsa python3-s3transfer python3-six python3-yaml
 
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = cce3566bf44a896381198b088e479c6185b91298585ea855ea0ac19c76a736b1f746413009a56b3a755de6c9c788a70cf78e3d010968c17d5b6dce45a650a9de
+$(DL_FILE)_BLAKE2 = 27dcd4580de6af921475435c2ca080179ac9d6687a4c5ba445049b5c501d868ca7cc67421a1faef6fd36fd7786ba8593818007dcb46ed6cfb1c5a57ba0b1c438
 
 install : $(TARGET)
 
-- 
2.30.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH 2/3] python3-botocore: Update to 1.25.12
  2022-05-19  9:40 ` [PATCH 2/3] python3-botocore: Update to 1.25.12 Michael Tremer
@ 2022-06-20 15:03   ` jose.dias
  0 siblings, 0 replies; 6+ messages in thread
From: jose.dias @ 2022-06-20 15:03 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 6732 bytes --]

Hello *.

Some previous update broke aws-cli on my install. I did set this up and it
had worked. I was toying with the idea of adding to the ddns page to make
this more automatic but I wasn't ready yet.

This in turn broke my dehydrated cert update to aws' route53 service.

[root(a)harold .aws]# aws
Traceback (most recent call last):
  File "/usr/bin/aws", line 19, in <module>
    import awscli.clidriver
  File "/usr/lib/python3.10/site-packages/awscli/clidriver.py", line 17, in
<module>
    import botocore.session
  File "/usr/lib/python3.10/site-packages/botocore/session.py", line 26, in
<module>
    import botocore.client
  File "/usr/lib/python3.10/site-packages/botocore/client.py", line 16, in
<module>
    from botocore.args import ClientArgsCreator
  File "/usr/lib/python3.10/site-packages/botocore/args.py", line 27, in
<module>
    from botocore.config import Config
  File "/usr/lib/python3.10/site-packages/botocore/config.py", line 16, in
<module>
    from botocore.endpoint import DEFAULT_TIMEOUT, MAX_POOL_CONNECTIONS
  File "/usr/lib/python3.10/site-packages/botocore/endpoint.py", line 27, in
<module>
    from botocore.httpchecksum import handle_checksum_body
ModuleNotFoundError: No module named 'botocore.httpchecksum'

Suggestions? Or should I raise a bug? Or will this be fixed soon?

Thanks.
-- 
Jose Dias
jose "dot" dias "at" DiasLan "dot" com

-----Original Message-----
From: Development <development-bounces(a)lists.ipfire.org> On Behalf Of
Michael Tremer
Sent: May 19, 2022 5:40 AM
To: development(a)lists.ipfire.org
Cc: Michael Tremer <michael.tremer(a)ipfire.org>
Subject: [PATCH 2/3] python3-botocore: Update to 1.25.12

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/rootfiles/packages/python3-botocore | 21 +++++++++++++++------
 lfs/python3-botocore                       |  6 +++---
 2 files changed, 18 insertions(+), 9 deletions(-)

diff --git a/config/rootfiles/packages/python3-botocore
b/config/rootfiles/packages/python3-botocore
index 638dff0eb..3696fe528 100644
--- a/config/rootfiles/packages/python3-botocore
+++ b/config/rootfiles/packages/python3-botocore
@@ -1,10 +1,10 @@
 #usr/lib/python3.10/site-packages/botocore
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/PKG-INFO
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/SOURCES.
txt
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/dependen
cy_links.txt
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/requires
.txt
-#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/top_leve
l.txt
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/PKG-
+INFO 
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/SOUR
+CES.txt 
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/depe
+ndency_links.txt 
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/requ
+ires.txt 
+#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/top_
+level.txt
 usr/lib/python3.10/site-packages/botocore/__init__.py
 usr/lib/python3.10/site-packages/botocore/args.py
 usr/lib/python3.10/site-packages/botocore/auth.py
@@ -183,6 +183,10 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
 
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-2
0
 
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-2
0/paginators-1.json
 
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-2
0/service-2.json
+#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelin
+es
+#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelin
+es/2021-07-15 
+#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelin
+es/2021-07-15/paginators-1.json 
+#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelin
+es/2021-07-15/service-2.json
 #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings
 
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-1
5
 
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-1
5/paginators-1.json
@@ -202,6 +206,7 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
 #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol
 #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30
 
#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/pagi
nators-1.json
+#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30
+/paginators-1.sdk-extras.json
 
#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/serv
ice-2.json
 
#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/wait
ers-2.json
 #usr/lib/python3.10/site-packages/botocore/data/clouddirectory
@@ -848,6 +853,10 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
 #usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14
 
#usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/paginators-1.
json
 
#usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/service-2.jso
n
+#usr/lib/python3.10/site-packages/botocore/data/ivschat
+#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14
+#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14/pagi
+nators-1.json 
+#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14/serv
+ice-2.json
 #usr/lib/python3.10/site-packages/botocore/data/kafka
 #usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14
 
#usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14/paginators-
1.json
diff --git a/lfs/python3-botocore b/lfs/python3-botocore index
cbda1ca52..b5776f7c1 100644
--- a/lfs/python3-botocore
+++ b/lfs/python3-botocore
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.24.37
+VER        = 1.25.12
 SUMMARY    = Python interface for AWS
 
 THISAPP    = botocore-$(VER)
@@ -33,7 +33,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = python3-botocore
-PAK_VER    = 5
+PAK_VER    = 6
 
 DEPS       = python3-dateutil python3-jmespath python3-urllib3
 
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 =
5e5495ba399e910479c0172eb4c572a5c0371db720906586c88dc59d8bfc58a50699b05125e1
e554a8571b64654604447be1e1a4bfdc2b992272101060638908
+$(DL_FILE)_BLAKE2 = 
+6a15053917c9aac6e61490accbb3eddb5e243dfd900c5585dc527e2c7adb96e3d2094d5
+a0b67e7e59de48dc622591fe287dd23aff1c7b912311b31c582748d35
 
 install : $(TARGET)
 
--
2.30.2




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/3] python3-botocore: Update to 1.25.12
@ 2022-06-23 12:32 Michael Tremer
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Tremer @ 2022-06-23 12:32 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 7588 bytes --]

Hello Jose,

Yes, indeed the version of aws-cli in the stable tree is broken.

I just submitted two patches to the list that fix any problems. As soon as they have been merged into the tree and the build has run through, you can install the package from the “unstable” tree.

-Michael

> On 20 Jun 2022, at 16:03, jose.dias(a)diaslan.com wrote:
> 
> Hello *.
> 
> Some previous update broke aws-cli on my install. I did set this up and it
> had worked. I was toying with the idea of adding to the ddns page to make
> this more automatic but I wasn't ready yet.
> 
> This in turn broke my dehydrated cert update to aws' route53 service.
> 
> [root(a)harold .aws]# aws
> Traceback (most recent call last):
>  File "/usr/bin/aws", line 19, in <module>
>    import awscli.clidriver
>  File "/usr/lib/python3.10/site-packages/awscli/clidriver.py", line 17, in
> <module>
>    import botocore.session
>  File "/usr/lib/python3.10/site-packages/botocore/session.py", line 26, in
> <module>
>    import botocore.client
>  File "/usr/lib/python3.10/site-packages/botocore/client.py", line 16, in
> <module>
>    from botocore.args import ClientArgsCreator
>  File "/usr/lib/python3.10/site-packages/botocore/args.py", line 27, in
> <module>
>    from botocore.config import Config
>  File "/usr/lib/python3.10/site-packages/botocore/config.py", line 16, in
> <module>
>    from botocore.endpoint import DEFAULT_TIMEOUT, MAX_POOL_CONNECTIONS
>  File "/usr/lib/python3.10/site-packages/botocore/endpoint.py", line 27, in
> <module>
>    from botocore.httpchecksum import handle_checksum_body
> ModuleNotFoundError: No module named 'botocore.httpchecksum'
> 
> Suggestions? Or should I raise a bug? Or will this be fixed soon?
> 
> Thanks.
> -- 
> Jose Dias
> jose "dot" dias "at" DiasLan "dot" com
> 
> -----Original Message-----
> From: Development <development-bounces(a)lists.ipfire.org> On Behalf Of
> Michael Tremer
> Sent: May 19, 2022 5:40 AM
> To: development(a)lists.ipfire.org
> Cc: Michael Tremer <michael.tremer(a)ipfire.org>
> Subject: [PATCH 2/3] python3-botocore: Update to 1.25.12
> 
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> config/rootfiles/packages/python3-botocore | 21 +++++++++++++++------
> lfs/python3-botocore                       |  6 +++---
> 2 files changed, 18 insertions(+), 9 deletions(-)
> 
> diff --git a/config/rootfiles/packages/python3-botocore
> b/config/rootfiles/packages/python3-botocore
> index 638dff0eb..3696fe528 100644
> --- a/config/rootfiles/packages/python3-botocore
> +++ b/config/rootfiles/packages/python3-botocore
> @@ -1,10 +1,10 @@
> #usr/lib/python3.10/site-packages/botocore
> -#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info
> -#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/PKG-INFO
> -#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/SOURCES.
> txt
> -#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/dependen
> cy_links.txt
> -#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/requires
> .txt
> -#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/top_leve
> l.txt
> +#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info
> +#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/PKG-
> +INFO 
> +#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/SOUR
> +CES.txt 
> +#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/depe
> +ndency_links.txt 
> +#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/requ
> +ires.txt 
> +#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/top_
> +level.txt
> usr/lib/python3.10/site-packages/botocore/__init__.py
> usr/lib/python3.10/site-packages/botocore/args.py
> usr/lib/python3.10/site-packages/botocore/auth.py
> @@ -183,6 +183,10 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
> 
> #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-2
> 0
> 
> #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-2
> 0/paginators-1.json
> 
> #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-2
> 0/service-2.json
> +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelin
> +es
> +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelin
> +es/2021-07-15 
> +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelin
> +es/2021-07-15/paginators-1.json 
> +#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelin
> +es/2021-07-15/service-2.json
> #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings
> 
> #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-1
> 5
> 
> #usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-1
> 5/paginators-1.json
> @@ -202,6 +206,7 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
> #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol
> #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30
> 
> #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/pagi
> nators-1.json
> +#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30
> +/paginators-1.sdk-extras.json
> 
> #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/serv
> ice-2.json
> 
> #usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/wait
> ers-2.json
> #usr/lib/python3.10/site-packages/botocore/data/clouddirectory
> @@ -848,6 +853,10 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
> #usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14
> 
> #usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/paginators-1.
> json
> 
> #usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/service-2.jso
> n
> +#usr/lib/python3.10/site-packages/botocore/data/ivschat
> +#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14
> +#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14/pagi
> +nators-1.json 
> +#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14/serv
> +ice-2.json
> #usr/lib/python3.10/site-packages/botocore/data/kafka
> #usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14
> 
> #usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14/paginators-
> 1.json
> diff --git a/lfs/python3-botocore b/lfs/python3-botocore index
> cbda1ca52..b5776f7c1 100644
> --- a/lfs/python3-botocore
> +++ b/lfs/python3-botocore
> @@ -24,7 +24,7 @@
> 
> include Config
> 
> -VER        = 1.24.37
> +VER        = 1.25.12
> SUMMARY    = Python interface for AWS
> 
> THISAPP    = botocore-$(VER)
> @@ -33,7 +33,7 @@ DL_FROM    = $(URL_IPFIRE)
> DIR_APP    = $(DIR_SRC)/$(THISAPP)
> TARGET     = $(DIR_INFO)/$(THISAPP)
> PROG       = python3-botocore
> -PAK_VER    = 5
> +PAK_VER    = 6
> 
> DEPS       = python3-dateutil python3-jmespath python3-urllib3
> 
> @@ -47,7 +47,7 @@ objects = $(DL_FILE)
> 
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
> 
> -$(DL_FILE)_BLAKE2 =
> 5e5495ba399e910479c0172eb4c572a5c0371db720906586c88dc59d8bfc58a50699b05125e1
> e554a8571b64654604447be1e1a4bfdc2b992272101060638908
> +$(DL_FILE)_BLAKE2 = 
> +6a15053917c9aac6e61490accbb3eddb5e243dfd900c5585dc527e2c7adb96e3d2094d5
> +a0b67e7e59de48dc622591fe287dd23aff1c7b912311b31c582748d35
> 
> install : $(TARGET)
> 
> --
> 2.30.2
> 
> 
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/3] python3-botocore: Update to 1.25.12
@ 2022-06-20 21:42 Peter Müller
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Müller @ 2022-06-20 21:42 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2110 bytes --]

Hello Jose,

thanks for your e-mail.

Unfortunately, I have no experience with this add-ons. While I vaguely believe
the issue should be fixed in upcoming Core Update 169, it definitely should go
into a bug report so it cannot fall through the cracks.

Please refer to https://wiki.ipfire.org/devel/bugzilla for further information
on how to report bugs. As a general rule of thumb, anything support-related should
go to the forum/community (https://community.ipfire.org/), any confirmed bug in
the bugtracker, and anything development-related to this mailing list.

Hope not to have stirred up too much confusion. :-)

Thanks, and best regards,
Peter Müller


> Hello *.
> 
> Some previous update broke aws-cli on my install. I did set this up and it
> had worked. I was toying with the idea of adding to the ddns page to make
> this more automatic but I wasn't ready yet.
> 
> This in turn broke my dehydrated cert update to aws' route53 service.
> 
> [root(a)harold .aws]# aws
> Traceback (most recent call last):
>   File "/usr/bin/aws", line 19, in <module>
>     import awscli.clidriver
>   File "/usr/lib/python3.10/site-packages/awscli/clidriver.py", line 17, in
> <module>
>     import botocore.session
>   File "/usr/lib/python3.10/site-packages/botocore/session.py", line 26, in
> <module>
>     import botocore.client
>   File "/usr/lib/python3.10/site-packages/botocore/client.py", line 16, in
> <module>
>     from botocore.args import ClientArgsCreator
>   File "/usr/lib/python3.10/site-packages/botocore/args.py", line 27, in
> <module>
>     from botocore.config import Config
>   File "/usr/lib/python3.10/site-packages/botocore/config.py", line 16, in
> <module>
>     from botocore.endpoint import DEFAULT_TIMEOUT, MAX_POOL_CONNECTIONS
>   File "/usr/lib/python3.10/site-packages/botocore/endpoint.py", line 27, in
> <module>
>     from botocore.httpchecksum import handle_checksum_body
> ModuleNotFoundError: No module named 'botocore.httpchecksum'
> 
> Suggestions? Or should I raise a bug? Or will this be fixed soon?
> 
> Thanks.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-06-23 12:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-19  9:40 [PATCH 1/3] cloud: Execute user-data scripts at the end of initialization Michael Tremer
2022-05-19  9:40 ` [PATCH 2/3] python3-botocore: Update to 1.25.12 Michael Tremer
2022-06-20 15:03   ` jose.dias
2022-05-19  9:40 ` [PATCH 3/3] aws-cli: Update to 1.23.12 Michael Tremer
2022-06-20 21:42 [PATCH 2/3] python3-botocore: Update to 1.25.12 Peter Müller
2022-06-23 12:32 Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox