awscli 1.36.8__py3-none-any.whl → 1.36.10__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/customizations/emr/argumentschema.py +16 -0
- awscli/customizations/removals.py +1 -0
- awscli/examples/apigateway/flush-stage-cache.rst +8 -2
- awscli/examples/ecr-public/describe-registries.rst +26 -0
- awscli/examples/ecr-public/describe-repository.rst +43 -0
- awscli/examples/ecr-public/get-login-password.rst +27 -0
- awscli/examples/iam/create-policy.rst +24 -21
- awscli/examples/iam/get-account-authorization-details.rst +3 -3
- awscli/examples/securityhub/list-configuration-policy-associations.rst +2 -2
- {awscli-1.36.8.dist-info → awscli-1.36.10.dist-info}/METADATA +2 -2
- {awscli-1.36.8.dist-info → awscli-1.36.10.dist-info}/RECORD +20 -17
- {awscli-1.36.8.data → awscli-1.36.10.data}/scripts/aws +0 -0
- {awscli-1.36.8.data → awscli-1.36.10.data}/scripts/aws.cmd +0 -0
- {awscli-1.36.8.data → awscli-1.36.10.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.36.8.data → awscli-1.36.10.data}/scripts/aws_completer +0 -0
- {awscli-1.36.8.data → awscli-1.36.10.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.36.8.dist-info → awscli-1.36.10.dist-info}/LICENSE.txt +0 -0
- {awscli-1.36.8.dist-info → awscli-1.36.10.dist-info}/WHEEL +0 -0
- {awscli-1.36.8.dist-info → awscli-1.36.10.dist-info}/top_level.txt +0 -0
awscli/__init__.py
CHANGED
|
@@ -849,6 +849,22 @@ MANAGED_SCALING_POLICY_SCHEMA = {
|
|
|
849
849
|
"The parameter is used to split capacity allocation between core and task nodes."
|
|
850
850
|
}
|
|
851
851
|
}
|
|
852
|
+
},
|
|
853
|
+
"ScalingStrategy": {
|
|
854
|
+
"type": "string",
|
|
855
|
+
"enum": ["DEFAULT", "ADVANCED"],
|
|
856
|
+
"description":
|
|
857
|
+
"Determines whether a custom scaling utilization performance index can be set. "
|
|
858
|
+
"Possible values include ADVANCED or DEFAULT."
|
|
859
|
+
},
|
|
860
|
+
"UtilizationPerformanceIndex": {
|
|
861
|
+
"type": "integer",
|
|
862
|
+
"description":
|
|
863
|
+
"An integer value that represents an advanced scaling strategy. "
|
|
864
|
+
"Setting a higher value optimizes for performance. "
|
|
865
|
+
"Setting a lower value optimizes for resource conservation. "
|
|
866
|
+
"Setting the value to 50 balances performance and resource conservation. "
|
|
867
|
+
"Possible values are 1, 25, 50, 75, and 100."
|
|
852
868
|
}
|
|
853
869
|
}
|
|
854
870
|
}
|
|
@@ -56,6 +56,7 @@ def register_removals(event_handler):
|
|
|
56
56
|
cmd_remover.remove(on_event='building-command-table.bedrock-agent-runtime',
|
|
57
57
|
remove_commands=['invoke-agent',
|
|
58
58
|
'invoke-flow',
|
|
59
|
+
'invoke-inline-agent',
|
|
59
60
|
'optimize-prompt'])
|
|
60
61
|
cmd_remover.remove(on_event='building-command-table.qbusiness',
|
|
61
62
|
remove_commands=['chat'])
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
**To flush the cache for an API's stage**
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The following ``flush-stage-cache`` example flushes the cache of a stage. ::
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
aws apigateway flush-stage-cache \
|
|
6
|
+
--rest-api-id 1234123412 \
|
|
7
|
+
--stage-name dev
|
|
8
|
+
|
|
9
|
+
This command produces no output.
|
|
10
|
+
|
|
11
|
+
For more information, see `Flush the API stage cache in API Gateway <https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-caching.html#flush-api-caching>`_ in the *Amazon API Gateway Developer Guide*.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
**To describe all registries in a public registry**
|
|
2
|
+
|
|
3
|
+
The following ``describe-registries`` example describes all registries in your account. ::
|
|
4
|
+
|
|
5
|
+
aws ecr-public describe-registries
|
|
6
|
+
|
|
7
|
+
Output::
|
|
8
|
+
|
|
9
|
+
{
|
|
10
|
+
"registries": [
|
|
11
|
+
{
|
|
12
|
+
"registryId": "123456789012",
|
|
13
|
+
"registryArn": "arn:aws:ecr-public::123456789012:registry/123456789012",
|
|
14
|
+
"registryUri": "public.ecr.aws/publicregistrycustomalias",
|
|
15
|
+
"verified": false,
|
|
16
|
+
"aliases": [
|
|
17
|
+
{
|
|
18
|
+
"name": "publicregistrycustomalias",
|
|
19
|
+
"status": "ACTIVE",
|
|
20
|
+
"primaryRegistryAlias": true,
|
|
21
|
+
"defaultRegistryAlias": true
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
**Example 1: To describe a repository in a public registry**
|
|
2
|
+
|
|
3
|
+
The following ``describe-repositories`` example describes a repository named ``project-a/nginx-web-app`` in a public registry. ::
|
|
4
|
+
|
|
5
|
+
aws ecr-public describe-repositories \
|
|
6
|
+
--repository-name project-a/nginx-web-app
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"repositories": [
|
|
12
|
+
{
|
|
13
|
+
"repositoryArn": "arn:aws:ecr-public::123456789012:repository/project-a/nginx-web-app",
|
|
14
|
+
"registryId": "123456789012",
|
|
15
|
+
"repositoryName": "project-a/nginx-web-app",
|
|
16
|
+
"repositoryUri": "public.ecr.aws/public-registry-custom-alias/project-a/nginx-web-app",
|
|
17
|
+
"createdAt": "2024-07-07T00:07:56.526000-05:00"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
**Example 2: To describe all repositories in a public registry in a table**
|
|
23
|
+
|
|
24
|
+
The following ``describe-repositories`` example describes all repositories in a public registry and then outputs the repository names into a table format. ::
|
|
25
|
+
|
|
26
|
+
aws ecr-public describe-repositories \
|
|
27
|
+
--region us-east-1 \
|
|
28
|
+
--output table \
|
|
29
|
+
--query "repositories[*].repositoryName"
|
|
30
|
+
|
|
31
|
+
Output::
|
|
32
|
+
|
|
33
|
+
-----------------------------
|
|
34
|
+
| DescribeRepositories |
|
|
35
|
+
+---------------------------+
|
|
36
|
+
| project-a/nginx-web-app |
|
|
37
|
+
| nginx |
|
|
38
|
+
| myfirstrepo1 |
|
|
39
|
+
| helm-test-chart |
|
|
40
|
+
| test-ecr-public |
|
|
41
|
+
| nginx-web-app |
|
|
42
|
+
| sample-repo |
|
|
43
|
+
+---------------------------+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
**Example 1: To authenticate docker to an Amazon ECR public registry**
|
|
2
|
+
|
|
3
|
+
The following ``get-login-password`` example retrieves and displays an authentication token using the GetAuthorizationToken API that you can use to authenticate to an Amazon ECR public registry. ::
|
|
4
|
+
|
|
5
|
+
aws ecr-public get-login-password \
|
|
6
|
+
--region us-east-1
|
|
7
|
+
| docker login \
|
|
8
|
+
--username AWS \
|
|
9
|
+
--password-stdin public.ecr.aws
|
|
10
|
+
|
|
11
|
+
This command produces no output in the terminal but instead pipes the output to Docker.
|
|
12
|
+
|
|
13
|
+
For more information, see `Authenticate to the public registry <https://docs.aws.amazon.com/AmazonECR/latest/public/public-registries.html#public-registry-auth>`__ in the *Amazon ECR Public*.
|
|
14
|
+
|
|
15
|
+
**Example 2: To authenticate docker to your own custom AmazonECR public registry**
|
|
16
|
+
|
|
17
|
+
The following ``get-login-password`` example retrieves and displays an authentication token using the GetAuthorizationToken API that you can use to authenticate to your own custom Amazon ECR public registry. ::
|
|
18
|
+
|
|
19
|
+
aws ecr-public get-login-password \
|
|
20
|
+
--region us-east-1 \
|
|
21
|
+
| docker login \
|
|
22
|
+
--username AWS \
|
|
23
|
+
--password-stdin public.ecr.aws/<your-public-registry-custom-alias>
|
|
24
|
+
|
|
25
|
+
This command produces no output in the terminal but insteads pipes the output to Docker.
|
|
26
|
+
|
|
27
|
+
For more information, see `Authenticate to your own Amazon ECR Public <https://docs.aws.amazon.com/AmazonECR/latest/public/public-registries.html#public-registry-auth>`__ in the *Amazon ECR Public*.
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
**Example 1: To create a customer managed policy**
|
|
2
2
|
|
|
3
|
-
The following command creates a customer managed policy named ``my-policy``. ::
|
|
3
|
+
The following command creates a customer managed policy named ``my-policy``. The file ``policy.json`` is a JSON document in the current folder that grants read only access to the ``shared`` folder in an Amazon S3 bucket named ``amzn-s3-demo-bucket``. ::
|
|
4
4
|
|
|
5
5
|
aws iam create-policy \
|
|
6
6
|
--policy-name my-policy \
|
|
7
|
-
--policy-document file://policy
|
|
7
|
+
--policy-document file://policy.json
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Contents of policy.json::
|
|
10
10
|
|
|
11
11
|
{
|
|
12
12
|
"Version": "2012-10-17",
|
|
@@ -18,7 +18,7 @@ The file ``policy`` is a JSON document in the current folder that grants read on
|
|
|
18
18
|
"s3:List*"
|
|
19
19
|
],
|
|
20
20
|
"Resource": [
|
|
21
|
-
"arn:aws:s3:::
|
|
21
|
+
"arn:aws:s3:::amzn-s3-demo-bucket/shared/*"
|
|
22
22
|
]
|
|
23
23
|
}
|
|
24
24
|
]
|
|
@@ -44,16 +44,18 @@ For more information on using files as input for string parameters, see `Specify
|
|
|
44
44
|
|
|
45
45
|
**Example 2: To create a customer managed policy with a description**
|
|
46
46
|
|
|
47
|
-
The following command creates a customer managed policy named ``my-policy`` with an immutable description
|
|
47
|
+
The following command creates a customer managed policy named ``my-policy`` with an immutable description.
|
|
48
|
+
|
|
49
|
+
The file ``policy.json`` is a JSON document in the current folder that grants access to all Put, List, and Get actions for an Amazon S3 bucket named ``amzn-s3-demo-bucket``. ::
|
|
48
50
|
|
|
49
51
|
aws iam create-policy \
|
|
50
52
|
--policy-name my-policy \
|
|
51
53
|
--policy-document file://policy.json \
|
|
52
|
-
--description "This policy grants access to all Put, Get, and List actions for
|
|
54
|
+
--description "This policy grants access to all Put, Get, and List actions for amzn-s3-demo-bucket"
|
|
53
55
|
|
|
54
|
-
|
|
56
|
+
Contents of policy.json::
|
|
55
57
|
|
|
56
|
-
|
|
58
|
+
{
|
|
57
59
|
"Version": "2012-10-17",
|
|
58
60
|
"Statement": [
|
|
59
61
|
{
|
|
@@ -64,7 +66,7 @@ The file ``policy.json`` is a JSON document in the current folder that grants ac
|
|
|
64
66
|
"s3:GetBucket*"
|
|
65
67
|
],
|
|
66
68
|
"Resource": [
|
|
67
|
-
"arn:aws:s3:::
|
|
69
|
+
"arn:aws:s3:::amzn-s3-demo-bucket"
|
|
68
70
|
]
|
|
69
71
|
}
|
|
70
72
|
]
|
|
@@ -89,36 +91,38 @@ Output::
|
|
|
89
91
|
|
|
90
92
|
For more information on Idenity-based Policies, see `Identity-based policies and resource-based policies <https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_identity-vs-resource.html>`__ in the *AWS IAM User Guide*.
|
|
91
93
|
|
|
92
|
-
**Example 3: To
|
|
94
|
+
**Example 3: To create a customer managed policy with tags**
|
|
93
95
|
|
|
94
|
-
The following command creates a customer managed policy named ``my-policy`` with tags. This example uses the ``--tags`` parameter
|
|
96
|
+
The following command creates a customer managed policy named ``my-policy`` with tags. This example uses the ``--tags`` parameter with the following JSON-formatted tags: ``'{"Key": "Department", "Value": "Accounting"}' '{"Key": "Location", "Value": "Seattle"}'``. Alternatively, the ``--tags`` parameter can be used with tags in the shorthand format: ``'Key=Department,Value=Accounting Key=Location,Value=Seattle'``.
|
|
97
|
+
|
|
98
|
+
The file ``policy.json`` is a JSON document in the current folder that grants access to all Put, List, and Get actions for an Amazon S3 bucket named ``amzn-s3-demo-bucket``. ::
|
|
95
99
|
|
|
96
100
|
aws iam create-policy \
|
|
97
101
|
--policy-name my-policy \
|
|
98
102
|
--policy-document file://policy.json \
|
|
99
103
|
--tags '{"Key": "Department", "Value": "Accounting"}' '{"Key": "Location", "Value": "Seattle"}'
|
|
100
104
|
|
|
101
|
-
|
|
105
|
+
Contents of policy.json::
|
|
102
106
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
107
|
+
{
|
|
108
|
+
"Version": "2012-10-17",
|
|
109
|
+
"Statement": [
|
|
110
|
+
{
|
|
111
|
+
"Effect": "Allow",
|
|
112
|
+
"Action": [
|
|
109
113
|
"s3:ListBucket*",
|
|
110
114
|
"s3:PutBucket*",
|
|
111
115
|
"s3:GetBucket*"
|
|
112
116
|
],
|
|
113
117
|
"Resource": [
|
|
114
|
-
"arn:aws:s3:::
|
|
118
|
+
"arn:aws:s3:::amzn-s3-demo-bucket"
|
|
115
119
|
]
|
|
116
120
|
}
|
|
117
121
|
]
|
|
118
122
|
}
|
|
119
123
|
|
|
120
124
|
Output::
|
|
121
|
-
|
|
125
|
+
|
|
122
126
|
{
|
|
123
127
|
"Policy": {
|
|
124
128
|
"PolicyName": "my-policy",
|
|
@@ -139,7 +143,6 @@ Output::
|
|
|
139
143
|
"Key": "Location",
|
|
140
144
|
"Value": "Seattle"
|
|
141
145
|
{
|
|
142
|
-
|
|
143
146
|
]
|
|
144
147
|
}
|
|
145
148
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
**To list an AWS
|
|
1
|
+
**To list an AWS account's IAM users, groups, roles, and policies**
|
|
2
2
|
|
|
3
3
|
The following ``get-account-authorization-details`` command returns information about all IAM users, groups, roles, and policies in the AWS account. ::
|
|
4
4
|
|
|
@@ -236,8 +236,8 @@ Output::
|
|
|
236
236
|
"s3:List*"
|
|
237
237
|
],
|
|
238
238
|
"Resource": [
|
|
239
|
-
"arn:aws:s3:::
|
|
240
|
-
"arn:aws:s3:::
|
|
239
|
+
"arn:aws:s3:::amzn-s3-demo-bucket",
|
|
240
|
+
"arn:aws:s3:::amzn-s3-demo-bucket/*"
|
|
241
241
|
]
|
|
242
242
|
}
|
|
243
243
|
]
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
The following ``list-configuration-policy-associations`` example lists a summary of configuration associations for the organization. The response include associations with configuration policies and self-managed behavior. ::
|
|
4
4
|
|
|
5
5
|
aws securityhub list-configuration-policy-associations \
|
|
6
|
-
--
|
|
6
|
+
--filters '{"AssociationType": "APPLIED"}' \
|
|
7
7
|
--max-items 4
|
|
8
8
|
|
|
9
9
|
Output::
|
|
@@ -47,4 +47,4 @@ Output::
|
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
For more information, see `Viewing
|
|
50
|
+
For more information, see `Viewing configuration policy status and details <https://docs.aws.amazon.com/securityhub/latest/userguide/view-policy.html>`__ in the *AWS Security Hub User Guide*.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: awscli
|
|
3
|
-
Version: 1.36.
|
|
3
|
+
Version: 1.36.10
|
|
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.11
|
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
24
|
Requires-Python: >= 3.8
|
|
25
25
|
License-File: LICENSE.txt
|
|
26
|
-
Requires-Dist: botocore (==1.35.
|
|
26
|
+
Requires-Dist: botocore (==1.35.69)
|
|
27
27
|
Requires-Dist: docutils (<0.17,>=0.10)
|
|
28
28
|
Requires-Dist: s3transfer (<0.11.0,>=0.10.0)
|
|
29
29
|
Requires-Dist: PyYAML (<6.1,>=3.10)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
awscli/__init__.py,sha256=
|
|
1
|
+
awscli/__init__.py,sha256=fN-j4f8JLlFfTPEI-FL8dIrR_IxqJ-mZkl63aLj1uVo,1534
|
|
2
2
|
awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
|
|
3
3
|
awscli/alias.py,sha256=Us9pvP8Zplbr1W4N3rE5gxicWLqlRG3l_9VPskxafgs,11313
|
|
4
4
|
awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
|
|
@@ -62,7 +62,7 @@ awscli/customizations/putmetricdata.py,sha256=FczJBZUGb4mXtSalD1ihwDSjMSDlxZ5V1j
|
|
|
62
62
|
awscli/customizations/quicksight.py,sha256=r5XrHPIofOfKVZrE6JGUjDKovkgOf19nrsVVzWOHGDY,1457
|
|
63
63
|
awscli/customizations/rds.py,sha256=49mfeoYOFtgO5iodjp8eG0H_DUQ7Y5W0NfPCLXd97HQ,4273
|
|
64
64
|
awscli/customizations/rekognition.py,sha256=NHajCaaLkSC5YDmtJe-EdLdgmObrQetj6as0Diu_d3o,1813
|
|
65
|
-
awscli/customizations/removals.py,sha256=
|
|
65
|
+
awscli/customizations/removals.py,sha256=I1HLlkykVH_gPBK91qzz_se95gxLvMTUS2oTwT69M8g,4132
|
|
66
66
|
awscli/customizations/route53.py,sha256=TyEnjZz7bPegLQ23X5r1tNUJ1gSAmGeQBaF98t5PLmU,1187
|
|
67
67
|
awscli/customizations/s3errormsg.py,sha256=STKQ3714dnXOzPSPszCikhv5hoRBUJnk-u0kFp7FaEU,2480
|
|
68
68
|
awscli/customizations/s3events.py,sha256=ZcNmDN26dXxLrLawawl9jRFWqK1lMEQpty0YRNjBQws,4795
|
|
@@ -146,7 +146,7 @@ awscli/customizations/emr/addinstancegroups.py,sha256=TFKsjwLo26TQR25IpCr8sMh58j
|
|
|
146
146
|
awscli/customizations/emr/addsteps.py,sha256=2OXYlJ-bm2BH3mNSnQjgwz6HoB0cnUR7s_Y5zI_WPP8,2208
|
|
147
147
|
awscli/customizations/emr/addtags.py,sha256=IDWlPXXWdoVEVek7V-0SlZmOhJWxm-5HPCPmmUGHcPI,1089
|
|
148
148
|
awscli/customizations/emr/applicationutils.py,sha256=-SQQSlS4P8U4LjSKL9Bc6K7JD3pOMUaO2ADisgcEHko,6550
|
|
149
|
-
awscli/customizations/emr/argumentschema.py,sha256=
|
|
149
|
+
awscli/customizations/emr/argumentschema.py,sha256=SQLlsfFmlhZ_nXxJEvzWmHO0oKLoXerU3fs5wXhJbMk,40953
|
|
150
150
|
awscli/customizations/emr/command.py,sha256=pHxKJZR0FgGDopdmaxqpA1cZo1QogawHOxuu77vAV4U,5442
|
|
151
151
|
awscli/customizations/emr/config.py,sha256=0MEd3p302iy3Iw6YTVARRwfflYHoXyV6BSlZbG0kCHg,4761
|
|
152
152
|
awscli/customizations/emr/configutils.py,sha256=I7Hs_JFcrLUcXwVs4gHynaIZIk_oxBA7ADEYwkGAi60,2554
|
|
@@ -307,7 +307,7 @@ awscli/examples/apigateway/delete-stage.rst,sha256=W8-ygGT2gLp_65vsXD8ufK7cnX9S_
|
|
|
307
307
|
awscli/examples/apigateway/delete-usage-plan-key.rst,sha256=s5dwTgfpZlzYKgIUNiBvcwPC6Q2l_YNwlniXf_xzg44,167
|
|
308
308
|
awscli/examples/apigateway/delete-usage-plan.rst,sha256=BJokdNDCmJSzap414eGEbKSBkhb_XkIMnzLe0blHw_w,97
|
|
309
309
|
awscli/examples/apigateway/flush-stage-authorizers-cache.rst,sha256=x2geDlHXHBllGSEU9AHiRReV62Yh1DMgEXqYnfPIuKQ,154
|
|
310
|
-
awscli/examples/apigateway/flush-stage-cache.rst,sha256=
|
|
310
|
+
awscli/examples/apigateway/flush-stage-cache.rst,sha256=0Jc7Ue8oPeO9FS73MphLL_IrcUjquVy8QsbfSD18Ko4,476
|
|
311
311
|
awscli/examples/apigateway/generate-client-certificate.rst,sha256=uilz_xs0R3wTitY0zwPrhGBnXuTIrvDrQAn8YpnnVNU,145
|
|
312
312
|
awscli/examples/apigateway/get-account.rst,sha256=crfNjpzAlHzPFOyEvlLgo5qZk02iJoJTgLyNW4Chtng,289
|
|
313
313
|
awscli/examples/apigateway/get-api-key.rst,sha256=tFCIrH1DtTLfzUk1cHuQ9s4mE78esyMThqR5UuZR_U0,464
|
|
@@ -2319,6 +2319,9 @@ awscli/examples/ecr/untag-resource.rst,sha256=RNR8QgUpJgsHNkl5TL2yAfRPmvG6T5XVXE
|
|
|
2319
2319
|
awscli/examples/ecr/upload-layer-part.rst,sha256=GRacPKGCYA8H9Ir4uu8C4-99q173NyLGXZolMXhekys,679
|
|
2320
2320
|
awscli/examples/ecr-public/create-repository.rst,sha256=2F_boew-CSFE4BpHx7S5tQRlKwOnzE_-eawFTLAGbSM,15176
|
|
2321
2321
|
awscli/examples/ecr-public/delete-repository.rst,sha256=RhG3y3uTILRB153njeKFJQ7OAvRqqIPw1VZyHkKMVGI,867
|
|
2322
|
+
awscli/examples/ecr-public/describe-registries.rst,sha256=IKafkhdx0vXLncykt2iyvxj5gYqqdjwzp5K8tEbnYiw,755
|
|
2323
|
+
awscli/examples/ecr-public/describe-repository.rst,sha256=vu8t6qL2msYLYbAncjMjNfYzf7DEdtBYJBlGLHuV-og,1519
|
|
2324
|
+
awscli/examples/ecr-public/get-login-password.rst,sha256=CUWwThTkphSeW64TK3lIoMxXVA7JPX5e2wTJjwMAqm4,1486
|
|
2322
2325
|
awscli/examples/ecr-public/get-login-password_description.rst,sha256=22fIJRMLiTAkFjv1y8jRPpof7gDQhDZxoR8DoLnD8I0,698
|
|
2323
2326
|
awscli/examples/ecs/create-capacity-provider.rst,sha256=RmdbP8SVIXFUGPKpdSKkqsTnzAzN6LwkmCMYZd-WC0g,1623
|
|
2324
2327
|
awscli/examples/ecs/create-cluster.rst,sha256=57e9m_MOuJFV4OTCv8nkTh3o4vvMoLa3QKJ_69HY6GI,5702
|
|
@@ -2964,7 +2967,7 @@ awscli/examples/iam/create-instance-profile.rst,sha256=LoXmBPFSpf7UWs-0GfDk6jpjB
|
|
|
2964
2967
|
awscli/examples/iam/create-login-profile.rst,sha256=cIF17xJX063JHPw6LoZwuNyV2AdktrdAb6kPR3qgYkg,2171
|
|
2965
2968
|
awscli/examples/iam/create-open-id-connect-provider.rst,sha256=AtnZBehfj1767JNF1fdemY1N_inxFTG6fejH_KpRtEg,2392
|
|
2966
2969
|
awscli/examples/iam/create-policy-version.rst,sha256=7YWTT3A0Tw_qS1JLM_4_bLkQIuVpwNvb-VBN6RO3chg,746
|
|
2967
|
-
awscli/examples/iam/create-policy.rst,sha256=
|
|
2970
|
+
awscli/examples/iam/create-policy.rst,sha256=B5hdloCaq2mud34oHuh0yjuW12K5Z08e04ipy7PrnFw,5447
|
|
2968
2971
|
awscli/examples/iam/create-role.rst,sha256=g-iimILFjRR63UsnRp4OF6VZAXDZvD7WDplZeb5B06k,4249
|
|
2969
2972
|
awscli/examples/iam/create-saml-provider.rst,sha256=qSxJdMbUInC9ktBwRiVLnDS9mlLAB-aikzy3iR0CqDE,609
|
|
2970
2973
|
awscli/examples/iam/create-service-linked-role.rst,sha256=MwQRbMv-oR27IJj4RpoMfR9Sw5GuUS0euwLUw7z3fkI,1418
|
|
@@ -3004,7 +3007,7 @@ awscli/examples/iam/generate-credential-report.rst,sha256=n8CbalvkRS8Dy9pnVO8-gb
|
|
|
3004
3007
|
awscli/examples/iam/generate-organizations-access-report.rst,sha256=djstl4lOJB0P8nIIX18TtTLK1lL7HEGMJZRawf_vOAM,2106
|
|
3005
3008
|
awscli/examples/iam/generate-service-last-accessed-details.rst,sha256=amNeD6sQHXberyR7ABus6DaqhtfcHZFYYd9-ai1cwu0,1440
|
|
3006
3009
|
awscli/examples/iam/get-access-key-last-used.rst,sha256=9BtL9NKaCIbxMPKuqZRyY9VDslWFJUFshRe6riMUS98,648
|
|
3007
|
-
awscli/examples/iam/get-account-authorization-details.rst,sha256=
|
|
3010
|
+
awscli/examples/iam/get-account-authorization-details.rst,sha256=EoVYPUo_UfGbeGuyKu4F00r6aYuIonfOxOnWxInQepk,12594
|
|
3008
3011
|
awscli/examples/iam/get-account-password-policy.rst,sha256=VDG8QbXoN5BQjrMYidMbhfbCTKUZ85z5nSkRJ-aw61I,834
|
|
3009
3012
|
awscli/examples/iam/get-account-summary.rst,sha256=9pkq9qDx9rtg1O9IuOhLN2UX_ixfN99xKWzIW0Lgk6c,1357
|
|
3010
3013
|
awscli/examples/iam/get-context-keys-for-custom-policy.rst,sha256=PqrEBJaoVzx0t8SRcdl7A94Anc7mFR6H6V6pSeI1gwU,2727
|
|
@@ -5234,7 +5237,7 @@ awscli/examples/securityhub/get-security-control-definition.rst,sha256=zTPJigN5V
|
|
|
5234
5237
|
awscli/examples/securityhub/invite-members.rst,sha256=HXohHr4ke-Y5HBkriQxtgwTXtGeIPAqXuz_nMEpgcVQ,497
|
|
5235
5238
|
awscli/examples/securityhub/list-automation-rules.rst,sha256=WwnpHYYHn4X95eUBXwQwHda4LSh8WWQLWvVd7OOfzzs,2290
|
|
5236
5239
|
awscli/examples/securityhub/list-configuration-policies.rst,sha256=VhAgnTWq9f-L34IH55AVXzVfT9v5LRAmC8mHHKd2QJc,1785
|
|
5237
|
-
awscli/examples/securityhub/list-configuration-policy-associations.rst,sha256=
|
|
5240
|
+
awscli/examples/securityhub/list-configuration-policy-associations.rst,sha256=WFfCesGzkQV4ATM9cuZ8c_LgvXx61QEmV--R3ob9ofQ,2429
|
|
5238
5241
|
awscli/examples/securityhub/list-enabled-products-for-import.rst,sha256=FFT9-aB2Jo1ccDGZtaLjorB90PhUdiWQGrDDldGDLlY,707
|
|
5239
5242
|
awscli/examples/securityhub/list-finding-aggregators.rst,sha256=oNimbSlfHbMHNK2_UA4GJOTiYjXHFqgrvetBqmyVw28,578
|
|
5240
5243
|
awscli/examples/securityhub/list-invitations.rst,sha256=K_MKa5GhjFJ80fldP_mjDl6i8W4UNPI08Q1-lvN3Iko,715
|
|
@@ -5953,13 +5956,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
|
|
|
5953
5956
|
awscli/topics/s3-config.rst,sha256=FwwCczTylrSLwELuDQ-VA8sCI7ruwV9PEJJrqxjUeG0,11502
|
|
5954
5957
|
awscli/topics/s3-faq.rst,sha256=sS5jKHF_7X5eiGwpUg7aTqQt2zCRN-m_xXOcE0Bme0Q,1899
|
|
5955
5958
|
awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
|
|
5956
|
-
awscli-1.36.
|
|
5957
|
-
awscli-1.36.
|
|
5958
|
-
awscli-1.36.
|
|
5959
|
-
awscli-1.36.
|
|
5960
|
-
awscli-1.36.
|
|
5961
|
-
awscli-1.36.
|
|
5962
|
-
awscli-1.36.
|
|
5963
|
-
awscli-1.36.
|
|
5964
|
-
awscli-1.36.
|
|
5965
|
-
awscli-1.36.
|
|
5959
|
+
awscli-1.36.10.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
|
5960
|
+
awscli-1.36.10.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
|
5961
|
+
awscli-1.36.10.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
|
5962
|
+
awscli-1.36.10.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
|
5963
|
+
awscli-1.36.10.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
|
5964
|
+
awscli-1.36.10.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
|
5965
|
+
awscli-1.36.10.dist-info/METADATA,sha256=qcDEDCWrlYHxZ90Octx4T-Ahtmv4rSbGmpvdZDVsOCE,11331
|
|
5966
|
+
awscli-1.36.10.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
5967
|
+
awscli-1.36.10.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
|
5968
|
+
awscli-1.36.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|