awscli 1.38.15__py3-none-any.whl → 1.38.17__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/ecs/create-service.rst +149 -12
- awscli/examples/ecs/run-task.rst +127 -2
- awscli/examples/ecs/start-task.rst +128 -8
- awscli/examples/ecs/update-service.rst +517 -7
- awscli/examples/servicediscovery/create-http-namespace.rst +17 -0
- awscli/examples/servicediscovery/create-public-dns-namespace.rst +18 -0
- awscli/examples/servicediscovery/delete-service-attributes.rst +11 -0
- awscli/examples/servicediscovery/discover-instances-revision.rst +15 -0
- awscli/examples/servicediscovery/discover-instances.rst +1 -0
- awscli/examples/servicediscovery/get-instance.rst +24 -0
- awscli/examples/servicediscovery/get-instances-health-status.rst +17 -0
- awscli/examples/servicediscovery/get-namespace.rst +28 -0
- awscli/examples/servicediscovery/get-operation.rst +2 -1
- awscli/examples/servicediscovery/get-service-attributes.rst +19 -0
- awscli/examples/servicediscovery/get-service.rst +23 -0
- awscli/examples/servicediscovery/list-operations.rst +29 -0
- awscli/examples/servicediscovery/list-tags-for-resource.rst +23 -0
- awscli/examples/servicediscovery/tag-resource.rst +11 -0
- awscli/examples/servicediscovery/untag-resource.rst +11 -0
- awscli/examples/servicediscovery/update-http-namespace.rst +18 -0
- awscli/examples/servicediscovery/update-instance-custom-health-status.rst +12 -0
- awscli/examples/servicediscovery/update-private-dns-namespace.rst +18 -0
- awscli/examples/servicediscovery/update-public-dns-namespace.rst +18 -0
- awscli/examples/servicediscovery/update-service-attributes.rst +11 -0
- awscli/examples/servicediscovery/update-service.rst +17 -0
- awscli/topics/s3-config.rst +1 -1
- {awscli-1.38.15.dist-info → awscli-1.38.17.dist-info}/METADATA +2 -2
- {awscli-1.38.15.dist-info → awscli-1.38.17.dist-info}/RECORD +37 -18
- {awscli-1.38.15.data → awscli-1.38.17.data}/scripts/aws +0 -0
- {awscli-1.38.15.data → awscli-1.38.17.data}/scripts/aws.cmd +0 -0
- {awscli-1.38.15.data → awscli-1.38.17.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.38.15.data → awscli-1.38.17.data}/scripts/aws_completer +0 -0
- {awscli-1.38.15.data → awscli-1.38.17.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.38.15.dist-info → awscli-1.38.17.dist-info}/LICENSE.txt +0 -0
- {awscli-1.38.15.dist-info → awscli-1.38.17.dist-info}/WHEEL +0 -0
- {awscli-1.38.15.dist-info → awscli-1.38.17.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
**To get the details of a namespace**
|
|
2
|
+
|
|
3
|
+
The following ``get-namespace`` example retrieves information about the specified namespace. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery get-namespace \
|
|
6
|
+
--id ns-e4anhexample0004
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"Namespaces": {
|
|
12
|
+
"Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-e4anhexample0004",
|
|
13
|
+
"CreateDate": "20181118T211712Z",
|
|
14
|
+
"CreatorRequestId": "example-creator-request-id-0001",
|
|
15
|
+
"Description": "Example.com AWS Cloud Map HTTP Namespace",
|
|
16
|
+
"Id": "ns-e4anhexample0004",
|
|
17
|
+
"Name": "example-http.com",
|
|
18
|
+
"Properties": {
|
|
19
|
+
"DnsProperties": {},
|
|
20
|
+
"HttpProperties": {
|
|
21
|
+
"HttpName": "example-http.com"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"Type": "HTTP"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
For more information, see `AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
**To get the result of an operation**
|
|
2
2
|
|
|
3
|
-
The following ``get-operation`` example gets the result of
|
|
3
|
+
The following ``get-operation`` example gets the result of a namespace creation operation. ::
|
|
4
4
|
|
|
5
5
|
aws servicediscovery get-operation \
|
|
6
6
|
--operation-id gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd
|
|
@@ -20,3 +20,4 @@ Output::
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
For more information, see `Creating an AWS Cloud Map namespace to group application services <https://docs.aws.amazon.com/cloud-map/latest/dg/creating-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
**To get the attributes of an service**
|
|
2
|
+
|
|
3
|
+
The following ``get-service-attributes`` example gets the attributes of a service. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery get-service-attributes \
|
|
6
|
+
--service-id srv-e4anhexample0004
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"ServiceAttributes": {
|
|
12
|
+
"ServiceArn": "arn:aws:servicediscovery:us-west-2:111122223333;:service/srv-e4anhexample0004",
|
|
13
|
+
"Attributes": {
|
|
14
|
+
"Port": "80"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
For more information, see `AWS Cloud Map services <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
**To get the settings of a service**
|
|
2
|
+
|
|
3
|
+
The following ``get-service`` example gets the settings of a specified service. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery get-service \
|
|
6
|
+
--id srv-e4anhexample0004
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"Service": {
|
|
12
|
+
"Id": "srv-e4anhexample0004",
|
|
13
|
+
"Arn": "arn:aws:servicediscovery:us-west-2:111122223333:service/srv-e4anhexample0004",
|
|
14
|
+
"Name": "test-service",
|
|
15
|
+
"NamespaceId": "ns-e4anhexample0004",
|
|
16
|
+
"DnsConfig": {},
|
|
17
|
+
"Type": "HTTP",
|
|
18
|
+
"CreateDate": "2025-02-24T10:59:02.905000-06:00",
|
|
19
|
+
"CreatorRequestId": "3f50f9d9-b14c-482e-a556-d2a22fe6106d"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
For more information, see `AWS Cloud Map services <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
**To list operations that meet the specified criteria**
|
|
2
|
+
|
|
3
|
+
The following ``list-operations`` example lists operations that have a status of ``PENDING`` or ``SUCCESS``. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery list-operations \
|
|
6
|
+
--service-id srv-e4anhexample0004 \
|
|
7
|
+
--filters Name=STATUS,Condition=IN,Values=PENDING,SUCCESS
|
|
8
|
+
|
|
9
|
+
Output::
|
|
10
|
+
|
|
11
|
+
{
|
|
12
|
+
"Operations": [
|
|
13
|
+
{
|
|
14
|
+
"Id": "76yy8ovhpdz0plmjzbsnqgnrqvpv2qdt-kexample",
|
|
15
|
+
"Status": "SUCCESS"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"Id": "prysnyzpji3u2ciy45nke83x2zanl7yk-dexample",
|
|
19
|
+
"Status": "SUCCESS"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"Id": "ko4ekftir7kzlbechsh7xvcdgcpk66gh-7example",
|
|
23
|
+
"Status": "PENDING"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
For more information, see `What is AWS Cloud Map? <https://docs.aws.amazon.com/cloud-map/latest/dg/what-is-cloud-map.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
**To list tags associated with the specified resource**
|
|
2
|
+
|
|
3
|
+
The following ``list-tags-for-resource`` example lists tags for the specified resource. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery list-tags-for-resource \
|
|
6
|
+
--resource-arn arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-e4anhexample0004
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"Tags": [
|
|
12
|
+
{
|
|
13
|
+
"Key": "Project",
|
|
14
|
+
"Value": "Zeta"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"Key": "Department",
|
|
18
|
+
"Value": "Engineering"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
For more information, see `Tagging your AWS Cloud Map resources <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
**To associate tags with the specified resource**
|
|
2
|
+
|
|
3
|
+
The following ``tag-resource`` example associates a ``Department`` tag with the value ``Engineering`` with the specified namespace. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery tag-resource \
|
|
6
|
+
--resource-arn arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-e4anhexample0004 \
|
|
7
|
+
--tags Key=Department, Value=Engineering
|
|
8
|
+
|
|
9
|
+
This command produces no output.
|
|
10
|
+
|
|
11
|
+
For more information, see `Tagging your AWS Cloud Map resources <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
**To remove tags from the specified resource**
|
|
2
|
+
|
|
3
|
+
The following ``untag-resource`` example removes a ``Department`` tag from the specified namespace. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery untag-resource \
|
|
6
|
+
--resource-arn arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-e4anhexample0004 \
|
|
7
|
+
--tags Key=Department, Value=Engineering
|
|
8
|
+
|
|
9
|
+
This command produces no output.
|
|
10
|
+
|
|
11
|
+
For more information, see `Tagging your AWS Cloud Map resources <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
**To update an HTTP namespace**
|
|
2
|
+
|
|
3
|
+
The following ``update-http-namespace`` example updates the specified HTTP namespace's description. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery update-http-namespace \
|
|
6
|
+
--id ns-vh4nbmEXAMPLE \
|
|
7
|
+
--updater-request-id example-request-id \
|
|
8
|
+
--namespace Description="The updated namespace description."
|
|
9
|
+
|
|
10
|
+
Output::
|
|
11
|
+
|
|
12
|
+
{
|
|
13
|
+
"OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd"
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
To confirm that the operation succeeded, you can run ``get-operation``. For more information, see `get-operation <https://docs.aws.amazon.com/cli/latest/reference/servicediscovery/get-operation.html>`__ .
|
|
17
|
+
|
|
18
|
+
For more information, see `AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
**To update a custom health check**
|
|
2
|
+
|
|
3
|
+
The following ``update-instance-custom-health-status`` example updates the status of the custom health check for the specified service and example service instance to ``HEALTHY``. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery update-instance-custom-health-status \
|
|
6
|
+
--service-id srv-e4anhexample0004 \
|
|
7
|
+
--instance-id example \
|
|
8
|
+
--status HEALTHY
|
|
9
|
+
|
|
10
|
+
This command produces no output.
|
|
11
|
+
|
|
12
|
+
For more information, see `AWS Cloud Map service health check configuration <https://docs.aws.amazon.com/cloud-map/latest/dg/services-health-checks.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
**To update a private DNS namespace**
|
|
2
|
+
|
|
3
|
+
The following ``update-private-dns-namespace`` example updates the description of a private DNS namespace. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery update-private-dns-namespace \
|
|
6
|
+
--id ns-bk3aEXAMPLE \
|
|
7
|
+
--updater-request-id example-private-request-id \
|
|
8
|
+
--namespace Description="The updated namespace description."
|
|
9
|
+
|
|
10
|
+
Output::
|
|
11
|
+
|
|
12
|
+
{
|
|
13
|
+
"OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd"
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
To confirm that the operation succeeded, you can run ``get-operation``.
|
|
17
|
+
|
|
18
|
+
For more information, see `AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
**To update a public DNS namespace**
|
|
2
|
+
|
|
3
|
+
The following ``update-public-dns-namespace`` example updates the description of a public DNS namespace. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery update-public-dns-namespace \
|
|
6
|
+
--id ns-bk3aEXAMPLE \
|
|
7
|
+
--updater-request-id example-public-request-id \
|
|
8
|
+
--namespace Description="The updated namespace description."
|
|
9
|
+
|
|
10
|
+
Output::
|
|
11
|
+
|
|
12
|
+
{
|
|
13
|
+
"OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd"
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
To confirm that the operation succeeded, you can run ``get-operation``.
|
|
17
|
+
|
|
18
|
+
For more information, see `AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
**To update a service to add an attribute**
|
|
2
|
+
|
|
3
|
+
The following ``update-service-attributes`` example updates the specified service to add a service attribute with a key ``Port`` and a value ``80``. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery update-service-attributes \
|
|
6
|
+
--service-id srv-e4anhexample0004 \
|
|
7
|
+
--attributes Port=80
|
|
8
|
+
|
|
9
|
+
This command produces no output.
|
|
10
|
+
|
|
11
|
+
For more information, see `AWS Cloud Map services <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
**To update a service**
|
|
2
|
+
|
|
3
|
+
The following ``update-service`` example updates a service to update the ``DnsConfig`` and ``HealthCheckConfig`` settings. ::
|
|
4
|
+
|
|
5
|
+
aws servicediscovery update-service \
|
|
6
|
+
--id srv-e4anhexample0004 \
|
|
7
|
+
--service "DnsConfig={DnsRecords=[{"Type"="A","TTL"=60}]},HealthCheckConfig={"Type"="HTTP","ResourcePath"="/","FailureThreshold"="2"}"
|
|
8
|
+
|
|
9
|
+
Output::
|
|
10
|
+
|
|
11
|
+
{
|
|
12
|
+
"OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd"
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
To confirm that the operation succeeded, you can run ``get-operation``.
|
|
16
|
+
|
|
17
|
+
For more information about updating a service, see `Updating an AWS Cloud Map service <https://docs.aws.amazon.com/cloud-map/latest/dg/editing-services.html>`__ in the *AWS Cloud Map Developer Guide*.
|
awscli/topics/s3-config.rst
CHANGED
|
@@ -40,7 +40,7 @@ and ``aws s3api``:
|
|
|
40
40
|
on your bucket before attempting to use the endpoint. This is mutually
|
|
41
41
|
exclusive with the ``use_dualstack_endpoint`` option.
|
|
42
42
|
* ``use_dualstack_endpoint`` - Use the Amazon S3 dual IPv4 / IPv6 endpoint for
|
|
43
|
-
all ``s3
|
|
43
|
+
all ``s3`` and ``s3api`` commands. This is mutually exclusive with the
|
|
44
44
|
``use_accelerate_endpoint`` option.
|
|
45
45
|
* ``addressing_style`` - Specifies which addressing style to use. This controls
|
|
46
46
|
if the bucket name is in the hostname or part of the URL. Value values are:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: awscli
|
|
3
|
-
Version: 1.38.
|
|
3
|
+
Version: 1.38.17
|
|
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.17)
|
|
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=os0GasFccbRuhjMLSxHvNHvCikyPtlUhmyYc6AiWWag,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
|
|
@@ -2397,7 +2397,7 @@ awscli/examples/ecr-public/untag-resource.rst,sha256=NQLXIGg7zIGaOn6GfiIyNyie3IR
|
|
|
2397
2397
|
awscli/examples/ecs/capacity-provider-update.rst,sha256=-ynz-2m3NxfyFNF2xCEBdcuQPx83b1JOs2836XDQcJo,1950
|
|
2398
2398
|
awscli/examples/ecs/create-capacity-provider.rst,sha256=RmdbP8SVIXFUGPKpdSKkqsTnzAzN6LwkmCMYZd-WC0g,1623
|
|
2399
2399
|
awscli/examples/ecs/create-cluster.rst,sha256=K9Y_pNu8hFagKPJgfKFuSXGs_xmkFsmmOlfofewpetE,5860
|
|
2400
|
-
awscli/examples/ecs/create-service.rst,sha256=
|
|
2400
|
+
awscli/examples/ecs/create-service.rst,sha256=PF2Y88r0D615nLyN1dsUgyTwO92dGypmsWsMbOjRgAw,15748
|
|
2401
2401
|
awscli/examples/ecs/create-task-set.rst,sha256=QFLHfhvU3C1CK_HiFcb5d3T6I0QG8JfsSOQssSY-pDs,1598
|
|
2402
2402
|
awscli/examples/ecs/delete-account-setting.rst,sha256=ZsljBcOiVagRW32A0BesG4Tq1qrQwqlnDUQG7dIXj4M,715
|
|
2403
2403
|
awscli/examples/ecs/delete-attributes.rst,sha256=_tiE_6I38WJwBEbqtRAnw_ffVYhJfRMlimUCPrq4CNo,627
|
|
@@ -2436,8 +2436,8 @@ awscli/examples/ecs/put-account-settings.rst,sha256=ZUzQlbUBOLdO414Pvy6TszaqC9UG
|
|
|
2436
2436
|
awscli/examples/ecs/put-attributes.rst,sha256=S2mwDAQUAWJJtUS8HywHT9MVN8DnxgxjfMShU4r8n9Y,665
|
|
2437
2437
|
awscli/examples/ecs/put-cluster-capacity-providers.rst,sha256=FvzCz0vkOUVFW9TWevQGe-WN8XTPignyZpZ8tqs98kE,9906
|
|
2438
2438
|
awscli/examples/ecs/register-task-definition.rst,sha256=dyebPl2I708q1cS2CJSxYSBbu7unaMJGTHXHv-uMtfU,2687
|
|
2439
|
-
awscli/examples/ecs/run-task.rst,sha256=
|
|
2440
|
-
awscli/examples/ecs/start-task.rst,sha256=
|
|
2439
|
+
awscli/examples/ecs/run-task.rst,sha256=NjKFdxMHHO_mR2o-QFYAZYqZHRb1JRW0SxmMEqLruOQ,7893
|
|
2440
|
+
awscli/examples/ecs/start-task.rst,sha256=v1LImdqgvMTGsigAM0vcKMY80djZK61FDKD-yFQgOAk,7319
|
|
2441
2441
|
awscli/examples/ecs/stop-task.rst,sha256=R0gpzlxaQtQIahTzzAwvZAKCJ8aLR_C-AnWmeUEf_jo,1496
|
|
2442
2442
|
awscli/examples/ecs/tag-resource.rst,sha256=wwHgJOlBWNy6d2ZetCQ0Pm32N5DucknQHi-pVMD-KZM,627
|
|
2443
2443
|
awscli/examples/ecs/untag-resource.rst,sha256=Ip6Ym3OJUB0K8w5qCVcJD5JV92b4rshwdm6Rb21_NRk,306
|
|
@@ -2446,7 +2446,7 @@ awscli/examples/ecs/update-cluster.rst,sha256=OV38bU7OamXfvwykap_sqxbrRRPAJtD4A6
|
|
|
2446
2446
|
awscli/examples/ecs/update-container-agent.rst,sha256=nt5BBtWbdqJY3coD_7G3LMMtuDIzKaDln_6F8J8tus4,842
|
|
2447
2447
|
awscli/examples/ecs/update-container-instances-state.rst,sha256=4dSKofws7Y1kSmhow-TfESecyG9tlzVjSlYVMevBE5I,10437
|
|
2448
2448
|
awscli/examples/ecs/update-service-primary-task-set.rst,sha256=M9ZKYEjcl2lkDom45XJtP2Tu0O5kBQuk9erw6Y5UZmw,1594
|
|
2449
|
-
awscli/examples/ecs/update-service.rst,sha256=
|
|
2449
|
+
awscli/examples/ecs/update-service.rst,sha256=QXuv4V1ascSkk8FbLKr-UBIJdjB3BN_zp_DsYl6zu5Y,32680
|
|
2450
2450
|
awscli/examples/ecs/update-task-protection.rst,sha256=Ltv-BQHFUkVQKMflK2wBPZhC-fri4djDptnCejUvEVw,1740
|
|
2451
2451
|
awscli/examples/ecs/update-task-set.rst,sha256=NimKKM9kaehqwRdzETkLMQASvzcJCMHAhO-g88BmcQ0,1553
|
|
2452
2452
|
awscli/examples/ecs/wait/services-inactive.rst,sha256=X6nH3H6E-wmR63IsQJs0AtlPtOJ4ehxcvTv9Dh1j8AY,284
|
|
@@ -5462,17 +5462,36 @@ awscli/examples/servicecatalog-appregistry/list-attribute-groups-for-application
|
|
|
5462
5462
|
awscli/examples/servicecatalog-appregistry/list-attribute-groups.rst,sha256=Zk0vHAG2Ef3aMGGWLncW2KXewt6ctp8G5bJAdcVorkg,1690
|
|
5463
5463
|
awscli/examples/servicecatalog-appregistry/update-application.rst,sha256=UY0sg6obunqtH7cBGmquI_u6-A9myYCodwdKH1x1St8,1059
|
|
5464
5464
|
awscli/examples/servicecatalog-appregistry/update-attribute-group.rst,sha256=aZF3W4eXRkCeOzinvuWYnSlCLrHOsFryMKAaP_rs6PY,1117
|
|
5465
|
+
awscli/examples/servicediscovery/create-http-namespace.rst,sha256=rucaUDiSy6OfnDwFcuMEmmxd5nl9MChI6sxm0dB29JU,789
|
|
5465
5466
|
awscli/examples/servicediscovery/create-private-dns-namespace.rst,sha256=CiAdos3MrTtu3MHqbM2ZZO6NDmBsgtkVbvEEobMWMZA,706
|
|
5467
|
+
awscli/examples/servicediscovery/create-public-dns-namespace.rst,sha256=Z3WuMuVMaN39ojB8qAgD1Snq4ASQARriVZmQ44JJuwg,750
|
|
5466
5468
|
awscli/examples/servicediscovery/create-service.rst,sha256=ONp8kWl4FCUHZyJiCagnEDKoz1PV9TqUgTIc37bakO8,1179
|
|
5467
5469
|
awscli/examples/servicediscovery/delete-namespace.rst,sha256=G9o_r3ZO62oI23X9T59zDzDAdqEqJnkmeBd-UM1Ju-U,635
|
|
5470
|
+
awscli/examples/servicediscovery/delete-service-attributes.rst,sha256=b1sfh8CabDzEHvyVQ7IJh645ufNrmR_cTr4yR9fM_WA,511
|
|
5468
5471
|
awscli/examples/servicediscovery/delete-service.rst,sha256=54ysKNqFxk9G1K2YSsNbk7yrHjBQL8t_LZmOOEMLQUA,362
|
|
5469
5472
|
awscli/examples/servicediscovery/deregister-instance.rst,sha256=skbof-kNVxoxKHNaXx-_QmsIaKx9m3KjAauRJHV6t9o,725
|
|
5470
|
-
awscli/examples/servicediscovery/discover-instances.rst,sha256=
|
|
5471
|
-
awscli/examples/servicediscovery/
|
|
5473
|
+
awscli/examples/servicediscovery/discover-instances-revision.rst,sha256=SznhJdHeL3DkDDbhZ1W4sdZxXE_s44jdcDMzm4u3JT4,520
|
|
5474
|
+
awscli/examples/servicediscovery/discover-instances.rst,sha256=03xzDp-nVq2pzR0soRzwzcLmZAE1d7iZf1r8o_B8fzU,891
|
|
5475
|
+
awscli/examples/servicediscovery/get-instance.rst,sha256=tTIySWQyE2NV9tB3PXYbtFZeBRd_s7tPjPJdCI3mxbI,808
|
|
5476
|
+
awscli/examples/servicediscovery/get-instances-health-status.rst,sha256=SLHO6ITqSZuCH7bDyc2FBQ_pxQb0EAxPOERX-65cymQ,608
|
|
5477
|
+
awscli/examples/servicediscovery/get-namespace.rst,sha256=KO2v32r4JdcZ_l0ue2A5al8OjNduJfR3GS-qtYY1fkA,1019
|
|
5478
|
+
awscli/examples/servicediscovery/get-operation.rst,sha256=p07XARGYgQ-kkQswLutpWLeW2iM14ieRBjWnWLJWSUw,818
|
|
5479
|
+
awscli/examples/servicediscovery/get-service-attributes.rst,sha256=Vho56m14aUQ-f0prXY-3oxCpryvaw4zMF6AE_UL0zLo,633
|
|
5480
|
+
awscli/examples/servicediscovery/get-service.rst,sha256=3lfJUZ-s3DcCBBJrCUKR3KZRsU37kcqeZqYLtIdNiqo,837
|
|
5472
5481
|
awscli/examples/servicediscovery/list-instances.rst,sha256=7tBptKvjq4fEpAV2d2z4Rbs0wITGK4CEMGujDM-j-38,646
|
|
5473
5482
|
awscli/examples/servicediscovery/list-namespaces.rst,sha256=2lE6fn7RvtWQjapiPW2WM0OlAduZo-vJMa1ukXMyQDY,2097
|
|
5483
|
+
awscli/examples/servicediscovery/list-operations.rst,sha256=NIQUg-KGPxMlRSuklo66KBm3M4sFVoR6G_LFoxFuS_M,943
|
|
5474
5484
|
awscli/examples/servicediscovery/list-services.rst,sha256=LAdgixf8Wdt4jmrqAyD_8hU9I6snaGyCLsYK25rCavo,896
|
|
5485
|
+
awscli/examples/servicediscovery/list-tags-for-resource.rst,sha256=vSM1X-GhFEMICwTifdWjV-sNqFLhEHf1XJNZFyt1ieI,731
|
|
5475
5486
|
awscli/examples/servicediscovery/register-instance.rst,sha256=UNomOD1KyzmU84jCqlyWhCQCt1yyUPcaHlIDqPp6DFQ,778
|
|
5487
|
+
awscli/examples/servicediscovery/tag-resource.rst,sha256=EmyrrIUs3aLP6Y3Yjpmu-o6GS7xoSoSX1irjliLxcLw,594
|
|
5488
|
+
awscli/examples/servicediscovery/untag-resource.rst,sha256=k-DiiV5IJz0M5kNQQ7P0p8o7N_X3xd7dn-oWpC92PYc,561
|
|
5489
|
+
awscli/examples/servicediscovery/update-http-namespace.rst,sha256=JokGP8EsMVejYxdI3NxqitYkYdyQGMNdZgpj-X4aTs4,807
|
|
5490
|
+
awscli/examples/servicediscovery/update-instance-custom-health-status.rst,sha256=NNDCFz59TKTc8AvjXrB3QNNwQyGiXqcBu8vuGtv9lfk,618
|
|
5491
|
+
awscli/examples/servicediscovery/update-private-dns-namespace.rst,sha256=FLH5D51LkN2HHdCXSBVNmCv9spBEUEcfg4uRvS-tTTA,701
|
|
5492
|
+
awscli/examples/servicediscovery/update-public-dns-namespace.rst,sha256=WSIzMsAHhcJ2snO3YOJyy-LnHIyMm5vPIWZiXtR_rEo,696
|
|
5493
|
+
awscli/examples/servicediscovery/update-service-attributes.rst,sha256=nNM3RTqmdDi-HN-1K-b7c7ZiTSCqzXRcKhRJSPuUd70,530
|
|
5494
|
+
awscli/examples/servicediscovery/update-service.rst,sha256=CkFrbVUb-cVwFqaha2knUk3MasAGZ8M3S-ULnZ0itjY,738
|
|
5476
5495
|
awscli/examples/ses/delete-identity.rst,sha256=i7NKOj97eDKk1O78HOj_5MjGKNg41V3ctPqg1lcmVnI,529
|
|
5477
5496
|
awscli/examples/ses/get-identity-dkim-attributes.rst,sha256=CIQoYWtkfMacGCO-Ox4UoN2MjB3TyqgGbkmK8frOkFg,1152
|
|
5478
5497
|
awscli/examples/ses/get-identity-notification-attributes.rst,sha256=fMEB6dmTNAuWHfXbF61ha2zlxHvbqMbKo2qGVTDOYuo,1369
|
|
@@ -6095,16 +6114,16 @@ awscli/examples/xray/update-group.rst,sha256=ThP94mCvPeSXQanVJjI13PSArn2rqnzX7Q-
|
|
|
6095
6114
|
awscli/examples/xray/update-sampling-rule.rst,sha256=a1THv2Q8ELvSSlZbnbUVN5YWopGFLiBU4yqliQLF8Q8,1521
|
|
6096
6115
|
awscli/topics/config-vars.rst,sha256=rVxgQDJipsSqwDE2GOC2FUBp8jZbqufJPanTxTx7ST0,22751
|
|
6097
6116
|
awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J8,1996
|
|
6098
|
-
awscli/topics/s3-config.rst,sha256=
|
|
6117
|
+
awscli/topics/s3-config.rst,sha256=5EIVd4ggLBHtzjtHFvQp9hY415yMGZiG7S_rO9qy2t0,11663
|
|
6099
6118
|
awscli/topics/s3-faq.rst,sha256=Kw1w4NFHOTXq9Mz5S3HHw3mBkyeEzH4ruB0PD6-EO1c,2938
|
|
6100
6119
|
awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
|
|
6101
|
-
awscli-1.38.
|
|
6102
|
-
awscli-1.38.
|
|
6103
|
-
awscli-1.38.
|
|
6104
|
-
awscli-1.38.
|
|
6105
|
-
awscli-1.38.
|
|
6106
|
-
awscli-1.38.
|
|
6107
|
-
awscli-1.38.
|
|
6108
|
-
awscli-1.38.
|
|
6109
|
-
awscli-1.38.
|
|
6110
|
-
awscli-1.38.
|
|
6120
|
+
awscli-1.38.17.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
|
6121
|
+
awscli-1.38.17.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
|
6122
|
+
awscli-1.38.17.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
|
6123
|
+
awscli-1.38.17.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
|
6124
|
+
awscli-1.38.17.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
|
6125
|
+
awscli-1.38.17.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
|
6126
|
+
awscli-1.38.17.dist-info/METADATA,sha256=uIwnWKxuMbsUVi60tg0-VOj8chzCjgOKxlHr8zRsbJI,11126
|
|
6127
|
+
awscli-1.38.17.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
6128
|
+
awscli-1.38.17.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
|
6129
|
+
awscli-1.38.17.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
|