awscli 1.38.8__py3-none-any.whl → 1.38.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/examples/codecommit/get-merge-commit.rst +1 -2
- awscli/examples/cognito-idp/get-identity-provider-by-identifier.rst +35 -0
- awscli/examples/cognito-idp/get-log-delivery-configuration.rst +32 -0
- awscli/examples/cognito-idp/get-signing-certificate.rst +14 -13
- awscli/examples/cognito-idp/get-ui-customization.rst +22 -19
- awscli/examples/cognito-idp/get-user-attribute-verification-code.rst +19 -0
- awscli/examples/cognito-idp/get-user-auth-factors.rst +20 -0
- awscli/examples/cognito-idp/get-user-pool-mfa-config.rst +33 -0
- awscli/examples/cognito-idp/get-user.rst +56 -0
- awscli/examples/cognito-idp/global-sign-out.rst +10 -0
- awscli/examples/cognito-idp/initiate-auth.rst +27 -0
- awscli/examples/cognito-idp/list-devices.rst +23 -25
- awscli/examples/cognito-idp/list-groups.rst +32 -0
- awscli/examples/cognito-idp/list-identity-providers.rst +29 -0
- awscli/examples/cognito-idp/list-resource-servers.rst +43 -0
- awscli/examples/cognito-idp/list-tags-for-resource.rst +17 -0
- awscli/examples/cognito-idp/list-user-import-jobs.rst +61 -57
- awscli/examples/cognito-idp/list-user-pool-clients.rst +32 -0
- awscli/examples/cognito-idp/list-user-pools.rst +48 -22
- awscli/examples/cognito-idp/list-users.rst +98 -35
- awscli/examples/cognito-idp/list-web-authn-credentials.rst +22 -0
- awscli/examples/cognito-idp/respond-to-auth-challenge.rst +78 -27
- awscli/examples/cognito-idp/revoke-token.rst +11 -0
- awscli/examples/cognito-idp/set-log-delivery-configuration.rst +33 -0
- awscli/examples/cognito-idp/set-risk-configuration.rst +136 -23
- awscli/examples/cognito-idp/set-ui-customization.rst +45 -18
- awscli/examples/cognito-idp/set-user-mfa-preference.rst +6 -5
- awscli/examples/cognito-idp/set-user-pool-mfa-config.rst +38 -0
- awscli/examples/cognito-idp/start-user-import-job.rst +27 -29
- awscli/examples/cognito-idp/start-web-authn-registration.rst +47 -0
- awscli/examples/cognito-idp/stop-user-import-job.rst +29 -31
- awscli/examples/ecs/create-cluster.rst +46 -42
- awscli/examples/ecs/put-account-setting.rst +8 -5
- awscli/examples/ecs/update-cluster-settings.rst +6 -6
- awscli/examples/ecs/update-service.rst +235 -7
- {awscli-1.38.8.dist-info → awscli-1.38.10.dist-info}/METADATA +2 -2
- {awscli-1.38.8.dist-info → awscli-1.38.10.dist-info}/RECORD +46 -28
- {awscli-1.38.8.data → awscli-1.38.10.data}/scripts/aws +0 -0
- {awscli-1.38.8.data → awscli-1.38.10.data}/scripts/aws.cmd +0 -0
- {awscli-1.38.8.data → awscli-1.38.10.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.38.8.data → awscli-1.38.10.data}/scripts/aws_completer +0 -0
- {awscli-1.38.8.data → awscli-1.38.10.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.38.8.dist-info → awscli-1.38.10.dist-info}/LICENSE.txt +0 -0
- {awscli-1.38.8.dist-info → awscli-1.38.10.dist-info}/WHEEL +0 -0
- {awscli-1.38.8.dist-info → awscli-1.38.10.dist-info}/top_level.txt +0 -0
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
**To modify the account setting for your IAM user account**
|
|
2
2
|
|
|
3
|
-
The following ``put-account-setting`` example
|
|
3
|
+
The following ``put-account-setting`` example sets the ``containerInsights`` account setting to ``enhanced`` for your IAM user account. This turns on Container Insights with enhanced observability. ::
|
|
4
4
|
|
|
5
|
-
aws ecs put-account-setting
|
|
5
|
+
aws ecs put-account-setting \
|
|
6
|
+
--name containerInsights \
|
|
7
|
+
--value enhanced
|
|
6
8
|
|
|
7
9
|
Output::
|
|
8
10
|
|
|
9
11
|
{
|
|
10
12
|
"setting": {
|
|
11
|
-
"name": "
|
|
12
|
-
"value": "
|
|
13
|
-
"principalArn": "arn:aws:iam::
|
|
13
|
+
"name": "containerInsights",
|
|
14
|
+
"value": "enhanced",
|
|
15
|
+
"principalArn": "arn:aws:iam::123456789012:user/johndoe",
|
|
16
|
+
"type": "user"
|
|
14
17
|
}
|
|
15
18
|
}
|
|
16
19
|
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
**To modify the settings for your cluster**
|
|
2
2
|
|
|
3
|
-
The following ``update-cluster-settings`` example enables CloudWatch Container Insights for the ``
|
|
3
|
+
The following ``update-cluster-settings`` example enables CloudWatch Container Insights with enhanced observability for the ``MyCluster`` cluster. ::
|
|
4
4
|
|
|
5
5
|
aws ecs update-cluster-settings \
|
|
6
|
-
--cluster
|
|
7
|
-
--settings name=containerInsights,value=
|
|
6
|
+
--cluster MyCluster \
|
|
7
|
+
--settings name=containerInsights,value=enhanced
|
|
8
8
|
|
|
9
9
|
Output::
|
|
10
10
|
|
|
11
11
|
{
|
|
12
12
|
"cluster": {
|
|
13
|
-
"clusterArn": "arn:aws:ecs:us-
|
|
13
|
+
"clusterArn": "arn:aws:ecs:us-esat-1:123456789012:cluster/MyCluster",
|
|
14
14
|
"clusterName": "default",
|
|
15
15
|
"status": "ACTIVE",
|
|
16
16
|
"registeredContainerInstancesCount": 0,
|
|
@@ -22,10 +22,10 @@ Output::
|
|
|
22
22
|
"settings": [
|
|
23
23
|
{
|
|
24
24
|
"name": "containerInsights",
|
|
25
|
-
"value": "
|
|
25
|
+
"value": "enhanced"
|
|
26
26
|
}
|
|
27
27
|
]
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
For more information, see `Modifying Account Settings <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-modifying-longer-id-settings.html>`__ in the *Amazon ECS Developer Guide*.
|
|
31
|
+
For more information, see `Modifying Account Settings <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-modifying-longer-id-settings.html>`__ in the *Amazon ECS Developer Guide*.
|
|
@@ -1,13 +1,241 @@
|
|
|
1
|
-
**Example 1: To change the
|
|
1
|
+
**Example 1: To change the number of instantiations in a service**
|
|
2
2
|
|
|
3
|
-
The following ``update-service`` example updates the
|
|
3
|
+
The following ``update-service`` example updates the desired task count of the service ``my-http-service`` to 2. ::
|
|
4
4
|
|
|
5
|
-
aws ecs update-service
|
|
5
|
+
aws ecs update-service \
|
|
6
|
+
--cluster MyCluster
|
|
7
|
+
--service my-http-service \
|
|
8
|
+
--desired-count 2
|
|
6
9
|
|
|
7
|
-
|
|
10
|
+
Output::
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
{
|
|
13
|
+
"service": {
|
|
14
|
+
"serviceArn": "arn:aws:ecs:us-east-1:123456789012:service/MyCluster/my-http-service",
|
|
15
|
+
"serviceName": "my-http-service",
|
|
16
|
+
"clusterArn": "arn:aws:ecs:us-east-1:123456789012:cluster/MyCluster",
|
|
17
|
+
"loadBalancers": [],
|
|
18
|
+
"serviceRegistries": [],
|
|
19
|
+
"status": "ACTIVE",
|
|
20
|
+
"desiredCount": 2,
|
|
21
|
+
"runningCount": 1,
|
|
22
|
+
"pendingCount": 0,
|
|
23
|
+
"capacityProviderStrategy": [
|
|
24
|
+
{
|
|
25
|
+
"capacityProvider": "FARGATE",
|
|
26
|
+
"weight": 1,
|
|
27
|
+
"base": 0
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"platformVersion": "LATEST",
|
|
31
|
+
"platformFamily": "Linux",
|
|
32
|
+
"taskDefinition": "arn:aws:ecs:us-east-1:123456789012:task-definition/MyTaskDefinition",
|
|
33
|
+
"deploymentConfiguration": {
|
|
34
|
+
"deploymentCircuitBreaker": {
|
|
35
|
+
"enable": true,
|
|
36
|
+
"rollback": true
|
|
37
|
+
},
|
|
38
|
+
"maximumPercent": 200,
|
|
39
|
+
"minimumHealthyPercent": 100,
|
|
40
|
+
"alarms": {
|
|
41
|
+
"alarmNames": [],
|
|
42
|
+
"rollback": false,
|
|
43
|
+
"enable": false
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"deployments": [
|
|
47
|
+
{
|
|
48
|
+
"id": "ecs-svc/1976744184940610707",
|
|
49
|
+
"status": "PRIMARY",
|
|
50
|
+
"taskkDefinition": "arn:aws:ecs:us-east-1:123456789012:task-definition/MyTaskDefinition",
|
|
51
|
+
"desiredCount": 1,
|
|
52
|
+
"pendingCount": 0,
|
|
53
|
+
"runningCount": 1,
|
|
54
|
+
"failedTasks": 0,
|
|
55
|
+
"createdAt": "2024-12-03T16:24:25.225000-05:00",
|
|
56
|
+
"updatedAt": "2024-12-03T16:25:15.837000-05:00",
|
|
57
|
+
"capacityProviderStrategy": [
|
|
58
|
+
{
|
|
59
|
+
"capacityProvider": "FARGATE",
|
|
60
|
+
"weight": 1,
|
|
61
|
+
"base": 0
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"platformVersion": "1.4.0",
|
|
65
|
+
"platformFamily": "Linux",
|
|
66
|
+
"networkConfiguration": {
|
|
67
|
+
"awsvpcConfiguration": {
|
|
68
|
+
"subnets": [
|
|
69
|
+
"subnet-0d0eab1bb38d5ca64",
|
|
70
|
+
"subnet-0db5010045995c2d5"
|
|
71
|
+
],
|
|
72
|
+
"securityGroups": [
|
|
73
|
+
"sg-02556bf85a191f59a"
|
|
74
|
+
],
|
|
75
|
+
"assignPublicIp": "ENABLED"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"rolloutState": "COMPLETED",
|
|
79
|
+
"rolloutStateReason": "ECS deployment ecs-svc/1976744184940610707 completed."
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"roleArn": "arn:aws:iam::123456789012:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS",
|
|
83
|
+
"events": [
|
|
84
|
+
{
|
|
85
|
+
"id": "f27350b9-4b2a-4e2e-b72e-a4b68380de45",
|
|
86
|
+
"createdAt": "2024-12-30T13:24:07.345000-05:00",
|
|
87
|
+
"message": "(service my-http-service) has reached a steady state."
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "e764ec63-f53f-45e3-9af2-d99f922d2957",
|
|
91
|
+
"createdAt": "2024-12-30T12:32:21.600000-05:00",
|
|
92
|
+
"message": "(service my-http-service) has reached a steady state."
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "28444756-c2fa-47f8-bd60-93a8e05f3991",
|
|
96
|
+
"createdAt": "2024-12-08T19:26:10.367000-05:00",
|
|
97
|
+
"message": "(service my-http-service) has reached a steady state."
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
"createdAt": "2024-12-03T16:24:25.225000-05:00",
|
|
101
|
+
"placementConstraints": [],
|
|
102
|
+
"placementStrategy": [],
|
|
103
|
+
"networkConfiguration": {
|
|
104
|
+
"awsvpcConfiguration": {
|
|
105
|
+
"subnets": [
|
|
106
|
+
"subnet-0d0eab1bb38d5ca64",
|
|
107
|
+
"subnet-0db5010045995c2d5"
|
|
108
|
+
],
|
|
109
|
+
"securityGroups": [
|
|
110
|
+
"sg-02556bf85a191f59a"
|
|
111
|
+
],
|
|
112
|
+
"assignPublicIp": "ENABLED"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"healthCheckGracePeriodSeconds": 0,
|
|
116
|
+
"schedulingStrategy": "REPLICA",
|
|
117
|
+
"deploymentController": {
|
|
118
|
+
"type": "ECS"
|
|
119
|
+
},
|
|
120
|
+
"createdBy": "arn:aws:iam::123456789012:role/Admin",
|
|
121
|
+
"enableECSManagedTags": true,
|
|
122
|
+
"propagateTags": "NONE",
|
|
123
|
+
"enableExecuteCommand": false,
|
|
124
|
+
"availabilityZoneRebalancing": "ENABLED"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
10
127
|
|
|
11
|
-
|
|
128
|
+
For more information, see `Updating an Amazon ECS service using the console <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/update-service-console-v2.html>`__ in the *Amazon ECS Developer Guide*.
|
|
12
129
|
|
|
13
|
-
|
|
130
|
+
**Example 2: To turn on Availability Zone rebalancing for a service**
|
|
131
|
+
|
|
132
|
+
The following ``update-service`` example turns on Availability Zone rebalancing for the service ``my-http-service``. ::
|
|
133
|
+
|
|
134
|
+
aws ecs update-service \
|
|
135
|
+
--cluster MyCluster \
|
|
136
|
+
--service my-http-service \
|
|
137
|
+
--availability-zone-rebalancing ENABLED
|
|
138
|
+
|
|
139
|
+
Output::
|
|
140
|
+
|
|
141
|
+
{
|
|
142
|
+
"service": {
|
|
143
|
+
"serviceArn": "arn:aws:ecs:us-east-1:123456789012:service/MyCluster/my-http-service",
|
|
144
|
+
"serviceName": "my-http-service",
|
|
145
|
+
"clusterArn": "arn:aws:ecs:us-east-1:123456789012:cluster/MyCluster",
|
|
146
|
+
"loadBalancers": [],
|
|
147
|
+
"serviceRegistries": [],
|
|
148
|
+
"status": "ACTIVE",
|
|
149
|
+
"desiredCount": 2,
|
|
150
|
+
"runningCount": 1,
|
|
151
|
+
"pendingCount": 0,
|
|
152
|
+
"capacityProviderStrategy": [
|
|
153
|
+
{
|
|
154
|
+
"capacityProvider": "FARGATE",
|
|
155
|
+
"weight": 1,
|
|
156
|
+
"base": 0
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"platformVersion": "LATEST",
|
|
160
|
+
"platformFamily": "Linux",
|
|
161
|
+
"taskDefinition": "arn:aws:ecs:us-east-1:123456789012:task-definition/MyTaskDefinition",
|
|
162
|
+
"deploymentConfiguration": {
|
|
163
|
+
"deploymentCircuitBreaker": {
|
|
164
|
+
"enable": true,
|
|
165
|
+
"rollback": true
|
|
166
|
+
},
|
|
167
|
+
"maximumPercent": 200,
|
|
168
|
+
"minimumHealthyPercent": 100,
|
|
169
|
+
"alarms": {
|
|
170
|
+
"alarmNames": [],
|
|
171
|
+
"rollback": false,
|
|
172
|
+
"enable": false
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"deployments": [
|
|
176
|
+
{
|
|
177
|
+
"id": "ecs-svc/1976744184940610707",
|
|
178
|
+
"status": "PRIMARY",
|
|
179
|
+
"taskkDefinition": "arn:aws:ecs:us-east-1:123456789012:task-definition/MyTaskDefinition",
|
|
180
|
+
"desiredCount": 1,
|
|
181
|
+
"pendingCount": 0,
|
|
182
|
+
"runningCount": 1,
|
|
183
|
+
"failedTasks": 0,
|
|
184
|
+
"createdAt": "2024-12-03T16:24:25.225000-05:00",
|
|
185
|
+
"updatedAt": "2024-12-03T16:25:15.837000-05:00",
|
|
186
|
+
"capacityProviderStrategy": [
|
|
187
|
+
{
|
|
188
|
+
"capacityProvider": "FARGATE",
|
|
189
|
+
"weight": 1,
|
|
190
|
+
"base": 0
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"platformVersion": "1.4.0",
|
|
194
|
+
"platformFamily": "Linux",
|
|
195
|
+
"networkConfiguration": {
|
|
196
|
+
"awsvpcConfiguration": {
|
|
197
|
+
"subnets": [
|
|
198
|
+
"subnet-0d0eab1bb38d5ca64",
|
|
199
|
+
"subnet-0db5010045995c2d5"
|
|
200
|
+
],
|
|
201
|
+
"securityGroups": [
|
|
202
|
+
"sg-02556bf85a191f59a"
|
|
203
|
+
],
|
|
204
|
+
"assignPublicIp": "ENABLED"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"rolloutState": "COMPLETED",
|
|
208
|
+
"rolloutStateReason": "ECS deployment ecs-svc/1976744184940610707 completed."
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"roleArn": "arn:aws:iam::123456789012:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS",
|
|
212
|
+
"events": [],
|
|
213
|
+
"createdAt": "2024-12-03T16:24:25.225000-05:00",
|
|
214
|
+
"placementConstraints": [],
|
|
215
|
+
"placementStrategy": [],
|
|
216
|
+
"networkConfiguration": {
|
|
217
|
+
"awsvpcConfiguration": {
|
|
218
|
+
"subnets": [
|
|
219
|
+
"subnet-0d0eab1bb38d5ca64",
|
|
220
|
+
"subnet-0db5010045995c2d5"
|
|
221
|
+
],
|
|
222
|
+
"securityGroups": [
|
|
223
|
+
"sg-02556bf85a191f59a"
|
|
224
|
+
],
|
|
225
|
+
"assignPublicIp": "ENABLED"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"healthCheckGracePeriodSeconds": 0,
|
|
229
|
+
"schedulingStrategy": "REPLICA",
|
|
230
|
+
"deploymentController": {
|
|
231
|
+
"type": "ECS"
|
|
232
|
+
},
|
|
233
|
+
"createdBy": "arn:aws:iam::123456789012:role/Admin",
|
|
234
|
+
"enableECSManagedTags": true,
|
|
235
|
+
"propagateTags": "NONE",
|
|
236
|
+
"enableExecuteCommand": false,
|
|
237
|
+
"availabilityZoneRebalancing": "ENABLED"
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
For more information, see `Updating an Amazon ECS service using the console <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/update-service-console-v2.html>`__ in the *Amazon ECS Developer Guide*.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: awscli
|
|
3
|
-
Version: 1.38.
|
|
3
|
+
Version: 1.38.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.37.
|
|
26
|
+
Requires-Dist: botocore (==1.37.10)
|
|
27
27
|
Requires-Dist: docutils (<0.17,>=0.10)
|
|
28
28
|
Requires-Dist: s3transfer (<0.12.0,>=0.11.0)
|
|
29
29
|
Requires-Dist: PyYAML (<6.1,>=3.10)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
awscli/__init__.py,sha256=
|
|
1
|
+
awscli/__init__.py,sha256=T7QQP7wSI0_1ZEx0uDOXJVHQvmNifG4dV8BH_9gcHUQ,1534
|
|
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
|
|
@@ -1010,7 +1010,7 @@ awscli/examples/codecommit/get-commit.rst,sha256=IsMPr6t37XYBMfWz3-AraVtdVk1hxBv
|
|
|
1010
1010
|
awscli/examples/codecommit/get-differences.rst,sha256=SoXGSdH_XQyBg_M7-peNkYkgHmG9T6EJSdieI2xp7Yk,1302
|
|
1011
1011
|
awscli/examples/codecommit/get-file.rst,sha256=Nom3He4JRZtX3GAb4QmO9SaJCxDBnsZfcvQDkDTaylQ,789
|
|
1012
1012
|
awscli/examples/codecommit/get-folder.rst,sha256=54LzwDMnCdqdhVZT1V03-EidxDsgUTNEldIV1PCiNZU,1997
|
|
1013
|
-
awscli/examples/codecommit/get-merge-commit.rst,sha256=
|
|
1013
|
+
awscli/examples/codecommit/get-merge-commit.rst,sha256=mUmZGMuhmqQRWBWeICNcSCCZd1kLPQQQgdO4mXd9WYs,865
|
|
1014
1014
|
awscli/examples/codecommit/get-merge-conflicts.rst,sha256=IynnDZDlDIoaPveCgVWgfhScxb00tkelsjxidJwkwxg,1809
|
|
1015
1015
|
awscli/examples/codecommit/get-merge-options.rst,sha256=MCrI8uUodp09YGTp2Ado5Lw1gTh330ZxptYnoXBrOVg,996
|
|
1016
1016
|
awscli/examples/codecommit/get-pull-request-approval-states.rst,sha256=gekGPeMqQNrjuNlkTKUCkQ0ffiOF10fIhea5N3qRtvc,702
|
|
@@ -1184,22 +1184,40 @@ awscli/examples/cognito-idp/forgot-password.rst,sha256=OJZlGHqma2qGojj6SmTygaraB
|
|
|
1184
1184
|
awscli/examples/cognito-idp/get-csv-header.rst,sha256=HG8kpX8nToXOl5eH10uaB_dqiakg5-764Gz5LkW3vhA,953
|
|
1185
1185
|
awscli/examples/cognito-idp/get-device.rst,sha256=hsxBZc--YayQOsph08YUkHUNBSt2Nd5P2CWp6pnuEFQ,1867
|
|
1186
1186
|
awscli/examples/cognito-idp/get-group.rst,sha256=tCXasYDzyvLR9RL3Rb8DZg0aTe0m_1glen5UjTlNH4w,834
|
|
1187
|
-
awscli/examples/cognito-idp/get-
|
|
1188
|
-
awscli/examples/cognito-idp/get-
|
|
1189
|
-
awscli/examples/cognito-idp/
|
|
1190
|
-
awscli/examples/cognito-idp/
|
|
1191
|
-
awscli/examples/cognito-idp/
|
|
1187
|
+
awscli/examples/cognito-idp/get-identity-provider-by-identifier.rst,sha256=3xbHq9NKmCEA3jmxGzO9j-DKwt4IYT68H_CHTKumjK4,1450
|
|
1188
|
+
awscli/examples/cognito-idp/get-log-delivery-configuration.rst,sha256=J1YaY9eLK-jIPJO34JVgMWkhU-NneT5oHu-WPVCZiEM,1286
|
|
1189
|
+
awscli/examples/cognito-idp/get-signing-certificate.rst,sha256=w2ag_WBVdMTi_XhvNlOrZ78uZD6WOgsmzvNN5d1ks7Y,547
|
|
1190
|
+
awscli/examples/cognito-idp/get-ui-customization.rst,sha256=9svlfmPMpi22mFY2XDWcaoelvOJmwk0k5Vq-gCnGCf8,2794
|
|
1191
|
+
awscli/examples/cognito-idp/get-user-attribute-verification-code.rst,sha256=86MIDuU08-dki4Q6X-P4oslotMlYLt_iavd1qEOmdOc,758
|
|
1192
|
+
awscli/examples/cognito-idp/get-user-auth-factors.rst,sha256=hMeRbK0X_4KjW3REEHbvQN70UZg_Hti16_ffsnIfpVI,672
|
|
1193
|
+
awscli/examples/cognito-idp/get-user-pool-mfa-config.rst,sha256=VQbOIymEc2pG8JYYL3U9PGI4zhhj6KwbiF_dwRTLIP4,1312
|
|
1194
|
+
awscli/examples/cognito-idp/get-user.rst,sha256=2-pUNeUt-pd2pIuXBN5WpsH-l3XLgi9okkQZL1QSeQ4,1773
|
|
1195
|
+
awscli/examples/cognito-idp/global-sign-out.rst,sha256=QElgHzMwHxV7hrPZ7l8pun-8dShG0U-2ClskUMVKY8I,399
|
|
1196
|
+
awscli/examples/cognito-idp/initiate-auth.rst,sha256=K0hHFrENDHDlxjRoQGtJXNSUcbZb__BcZhRGR24sjbc,1146
|
|
1197
|
+
awscli/examples/cognito-idp/list-devices.rst,sha256=S_ZGYpqfsJhhKLatHN6BXwbBbPzVwSWUPHqfxXJSYSU,1863
|
|
1198
|
+
awscli/examples/cognito-idp/list-groups.rst,sha256=GcMSgNwczTeuq7KDQ-D_1fKj4iR5o6piFr_UTRPQ1po,1190
|
|
1199
|
+
awscli/examples/cognito-idp/list-identity-providers.rst,sha256=XB-xcv8-IVWW7x4Z3aLYDnv404zsaFJXq1zNafnKHJc,1030
|
|
1200
|
+
awscli/examples/cognito-idp/list-resource-servers.rst,sha256=-RKeOQTr-vPT8HF1pr31-5zK8FyLIgQk8T8RpaBU-Ak,1606
|
|
1201
|
+
awscli/examples/cognito-idp/list-tags-for-resource.rst,sha256=-REaxk2gPbpjB_BLsn2iOtRNsJpUQcheDgf1TMDSFeY,602
|
|
1202
|
+
awscli/examples/cognito-idp/list-user-import-jobs.rst,sha256=EM2nMe3Evkfr5z_XWgKFF258ysJjaubp84BEI353cyw,3727
|
|
1203
|
+
awscli/examples/cognito-idp/list-user-pool-clients.rst,sha256=dSPNHXmLxJfhtUJgoAyc7go21RkARBr99JMoo-T4-0E,1087
|
|
1204
|
+
awscli/examples/cognito-idp/list-user-pools.rst,sha256=sKjrohAHwNr0OPGjMVXRczB3k97o326wFXoDQ5udWfQ,1949
|
|
1192
1205
|
awscli/examples/cognito-idp/list-users-in-group.rst,sha256=iPYJRJZcaysUqThBAVhgZgBBrSipHsBqECjfd_LEPYI,1594
|
|
1193
|
-
awscli/examples/cognito-idp/list-users.rst,sha256=
|
|
1206
|
+
awscli/examples/cognito-idp/list-users.rst,sha256=zqmeWaw-dI27WNwjVmuajGk5eV_qJx6QDs5OV8NVFGU,3644
|
|
1207
|
+
awscli/examples/cognito-idp/list-web-authn-credentials.rst,sha256=6riokI2IJTqK1PLWMUN_XViVYbzJhaWewJ4DdXQFuWg,971
|
|
1194
1208
|
awscli/examples/cognito-idp/resend-confirmation-code.rst,sha256=P7I8jeMD8eaXhJvd0LuIhQ20SXFaDTAicNW6WpuA5uM,667
|
|
1195
|
-
awscli/examples/cognito-idp/respond-to-auth-challenge.rst,sha256=
|
|
1196
|
-
awscli/examples/cognito-idp/
|
|
1197
|
-
awscli/examples/cognito-idp/set-
|
|
1198
|
-
awscli/examples/cognito-idp/set-
|
|
1209
|
+
awscli/examples/cognito-idp/respond-to-auth-challenge.rst,sha256=ZMpvV1Tja3mohOMX9oK6-eAPINCQkpYrR8qNbUGjgrw,3138
|
|
1210
|
+
awscli/examples/cognito-idp/revoke-token.rst,sha256=HBZQKkXrk-9opYHuDIVwP0yBaaylyz9Nah80jEMyf9k,456
|
|
1211
|
+
awscli/examples/cognito-idp/set-log-delivery-configuration.rst,sha256=KBdF5NonVH47LgCqYEUyplsVXMi8RrvOaJVDEL-2dmQ,1586
|
|
1212
|
+
awscli/examples/cognito-idp/set-risk-configuration.rst,sha256=l7YHhuaNL6sMupuNfvZYpyULXK9zkAptkxgF9UQHkdI,10549
|
|
1213
|
+
awscli/examples/cognito-idp/set-ui-customization.rst,sha256=i7_DPD2YP7fz33Ia8gpOYxaE10cWw3imOtP1uBe8aoo,11534
|
|
1214
|
+
awscli/examples/cognito-idp/set-user-mfa-preference.rst,sha256=B8wsFPFcUtbBAvUQzvZWgst2KmjJ41VfL6z9h28emu0,673
|
|
1215
|
+
awscli/examples/cognito-idp/set-user-pool-mfa-config.rst,sha256=nyZIuKje71lD3zyNnpRMniArSzsXNLcrtD6rr7Qzgbk,2101
|
|
1199
1216
|
awscli/examples/cognito-idp/set-user-settings.rst,sha256=bEPDVPxjkF-HMjT0tf8FZBs6SWhrZWKpZIG_LYuc8Ks,195
|
|
1200
1217
|
awscli/examples/cognito-idp/sign-up.rst,sha256=NVkIeh4xRJbOHvGRilzUPUnHRcMieRUDtNkfByW_u8k,370
|
|
1201
|
-
awscli/examples/cognito-idp/start-user-import-job.rst,sha256=
|
|
1202
|
-
awscli/examples/cognito-idp/
|
|
1218
|
+
awscli/examples/cognito-idp/start-user-import-job.rst,sha256=r4PuTs3XKRyLrB5AHqF9Rjv7EiIfG-_DAgQ5tKk89zE,1364
|
|
1219
|
+
awscli/examples/cognito-idp/start-web-authn-registration.rst,sha256=hPGuU6dIyzW9ACQkifIVXf-LepXCkTt9abMwnKVR1gc,1734
|
|
1220
|
+
awscli/examples/cognito-idp/stop-user-import-job.rst,sha256=fu_b84faku2vJLq1jsCsjb9kMT4ZZHXFnkrDvEGZ7JU,1504
|
|
1203
1221
|
awscli/examples/cognito-idp/update-auth-event-feedback.rst,sha256=JanhUZ1_jszlnyLCL5nRtIeczZLTZG8YJFBbEWKE6Mk,312
|
|
1204
1222
|
awscli/examples/cognito-idp/update-device-status.rst,sha256=F_1gNCSc7wlqSB49jhkTQ9V-IWq2CQqw0Jk0WYvsNI4,242
|
|
1205
1223
|
awscli/examples/cognito-idp/update-group.rst,sha256=idEtTNhunMtEZvfgGck2531u8e4C5wmbBstTr_5tp28,560
|
|
@@ -2365,7 +2383,7 @@ awscli/examples/ecr-public/tag-resource.rst,sha256=d7W4OnGTLOo523sRZnnXYXXesccqG
|
|
|
2365
2383
|
awscli/examples/ecr-public/untag-resource.rst,sha256=NQLXIGg7zIGaOn6GfiIyNyie3IRxbuSQg4l-B-Hls7w,588
|
|
2366
2384
|
awscli/examples/ecs/capacity-provider-update.rst,sha256=-ynz-2m3NxfyFNF2xCEBdcuQPx83b1JOs2836XDQcJo,1950
|
|
2367
2385
|
awscli/examples/ecs/create-capacity-provider.rst,sha256=RmdbP8SVIXFUGPKpdSKkqsTnzAzN6LwkmCMYZd-WC0g,1623
|
|
2368
|
-
awscli/examples/ecs/create-cluster.rst,sha256=
|
|
2386
|
+
awscli/examples/ecs/create-cluster.rst,sha256=K9Y_pNu8hFagKPJgfKFuSXGs_xmkFsmmOlfofewpetE,5860
|
|
2369
2387
|
awscli/examples/ecs/create-service.rst,sha256=YiMb8eHH0yANn08F4WRtKC0PrnyYjXqeLv2NkgqHdGg,9553
|
|
2370
2388
|
awscli/examples/ecs/create-task-set.rst,sha256=QFLHfhvU3C1CK_HiFcb5d3T6I0QG8JfsSOQssSY-pDs,1598
|
|
2371
2389
|
awscli/examples/ecs/delete-account-setting.rst,sha256=ZsljBcOiVagRW32A0BesG4Tq1qrQwqlnDUQG7dIXj4M,715
|
|
@@ -2400,7 +2418,7 @@ awscli/examples/ecs/list-task-definition-families.rst,sha256=drHAF31G1b-0UpvLMB-
|
|
|
2400
2418
|
awscli/examples/ecs/list-task-definitions.rst,sha256=lCJ6YxfJm_z9_HeWz5OFua1ns-wvHtQGwxKZCk5XiYo,1511
|
|
2401
2419
|
awscli/examples/ecs/list-tasks.rst,sha256=Z77I44mxZnKySRv2lSgE6kAawn79PwFhnHg21Qd1_ik,1027
|
|
2402
2420
|
awscli/examples/ecs/put-account-setting-default.rst,sha256=KY_vSLhiIuNGon1DqsQT2loPT7_nHE8DcI0Dmg2cIko,770
|
|
2403
|
-
awscli/examples/ecs/put-account-setting.rst,sha256=
|
|
2421
|
+
awscli/examples/ecs/put-account-setting.rst,sha256=evk80P4UZpDzmyL1t7dICKoMNb2jjWV8TJm6Cq37Yh4,777
|
|
2404
2422
|
awscli/examples/ecs/put-account-settings.rst,sha256=ZUzQlbUBOLdO414Pvy6TszaqC9UGdsswjrpXuQ4psro,543
|
|
2405
2423
|
awscli/examples/ecs/put-attributes.rst,sha256=S2mwDAQUAWJJtUS8HywHT9MVN8DnxgxjfMShU4r8n9Y,665
|
|
2406
2424
|
awscli/examples/ecs/put-cluster-capacity-providers.rst,sha256=FvzCz0vkOUVFW9TWevQGe-WN8XTPignyZpZ8tqs98kE,9906
|
|
@@ -2410,12 +2428,12 @@ awscli/examples/ecs/start-task.rst,sha256=fMOCzzQzcC4JAXHTmf2zlNywl3sG6INjS4LXH4
|
|
|
2410
2428
|
awscli/examples/ecs/stop-task.rst,sha256=R0gpzlxaQtQIahTzzAwvZAKCJ8aLR_C-AnWmeUEf_jo,1496
|
|
2411
2429
|
awscli/examples/ecs/tag-resource.rst,sha256=wwHgJOlBWNy6d2ZetCQ0Pm32N5DucknQHi-pVMD-KZM,627
|
|
2412
2430
|
awscli/examples/ecs/untag-resource.rst,sha256=Ip6Ym3OJUB0K8w5qCVcJD5JV92b4rshwdm6Rb21_NRk,306
|
|
2413
|
-
awscli/examples/ecs/update-cluster-settings.rst,sha256=
|
|
2431
|
+
awscli/examples/ecs/update-cluster-settings.rst,sha256=TqiHBdFK3S4PMLNUuVCmr-d8zXKSh7WwoaQxoo7UDyQ,1103
|
|
2414
2432
|
awscli/examples/ecs/update-cluster.rst,sha256=OV38bU7OamXfvwykap_sqxbrRRPAJtD4A6IOlP-ketw,6861
|
|
2415
2433
|
awscli/examples/ecs/update-container-agent.rst,sha256=nt5BBtWbdqJY3coD_7G3LMMtuDIzKaDln_6F8J8tus4,842
|
|
2416
2434
|
awscli/examples/ecs/update-container-instances-state.rst,sha256=4dSKofws7Y1kSmhow-TfESecyG9tlzVjSlYVMevBE5I,10437
|
|
2417
2435
|
awscli/examples/ecs/update-service-primary-task-set.rst,sha256=M9ZKYEjcl2lkDom45XJtP2Tu0O5kBQuk9erw6Y5UZmw,1594
|
|
2418
|
-
awscli/examples/ecs/update-service.rst,sha256=
|
|
2436
|
+
awscli/examples/ecs/update-service.rst,sha256=OPzH_Wk3RNnBKnSFuIVNu-2A2k8a45niiYWBkU0ecQc,9923
|
|
2419
2437
|
awscli/examples/ecs/update-task-protection.rst,sha256=Ltv-BQHFUkVQKMflK2wBPZhC-fri4djDptnCejUvEVw,1740
|
|
2420
2438
|
awscli/examples/ecs/update-task-set.rst,sha256=NimKKM9kaehqwRdzETkLMQASvzcJCMHAhO-g88BmcQ0,1553
|
|
2421
2439
|
awscli/examples/ecs/wait/services-inactive.rst,sha256=X6nH3H6E-wmR63IsQJs0AtlPtOJ4ehxcvTv9Dh1j8AY,284
|
|
@@ -6057,13 +6075,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
|
|
|
6057
6075
|
awscli/topics/s3-config.rst,sha256=kyLbdEEePnHW0hoMmQDkt4o6PbqAdpO5ph_51GgQyXg,11664
|
|
6058
6076
|
awscli/topics/s3-faq.rst,sha256=Kw1w4NFHOTXq9Mz5S3HHw3mBkyeEzH4ruB0PD6-EO1c,2938
|
|
6059
6077
|
awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
|
|
6060
|
-
awscli-1.38.
|
|
6061
|
-
awscli-1.38.
|
|
6062
|
-
awscli-1.38.
|
|
6063
|
-
awscli-1.38.
|
|
6064
|
-
awscli-1.38.
|
|
6065
|
-
awscli-1.38.
|
|
6066
|
-
awscli-1.38.
|
|
6067
|
-
awscli-1.38.
|
|
6068
|
-
awscli-1.38.
|
|
6069
|
-
awscli-1.38.
|
|
6078
|
+
awscli-1.38.10.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
|
6079
|
+
awscli-1.38.10.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
|
6080
|
+
awscli-1.38.10.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
|
6081
|
+
awscli-1.38.10.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
|
6082
|
+
awscli-1.38.10.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
|
6083
|
+
awscli-1.38.10.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
|
6084
|
+
awscli-1.38.10.dist-info/METADATA,sha256=Eo0fxuFTukCOu2k5sUD1QDX-blcSnAjNl-MdIgVXDJs,11331
|
|
6085
|
+
awscli-1.38.10.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
6086
|
+
awscli-1.38.10.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
|
6087
|
+
awscli-1.38.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
|