awscli 1.42.69__py3-none-any.whl → 1.44.6__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.
Potentially problematic release.
This version of awscli might be problematic. Click here for more details.
- awscli/__init__.py +1 -1
- awscli/alias.py +3 -3
- awscli/argprocess.py +2 -1
- awscli/bcdoc/docevents.py +3 -0
- awscli/clidocs.py +19 -2
- awscli/clidriver.py +55 -9
- awscli/customizations/argrename.py +1 -0
- awscli/customizations/cliinputjson.py +4 -0
- awscli/customizations/cloudformation/deploy.py +19 -3
- awscli/customizations/cloudtrail/validation.py +22 -2
- awscli/customizations/commands.py +2 -1
- awscli/customizations/emr/argumentschema.py +355 -344
- awscli/customizations/emr/createcluster.py +12 -0
- awscli/customizations/emr/emrutils.py +83 -50
- awscli/customizations/emr/helptext.py +10 -0
- awscli/customizations/emr/steputils.py +92 -52
- awscli/customizations/globalargs.py +169 -0
- awscli/customizations/paginate.py +66 -1
- awscli/customizations/s3/filegenerator.py +4 -1
- awscli/customizations/s3/fileinfo.py +4 -1
- awscli/customizations/s3/fileinfobuilder.py +6 -0
- awscli/customizations/s3/s3handler.py +9 -0
- awscli/customizations/s3/subcommands.py +147 -6
- awscli/customizations/s3/syncstrategy/base.py +9 -0
- awscli/customizations/s3/syncstrategy/caseconflict.py +92 -0
- awscli/customizations/s3/utils.py +14 -0
- awscli/customizations/scalarparse.py +42 -5
- awscli/data/cli.json +5 -0
- awscli/examples/cloudformation/create-generated-template.rst +50 -0
- awscli/examples/cloudformation/create-stack-refactor.rst +16 -0
- awscli/examples/cloudformation/delete-generated-template.rst +10 -0
- awscli/examples/cloudformation/describe-generated-template.rst +62 -0
- awscli/examples/cloudformation/describe-resource-scan.rst +38 -0
- awscli/examples/cloudformation/describe-stack-refactor.rst +20 -0
- awscli/examples/cloudformation/execute-stack-refactor.rst +10 -0
- awscli/examples/cloudformation/list-generated-templates.rst +41 -0
- awscli/examples/cloudformation/list-resource-scan-related-resources.rst +47 -0
- awscli/examples/cloudformation/list-resource-scan-resources.rst +30 -0
- awscli/examples/cloudformation/list-stack-refactor-actions.rst +71 -0
- awscli/examples/cloudformation/start-resource-scan.rst +14 -0
- awscli/examples/global_options.rst +4 -0
- awscli/examples/global_synopsis.rst +1 -0
- awscli/examples/medical-imaging/create-datastore.rst +19 -2
- awscli/examples/medical-imaging/get-datastore.rst +24 -1
- awscli/paramfile.py +21 -4
- awscli/testutils.py +17 -0
- awscli/topics/s3-case-insensitivity.rst +105 -0
- awscli/topics/topic-tags.json +16 -0
- awscli/utils.py +19 -2
- {awscli-1.42.69.dist-info → awscli-1.44.6.dist-info}/METADATA +3 -3
- {awscli-1.42.69.dist-info → awscli-1.44.6.dist-info}/RECORD +59 -45
- {awscli-1.42.69.data → awscli-1.44.6.data}/scripts/aws +0 -0
- {awscli-1.42.69.data → awscli-1.44.6.data}/scripts/aws.cmd +0 -0
- {awscli-1.42.69.data → awscli-1.44.6.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.42.69.data → awscli-1.44.6.data}/scripts/aws_completer +0 -0
- {awscli-1.42.69.data → awscli-1.44.6.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.42.69.dist-info → awscli-1.44.6.dist-info}/LICENSE.txt +0 -0
- {awscli-1.42.69.dist-info → awscli-1.44.6.dist-info}/WHEEL +0 -0
- {awscli-1.42.69.dist-info → awscli-1.44.6.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
**To create a data store**
|
|
1
|
+
**Example 1: To create a data store**
|
|
2
2
|
|
|
3
|
-
The following ``create-datastore`` code example creates a data store with the name ``my-datastore``.
|
|
3
|
+
The following ``create-datastore`` code example creates a data store with the name ``my-datastore``.
|
|
4
|
+
When you create a datastore without specifying a ``--lossless-storage-format``, AWS HealthImaging defaults to HTJ2K (High Throughput JPEG 2000). ::
|
|
4
5
|
|
|
5
6
|
aws medical-imaging create-datastore \
|
|
6
7
|
--datastore-name "my-datastore"
|
|
@@ -12,4 +13,20 @@ Output::
|
|
|
12
13
|
"datastoreStatus": "CREATING"
|
|
13
14
|
}
|
|
14
15
|
|
|
16
|
+
**Example 2: To create a data store with JPEG 2000 Lossless storage format**
|
|
17
|
+
|
|
18
|
+
A data store configured with JPEG 2000 Lossless storage format will transcode and persist lossless image frames in JPEG 2000 format. Image frames can then be retrieved in
|
|
19
|
+
JPEG 2000 Lossless without transcoding. The following ``create-datastore`` code example creates a data store configured for JPEG 2000 Lossless storage format with the name ``my-datastore``. ::
|
|
20
|
+
|
|
21
|
+
aws medical-imaging create-datastore \
|
|
22
|
+
--datastore-name "my-datastore" \
|
|
23
|
+
--lossless-storage-format JPEG_2000_LOSSLESS
|
|
24
|
+
|
|
25
|
+
Output::
|
|
26
|
+
|
|
27
|
+
{
|
|
28
|
+
"datastoreId": "12345678901234567890123456789012",
|
|
29
|
+
"datastoreStatus": "CREATING"
|
|
30
|
+
}
|
|
31
|
+
|
|
15
32
|
For more information, see `Creating a data store <https://docs.aws.amazon.com/healthimaging/latest/devguide/create-data-store.html>`__ in the *AWS HealthImaging Developer Guide*.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
**To get a data store's properties**
|
|
1
|
+
**Example 1: To get a data store's properties**
|
|
2
2
|
|
|
3
3
|
The following ``get-datastore`` code example gets a data store's properties. ::
|
|
4
4
|
|
|
@@ -13,6 +13,29 @@ Output::
|
|
|
13
13
|
"datastoreId": "12345678901234567890123456789012",
|
|
14
14
|
"datastoreName": "TestDatastore123",
|
|
15
15
|
"datastoreStatus": "ACTIVE",
|
|
16
|
+
"losslessStorageFormat": "HTJ2K"
|
|
17
|
+
"datastoreArn": "arn:aws:medical-imaging:us-east-1:123456789012:datastore/12345678901234567890123456789012",
|
|
18
|
+
"createdAt": "2022-11-15T23:33:09.643000+00:00",
|
|
19
|
+
"updatedAt": "2022-11-15T23:33:09.643000+00:00"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
**Example 2: To get data store's properties configured for JPEG2000**
|
|
24
|
+
|
|
25
|
+
The following ``get-datastore`` code example gets a data store's properties for a data store configured for JPEG 2000 Lossless storage format. ::
|
|
26
|
+
|
|
27
|
+
aws medical-imaging get-datastore \
|
|
28
|
+
--datastore-id 12345678901234567890123456789012
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
Output::
|
|
32
|
+
|
|
33
|
+
{
|
|
34
|
+
"datastoreProperties": {
|
|
35
|
+
"datastoreId": "12345678901234567890123456789012",
|
|
36
|
+
"datastoreName": "TestDatastore123",
|
|
37
|
+
"datastoreStatus": "ACTIVE",
|
|
38
|
+
"losslessStorageFormat": "JPEG_2000_LOSSLESS",
|
|
16
39
|
"datastoreArn": "arn:aws:medical-imaging:us-east-1:123456789012:datastore/12345678901234567890123456789012",
|
|
17
40
|
"createdAt": "2022-11-15T23:33:09.643000+00:00",
|
|
18
41
|
"updatedAt": "2022-11-15T23:33:09.643000+00:00"
|
awscli/paramfile.py
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
11
11
|
# ANY KIND, either express or implied. See the License for the specific
|
|
12
12
|
# language governing permissions and limitations under the License.
|
|
13
|
+
import sys
|
|
14
|
+
|
|
13
15
|
import copy
|
|
14
16
|
import logging
|
|
15
17
|
import os
|
|
@@ -20,6 +22,7 @@ from botocore.httpsession import URLLib3Session
|
|
|
20
22
|
|
|
21
23
|
from awscli import argprocess
|
|
22
24
|
from awscli.compat import compat_open
|
|
25
|
+
from awscli.utils import resolve_v2_debug_mode
|
|
23
26
|
|
|
24
27
|
logger = logging.getLogger(__name__)
|
|
25
28
|
|
|
@@ -166,7 +169,7 @@ class URIArgumentHandler:
|
|
|
166
169
|
prefixes.update(REMOTE_PREFIX_MAP)
|
|
167
170
|
self._prefixes = prefixes
|
|
168
171
|
|
|
169
|
-
def __call__(self, event_name, param, value, **kwargs):
|
|
172
|
+
def __call__(self, event_name, param, value, parsed_globals=None, **kwargs):
|
|
170
173
|
"""Handler that supports param values from URIs."""
|
|
171
174
|
cli_argument = param
|
|
172
175
|
qualified_param_name = '.'.join(event_name.split('.')[1:])
|
|
@@ -175,13 +178,27 @@ class URIArgumentHandler:
|
|
|
175
178
|
):
|
|
176
179
|
return
|
|
177
180
|
else:
|
|
178
|
-
return self._check_for_uri_param(cli_argument, value)
|
|
181
|
+
return self._check_for_uri_param(cli_argument, value, parsed_globals)
|
|
179
182
|
|
|
180
|
-
def _check_for_uri_param(self, param, value):
|
|
183
|
+
def _check_for_uri_param(self, param, value, parsed_globals):
|
|
181
184
|
if isinstance(value, list) and len(value) == 1:
|
|
182
185
|
value = value[0]
|
|
183
186
|
try:
|
|
184
|
-
|
|
187
|
+
param_file = get_paramfile(value, self._prefixes)
|
|
188
|
+
if param_file is not None and resolve_v2_debug_mode(parsed_globals):
|
|
189
|
+
print(
|
|
190
|
+
'\nAWS CLI v2 UPGRADE WARNING: For input parameters that '
|
|
191
|
+
'have a prefix of `http://` or `https://`, AWS CLI v2 '
|
|
192
|
+
'will not automatically request the content of the URL '
|
|
193
|
+
'for the parameter, and the `cli_follow_urlparam` option '
|
|
194
|
+
'has been removed. For guidance on how to adapt this '
|
|
195
|
+
'command to AWS CLI v2 usage, see '
|
|
196
|
+
'https://docs.aws.amazon.com/cli/latest/userguide/'
|
|
197
|
+
'cliv2-migration-changes.html'
|
|
198
|
+
'#cliv2-migration-paramfile.\n',
|
|
199
|
+
file=sys.stderr,
|
|
200
|
+
)
|
|
201
|
+
return param_file
|
|
185
202
|
except ResourceLoadingError as e:
|
|
186
203
|
raise argprocess.ParamError(param.cli_name, str(e))
|
|
187
204
|
|
awscli/testutils.py
CHANGED
|
@@ -27,7 +27,9 @@ import json
|
|
|
27
27
|
import logging
|
|
28
28
|
import os
|
|
29
29
|
import platform
|
|
30
|
+
import random
|
|
30
31
|
import shutil
|
|
32
|
+
import string
|
|
31
33
|
import sys
|
|
32
34
|
import tempfile
|
|
33
35
|
import time
|
|
@@ -36,6 +38,7 @@ import uuid
|
|
|
36
38
|
from pprint import pformat
|
|
37
39
|
from subprocess import PIPE, Popen
|
|
38
40
|
from unittest import mock
|
|
41
|
+
from pathlib import Path
|
|
39
42
|
|
|
40
43
|
import botocore.loaders
|
|
41
44
|
from botocore.awsrequest import AWSResponse
|
|
@@ -49,6 +52,11 @@ _LOADER = botocore.loaders.Loader()
|
|
|
49
52
|
INTEG_LOG = logging.getLogger('awscli.tests.integration')
|
|
50
53
|
AWS_CMD = None
|
|
51
54
|
|
|
55
|
+
with tempfile.TemporaryDirectory() as tmpdir:
|
|
56
|
+
with open(Path(tmpdir) / 'aws-cli-tmp-file', 'w') as f:
|
|
57
|
+
pass
|
|
58
|
+
CASE_INSENSITIVE = (Path(tmpdir) / 'AWS-CLI-TMP-FILE').exists()
|
|
59
|
+
|
|
52
60
|
|
|
53
61
|
def skip_if_windows(reason):
|
|
54
62
|
"""Decorator to skip tests that should not be run on windows.
|
|
@@ -69,6 +77,15 @@ def skip_if_windows(reason):
|
|
|
69
77
|
return decorator
|
|
70
78
|
|
|
71
79
|
|
|
80
|
+
def skip_if_case_sensitive():
|
|
81
|
+
def decorator(func):
|
|
82
|
+
return unittest.skipIf(
|
|
83
|
+
not CASE_INSENSITIVE,
|
|
84
|
+
"This test requires a case-insensitive filesystem."
|
|
85
|
+
)(func)
|
|
86
|
+
return decorator
|
|
87
|
+
|
|
88
|
+
|
|
72
89
|
def create_clidriver():
|
|
73
90
|
driver = awscli.clidriver.create_clidriver()
|
|
74
91
|
session = driver.session
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
:title: AWS CLI S3 Case-Insensitivity
|
|
2
|
+
:description: Using 'aws s3' commands on case-insensitive filesystems
|
|
3
|
+
:category: S3
|
|
4
|
+
:related command: s3 cp, s3 sync, s3 mv
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
This page explains how to detect and handle potential case conflicts when
|
|
8
|
+
downloading multiple objects from S3 to a local case-insensitive filesystem
|
|
9
|
+
using a single AWS CLI command.
|
|
10
|
+
|
|
11
|
+
Case conflicts
|
|
12
|
+
==============
|
|
13
|
+
S3 object keys are case-sensitive meaning that a bucket can have a set of
|
|
14
|
+
key names that differ only by case, for example, ``a.txt`` and ``A.txt``.
|
|
15
|
+
|
|
16
|
+
The AWS CLI offers high-level S3 commands that manage transfers of
|
|
17
|
+
multiple S3 objects using a single command:
|
|
18
|
+
|
|
19
|
+
* ``aws s3 sync``
|
|
20
|
+
* ``aws s3 cp --recursive``
|
|
21
|
+
* ``aws s3 mv --recursive``
|
|
22
|
+
|
|
23
|
+
Case conflicts can occur on case-insensitive filesystems when an S3 bucket
|
|
24
|
+
has multiple objects whose keys differ only by case and a single AWS CLI
|
|
25
|
+
command is called to download multiple S3 objects **OR** a local file
|
|
26
|
+
already exists whose name differs only by case.
|
|
27
|
+
|
|
28
|
+
For example, consider an S3 bucket with the following stored objects:
|
|
29
|
+
|
|
30
|
+
* ``a.txt``
|
|
31
|
+
* ``A.txt``
|
|
32
|
+
|
|
33
|
+
When the following AWS CLI command is called, the AWS CLI will submit
|
|
34
|
+
requests to download ``a.txt`` and ``A.txt``. Since only
|
|
35
|
+
one can exist on a case-insensitive filesystem, the last download to finish
|
|
36
|
+
will be the file that's locally available.
|
|
37
|
+
|
|
38
|
+
.. code-block::
|
|
39
|
+
|
|
40
|
+
aws s3 sync s3://examplebucket ./mylocaldir
|
|
41
|
+
|
|
42
|
+
Detecting and handling case conflicts
|
|
43
|
+
=====================================
|
|
44
|
+
To detect and handle case conflicts, you can specify the ``--case-conflict``
|
|
45
|
+
parameter. The following values are valid options:
|
|
46
|
+
|
|
47
|
+
* ``error`` - When a case conflict is detected, the command will immediately
|
|
48
|
+
fail and abort in-progress downloads.
|
|
49
|
+
* ``warn`` - (Default) When a case conflict is detected, the AWS CLI will
|
|
50
|
+
display a warning.
|
|
51
|
+
* ``skip`` - When a case conflict is detected, the command will skip
|
|
52
|
+
downloading the object and continue and display a warning.
|
|
53
|
+
* ``ignore`` - Case conflicts will not be detected or handled.
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
Continuing the prior example, the following describes what happens when
|
|
57
|
+
appending the ``--case-conflict`` parameter with possible values:
|
|
58
|
+
|
|
59
|
+
``--case-conflict error``
|
|
60
|
+
|
|
61
|
+
1. Submit a download request for ``A.txt``.
|
|
62
|
+
2. Detect that ``a.txt`` conflicts with an object that's been submitted for download.
|
|
63
|
+
3. Throw an error. If ``A.txt`` finished downloading, it will be locally available. Otherwise, the download request for ``A.txt`` will be aborted.
|
|
64
|
+
|
|
65
|
+
``--case-conflict warn``
|
|
66
|
+
|
|
67
|
+
1. Submit a download request for ``A.txt``.
|
|
68
|
+
2. Detect that ``a.txt`` conflicts with an object that's been submitted for download.
|
|
69
|
+
3. Display a warning.
|
|
70
|
+
4. Submit a download request for ``a.txt``, downloading ``A.txt`` and ``a.txt`` in parallel.
|
|
71
|
+
|
|
72
|
+
``--case-conflict skip``
|
|
73
|
+
|
|
74
|
+
1. Submit a download request for ``A.txt``.
|
|
75
|
+
2. Detect that ``a.txt`` conflicts with an object that's been submitted for download.
|
|
76
|
+
3. Skip downloading ``a.txt`` and continue.
|
|
77
|
+
|
|
78
|
+
``--case-conflict ignore``
|
|
79
|
+
|
|
80
|
+
1. Submit a download request for ``A.txt``.
|
|
81
|
+
2. Submit a download request for ``a.txt``, downloading ``A.txt`` and ``a.txt`` in parallel.
|
|
82
|
+
|
|
83
|
+
If your local filesystem is case-sensitive, there's no need to detect and
|
|
84
|
+
handle case conflicts. We recommend setting ``--case-conflict ignore``
|
|
85
|
+
in this case.
|
|
86
|
+
|
|
87
|
+
S3 Express directory buckets
|
|
88
|
+
============================
|
|
89
|
+
Detecting case conflicts is **NOT** supported when the source is an S3 Express
|
|
90
|
+
directory bucket. When operating on directory buckets, valid values for the
|
|
91
|
+
``--case-conflict`` parameter are:
|
|
92
|
+
|
|
93
|
+
* ``warn``
|
|
94
|
+
* ``ignore``
|
|
95
|
+
|
|
96
|
+
The following values are invalid when operating on directory buckets:
|
|
97
|
+
|
|
98
|
+
* ``error``
|
|
99
|
+
* ``skip``
|
|
100
|
+
|
|
101
|
+
For example, calling the following command will fail:
|
|
102
|
+
|
|
103
|
+
.. code-block::
|
|
104
|
+
|
|
105
|
+
aws s3 cp s3://mydirbucket--usw2-az1--x-s3 ./mylocaldir --recursive --case-conflict error
|
awscli/topics/topic-tags.json
CHANGED
|
@@ -69,5 +69,21 @@
|
|
|
69
69
|
"title": [
|
|
70
70
|
"AWS CLI S3 FAQ"
|
|
71
71
|
]
|
|
72
|
+
},
|
|
73
|
+
"s3-case-insensitivity": {
|
|
74
|
+
"category": [
|
|
75
|
+
"S3"
|
|
76
|
+
],
|
|
77
|
+
"description": [
|
|
78
|
+
"Using 'aws s3' commands on case-insensitive filesystems"
|
|
79
|
+
],
|
|
80
|
+
"related command": [
|
|
81
|
+
"s3 cp",
|
|
82
|
+
"s3 sync",
|
|
83
|
+
"s3 mv"
|
|
84
|
+
],
|
|
85
|
+
"title": [
|
|
86
|
+
"AWS CLI S3 Case-Insensitivity"
|
|
87
|
+
]
|
|
72
88
|
}
|
|
73
89
|
}
|
awscli/utils.py
CHANGED
|
@@ -134,6 +134,18 @@ def find_service_and_method_in_event_name(event_name):
|
|
|
134
134
|
return service_name, operation_name
|
|
135
135
|
|
|
136
136
|
|
|
137
|
+
def resolve_v2_debug_mode(args):
|
|
138
|
+
# Resolve whether v2-debug mode is enabled,
|
|
139
|
+
# following the correct precedence order.
|
|
140
|
+
if args is None:
|
|
141
|
+
return False
|
|
142
|
+
if getattr(args, 'v2_debug', False):
|
|
143
|
+
return True
|
|
144
|
+
if os.environ.get('AWS_CLI_UPGRADE_DEBUG_MODE', '').lower() == 'true':
|
|
145
|
+
return True
|
|
146
|
+
return False
|
|
147
|
+
|
|
148
|
+
|
|
137
149
|
def is_document_type(shape):
|
|
138
150
|
"""Check if shape is a document type"""
|
|
139
151
|
return getattr(shape, 'is_document_type', False)
|
|
@@ -205,8 +217,13 @@ def ignore_ctrl_c():
|
|
|
205
217
|
signal.signal(signal.SIGINT, original)
|
|
206
218
|
|
|
207
219
|
|
|
208
|
-
def emit_top_level_args_parsed_event(session, args):
|
|
209
|
-
session.emit(
|
|
220
|
+
def emit_top_level_args_parsed_event(session, args, remaining=None):
|
|
221
|
+
session.emit(
|
|
222
|
+
'top-level-args-parsed',
|
|
223
|
+
parsed_args=args,
|
|
224
|
+
session=session,
|
|
225
|
+
remaining_args=remaining,
|
|
226
|
+
)
|
|
210
227
|
|
|
211
228
|
|
|
212
229
|
def is_a_tty():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: awscli
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.44.6
|
|
4
4
|
Summary: Universal Command Line Environment for AWS.
|
|
5
5
|
Home-page: http://aws.amazon.com/cli/
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -24,9 +24,9 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.14
|
|
25
25
|
Requires-Python: >= 3.9
|
|
26
26
|
License-File: LICENSE.txt
|
|
27
|
-
Requires-Dist: botocore (==1.
|
|
27
|
+
Requires-Dist: botocore (==1.42.16)
|
|
28
28
|
Requires-Dist: docutils (<=0.19,>=0.18.1)
|
|
29
|
-
Requires-Dist: s3transfer (<0.
|
|
29
|
+
Requires-Dist: s3transfer (<0.17.0,>=0.16.0)
|
|
30
30
|
Requires-Dist: PyYAML (<6.1,>=3.10)
|
|
31
31
|
Requires-Dist: colorama (<0.4.7,>=0.2.5)
|
|
32
32
|
Requires-Dist: rsa (<4.8,>=3.1.2)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
awscli/__init__.py,sha256=
|
|
1
|
+
awscli/__init__.py,sha256=iI_tnA334N5qzaLdzCYonWGIc8riH7QF4p3ONRh3gfQ,1533
|
|
2
2
|
awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
|
|
3
|
-
awscli/alias.py,sha256=
|
|
3
|
+
awscli/alias.py,sha256=gB5jGInOl97UbgwGuKCjR_a_VudK0lAV1W6U_zeetZA,11348
|
|
4
4
|
awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
|
|
5
|
-
awscli/argprocess.py,sha256=
|
|
5
|
+
awscli/argprocess.py,sha256=e_EgHOAkdBHQEFCPf-mFcq7MHox8dLC3kJYxGSzA0Ps,21235
|
|
6
6
|
awscli/arguments.py,sha256=7uRbPe8rK56rpgEHD2gx9-GS-Yv1iJuWd_aooj7ebYY,18827
|
|
7
|
-
awscli/clidocs.py,sha256=
|
|
8
|
-
awscli/clidriver.py,sha256=
|
|
7
|
+
awscli/clidocs.py,sha256=VWu0ECPAt1MZwdCTqdrrzrRDputralHKzyozt7LOOho,32615
|
|
8
|
+
awscli/clidriver.py,sha256=REnBxLQWqPjxhkaNpSjCZuIOF0hxdkeBBMEWeMAMa_w,28578
|
|
9
9
|
awscli/commands.py,sha256=fJVPJajqYCl9pieIphIVYYQvbwdCbufkDj87I7W0JwE,2097
|
|
10
10
|
awscli/compat.py,sha256=_W9vVZnQTVx0o_hKiEuauCZgQgKkqGK4zGGT44rsaCU,16835
|
|
11
11
|
awscli/completer.py,sha256=vNCS1kr1Q_JO8fLh5YGwfUK3sSaDp3k8rrpa_cCIgY4,5986
|
|
@@ -13,40 +13,40 @@ awscli/errorhandler.py,sha256=2bIBZrKvFICKAhoD180Cx7rRX608pG9RHsmlAcRb0wc,3139
|
|
|
13
13
|
awscli/formatter.py,sha256=EI_dUo5uGf2YxWg5js4un_cksF5h58KuvOkkmptuu4o,10951
|
|
14
14
|
awscli/handlers.py,sha256=6isJ2Oo4N1tX8yh2GT4v1PKMqZraCNuH1Mb-7MLjIPs,10710
|
|
15
15
|
awscli/help.py,sha256=-u2OtAdW9X8891FBA70xUC5Ky9lhjiWgtbh4hm-DoW8,14205
|
|
16
|
-
awscli/paramfile.py,sha256=
|
|
16
|
+
awscli/paramfile.py,sha256=3ZmlqMyi_2pcEA5noWzfGONA6CH-4OsIJqtUZrF7yH0,11810
|
|
17
17
|
awscli/plugin.py,sha256=B3wgRerhgFK1v-QQeASYv2VNLSa9oMuD4X_hcLSescI,2265
|
|
18
18
|
awscli/schema.py,sha256=vNFkuE2BsgeqesRTWRhuSU341eqiKuMF5QAJvClyaKw,6394
|
|
19
19
|
awscli/shorthand.py,sha256=ziXUkFyJGcDG8dMQzDMgdUSpZpe88gGBRk5Skkg60W4,18379
|
|
20
20
|
awscli/table.py,sha256=VCyPjNHK4wO_-KKRz7zvuuNp2RLHb6DUPVbPdueji3w,15459
|
|
21
|
-
awscli/testutils.py,sha256=
|
|
21
|
+
awscli/testutils.py,sha256=R_URfOci08TTar0mjfCk6u5BovWYjd-__6nRu2Tw74w,37444
|
|
22
22
|
awscli/text.py,sha256=pr40cSMkGWZ5n-VXMcEKCo1xO5bK3nUbDK3WLwy2HFE,4177
|
|
23
23
|
awscli/topictags.py,sha256=A1HDK4jE2ZxReOVM1sftjInQXVWL1DRz8DLS5JIGMag,12635
|
|
24
|
-
awscli/utils.py,sha256=
|
|
24
|
+
awscli/utils.py,sha256=29k14fL0jIHFTEErNgxIvMlIV3zYwjGDFH7uM9C7vdU,10594
|
|
25
25
|
awscli/bcdoc/__init__.py,sha256=V2g87AefB2DOD9_3xIF5k9Nv5ttb4_gNJOVvSF0Mp3s,588
|
|
26
|
-
awscli/bcdoc/docevents.py,sha256=
|
|
26
|
+
awscli/bcdoc/docevents.py,sha256=RErca_G76a310UgXncghXcfoQ26ZNGzmqwJ-xgf8DWM,5027
|
|
27
27
|
awscli/bcdoc/docstringparser.py,sha256=-QMoUsJrmnI-G46YbDm2UACU4jpHXonwouG9CFAlzNg,5679
|
|
28
28
|
awscli/bcdoc/restdoc.py,sha256=NXdEjs4gqPOno2dVklr5XnMEes8CIG1pB0Gqet1WhHE,7931
|
|
29
29
|
awscli/bcdoc/style.py,sha256=Zf7DB_WSQgfseH3mnXMqKkE0Q8eC_iNYw3w_Pkx63os,11833
|
|
30
30
|
awscli/bcdoc/textwriter.py,sha256=z6WyK2qm-f4xWFZhcAc_Dori_XrrSsIdkkITQ61De_w,20611
|
|
31
31
|
awscli/customizations/__init__.py,sha256=enP4McjXiSlxQrYPyUcOvpUtzy5Q2p6o9M6ydJPkbD0,1484
|
|
32
32
|
awscli/customizations/addexamples.py,sha256=uxW_EhG5eoMMVujdBiW_C7FWoMANW1Asgmb1iNredMc,2733
|
|
33
|
-
awscli/customizations/argrename.py,sha256=
|
|
33
|
+
awscli/customizations/argrename.py,sha256=oOvvE7mzhPn2rKe6HRztfaJ4t7t_2mwKB9zIETMjnQg,9485
|
|
34
34
|
awscli/customizations/arguments.py,sha256=-0uzhdTqrow2DxR_QH10hdthG7fkb5_IzlpYd49PMjI,8338
|
|
35
35
|
awscli/customizations/assumerole.py,sha256=FUCgT_om8pao6QQyweTpI3sQ-5PPv4TvBUcPBebnAz4,1851
|
|
36
36
|
awscli/customizations/awslambda.py,sha256=JeVW9IVSmFLSwzc7yuf3crFwAl1UZcdEq4jwypLJ5-o,5978
|
|
37
37
|
awscli/customizations/binaryhoist.py,sha256=FAcYkwL7IAGAtwQF1ZjyEZE6iZQr0pPU8IiSFgbierI,3638
|
|
38
|
-
awscli/customizations/cliinputjson.py,sha256=
|
|
38
|
+
awscli/customizations/cliinputjson.py,sha256=06QCMnvkVK2Yhm7jeteAQM6SY9HAZWOCmsglYwkYEmg,4043
|
|
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
42
|
awscli/customizations/codecommit.py,sha256=04LfxFa24whp4znSmhZ4ReZU66rH9gQUY2wKr_fxhZs,7489
|
|
43
|
-
awscli/customizations/commands.py,sha256=
|
|
43
|
+
awscli/customizations/commands.py,sha256=R1lDaDg1VKjG3fkkurBTgiYILIT6Eak-hooJyY9Uhm4,17187
|
|
44
44
|
awscli/customizations/dynamodb.py,sha256=5s0QK_fhphkjeBhfzm9jbMDh3p2oN7GoCazoJuHz4pQ,1919
|
|
45
45
|
awscli/customizations/ecr.py,sha256=Z-MIwu5Frkpt5_tADojmc1vxwdh8B_AnqVQ48drVgxM,4073
|
|
46
46
|
awscli/customizations/ecr_public.py,sha256=g9HzYsNEqu8Ty0T38YrKtcu65L8nJTmS6DBVe437uVY,1753
|
|
47
47
|
awscli/customizations/flatten.py,sha256=Yl9hPS2k87YqyAVXhaLFSA0KhluhZYTKKLXsM-nsfco,9505
|
|
48
48
|
awscli/customizations/generatecliskeleton.py,sha256=G5j4NRqZxkjgZzWCDyd3W64nQZTBxz7Rd0sZIKMC_M4,5803
|
|
49
|
-
awscli/customizations/globalargs.py,sha256=
|
|
49
|
+
awscli/customizations/globalargs.py,sha256=LwrVYrMYuZQqVSfQUOOI7or9H_bc7GoL8FFzLDJRISY,12798
|
|
50
50
|
awscli/customizations/iamvirtmfa.py,sha256=xoQ2the-0D6t6meJkM1FY7A9KTKape2RCV2a3VAljV4,3278
|
|
51
51
|
awscli/customizations/iot.py,sha256=GvkgUZKcDYjqfWOz160wUS7LVE_YhQ8NDZGzBHqsWc8,2399
|
|
52
52
|
awscli/customizations/iot_data.py,sha256=xswSsC1a049sw_VfG75F8l4GyI1GqrE-ux86U2xGH_8,1303
|
|
@@ -54,7 +54,7 @@ awscli/customizations/kinesis.py,sha256=1s76FC9Kp5vw-2DJKVlkiO50n8NGcLI-Itdrl7dx
|
|
|
54
54
|
awscli/customizations/kms.py,sha256=MG52QeazTZ3xokURUqLK4asagZCThssaXv0Dg1JIOhc,909
|
|
55
55
|
awscli/customizations/mturk.py,sha256=4n0c14Ah9ey11uiuW5n4gMlcMq7PQNuapeGSoOEh2lE,1010
|
|
56
56
|
awscli/customizations/overridesslcommonname.py,sha256=VBxkWk2GJr-Zg3SGUTDUTa0uOsxiC7ErkdTMAKiIonI,6444
|
|
57
|
-
awscli/customizations/paginate.py,sha256=
|
|
57
|
+
awscli/customizations/paginate.py,sha256=NsAhxbBf9dkYdhVffRJ4-hHD1U_cipLRmLT5o_gGPXc,14914
|
|
58
58
|
awscli/customizations/preview.py,sha256=5r4RHFS19pxZ79cimbPgL1YOstOjK9OvgUeaZAP0YA8,5189
|
|
59
59
|
awscli/customizations/putmetricdata.py,sha256=FczJBZUGb4mXtSalD1ihwDSjMSDlxZ5V1jm3KpCi-ps,6914
|
|
60
60
|
awscli/customizations/quicksight.py,sha256=r5XrHPIofOfKVZrE6JGUjDKovkgOf19nrsVVzWOHGDY,1457
|
|
@@ -66,7 +66,7 @@ awscli/customizations/s3errormsg.py,sha256=STKQ3714dnXOzPSPszCikhv5hoRBUJnk-u0kF
|
|
|
66
66
|
awscli/customizations/s3events.py,sha256=ZcNmDN26dXxLrLawawl9jRFWqK1lMEQpty0YRNjBQws,4795
|
|
67
67
|
awscli/customizations/s3uploader.py,sha256=vRz9bBLPby5ZZzBZpkI_SeWezoOmLkmOPeQ9jHemVpU,8133
|
|
68
68
|
awscli/customizations/sagemaker.py,sha256=mlYPscN-aQgV6L8dRK62QolmY7_iDmtHLe6DyGjayD8,1014
|
|
69
|
-
awscli/customizations/scalarparse.py,sha256=
|
|
69
|
+
awscli/customizations/scalarparse.py,sha256=Bgs1HKPMrip79iJZnGWasYHOjre1T4NU6TLo7rVK9NE,5001
|
|
70
70
|
awscli/customizations/sessendemail.py,sha256=uWgx-f0ILiTGKyjoQcJWx8XoG-BIWUkWNBy-yXvYpTU,4459
|
|
71
71
|
awscli/customizations/sessionmanager.py,sha256=751EorlValgvZJi56kuWs54huzWAhw5SZNc3m20Vds8,7047
|
|
72
72
|
awscli/customizations/sms_voice.py,sha256=ZBbvUspzdn7maGzk4tnERA3zMTR3cSbTL0Son6L9Apc,816
|
|
@@ -78,7 +78,7 @@ awscli/customizations/utils.py,sha256=ynbF4xQhY8X5U1SA69V-Ro_-7pSLYZceQ9c0XoGwFd
|
|
|
78
78
|
awscli/customizations/waiters.py,sha256=e0cHfnaOhR0Zz7DCTj3McP_TPfKHEc_JlHyy3uP2CIQ,9860
|
|
79
79
|
awscli/customizations/cloudformation/__init__.py,sha256=rcZDPPnatHSw8I0ogt3eHOL4HKIW3DbUFKEZdf76TEg,1281
|
|
80
80
|
awscli/customizations/cloudformation/artifact_exporter.py,sha256=evvQTSzPkv4bUyYr318HqwQwfkxiz0cMCxfYr8x2R6o,23617
|
|
81
|
-
awscli/customizations/cloudformation/deploy.py,sha256=
|
|
81
|
+
awscli/customizations/cloudformation/deploy.py,sha256=nIBKr1YKlucNrohZqM-WANUQqGxylmG0APWQJfbrAkg,16553
|
|
82
82
|
awscli/customizations/cloudformation/deployer.py,sha256=OVxj1Ai7FTNyuljxTFQU3vqKVy67FcpSnWZ95AI7bNA,9870
|
|
83
83
|
awscli/customizations/cloudformation/exceptions.py,sha256=G5F8FB8lxSzKMHmDZPhl4UdbrjB87mUWaBzgY901JJA,2137
|
|
84
84
|
awscli/customizations/cloudformation/package.py,sha256=cugfhLY2R8ZY97kOK_XLd9GfK8PxF0LVN1xe4mirEkU,6116
|
|
@@ -86,7 +86,7 @@ awscli/customizations/cloudformation/yamlhelper.py,sha256=PwSRzdpL2lOhhwlnmtLCp3
|
|
|
86
86
|
awscli/customizations/cloudtrail/__init__.py,sha256=6IMtaLoCrMMf1LdsmLLp5Q-uLeH_hpyCHIH1o2boYPQ,1337
|
|
87
87
|
awscli/customizations/cloudtrail/subscribe.py,sha256=kvpviUZqm9E4x5RSSY2UVpM5UHStSA5cCjogF1ap1iA,13742
|
|
88
88
|
awscli/customizations/cloudtrail/utils.py,sha256=dd-2CmiEbqXatOYOG5W7L-rpuxTatijdMJ-qmASrCwI,1224
|
|
89
|
-
awscli/customizations/cloudtrail/validation.py,sha256=
|
|
89
|
+
awscli/customizations/cloudtrail/validation.py,sha256=hEl8SO5RRLaCYh4nNyQu-6iviTasyB3XtGKDbqcNuVY,41098
|
|
90
90
|
awscli/customizations/codeartifact/__init__.py,sha256=dgIMOQhLehpxG8pAzs8XWB3J9HGD9ZxLYLJu-UVV0wo,334
|
|
91
91
|
awscli/customizations/codeartifact/login.py,sha256=h_rH0-HzvbX5ri48IZVLA-64iROm0A1HE371WyXlwcY,27648
|
|
92
92
|
awscli/customizations/codedeploy/__init__.py,sha256=FT9vGCIrGANuGV5vZ8j_0DljBF6ocxqokqBGzPqFCio,565
|
|
@@ -145,21 +145,21 @@ awscli/customizations/emr/addinstancegroups.py,sha256=TFKsjwLo26TQR25IpCr8sMh58j
|
|
|
145
145
|
awscli/customizations/emr/addsteps.py,sha256=2OXYlJ-bm2BH3mNSnQjgwz6HoB0cnUR7s_Y5zI_WPP8,2208
|
|
146
146
|
awscli/customizations/emr/addtags.py,sha256=IDWlPXXWdoVEVek7V-0SlZmOhJWxm-5HPCPmmUGHcPI,1089
|
|
147
147
|
awscli/customizations/emr/applicationutils.py,sha256=-SQQSlS4P8U4LjSKL9Bc6K7JD3pOMUaO2ADisgcEHko,6550
|
|
148
|
-
awscli/customizations/emr/argumentschema.py,sha256=
|
|
148
|
+
awscli/customizations/emr/argumentschema.py,sha256=p-KS6kgs2zcvPNKxgjG4Zm1Z7lC7jlQHgX9DoU7pcNg,42515
|
|
149
149
|
awscli/customizations/emr/command.py,sha256=pHxKJZR0FgGDopdmaxqpA1cZo1QogawHOxuu77vAV4U,5442
|
|
150
150
|
awscli/customizations/emr/config.py,sha256=0MEd3p302iy3Iw6YTVARRwfflYHoXyV6BSlZbG0kCHg,4761
|
|
151
151
|
awscli/customizations/emr/configutils.py,sha256=I7Hs_JFcrLUcXwVs4gHynaIZIk_oxBA7ADEYwkGAi60,2554
|
|
152
152
|
awscli/customizations/emr/constants.py,sha256=8npPsin-FCoYjAMP2TvJC9zDgd47UkgV8B6RH6cJYS8,6802
|
|
153
|
-
awscli/customizations/emr/createcluster.py,sha256=
|
|
153
|
+
awscli/customizations/emr/createcluster.py,sha256=Ctqkp6G2ufPX5pkJrv2vwwhF6pZbZa7B4oatm4mcgVM,30715
|
|
154
154
|
awscli/customizations/emr/createdefaultroles.py,sha256=N8OQs_JydAs7Cnk-A_FJlhHMsSSkqYCeumOFTnR-jIw,14009
|
|
155
155
|
awscli/customizations/emr/describecluster.py,sha256=TOphq9W3n50ps_u9lSYL8NXH8tLCotCvNn7Vqf_5hLI,4152
|
|
156
156
|
awscli/customizations/emr/emr.py,sha256=6O8CzyB4NVFzeql4mARxQODgdbNOWlsXf874KPhO6EI,3257
|
|
157
157
|
awscli/customizations/emr/emrfsutils.py,sha256=XyadeF_fVtW3IzgljHUGTGmrYPpAG2ytijzn7gC0JKI,9106
|
|
158
|
-
awscli/customizations/emr/emrutils.py,sha256=
|
|
158
|
+
awscli/customizations/emr/emrutils.py,sha256=6oQBX1romvW3nDLRdjuPrQL4F-J7BE4mNAziXZeQqXI,8676
|
|
159
159
|
awscli/customizations/emr/exceptions.py,sha256=IgdFCsr1laiSuIRJjBYWViZR5HsmB1Tyar52InazWPY,10254
|
|
160
160
|
awscli/customizations/emr/hbase.py,sha256=ubr1r5CQiYGVDbv6CuV4ZKGOzuz7GDTG5WTD_u87K8M,9454
|
|
161
161
|
awscli/customizations/emr/hbaseutils.py,sha256=O-Dli_PHqv9_9JoKW-xKLcPN7h8y9-xdFsy51lS7gsg,953
|
|
162
|
-
awscli/customizations/emr/helptext.py,sha256=
|
|
162
|
+
awscli/customizations/emr/helptext.py,sha256=fzwTKkyLMMi5E3jW7tmCcL0wW4rkXFpfXzN8MHDvx08,29549
|
|
163
163
|
awscli/customizations/emr/installapplications.py,sha256=J6ff1k-KGX7pxLzrBhBdsfi_XU0D1bO_MUK8PzoCWOM,2879
|
|
164
164
|
awscli/customizations/emr/instancefleetsutils.py,sha256=JQl1CXR7bbp72O6RAcuHsCGBX3J2f61FNDj3tOdjWIA,3361
|
|
165
165
|
awscli/customizations/emr/instancegroupsutils.py,sha256=lO5pDKE1yY2NjCKsHGG1E479pP4b2YR8uvbAvJUizLg,3661
|
|
@@ -167,7 +167,7 @@ awscli/customizations/emr/listclusters.py,sha256=8PNPyA5181P9QCRZhGoTB3zFbzENCj3
|
|
|
167
167
|
awscli/customizations/emr/modifyclusterattributes.py,sha256=SUMNuCKQAtGPS0-yctq8NWbyh673skyjsZS7NriasNk,6193
|
|
168
168
|
awscli/customizations/emr/ssh.py,sha256=Guuh7aQcj3AA3-tNA1OGn4UQPr2Rj1uhiOMX1LCEU_o,7731
|
|
169
169
|
awscli/customizations/emr/sshutils.py,sha256=3P3C_vWaMytJFeQwde2ViF2Ixz_r_n5PoNL3YDI11u4,3354
|
|
170
|
-
awscli/customizations/emr/steputils.py,sha256=
|
|
170
|
+
awscli/customizations/emr/steputils.py,sha256=PbScYroiv2GrFbarBQxhYvOS22kb0MTrI5CrMz0045Q,9244
|
|
171
171
|
awscli/customizations/emr/terminateclusters.py,sha256=O_-bz3kGpAa66FHhpI7IXTQ053iUrGVW1QBxC16MErU,1382
|
|
172
172
|
awscli/customizations/emrcontainers/__init__.py,sha256=jobGqgtZe4LWw36MGm1oNwFwFDYrM6vNvA15J447ozs,1143
|
|
173
173
|
awscli/customizations/emrcontainers/base36.py,sha256=lS2UTlN4zQYDavvISDttlD6JalCbJ_Qr0LYVQdb40D4,1210
|
|
@@ -190,18 +190,19 @@ awscli/customizations/logs/startlivetail.py,sha256=NwN5wp8DKKgRfoAtZySlLxgHHuSMz
|
|
|
190
190
|
awscli/customizations/s3/__init__.py,sha256=BFJ0dbdWkUBgJ2qav1Jhz06SddTMIeahxSaW_H0vop0,565
|
|
191
191
|
awscli/customizations/s3/comparator.py,sha256=bg9ewFtjOGUHmTSK37J9oP1OD9lWfdmIF7cDGMblFoc,6146
|
|
192
192
|
awscli/customizations/s3/fileformat.py,sha256=m4-tpR3_4AZOYfLxnlaGmIXG_vqTxyD4jNC8HtZRn2k,6027
|
|
193
|
-
awscli/customizations/s3/filegenerator.py,sha256=
|
|
194
|
-
awscli/customizations/s3/fileinfo.py,sha256=
|
|
195
|
-
awscli/customizations/s3/fileinfobuilder.py,sha256=
|
|
193
|
+
awscli/customizations/s3/filegenerator.py,sha256=nJRVmCz7wyPkUAdCZ5xGUSrbTVdjQSv1pH59Dzwpyrg,16373
|
|
194
|
+
awscli/customizations/s3/fileinfo.py,sha256=yT_aeDGVAFdO8sZU2r9TDMG7Vu9sXCEJC9VUG-2yoy8,4481
|
|
195
|
+
awscli/customizations/s3/fileinfobuilder.py,sha256=66XiO305bYwnikq9PN9OAJIvw42vqO-xGlkRyX12viw,3470
|
|
196
196
|
awscli/customizations/s3/filters.py,sha256=OuQUr6XAMkS1i6GO65_L7NbL7kwgmKT2ghWhv1YdkXo,6489
|
|
197
197
|
awscli/customizations/s3/results.py,sha256=L19gi3CtJYeHqWIWuIVcbj82Dshw2g5jNX8PFidcC2U,26625
|
|
198
198
|
awscli/customizations/s3/s3.py,sha256=Igwsn89G7i9M4nShjzcFmwlCVXvpfgmoyEf9wpNLXdk,2739
|
|
199
|
-
awscli/customizations/s3/s3handler.py,sha256=
|
|
200
|
-
awscli/customizations/s3/subcommands.py,sha256=
|
|
199
|
+
awscli/customizations/s3/s3handler.py,sha256=P6GNUUTu6KVH443tA2JO39GnHWyk2cruWHHNVlEWBsg,23837
|
|
200
|
+
awscli/customizations/s3/subcommands.py,sha256=EaVPdgC5X3HNxT5GM7rxh7cDiOmwQZBZvzaVWRF51Kk,69792
|
|
201
201
|
awscli/customizations/s3/transferconfig.py,sha256=7MW4hi90N5mLeQBlmVxs9J5ixRjejp1F4uPmGGF3TME,4472
|
|
202
|
-
awscli/customizations/s3/utils.py,sha256=
|
|
202
|
+
awscli/customizations/s3/utils.py,sha256=O6k3W3jJthNZ0bj-y3G6ZIFbDwVCxxexbPs0OZk_l64,34880
|
|
203
203
|
awscli/customizations/s3/syncstrategy/__init__.py,sha256=BFJ0dbdWkUBgJ2qav1Jhz06SddTMIeahxSaW_H0vop0,565
|
|
204
|
-
awscli/customizations/s3/syncstrategy/base.py,sha256=
|
|
204
|
+
awscli/customizations/s3/syncstrategy/base.py,sha256=HqJSzTgOX88YhJb-_UJOmSzfk6wAcctsgO59s7rsX88,10397
|
|
205
|
+
awscli/customizations/s3/syncstrategy/caseconflict.py,sha256=3E5XJFFqi-nTrgJ04sUXPOVo0JX3yUxlKcKWsNsUXf4,3308
|
|
205
206
|
awscli/customizations/s3/syncstrategy/delete.py,sha256=y-KSRQE14bZY9jQfJJx0WbZ8UyX6juKkDhS8lwC9ed8,1313
|
|
206
207
|
awscli/customizations/s3/syncstrategy/exacttimestamps.py,sha256=Bi_t4pbVfYbxKt4sKe3XJVYSbocfMTgg-HAx903Ts2o,1686
|
|
207
208
|
awscli/customizations/s3/syncstrategy/register.py,sha256=2jsuidA4sxf3v1_9rpmp3tJRa2pGX35zYxzRluAmggs,2001
|
|
@@ -214,9 +215,9 @@ awscli/customizations/servicecatalog/generateproduct.py,sha256=k9iKmrZxi3_iD8JmU
|
|
|
214
215
|
awscli/customizations/servicecatalog/generateprovisioningartifact.py,sha256=hgkvZ8ktGW9hoFQuR58MQKo-dWNOiKgDBIfShE8pFtw,3367
|
|
215
216
|
awscli/customizations/servicecatalog/helptext.py,sha256=jwtDliDWnv8UeijDKGMEmRvwWpLmEUi02hxvE_ijmek,1945
|
|
216
217
|
awscli/customizations/servicecatalog/utils.py,sha256=8J4K6z2IVsxiD9Eathl7XvBcIJjo2U7ZVABhvSrKAz8,1173
|
|
217
|
-
awscli/data/cli.json,sha256=
|
|
218
|
-
awscli/examples/global_options.rst,sha256=
|
|
219
|
-
awscli/examples/global_synopsis.rst,sha256=
|
|
218
|
+
awscli/data/cli.json,sha256=om2SM7gOHt1JL4UWd1rBeJbJPOYWZDENKfpz0dj6VkU,3499
|
|
219
|
+
awscli/examples/global_options.rst,sha256=llDWxHZCXAOgS_pSf6jQHn54xaD8B86XIlkz2k5aGdo,1984
|
|
220
|
+
awscli/examples/global_synopsis.rst,sha256=G31esf-gJ1EDbtt5uFS3I5gb9GaHkQmcfjlAy2IvgX0,299
|
|
220
221
|
awscli/examples/accessanalyzer/apply-archive-rule.rst,sha256=vqUyx0wCfzJBLqXxA7S93LhM6pJlTqbnj5IN4y3oq64,623
|
|
221
222
|
awscli/examples/accessanalyzer/cancel-policy-generation.rst,sha256=AD3DbJjtAHLhg6AB015mdnBzluUXVqIDa7t-HxvqN0w,484
|
|
222
223
|
awscli/examples/accessanalyzer/check-access-not-granted.rst,sha256=odK2SA7pUxlhkkQUrkC4z9sKQIkQsCqdvfSYvATFhu4,1235
|
|
@@ -763,11 +764,14 @@ awscli/examples/cloudformation/batch-describe-type-configurations.rst,sha256=ZL5
|
|
|
763
764
|
awscli/examples/cloudformation/cancel-update-stack.rst,sha256=iXh30epVbKsksPDXoHLeoFQ5JMksU12FH48oflQ3BYU,217
|
|
764
765
|
awscli/examples/cloudformation/continue-update-rollback.rst,sha256=ZMhu63rYhTlTMBjLu7DuKEMh1MzzF_9t_sKn51BQt1o,276
|
|
765
766
|
awscli/examples/cloudformation/create-change-set.rst,sha256=s1MSdjdw4YCeBQCvhFY1eyG9tqCLbyuZ3m23G_Qp9aY,766
|
|
767
|
+
awscli/examples/cloudformation/create-generated-template.rst,sha256=2jhaIb4QyRzM21BdZXKFZRYRcFIhOBXJOCcHZyX1E98,1722
|
|
766
768
|
awscli/examples/cloudformation/create-stack-instances.rst,sha256=gKIqXy8ulNPwAOeNENLXe1F3O85VNIwFSu5z5NBnbW8,700
|
|
769
|
+
awscli/examples/cloudformation/create-stack-refactor.rst,sha256=3PGDpJ6s78kMrE5cyw_nX_LgZ3-GRJo260rimpX5fVk,658
|
|
767
770
|
awscli/examples/cloudformation/create-stack-set.rst,sha256=82JxJAgETgM66X3ooHugVMZAnwrCn_kH2KwIiPzJZZ4,591
|
|
768
771
|
awscli/examples/cloudformation/create-stack.rst,sha256=humDEb33XPY_9TU6Geu-WOCHZ5Rk9ZZSP0Zj0kkVujA,710
|
|
769
772
|
awscli/examples/cloudformation/deactivate-type.rst,sha256=9k99N_Wv6gah62NGdu0gUoxQT0TLBomSOahneSi-sYw,535
|
|
770
773
|
awscli/examples/cloudformation/delete-change-set.rst,sha256=_m2-Hk5Ut2LcuGucGZyLz-4j_k4rln9jI4Mki4C5_9c,638
|
|
774
|
+
awscli/examples/cloudformation/delete-generated-template.rst,sha256=IqwgnZOJbY-vD5D235t1JRWS4091rs0xNFO2TpNZymU,453
|
|
771
775
|
awscli/examples/cloudformation/delete-stack-instances.rst,sha256=jReVOjh3C2ASdJ_o26uyEwLoBFDDeEbeYIQjHn4dQWQ,548
|
|
772
776
|
awscli/examples/cloudformation/delete-stack-set.rst,sha256=FzjvhUbleFfrfwE0nhvGuLvt7nUFJFBeb2bb6oj0vps,328
|
|
773
777
|
awscli/examples/cloudformation/delete-stack.rst,sha256=eCeyw4KK2kd6KeBnaHuMbFKnv1Ro4MmWfRR1xP_ucuY,203
|
|
@@ -775,10 +779,13 @@ awscli/examples/cloudformation/deploy.rst,sha256=ScCk6_Zlkz9zeJYj-eN14Wt0HX_TfpW
|
|
|
775
779
|
awscli/examples/cloudformation/deregister-type.rst,sha256=7vxUxiDu10RZAB1fLPiBN9a9H4hAZUWwyhap3ExIdjs,583
|
|
776
780
|
awscli/examples/cloudformation/describe-account-limits.rst,sha256=Ok-FBdlfdrjzhRATgKILu6UPY3sgVSCIsChkGZfDR5o,576
|
|
777
781
|
awscli/examples/cloudformation/describe-change-set.rst,sha256=kMIigrByCeO8q1jWMnChs3gB_Kwci2j1ToutRt0YTaA,2363
|
|
782
|
+
awscli/examples/cloudformation/describe-generated-template.rst,sha256=eEk_OEDu-LCVGu2AydCRsaU7S4luwvowmvHnrp6tPck,2391
|
|
778
783
|
awscli/examples/cloudformation/describe-publisher.rst,sha256=N9haVyCFJZeAKjz_SGMe8jrmrjT5qeghzk5OtkF-_b0,751
|
|
784
|
+
awscli/examples/cloudformation/describe-resource-scan.rst,sha256=uYKT2wYhoKuvoyTEnCvBmC0gRSa8d8eRWx2nTl8j7xs,1587
|
|
779
785
|
awscli/examples/cloudformation/describe-stack-drift-detection-status.rst,sha256=_htysZzfqc3UScZfdNeTxIF9uLOsLNzwTib-8m33Pxs,773
|
|
780
786
|
awscli/examples/cloudformation/describe-stack-events.rst,sha256=R653lU52444tdrSqBoIerZWkfnQnmoaCGA2xZzOlb64,1679
|
|
781
787
|
awscli/examples/cloudformation/describe-stack-instance.rst,sha256=qlBqxl0jNTVV7GP4oPt7o1K370tCUHobQCgFt2l4RT4,1304
|
|
788
|
+
awscli/examples/cloudformation/describe-stack-refactor.rst,sha256=mb12wcEF7wGsfJRZT9coa-CU4yZnYAJQ3CFuLW2C67o,886
|
|
782
789
|
awscli/examples/cloudformation/describe-stack-resource-drifts.rst,sha256=3JMANAk8SSixakVzs4ze3pXSV43Uq9F0OK2UCagt_yc,2337
|
|
783
790
|
awscli/examples/cloudformation/describe-stack-resource.rst,sha256=4BKJOYcb5RGzVE6f-_UdsZTc0feheQ3mdFORRGiVtm0,958
|
|
784
791
|
awscli/examples/cloudformation/describe-stack-resources.rst,sha256=KOzwcdupPsXqgTBGwD0x5NrNZXjTVQ7FKmwBTr4nXJw,2130
|
|
@@ -792,13 +799,18 @@ awscli/examples/cloudformation/detect-stack-resource-drift.rst,sha256=Bzs362f8L_
|
|
|
792
799
|
awscli/examples/cloudformation/detect-stack-set-drift.rst,sha256=PhmaeHlQ0VL5MIS4wX9N7Tud3TjtUmi02xBeZkb9xTk,740
|
|
793
800
|
awscli/examples/cloudformation/estimate-template-cost.rst,sha256=jARDzPPwifNOvsqZ5WrIijfl-b9u0-7D0CHglK_ed3Q,419
|
|
794
801
|
awscli/examples/cloudformation/execute-change-set.rst,sha256=Z4hjJef5D-36Y-WX-EGuHCTo3gCr4QbXNT65tOgot3c,567
|
|
802
|
+
awscli/examples/cloudformation/execute-stack-refactor.rst,sha256=YecjIPujSMknQrqXvBUweN92mPJAZuCMPxL7NFCaZvM,498
|
|
795
803
|
awscli/examples/cloudformation/get-stack-policy.rst,sha256=VNHvUj5ZYLkimkjGd1AJpnfbGCtiVtBDhYRf3eGJ3kg,659
|
|
796
804
|
awscli/examples/cloudformation/get-template-summary.rst,sha256=Bob7igmjmuEE7n9EzIARCIyR-2G65PYjc65bCLBnKzY,736
|
|
797
805
|
awscli/examples/cloudformation/get-template.rst,sha256=yN14tJuVP4GVwvo1F29rEgxXDPVe-cqT_V4LXbstlME,1077
|
|
798
806
|
awscli/examples/cloudformation/list-change-sets.rst,sha256=-QK9cyRZwmPq3qo-k5QxdIPDxEQHEfXCGxAaETdDbVg,823
|
|
799
807
|
awscli/examples/cloudformation/list-exports.rst,sha256=liuNfh-_IVfXeT4G-YIaGarC-oMSqaRWyRi8CWmPRlc,1047
|
|
808
|
+
awscli/examples/cloudformation/list-generated-templates.rst,sha256=AJw8hwDMHeHrYCVJeJwl1OqyLZt8eabfJXyH-9cMHO4,1947
|
|
800
809
|
awscli/examples/cloudformation/list-imports.rst,sha256=HhCSy9GjPeO6F5zDAH97HVRxR_8fjx-6jjeAVFzjTpM,365
|
|
810
|
+
awscli/examples/cloudformation/list-resource-scan-related-resources.rst,sha256=DU7kgvahWzrmvNlO1jGUNet26_yVi-KsFuKy5QMlujs,1685
|
|
811
|
+
awscli/examples/cloudformation/list-resource-scan-resources.rst,sha256=e26-wLPHQPU2heMWajhuthFqRSLupWcoOwtpIuqk1Ro,1217
|
|
801
812
|
awscli/examples/cloudformation/list-stack-instances.rst,sha256=2QfOOh9Isc3WBNt-3_5eJ1HQEbExqnv1j29cDnyk0OE,1702
|
|
813
|
+
awscli/examples/cloudformation/list-stack-refactor-actions.rst,sha256=smMezURjUt3T_EFM17ynJbugwJjH73E4yGKKxcrxQ3E,3125
|
|
802
814
|
awscli/examples/cloudformation/list-stack-resources.rst,sha256=489xPd5WXyscePkZBWE_N4B04EeIXgwIrqGJzAfgs5s,1608
|
|
803
815
|
awscli/examples/cloudformation/list-stack-set-operation-results.rst,sha256=sHuGXGjR5fFUCW8GAbaQwfMNjw6-CnooTf1BrULAYA8,1161
|
|
804
816
|
awscli/examples/cloudformation/list-stack-set-operations.rst,sha256=dz-VMVJAcODj7mOfSKLtWCvCGQw_4nLZhPKbxmaYLiE,932
|
|
@@ -815,6 +827,7 @@ awscli/examples/cloudformation/set-stack-policy.rst,sha256=qg2j_Thy8QBPZF5cwg7eV
|
|
|
815
827
|
awscli/examples/cloudformation/set-type-configuration.rst,sha256=0Dsr6B95UggDk-RELazxXLKjn32ahIAohf_mATwUIFg,797
|
|
816
828
|
awscli/examples/cloudformation/set-type-default-version.rst,sha256=bGKsBSd_4e-AwV0KrjxbZoQ89LVoisdkI-uvUwhi0Vw,531
|
|
817
829
|
awscli/examples/cloudformation/signal-resource.rst,sha256=aVK_Su_K4a2FGiWF7p8c5xgQhdgJrGheuUT3HC1313U,397
|
|
830
|
+
awscli/examples/cloudformation/start-resource-scan.rst,sha256=MqkhcR_FR0IBL-er-TCbPbS61DgdchW1GStlJ16z0UY,603
|
|
818
831
|
awscli/examples/cloudformation/stop-stack-set-operation.rst,sha256=OFpCH7qMSCp12B8ubpN-Uydct3eBt4ATYX7B2a7wMPc,346
|
|
819
832
|
awscli/examples/cloudformation/test-type.rst,sha256=KOX0QfTdHi7BIgM1F5fiOLwfruIw5HAJ9aL6U1EhS9g,682
|
|
820
833
|
awscli/examples/cloudformation/update-stack-instances.rst,sha256=1EHdFpVH41a0Bgr5fzMRFMQe0UZOZQwbxN-shHQ2rtM,657
|
|
@@ -4280,10 +4293,10 @@ awscli/examples/mediatailor/get-playback-configuration.rst,sha256=BQv5afCCokimSK
|
|
|
4280
4293
|
awscli/examples/mediatailor/list-playback-configurations.rst,sha256=jxInO0Lm1vCj_Ifc2L413z2SjRaw7SeQ_ZCx4TUwQ-8,3343
|
|
4281
4294
|
awscli/examples/mediatailor/put-playback-configuration.rst,sha256=yWywM_zUGQz6Gb_-jM4jKKE-TBhFlp-2i0sgP7qbkRk,1715
|
|
4282
4295
|
awscli/examples/medical-imaging/copy-image-set.rst,sha256=lOXuIVw0d47dD66bDHDwziZk_lT3nNHPpFQWtbH1i1U,4279
|
|
4283
|
-
awscli/examples/medical-imaging/create-datastore.rst,sha256=
|
|
4296
|
+
awscli/examples/medical-imaging/create-datastore.rst,sha256=e5rNdL1sk4DTr2PAKFnl1WKvkX932edufe-_t4Ec05U,1375
|
|
4284
4297
|
awscli/examples/medical-imaging/delete-datastore.rst,sha256=YlqXZ6R0KD3tvBiAt2b97NE2neuQnVrbV57YSiAOggg,503
|
|
4285
4298
|
awscli/examples/medical-imaging/delete-image-set.rst,sha256=7FQ4aJqZ_3rnk37tHTRCf_Oiv0dT8jTw6O_5v-hNMUQ,658
|
|
4286
|
-
awscli/examples/medical-imaging/get-datastore.rst,sha256=
|
|
4299
|
+
awscli/examples/medical-imaging/get-datastore.rst,sha256=cSbJrgSHD5J3NKU0CpjzI6T1_yTGcoTvQi5W1w6a1t8,1755
|
|
4287
4300
|
awscli/examples/medical-imaging/get-dicom-import-job.rst,sha256=sFvZYZutEOFZ0_tzsIWKo5GJHj42wr0oFYTEEbsnyKg,1175
|
|
4288
4301
|
awscli/examples/medical-imaging/get-image-frame.rst,sha256=5eSz6jG6nDInRY3QUcZXhG6aGM4oUp2X3HoRQKRMPw4,787
|
|
4289
4302
|
awscli/examples/medical-imaging/get-image-set-metadata.rst,sha256=D-NJxVh4DhhuOu2zs1vcQzvmXrKPw8uLFGUWeepuXcU,1585
|
|
@@ -6058,16 +6071,17 @@ awscli/examples/xray/update-group.rst,sha256=ThP94mCvPeSXQanVJjI13PSArn2rqnzX7Q-
|
|
|
6058
6071
|
awscli/examples/xray/update-sampling-rule.rst,sha256=a1THv2Q8ELvSSlZbnbUVN5YWopGFLiBU4yqliQLF8Q8,1521
|
|
6059
6072
|
awscli/topics/config-vars.rst,sha256=rGwpLEHEG355W6a4xmNjD-FXl2O3GRfkNBjQuW1ZaKY,22751
|
|
6060
6073
|
awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J8,1996
|
|
6074
|
+
awscli/topics/s3-case-insensitivity.rst,sha256=xUI86tyD3QrkS7s_Ry7QnBmnsq8P6QSr6Q0TQAS8fRY,3778
|
|
6061
6075
|
awscli/topics/s3-config.rst,sha256=5EIVd4ggLBHtzjtHFvQp9hY415yMGZiG7S_rO9qy2t0,11663
|
|
6062
6076
|
awscli/topics/s3-faq.rst,sha256=9qO0HFI6F9hx1wVEUDl8Jy6yoCUd9zbtv-Z0Re4dsiw,2934
|
|
6063
|
-
awscli/topics/topic-tags.json,sha256=
|
|
6064
|
-
awscli-1.
|
|
6065
|
-
awscli-1.
|
|
6066
|
-
awscli-1.
|
|
6067
|
-
awscli-1.
|
|
6068
|
-
awscli-1.
|
|
6069
|
-
awscli-1.
|
|
6070
|
-
awscli-1.
|
|
6071
|
-
awscli-1.
|
|
6072
|
-
awscli-1.
|
|
6073
|
-
awscli-1.
|
|
6077
|
+
awscli/topics/topic-tags.json,sha256=wjVD-b-g_XUNYUffoUXyoUy8-ul1___xd2chd1MUv6U,1951
|
|
6078
|
+
awscli-1.44.6.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
|
6079
|
+
awscli-1.44.6.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
|
6080
|
+
awscli-1.44.6.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
|
6081
|
+
awscli-1.44.6.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
|
6082
|
+
awscli-1.44.6.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
|
6083
|
+
awscli-1.44.6.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
|
6084
|
+
awscli-1.44.6.dist-info/METADATA,sha256=oxwww5TJ71872YzUSdtHjCEvk2x5X5jkDZyVSTlDKQs,11200
|
|
6085
|
+
awscli-1.44.6.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
6086
|
+
awscli-1.44.6.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
|
6087
|
+
awscli-1.44.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|