awscli 1.42.1__py3-none-any.whl → 1.42.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. awscli/__init__.py +1 -1
  2. awscli/compat.py +11 -0
  3. awscli/customizations/cloudformation/deployer.py +2 -2
  4. awscli/customizations/cloudtrail/validation.py +4 -3
  5. awscli/customizations/codecommit.py +2 -3
  6. awscli/customizations/codedeploy/push.py +2 -3
  7. awscli/customizations/datapipeline/__init__.py +3 -2
  8. awscli/customizations/ec2/bundleinstance.py +2 -1
  9. awscli/customizations/eks/get_token.py +3 -2
  10. awscli/customizations/opsworks.py +2 -2
  11. awscli/examples/ec2/associate-ipam-resource-discovery.rst +1 -1
  12. awscli/examples/ec2/create-ipam-resource-discovery.rst +1 -1
  13. awscli/examples/ec2/delete-ipam-pool.rst +1 -1
  14. awscli/examples/ec2/describe-addresses-attribute.rst +1 -1
  15. awscli/examples/ec2/get-ipam-discovered-public-addresses.rst +1 -1
  16. awscli/examples/ec2/modify-ipam-resource-discovery.rst +1 -1
  17. awscli/examples/ec2/modify-ipam-scope.rst +1 -1
  18. awscli/examples/ec2/release-ipam-pool-allocation.rst +3 -3
  19. {awscli-1.42.1.dist-info → awscli-1.42.3.dist-info}/METADATA +2 -2
  20. {awscli-1.42.1.dist-info → awscli-1.42.3.dist-info}/RECORD +28 -28
  21. {awscli-1.42.1.data → awscli-1.42.3.data}/scripts/aws +0 -0
  22. {awscli-1.42.1.data → awscli-1.42.3.data}/scripts/aws.cmd +0 -0
  23. {awscli-1.42.1.data → awscli-1.42.3.data}/scripts/aws_bash_completer +0 -0
  24. {awscli-1.42.1.data → awscli-1.42.3.data}/scripts/aws_completer +0 -0
  25. {awscli-1.42.1.data → awscli-1.42.3.data}/scripts/aws_zsh_completer.sh +0 -0
  26. {awscli-1.42.1.dist-info → awscli-1.42.3.dist-info}/LICENSE.txt +0 -0
  27. {awscli-1.42.1.dist-info → awscli-1.42.3.dist-info}/WHEEL +0 -0
  28. {awscli-1.42.1.dist-info → awscli-1.42.3.dist-info}/top_level.txt +0 -0
awscli/__init__.py CHANGED
@@ -18,7 +18,7 @@ A Universal Command Line Environment for Amazon Web Services.
18
18
 
19
19
  import os
20
20
 
21
- __version__ = '1.42.1'
21
+ __version__ = '1.42.3'
22
22
 
23
23
  #
24
24
  # Get our data path to be added to botocore's search path
awscli/compat.py CHANGED
@@ -13,6 +13,7 @@
13
13
 
14
14
  import collections.abc as collections_abc
15
15
  import contextlib
16
+ import datetime
16
17
  import io
17
18
  import locale
18
19
  import os
@@ -502,3 +503,13 @@ except ImportError:
502
503
  if _id:
503
504
  id = _id
504
505
  return distname, version, id
506
+
507
+
508
+ def get_current_datetime(remove_tzinfo=True):
509
+ # TODO: Consolidate to botocore.compat.get_current_datetime
510
+ # after it's had time to bake to avoid import errors with
511
+ # mismatched versions.
512
+ datetime_now = datetime.datetime.now(datetime.timezone.utc)
513
+ if remove_tzinfo:
514
+ datetime_now = datetime_now.replace(tzinfo=None)
515
+ return datetime_now
@@ -17,10 +17,10 @@ import logging
17
17
  import botocore
18
18
  import collections
19
19
 
20
+ from awscli.compat import get_current_datetime
20
21
  from awscli.customizations.cloudformation import exceptions
21
22
  from awscli.customizations.cloudformation.artifact_exporter import mktempfile, parse_s3_url
22
23
 
23
- from datetime import datetime
24
24
 
25
25
  LOG = logging.getLogger(__name__)
26
26
 
@@ -85,7 +85,7 @@ class Deployer(object):
85
85
  :return:
86
86
  """
87
87
 
88
- now = datetime.utcnow().isoformat()
88
+ now = get_current_datetime().isoformat()
89
89
  description = "Created by AWS CLI at {0} UTC".format(now)
90
90
 
91
91
  # Each changeset will get a unique name based on time
@@ -19,7 +19,7 @@ import re
19
19
  import sys
20
20
  import zlib
21
21
  from zlib import error as ZLibError
22
- from datetime import datetime, timedelta
22
+ from datetime import timedelta
23
23
  from dateutil import tz, parser
24
24
 
25
25
  from pyasn1.error import PyAsn1Error
@@ -29,6 +29,7 @@ from awscli.customizations.cloudtrail.utils import get_trail_by_arn, \
29
29
  get_account_id_from_arn
30
30
  from awscli.customizations.commands import BasicCommand
31
31
  from botocore.exceptions import ClientError
32
+ from awscli.compat import get_current_datetime
32
33
  from awscli.schema import ParameterRequiredError
33
34
  from awscli.utils import create_nested_client
34
35
 
@@ -432,7 +433,7 @@ class DigestTraverser(object):
432
433
  :param end_date: Date to stop validating at (inclusive).
433
434
  """
434
435
  if end_date is None:
435
- end_date = datetime.utcnow()
436
+ end_date = get_current_datetime()
436
437
  end_date = normalize_date(end_date)
437
438
  start_date = normalize_date(start_date)
438
439
  bucket = self.starting_bucket
@@ -735,7 +736,7 @@ class CloudTrailValidateLogs(BasicCommand):
735
736
  if args.end_time:
736
737
  self.end_time = normalize_date(parse_date(args.end_time))
737
738
  else:
738
- self.end_time = normalize_date(datetime.utcnow())
739
+ self.end_time = normalize_date(get_current_datetime())
739
740
  if self.start_time > self.end_time:
740
741
  raise ValueError(('Invalid time range specified: start-time must '
741
742
  'occur before end-time'))
@@ -16,13 +16,12 @@ import re
16
16
  import sys
17
17
  import logging
18
18
  import fileinput
19
- import datetime
20
19
 
21
20
  from botocore.auth import SigV4Auth
22
21
  from botocore.awsrequest import AWSRequest
23
22
  from botocore.compat import urlsplit
24
23
  from awscli.customizations.commands import BasicCommand
25
- from awscli.compat import NonTranslatedStdout
24
+ from awscli.compat import NonTranslatedStdout, get_current_datetime
26
25
 
27
26
  logger = logging.getLogger('botocore.credentials')
28
27
 
@@ -150,7 +149,7 @@ class CodeCommitGetCommand(BasicCommand):
150
149
  request = AWSRequest()
151
150
  request.url = url_to_sign
152
151
  request.method = 'GIT'
153
- now = datetime.datetime.utcnow()
152
+ now = get_current_datetime()
154
153
  request.context['timestamp'] = now.strftime('%Y%m%dT%H%M%S')
155
154
  split = urlsplit(request.url)
156
155
  # we don't want to include the port number in the signature
@@ -16,13 +16,12 @@ import sys
16
16
  import zipfile
17
17
  import tempfile
18
18
  import contextlib
19
- from datetime import datetime
20
19
 
21
20
  from botocore.exceptions import ClientError
22
21
 
23
22
  from awscli.customizations.codedeploy.utils import validate_s3_location
24
23
  from awscli.customizations.commands import BasicCommand
25
- from awscli.compat import BytesIO, ZIP_COMPRESSION_MODE
24
+ from awscli.compat import BytesIO, ZIP_COMPRESSION_MODE, get_current_datetime
26
25
  from awscli.utils import create_nested_client
27
26
 
28
27
  ONE_MB = 1 << 20
@@ -132,7 +131,7 @@ class Push(BasicCommand):
132
131
  if not parsed_args.description:
133
132
  parsed_args.description = (
134
133
  'Uploaded by AWS CLI {0} UTC'.format(
135
- datetime.utcnow().isoformat()
134
+ get_current_datetime().isoformat()
136
135
  )
137
136
  )
138
137
 
@@ -12,10 +12,11 @@
12
12
  # language governing permissions and limitations under the License.
13
13
 
14
14
  import json
15
- from datetime import datetime, timedelta
15
+ from datetime import timedelta
16
16
 
17
17
  from awscli.formatter import get_formatter
18
18
  from awscli.arguments import CustomArgument
19
+ from awscli.compat import get_current_datetime
19
20
  from awscli.customizations.commands import BasicCommand
20
21
  from awscli.customizations.datapipeline import translator
21
22
  from awscli.customizations.datapipeline.createdefaultroles \
@@ -184,7 +185,7 @@ class QueryArgBuilder(object):
184
185
  """
185
186
  def __init__(self, current_time=None):
186
187
  if current_time is None:
187
- current_time = datetime.utcnow()
188
+ current_time = get_current_datetime()
188
189
  self.current_time = current_time
189
190
 
190
191
  def build_query(self, parsed_args):
@@ -18,6 +18,7 @@ import base64
18
18
  import datetime
19
19
 
20
20
  from awscli.arguments import CustomArgument
21
+ from awscli.compat import get_current_datetime
21
22
 
22
23
  logger = logging.getLogger('ec2bundleinstance')
23
24
 
@@ -117,7 +118,7 @@ def _generate_policy(params):
117
118
  # Called if there is no policy supplied by the user.
118
119
  # Creates a policy that provides access for 24 hours.
119
120
  delta = datetime.timedelta(hours=24)
120
- expires = datetime.datetime.utcnow() + delta
121
+ expires = get_current_datetime() + delta
121
122
  expires_iso = expires.strftime("%Y-%m-%dT%H:%M:%S.%fZ")
122
123
  policy = POLICY.format(expires=expires_iso,
123
124
  bucket=params['Bucket'],
@@ -16,12 +16,13 @@ import json
16
16
  import os
17
17
  import sys
18
18
 
19
- from datetime import datetime, timedelta
19
+ from datetime import timedelta
20
20
  from botocore.signers import RequestSigner
21
21
  from botocore.model import ServiceId
22
22
 
23
23
  from awscli.formatter import get_formatter
24
24
  from awscli.utils import create_nested_client
25
+ from awscli.compat import get_current_datetime
25
26
  from awscli.customizations.commands import BasicCommand
26
27
  from awscli.customizations.utils import uni_print
27
28
  from awscli.customizations.utils import validate_mutually_exclusive
@@ -107,7 +108,7 @@ class GetTokenCommand(BasicCommand):
107
108
  ]
108
109
 
109
110
  def get_expiration_time(self):
110
- token_expiration = datetime.utcnow() + timedelta(
111
+ token_expiration = get_current_datetime() + timedelta(
111
112
  minutes=TOKEN_EXPIRATION_MINS
112
113
  )
113
114
  return token_expiration.strftime('%Y-%m-%dT%H:%M:%SZ')
@@ -24,7 +24,7 @@ import textwrap
24
24
 
25
25
  from botocore.exceptions import ClientError
26
26
 
27
- from awscli.compat import urlopen, ensure_text_type
27
+ from awscli.compat import get_current_datetime, urlopen, ensure_text_type
28
28
  from awscli.customizations.commands import BasicCommand
29
29
  from awscli.customizations.utils import create_client_from_parsed_globals
30
30
 
@@ -505,7 +505,7 @@ class OpsWorksRegister(BasicCommand):
505
505
  "Resource": arn,
506
506
  }
507
507
  if timeout is not None:
508
- valid_until = datetime.datetime.utcnow() + timeout
508
+ valid_until = get_current_datetime() + timeout
509
509
  statement["Condition"] = {
510
510
  "DateLessThan": {
511
511
  "aws:CurrentTime":
@@ -4,7 +4,7 @@ In this example, you are an IPAM delegated admin and a resource discovery has be
4
4
 
5
5
  Note
6
6
 
7
- * To complete this request, you'll need the resource discovery ID which you can get with `describe-ipam-resource-discoveries <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-ipam-resource-discoveries.html>`__ and the IPAM ID which you can get with `describe-ipams <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-ipams.html>`__.
7
+ * To complete this request, you'll need the resource discovery ID which you can get with `describe-ipam-resource-discoveries <https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-ipam-resource-discoveries.html>`__ and the IPAM ID which you can get with `describe-ipams <https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-ipams.html>`__.
8
8
  * The resource discovery that you are associating must have first been shared with your account using AWS RAM.
9
9
  * The ``--region`` you enter must match the home Region of the IPAM you are associating it with.
10
10
 
@@ -43,4 +43,4 @@ Output::
43
43
  ]
44
44
  }
45
45
 
46
- Once you create a resource discovery, you may want to share it with another IPAM delegated admin, which you can do with `create-resource-share <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/create-resource-share.html>`__. For more information, see `Integrate IPAM with accounts outside of your organization <https://docs.aws.amazon.com/vpc/latest/ipam/enable-integ-ipam-outside-org.html>`__ in the *Amazon VPC IPAM User Guide*.
46
+ Once you create a resource discovery, you may want to share it with another IPAM delegated admin, which you can do with `create-resource-share <https://docs.aws.amazon.com/cli/latest/reference/ram/create-resource-share.html>`__. For more information, see `Integrate IPAM with accounts outside of your organization <https://docs.aws.amazon.com/vpc/latest/ipam/enable-integ-ipam-outside-org.html>`__ in the *Amazon VPC IPAM User Guide*.
@@ -4,7 +4,7 @@ In this example, you're a IPAM delegated admin who wants to delete an IPAM pool
4
4
 
5
5
  To complete this request:
6
6
 
7
- * You'll need the IPAM pool ID which you can get with `describe-ipam-pools <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-ipam-pools.html>`__.
7
+ * You'll need the IPAM pool ID which you can get with `describe-ipam-pools <https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-ipam-pools.html>`__.
8
8
  * The ``--region`` must be the IPAM home Region.
9
9
 
10
10
  The following ``delete-ipam-pool`` example deletes an IPAM pool in your AWS account. ::
@@ -26,4 +26,4 @@ Output::
26
26
  ]
27
27
  }
28
28
 
29
- To view the attributes of an elastic IP address, you must have first associated a domain name with the elastic IP address. For more information, see `Use reverse DNS for email applications <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#Using_Elastic_Addressing_Reverse_DNS>`__ in the *Amazon EC2 User Guide* or `modify-address-attribute <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/modify-address-attribute.html>`__ in the *AWS CLI Command Reference*.
29
+ To view the attributes of an elastic IP address, you must have first associated a domain name with the elastic IP address. For more information, see `Use reverse DNS for email applications <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#Using_Elastic_Addressing_Reverse_DNS>`__ in the *Amazon EC2 User Guide* or `modify-address-attribute <https://docs.aws.amazon.com/cli/latest/reference/ec2/modify-address-attribute.html>`__ in the *AWS CLI Command Reference*.
@@ -1,6 +1,6 @@
1
1
  **To view discovered public IP addresses**
2
2
 
3
- In this example, you are an IPAM delegated admin and you want to view the IP addresses of resources discovered by IPAM. You can get the resource discovery ID with `describe-ipam-resource-discoveries <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-ipam-resource-discoveries.html>`__.
3
+ In this example, you are an IPAM delegated admin and you want to view the IP addresses of resources discovered by IPAM. You can get the resource discovery ID with `describe-ipam-resource-discoveries <https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-ipam-resource-discoveries.html>`__.
4
4
 
5
5
  The following ``get-ipam-discovered-public-addresses`` example shows the discovered public IP addresses for a resource discovery. ::
6
6
 
@@ -5,7 +5,7 @@ In this example, you're an IPAM delegated admin who wants to modify the operatin
5
5
  To complete this request:
6
6
 
7
7
  * You cannot modify a default resource discovery and you must be the owner of the resource discovery.
8
- * You need the resource discovery ID, which you can get with `describe-ipam-resource-discoveries <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-ipam-resource-discoveries.html>`__.
8
+ * You need the resource discovery ID, which you can get with `describe-ipam-resource-discoveries <https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-ipam-resource-discoveries.html>`__.
9
9
 
10
10
  The following ``modify-ipam-resource-discovery`` example modifies a non-default resource discovery in your AWS account. ::
11
11
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  In this scenario, you're an IPAM delegated admin who wants to modify the description of an IPAM scope.
4
4
 
5
- To complete this request, you'll need the scope ID, which you can get with `describe-ipam-scopes <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-ipam-scopes.html>`__.
5
+ To complete this request, you'll need the scope ID, which you can get with `describe-ipam-scopes <https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-ipam-scopes.html>`__.
6
6
 
7
7
  The following ``modify-ipam-scope`` example updates the description of the scope. ::
8
8
 
@@ -4,8 +4,8 @@ In this example, you're an IPAM delegated admin who tried to delete an IPAM pool
4
4
 
5
5
  Note the following:
6
6
 
7
- * You can only use this command for custom allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using `modify-ipam-resource-cidr <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/modify-ipam-resource-cidr.html>`__.
8
- * To complete this request, you'll need the IPAM pool ID, which you can get with `describe-ipam-pools <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-ipam-pools.html>`__. You'll also need the allocation ID, which you can get with `get-ipam-pool-allocations <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/get-ipam-pool-allocations.html>`__.
7
+ * You can only use this command for custom allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using `modify-ipam-resource-cidr <https://docs.aws.amazon.com/cli/latest/reference/ec2/modify-ipam-resource-cidr.html>`__.
8
+ * To complete this request, you'll need the IPAM pool ID, which you can get with `describe-ipam-pools <https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-ipam-pools.html>`__. You'll also need the allocation ID, which you can get with `get-ipam-pool-allocations <https://docs.aws.amazon.com/cli/latest/reference/ec2/get-ipam-pool-allocations.html>`__.
9
9
  * If you do not want to remove allocations one by one, you can use the ``--cascade option`` when you delete an IPAM pool to automatically release any allocations in the pool before deleting it.
10
10
  * There are a number of prerequisites before running this command. For more information, see `Release an allocation <https://docs.aws.amazon.com/vpc/latest/ipam/release-alloc-ipam.html>`__ in the *Amazon VPC IPAM User Guide*.
11
11
  * The ``--region`` in which you run this command must be the locale of the IPAM pool where the allocation is.
@@ -24,4 +24,4 @@ Output::
24
24
  "Success": true
25
25
  }
26
26
 
27
- Once you release an allocation, you may want to run `delete-ipam-pool <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/delete-ipam-pool.html>`__.
27
+ Once you release an allocation, you may want to run `delete-ipam-pool <https://docs.aws.amazon.com/cli/latest/reference/ec2/delete-ipam-pool.html>`__.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: awscli
3
- Version: 1.42.1
3
+ Version: 1.42.3
4
4
  Summary: Universal Command Line Environment for AWS.
5
5
  Home-page: http://aws.amazon.com/cli/
6
6
  Author: Amazon Web Services
@@ -23,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.12
23
23
  Classifier: Programming Language :: Python :: 3.13
24
24
  Requires-Python: >= 3.9
25
25
  License-File: LICENSE.txt
26
- Requires-Dist: botocore (==1.40.1)
26
+ Requires-Dist: botocore (==1.40.3)
27
27
  Requires-Dist: docutils (<=0.19,>=0.18.1)
28
28
  Requires-Dist: s3transfer (<0.14.0,>=0.13.0)
29
29
  Requires-Dist: PyYAML (<6.1,>=3.10)
@@ -1,4 +1,4 @@
1
- awscli/__init__.py,sha256=PBajU9XM_hWxZQkfs3at03f9tvGAlqxyOoxw5M2X30k,1533
1
+ awscli/__init__.py,sha256=1Yn-LnnJok9x4uA7tiDBq84M1egRRg6H2gd-zBuHYt4,1533
2
2
  awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
3
3
  awscli/alias.py,sha256=Jj2jetpajUMcjqx9tFhHUOKpzLChQygnH2zqDFfmgIM,11315
4
4
  awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
@@ -7,7 +7,7 @@ awscli/arguments.py,sha256=CW12iM9KyQRNcQAFhX4nvWvxb15XxdDuQfXRwQ-CBn0,18808
7
7
  awscli/clidocs.py,sha256=4WzjkUyiZGjfn7C228D3436695CYF8oVpfFsdJaw58k,31844
8
8
  awscli/clidriver.py,sha256=DCUU4LpcoKNGBagl35P2t4xSuSinKWdPmcNPCXB6AJE,26528
9
9
  awscli/commands.py,sha256=fJVPJajqYCl9pieIphIVYYQvbwdCbufkDj87I7W0JwE,2097
10
- awscli/compat.py,sha256=rdygqFsDwb2W_0ehi7PLEA6u49yh-8UoUMIPi0LKIoU,16451
10
+ awscli/compat.py,sha256=_W9vVZnQTVx0o_hKiEuauCZgQgKkqGK4zGGT44rsaCU,16835
11
11
  awscli/completer.py,sha256=vNCS1kr1Q_JO8fLh5YGwfUK3sSaDp3k8rrpa_cCIgY4,5986
12
12
  awscli/errorhandler.py,sha256=2bIBZrKvFICKAhoD180Cx7rRX608pG9RHsmlAcRb0wc,3139
13
13
  awscli/formatter.py,sha256=EI_dUo5uGf2YxWg5js4un_cksF5h58KuvOkkmptuu4o,10951
@@ -39,7 +39,7 @@ awscli/customizations/cliinputjson.py,sha256=XWru9NHF0jNuhrA79xQY03vJPyRpe2Jth9t
39
39
  awscli/customizations/cloudfront.py,sha256=bkMmqM2xJ14_6SeSCSglpbWLziMeGgGaPQM56zRwAYo,10648
40
40
  awscli/customizations/cloudsearch.py,sha256=0WKfcUTr2l2FhdeJ2FiX5XZXZb5EIIHAbS1d2tVPLko,4494
41
41
  awscli/customizations/cloudsearchdomain.py,sha256=_uQctHHxAqSt_d4snYIWS3bEDeordU0jpZLb5xtYjzM,1074
42
- awscli/customizations/codecommit.py,sha256=_v4MPOIeD1JwuLBLuK05nFYVC8klwQlQWOFFIVZlr5I,7487
42
+ awscli/customizations/codecommit.py,sha256=04LfxFa24whp4znSmhZ4ReZU66rH9gQUY2wKr_fxhZs,7489
43
43
  awscli/customizations/commands.py,sha256=eHUUk93vtbVOR3TjSeoCh-nh5JVSK0fiPxO7wX_Okl0,17155
44
44
  awscli/customizations/dynamodb.py,sha256=5s0QK_fhphkjeBhfzm9jbMDh3p2oN7GoCazoJuHz4pQ,1919
45
45
  awscli/customizations/ecr.py,sha256=Z-MIwu5Frkpt5_tADojmc1vxwdh8B_AnqVQ48drVgxM,4073
@@ -53,7 +53,7 @@ awscli/customizations/iot_data.py,sha256=xswSsC1a049sw_VfG75F8l4GyI1GqrE-ux86U2x
53
53
  awscli/customizations/kinesis.py,sha256=1s76FC9Kp5vw-2DJKVlkiO50n8NGcLI-Itdrl7dxi6o,2195
54
54
  awscli/customizations/kms.py,sha256=MG52QeazTZ3xokURUqLK4asagZCThssaXv0Dg1JIOhc,909
55
55
  awscli/customizations/mturk.py,sha256=4n0c14Ah9ey11uiuW5n4gMlcMq7PQNuapeGSoOEh2lE,1010
56
- awscli/customizations/opsworks.py,sha256=pega7vaF-eCTSrSrpRRNXbbJs_QUS2oGXkD2AggMmkY,21091
56
+ awscli/customizations/opsworks.py,sha256=q9Qi76kl-RkqVRtu_753_jtGnwJYuZhiFwbdDqvJ2cw,21109
57
57
  awscli/customizations/opsworkscm.py,sha256=-NVHq6-tC30nMeQ94cByL-tyd3syg-CDWociI0m7MA8,857
58
58
  awscli/customizations/overridesslcommonname.py,sha256=VBxkWk2GJr-Zg3SGUTDUTa0uOsxiC7ErkdTMAKiIonI,6444
59
59
  awscli/customizations/paginate.py,sha256=S1FQzScLUId9-r-9Z1qeLHN0BIhvlcq96yQsUcxCaXI,12364
@@ -81,14 +81,14 @@ awscli/customizations/waiters.py,sha256=e0cHfnaOhR0Zz7DCTj3McP_TPfKHEc_JlHyy3uP2
81
81
  awscli/customizations/cloudformation/__init__.py,sha256=rcZDPPnatHSw8I0ogt3eHOL4HKIW3DbUFKEZdf76TEg,1281
82
82
  awscli/customizations/cloudformation/artifact_exporter.py,sha256=evvQTSzPkv4bUyYr318HqwQwfkxiz0cMCxfYr8x2R6o,23617
83
83
  awscli/customizations/cloudformation/deploy.py,sha256=d1RhgZ2Tx8HTqaRwae-_VOpN8c4gTyjRM0MC0DGzKN8,15561
84
- awscli/customizations/cloudformation/deployer.py,sha256=buWrrr0dt4VkOGrObrtDq_YS_m-hZYENIS29CK4Q6ao,9848
84
+ awscli/customizations/cloudformation/deployer.py,sha256=OVxj1Ai7FTNyuljxTFQU3vqKVy67FcpSnWZ95AI7bNA,9870
85
85
  awscli/customizations/cloudformation/exceptions.py,sha256=G5F8FB8lxSzKMHmDZPhl4UdbrjB87mUWaBzgY901JJA,2137
86
86
  awscli/customizations/cloudformation/package.py,sha256=cugfhLY2R8ZY97kOK_XLd9GfK8PxF0LVN1xe4mirEkU,6116
87
87
  awscli/customizations/cloudformation/yamlhelper.py,sha256=PwSRzdpL2lOhhwlnmtLCp3eJOxrYwWmvQ8bimpzQXks,3305
88
88
  awscli/customizations/cloudtrail/__init__.py,sha256=6IMtaLoCrMMf1LdsmLLp5Q-uLeH_hpyCHIH1o2boYPQ,1337
89
89
  awscli/customizations/cloudtrail/subscribe.py,sha256=kvpviUZqm9E4x5RSSY2UVpM5UHStSA5cCjogF1ap1iA,13742
90
90
  awscli/customizations/cloudtrail/utils.py,sha256=dd-2CmiEbqXatOYOG5W7L-rpuxTatijdMJ-qmASrCwI,1224
91
- awscli/customizations/cloudtrail/validation.py,sha256=w18DcXeoDHhLoaCpz1kEUjxI2O6V-Q-rG61Oz2uIFII,40195
91
+ awscli/customizations/cloudtrail/validation.py,sha256=vUDdPOIcpoN9D8uKMcWkEGLePf_sa5k0NExTnrghs9g,40242
92
92
  awscli/customizations/codeartifact/__init__.py,sha256=dgIMOQhLehpxG8pAzs8XWB3J9HGD9ZxLYLJu-UVV0wo,334
93
93
  awscli/customizations/codeartifact/login.py,sha256=h_rH0-HzvbX5ri48IZVLA-64iROm0A1HE371WyXlwcY,27648
94
94
  awscli/customizations/codedeploy/__init__.py,sha256=FT9vGCIrGANuGV5vZ8j_0DljBF6ocxqokqBGzPqFCio,565
@@ -96,7 +96,7 @@ awscli/customizations/codedeploy/codedeploy.py,sha256=lQzSYdJK7Asz1EEspzRTmMVypn
96
96
  awscli/customizations/codedeploy/deregister.py,sha256=uW0NaP68MtjYA2gnIQXyQwiy_dkxUt4-wyN3tlRGSf4,6291
97
97
  awscli/customizations/codedeploy/install.py,sha256=LZ9yeZuPolQdJ3CjR7R07Uwh9WOlOX5WgBbdxVAbT4k,4205
98
98
  awscli/customizations/codedeploy/locationargs.py,sha256=JupUxddF8XDUe0mSs3JiYKp7esCo6RuWGjo5o6N8-vc,5910
99
- awscli/customizations/codedeploy/push.py,sha256=JwGvvgWEl2EXAzZMCO5m8tGhud39GMcDMnoINWtoulU,10732
99
+ awscli/customizations/codedeploy/push.py,sha256=rm0z3GpF3rocARIhaFUdjXYpbJy3ZmgFSuMpbdzymxg,10729
100
100
  awscli/customizations/codedeploy/register.py,sha256=At9e2CExkarv_9hGF58PPfWTIy_Wgn7g_1fEbm0n7Sg,7282
101
101
  awscli/customizations/codedeploy/systems.py,sha256=caLyE4RS3OllcZ9bsmV__3uvKNLJEtUPiESPunDy0YM,7727
102
102
  awscli/customizations/codedeploy/uninstall.py,sha256=TwtuDoqBdxK95GGp3UxQa2KqMj7T9aikhAKPxhSqYJs,2202
@@ -113,7 +113,7 @@ awscli/customizations/configure/get.py,sha256=T4ih2FpofIBz549pWkzf29IQ_F4I26F2D1
113
113
  awscli/customizations/configure/list.py,sha256=BEQ7WqpYOOInglQ_D1VDJrs-wd5-u9EC4ecW-A6AXYE,5766
114
114
  awscli/customizations/configure/set.py,sha256=h6Jhwzt6hrzjO7MP9sfweOmhNoGUkclgqzvIAIw5Hwo,4758
115
115
  awscli/customizations/configure/writer.py,sha256=V45KnOXdSpCdKX9ubHfwHMsqctvRmdkfQ-pslt523dk,9363
116
- awscli/customizations/datapipeline/__init__.py,sha256=MA6jR6zMKIQaHvar4I4k-NUZVSBHfxiFMo3jBAjdzRU,17067
116
+ awscli/customizations/datapipeline/__init__.py,sha256=OH-wMuyb8UHhmlUmQL2vfjoyQbMKKjPS7EoWTKC6i7g,17109
117
117
  awscli/customizations/datapipeline/constants.py,sha256=8drCqQal41RKcW-MqLjFo_t1ta2WU18G76JP23yBefY,1895
118
118
  awscli/customizations/datapipeline/createdefaultroles.py,sha256=kSTNEn6_yCaczfiEFnPTv1vBj4H4Tnn6GUSoOJ4Vznk,9913
119
119
  awscli/customizations/datapipeline/listrunsformatter.py,sha256=4Gytk-ewHd22TZdc1Qoe19xyYJ1sJK97oo6m_q_9QVg,2131
@@ -125,7 +125,7 @@ awscli/customizations/dlm/dlm.py,sha256=NVAQOcoR8KSnCgCEX2D_mhSySMAIf32D6jeCJJCG
125
125
  awscli/customizations/dlm/iam.py,sha256=2EoD1tW_zN0BtGIM1sR--4bFq2TvbvDNu3dr3dWLBUg,1798
126
126
  awscli/customizations/ec2/__init__.py,sha256=wnWE_0bn2m84p3EPxwqRBDw2M63Q8PmX4IKHTUxl1e4,565
127
127
  awscli/customizations/ec2/addcount.py,sha256=4WjyrcTVKdYXgFgslrAZX3V1svAaHpH7zJxlFSvDzYw,2992
128
- awscli/customizations/ec2/bundleinstance.py,sha256=s-Cf2Fq7wUcZ7fXmckLpUFCSIT2tixpw_qrAu5P39Dg,6736
128
+ awscli/customizations/ec2/bundleinstance.py,sha256=7SG2kEUTMLtitkng9kmDjaBW8G7RDwQTS-RYZGekqjA,6779
129
129
  awscli/customizations/ec2/decryptpassword.py,sha256=7VIJFgic5Z5q84HPodA0q0UF6u81ioRVOVT-iRDVhig,4578
130
130
  awscli/customizations/ec2/paginate.py,sha256=IX4kdGkT1j5hElfxWPxFBwl9XL-HZmqGy2mkYBOrnxk,2304
131
131
  awscli/customizations/ec2/protocolarg.py,sha256=xcpJneFdg1JXXl3Ejp7B0Nl2mpJE4pDnlwZENhLobYw,1400
@@ -138,7 +138,7 @@ awscli/customizations/ecs/executecommand.py,sha256=pMKzJ6UY4dgSKhd_LUkDaGiTklZXt
138
138
  awscli/customizations/ecs/filehelpers.py,sha256=jP_bFgEsL4BRuhemZDN3X6pSyYJG6RMBS0MdlSoWnmI,2131
139
139
  awscli/customizations/eks/__init__.py,sha256=kwQiY_JpftB9Cl6ES7OIWqIT2WGvue6VvUK75Xwj-o0,1183
140
140
  awscli/customizations/eks/exceptions.py,sha256=5Z3HntwF4htYVLK7oMgyCGSyd6Tou1DQ2Jg7irMkgqo,728
141
- awscli/customizations/eks/get_token.py,sha256=RkdJAxg-0-IflBY8m8NcJ0WYt33xi1BppdnGnU1Xc9w,10013
141
+ awscli/customizations/eks/get_token.py,sha256=-a4b6YZuc7lyYl9h8vpHkc4uQH48a-puw1cDRw-x4jw,10055
142
142
  awscli/customizations/eks/kubeconfig.py,sha256=hBJwzR0ajab3zBtd6xR7ObeOKKsfJi6qz9TN5ItMCC0,9730
143
143
  awscli/customizations/eks/ordered_yaml.py,sha256=81AoykbFpC6-k8m_3vyXRb3RM76mVtbzAI4PEPFKd4o,1864
144
144
  awscli/customizations/eks/update_kubeconfig.py,sha256=_ekfmUEbpVPuCQr_tAfCpACQSVbKq9wJmxqhXufXK_s,13932
@@ -1760,7 +1760,7 @@ awscli/examples/ec2/associate-client-vpn-target-network.rst,sha256=U1Q9DjHDQCqVM
1760
1760
  awscli/examples/ec2/associate-dhcp-options.rst,sha256=PEbGfnPIaQCJ2a8CSqakqdaaMDTXmOjd838mnSzNB_w,557
1761
1761
  awscli/examples/ec2/associate-iam-instance-profile.rst,sha256=Gt5GgQkzluUn3CIW80Dh0T_9IoEQaYo7mr4vIvD8zqA,650
1762
1762
  awscli/examples/ec2/associate-instance-event-window.rst,sha256=YdN-IXxLpg741B7mNaBjh_HS_JaozKO4bnRaVR__338,3985
1763
- awscli/examples/ec2/associate-ipam-resource-discovery.rst,sha256=5q68lsbco6vpf0-sT2uC2Ql6ld-xzvu4hDZQ4DwPltk,2499
1763
+ awscli/examples/ec2/associate-ipam-resource-discovery.rst,sha256=sFkNRJnKMSR3dviksPsMUrZuuPu93W8zjawOOfbIzKU,2463
1764
1764
  awscli/examples/ec2/associate-nat-gateway-address.rst,sha256=1Q7Tov_3qlbtE7Z9Ay6cYxmTq5kv3IuUv5HQMOsU60Q,927
1765
1765
  awscli/examples/ec2/associate-route-table.rst,sha256=_22MuIifivsDbqBFUoX6_W_X4yKfmR1yJ4V0Ytuym3E,286
1766
1766
  awscli/examples/ec2/associate-security-group-vpc.rst,sha256=UO3mkvF7cc6NlTokm2USI-Rs70FK8V70jutVNFdEdhE,553
@@ -1813,7 +1813,7 @@ awscli/examples/ec2/create-instance-event-window.rst,sha256=nKP5xiNmqnS_fc67dRp7
1813
1813
  awscli/examples/ec2/create-instance-export-task.rst,sha256=CBIVQL-kJPdhGfwjTs1VthHLrUoVm31_WKtZrrY8r9s,921
1814
1814
  awscli/examples/ec2/create-internet-gateway.rst,sha256=Kf1p3ayv6xbeqLxev3Plr8lmetC3ya1vdaig5tqmdBY,790
1815
1815
  awscli/examples/ec2/create-ipam-pool.rst,sha256=aquM5RsrXFqtvPyTzZ2eH4Ft3Uw7YNbCPb-UWZEArps,2371
1816
- awscli/examples/ec2/create-ipam-resource-discovery.rst,sha256=74zqMWSuio2ngmmH1T2pNds-y3LFWbzkW2fTy7tM0wo,3333
1816
+ awscli/examples/ec2/create-ipam-resource-discovery.rst,sha256=Cz4cWC7taN9bc8iGD99J_MJ3JumsIfnXnqRai6NmwNU,3315
1817
1817
  awscli/examples/ec2/create-ipam-scope.rst,sha256=SwlR6f1Fc9Lc18nU6A9b7viqJiJZ_EyL0nnxiqRF0To,1482
1818
1818
  awscli/examples/ec2/create-ipam.rst,sha256=LXui8QGNRALd_2AM-dHBecNK2b36NMbDAbwCo8-km3Y,1677
1819
1819
  awscli/examples/ec2/create-key-pair.rst,sha256=FBy6rOueSKi0LMmGjMjz37lx1adVquR0pcRxNG6ptCA,435
@@ -1886,7 +1886,7 @@ awscli/examples/ec2/delete-fpga-image.rst,sha256=vHez2jE3614rK3lFTOsG3fZ_GpWWBu0
1886
1886
  awscli/examples/ec2/delete-instance-connect-endpoint.rst,sha256=paF-XiUe6TvMM3VxiLWvzQGDw6W45pllmSu2aDK8QFI,1092
1887
1887
  awscli/examples/ec2/delete-instance-event-window.rst,sha256=GNjRGqZLjRbsvw5oVXvcjTihA80V0UHS4Yys0FR6g4M,1411
1888
1888
  awscli/examples/ec2/delete-internet-gateway.rst,sha256=enHhdTkIsTXXpzZ_2ewMBHCR44RKqTidx2GyMU4WzXg,420
1889
- awscli/examples/ec2/delete-ipam-pool.rst,sha256=4hLjCKD93XWAZcHQ9du3xVq4mqb1oHXkHaz1DFdJiP4,1768
1889
+ awscli/examples/ec2/delete-ipam-pool.rst,sha256=_nfugfACVOPZjDf5kpfbquEnkaQgKfLTcqb01nYtDrU,1750
1890
1890
  awscli/examples/ec2/delete-ipam-resource-discovery.rst,sha256=MFBRDt0qwrlJxa_VaKKKeh6wEPeuLrq3b6kpa5YwpFA,1659
1891
1891
  awscli/examples/ec2/delete-ipam-scope.rst,sha256=ufzln3VmRqJcI3V4_IJLAtUD_7ScF0XrnvKOuDwmKJs,917
1892
1892
  awscli/examples/ec2/delete-ipam.rst,sha256=nppIB9VN6n0hpRrCjLCEksd0BVebsyyeoZencX8ITdY,1091
@@ -1952,7 +1952,7 @@ awscli/examples/ec2/deregister-transit-gateway-multicast-group-members.rst,sha25
1952
1952
  awscli/examples/ec2/deregister-transit-gateway-multicast-group-source.rst,sha256=zJ6nION1LtOudzSfHLLEksbDmtaI4nKxeGuseFBEHmc,938
1953
1953
  awscli/examples/ec2/describe-account-attributes.rst,sha256=FLUxOsd0neh7HuoED_EMxwW_D7KRkSlXAwPENooeP3Q,2187
1954
1954
  awscli/examples/ec2/describe-address-transfers.rst,sha256=zvSosqO2HAd_M0JqFgkliSdQ6XnbvvT7jN2V5A5LVLc,861
1955
- awscli/examples/ec2/describe-addresses-attribute.rst,sha256=NRNI998KZJSTodxAh3zlbioYWfYregYHTs76jym98SA,1294
1955
+ awscli/examples/ec2/describe-addresses-attribute.rst,sha256=Ll7PECbrbooH1ldv1Dt8Xbq1ya4U-sr7EF0T5NwDzmQ,1276
1956
1956
  awscli/examples/ec2/describe-addresses.rst,sha256=DCwIa06uu7VnWipwqOjn87tXT6R95sgPJjBoEODZuMg,4145
1957
1957
  awscli/examples/ec2/describe-aggregate-id-format.rst,sha256=aV1AUltYLkn4wB68GIxlOvv6ewpbFbDuCBZ_iW28ES8,1161
1958
1958
  awscli/examples/ec2/describe-availability-zones.rst,sha256=apNuCT2oQhwxfExB9Lu-xqYITxz9oN2y8aze-rO4zvs,2272
@@ -2171,7 +2171,7 @@ awscli/examples/ec2/get-instance-types-from-instance-requirements.rst,sha256=37n
2171
2171
  awscli/examples/ec2/get-instance-uefi-data.rst,sha256=ezK8BLR5uV8WIW_CN1FssqVeImSfKwYEdhvFNDlOWmY,680
2172
2172
  awscli/examples/ec2/get-ipam-address-history.rst,sha256=7j7mhanjU4A7MlBSLS4Vpgfnqz2dXLHKahRczLoFqFM,2497
2173
2173
  awscli/examples/ec2/get-ipam-discovered-accounts.rst,sha256=oN08zP-7I7VMRM-PJDKGbBOlGTqGkQo38nOJVelozWc,1342
2174
- awscli/examples/ec2/get-ipam-discovered-public-addresses.rst,sha256=XF3J3ZQdulj_v7T3yzoScH2acSJgvEp0m-NZDGtEbfg,2923
2174
+ awscli/examples/ec2/get-ipam-discovered-public-addresses.rst,sha256=h3Cp9lA13MXVM6xJ_3UjtbBacL6vVZHfoGSDc42xzto,2905
2175
2175
  awscli/examples/ec2/get-ipam-discovered-resource-cidrs.rst,sha256=P1YVs485Su5WODHr5N1pZVmROs6R_LbyAW7GyxZa-BA,2609
2176
2176
  awscli/examples/ec2/get-ipam-pool-allocations.rst,sha256=q-lWN2gMcE44mDQazIavKJGYFbG9gCMEGi9hn0AfagI,908
2177
2177
  awscli/examples/ec2/get-ipam-pool-cidrs.rst,sha256=9-pITn5MevbeX6As2ZIbcPBbo8VpUgPMlgvNT-0jUUk,573
@@ -2227,8 +2227,8 @@ awscli/examples/ec2/modify-instance-metadata-options.rst,sha256=-1NPtf2Srz92en7r
2227
2227
  awscli/examples/ec2/modify-instance-placement.rst,sha256=2eupiaaYlUHB1f0r_VGKNpPDpfghYweNht8rjvU5vyQ,2676
2228
2228
  awscli/examples/ec2/modify-ipam-pool.rst,sha256=2RS1FrvcNjvhcErkZvHS5AFImhrEieDTsitKZV-CFuQ,1861
2229
2229
  awscli/examples/ec2/modify-ipam-resource-cidr.rst,sha256=aKIAgYbeVexKp7BsYdN9pj6NzRFKQElPTWohJEwHQGU,2180
2230
- awscli/examples/ec2/modify-ipam-resource-discovery.rst,sha256=2397KUO84_Mu8i9C2_HmEnhClZWLpQ5blGeef-iz3gI,1803
2231
- awscli/examples/ec2/modify-ipam-scope.rst,sha256=Sc3CxUCE2YHWFwiVeXVhJLgnOno-T7mYjic7-TcMSaQ,1320
2230
+ awscli/examples/ec2/modify-ipam-resource-discovery.rst,sha256=ivJmzmDr_Nr04-7QqWhiRN_vcBZAK9kfGU5KM2PHYDI,1785
2231
+ awscli/examples/ec2/modify-ipam-scope.rst,sha256=Zj1zeLdT_FIG_ea4mPapEc3HRKhFRhyVu33KM4O5jnI,1302
2232
2232
  awscli/examples/ec2/modify-ipam.rst,sha256=IweQuXxIZ-YQ2ogyziwPThqdY7Zl7Au_yS4s79bmtj0,1266
2233
2233
  awscli/examples/ec2/modify-launch-template.rst,sha256=AXynLuzV6YQvDAVGx9Vii6FjlH9VYgffdz4qy15bzE4,570
2234
2234
  awscli/examples/ec2/modify-managed-prefix-list.rst,sha256=0OiG8CTDs7HfyNR2MoLsxRT38C5XOVeeNGCFT-7JmXQ,893
@@ -2289,7 +2289,7 @@ awscli/examples/ec2/reject-vpc-endpoint-connections.rst,sha256=DbjfMeYIeizS86Zpz
2289
2289
  awscli/examples/ec2/reject-vpc-peering-connection.rst,sha256=JQFVvpwvGkSQDeW-DXafkKqgs9-MXgXVZQ9CcKoyOAI,239
2290
2290
  awscli/examples/ec2/release-address.rst,sha256=tvdX28LtoL6lgr-rij_2pIC9RZ3NZ8WqcUYI4nGNBcE,498
2291
2291
  awscli/examples/ec2/release-hosts.rst,sha256=ryUv_FQrZ1cS8t_iuAEBdiyclNd3HhiLhIji1UqTFLE,376
2292
- awscli/examples/ec2/release-ipam-pool-allocation.rst,sha256=6D_zXqtb0CC4bBvcK9A_n3B5PHd4zAQzALqVVyZrZ7k,2089
2292
+ awscli/examples/ec2/release-ipam-pool-allocation.rst,sha256=j3nKsrUj2dqc_VA6tB4_UJgJDEGKOBIjNIFMvZo2JGo,2017
2293
2293
  awscli/examples/ec2/replace-iam-instance-profile-association.rst,sha256=LFYr1LK8q2SL2-rmV2ib_cVMz5vi7YVveARxPe-7N4M,777
2294
2294
  awscli/examples/ec2/replace-network-acl-association.rst,sha256=qhoKdDDMbVkrkbXqMnsKRGMD3BXBxFPCYunBK_u14nE,349
2295
2295
  awscli/examples/ec2/replace-network-acl-entry.rst,sha256=3VTR4xlVJeUO4XXMMSldoe446QLWhVeWPltJzs2oM5w,405
@@ -6180,13 +6180,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
6180
6180
  awscli/topics/s3-config.rst,sha256=5EIVd4ggLBHtzjtHFvQp9hY415yMGZiG7S_rO9qy2t0,11663
6181
6181
  awscli/topics/s3-faq.rst,sha256=9qO0HFI6F9hx1wVEUDl8Jy6yoCUd9zbtv-Z0Re4dsiw,2934
6182
6182
  awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
6183
- awscli-1.42.1.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6184
- awscli-1.42.1.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6185
- awscli-1.42.1.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6186
- awscli-1.42.1.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6187
- awscli-1.42.1.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6188
- awscli-1.42.1.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6189
- awscli-1.42.1.dist-info/METADATA,sha256=MF_Bju55DgwDKdHco3luUhDy41kDH7Nc7qUlfdYUPrM,11126
6190
- awscli-1.42.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6191
- awscli-1.42.1.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6192
- awscli-1.42.1.dist-info/RECORD,,
6183
+ awscli-1.42.3.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6184
+ awscli-1.42.3.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6185
+ awscli-1.42.3.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6186
+ awscli-1.42.3.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6187
+ awscli-1.42.3.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6188
+ awscli-1.42.3.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6189
+ awscli-1.42.3.dist-info/METADATA,sha256=a5a5Akb-EsUWFlp4os_NylL0dZHoRd0PShaYfmT8jzc,11126
6190
+ awscli-1.42.3.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6191
+ awscli-1.42.3.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6192
+ awscli-1.42.3.dist-info/RECORD,,
File without changes