awscli 1.42.46__py3-none-any.whl → 1.42.48__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. awscli/__init__.py +1 -1
  2. awscli/examples/servicediscovery/create-service.rst +50 -10
  3. awscli/examples/servicediscovery/delete-namespace.rst +18 -4
  4. awscli/examples/servicediscovery/delete-service-attributes.rst +15 -3
  5. awscli/examples/servicediscovery/delete-service.rst +13 -3
  6. awscli/examples/servicediscovery/deregister-instance.rst +18 -2
  7. awscli/examples/servicediscovery/discover-instances-revision.rst +18 -1
  8. awscli/examples/servicediscovery/discover-instances.rst +32 -2
  9. awscli/examples/servicediscovery/get-instance.rst +30 -4
  10. awscli/examples/servicediscovery/get-instances-health-status.rst +19 -1
  11. awscli/examples/servicediscovery/get-namespace.rst +40 -9
  12. awscli/examples/servicediscovery/get-operation.rst +32 -6
  13. awscli/examples/servicediscovery/get-service-attributes.rst +25 -3
  14. awscli/examples/servicediscovery/get-service.rst +35 -7
  15. awscli/examples/servicediscovery/list-instances.rst +38 -3
  16. awscli/examples/servicediscovery/list-namespaces.rst +45 -22
  17. awscli/examples/servicediscovery/list-services.rst +30 -2
  18. awscli/examples/servicediscovery/register-instance.rst +18 -2
  19. awscli/examples/servicediscovery/update-http-namespace.rst +22 -5
  20. awscli/examples/servicediscovery/update-instance-custom-health-status.rst +14 -1
  21. awscli/examples/servicediscovery/update-private-dns-namespace.rst +22 -5
  22. awscli/examples/servicediscovery/update-public-dns-namespace.rst +22 -5
  23. awscli/examples/servicediscovery/update-service-attributes.rst +14 -2
  24. awscli/examples/servicediscovery/update-service.rst +20 -4
  25. {awscli-1.42.46.dist-info → awscli-1.42.48.dist-info}/METADATA +2 -2
  26. {awscli-1.42.46.dist-info → awscli-1.42.48.dist-info}/RECORD +34 -34
  27. {awscli-1.42.46.data → awscli-1.42.48.data}/scripts/aws +0 -0
  28. {awscli-1.42.46.data → awscli-1.42.48.data}/scripts/aws.cmd +0 -0
  29. {awscli-1.42.46.data → awscli-1.42.48.data}/scripts/aws_bash_completer +0 -0
  30. {awscli-1.42.46.data → awscli-1.42.48.data}/scripts/aws_completer +0 -0
  31. {awscli-1.42.46.data → awscli-1.42.48.data}/scripts/aws_zsh_completer.sh +0 -0
  32. {awscli-1.42.46.dist-info → awscli-1.42.48.dist-info}/LICENSE.txt +0 -0
  33. {awscli-1.42.46.dist-info → awscli-1.42.48.dist-info}/WHEEL +0 -0
  34. {awscli-1.42.46.dist-info → awscli-1.42.48.dist-info}/top_level.txt +0 -0
awscli/__init__.py CHANGED
@@ -18,7 +18,7 @@ A Universal Command Line Environment for Amazon Web Services.
18
18
 
19
19
  import os
20
20
 
21
- __version__ = '1.42.46'
21
+ __version__ = '1.42.48'
22
22
 
23
23
  #
24
24
  # Get our data path to be added to botocore's search path
@@ -1,22 +1,23 @@
1
- **To create a service**
1
+ **Example 1: To create a service using namespace ID**
2
2
 
3
3
  The following ``create-service`` example creates a service. ::
4
4
 
5
5
  aws servicediscovery create-service \
6
6
  --name myservice \
7
7
  --namespace-id ns-ylexjili4cdxy3xm \
8
- --dns-config "NamespaceId=ns-ylexjili4cdxy3xm,RoutingPolicy=MULTIVALUE,DnsRecords=[{Type=A,TTL=60}]"
8
+ --dns-config "RoutingPolicy=MULTIVALUE,DnsRecords=[{Type=A,TTL=60}]"
9
9
 
10
10
  Output::
11
11
 
12
12
  {
13
- "Service": {
14
- "Id": "srv-p5zdwlg5uvvzjita",
15
- "Arn": "arn:aws:servicediscovery:us-west-2:803642222207:service/srv-p5zdwlg5uvvzjita",
13
+ "Service": {
14
+ "Id": "srv-abcd1234xmpl5678",
15
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678",
16
+ "ResourceOwner": "123456789012",
16
17
  "Name": "myservice",
17
- "NamespaceId": "ns-ylexjili4cdxy3xm",
18
+ "NamespaceId": "ns-abcd1234xmpl5678",
18
19
  "DnsConfig": {
19
- "NamespaceId": "ns-ylexjili4cdxy3xm",
20
+ "NamespaceId": "ns-abcd1234xmpl5678",
20
21
  "RoutingPolicy": "MULTIVALUE",
21
22
  "DnsRecords": [
22
23
  {
@@ -25,10 +26,49 @@ Output::
25
26
  }
26
27
  ]
27
28
  },
28
- "CreateDate": 1587081768.334,
29
- "CreatorRequestId": "567c1193-6b00-4308-bd57-ad38a8822d25"
29
+ "Type": "DNS_HTTP",
30
+ "CreateDate": "2025-08-18T13:45:31.023000-05:00",
31
+ "CreatorRequestId": "abcd1234-5678-90ab-cdef-xmpl12345678",
32
+ "CreatedByAccount": "123456789012"
30
33
  }
31
34
  }
32
35
 
33
- For more information, see `Creating services <https://docs.aws.amazon.com/cloud-map/latest/dg/creating-services.html>`__ in the *AWS Cloud Map Developer Guide*.
36
+ For more information, see `Creating an AWS Cloud Map service for an application component <https://docs.aws.amazon.com/cloud-map/latest/dg/creating-services.html>`__ in the *AWS Cloud Map Developer Guide*.
37
+
38
+ **Example 2: To create a service using namespace ARN**
39
+
40
+ The following ``create-service`` example creates a service using a namespace ARN instead of namespace ID. Specifying a namespace ARN is necessary when creating a service in a shared namespace. ::
41
+
42
+ aws servicediscovery create-service \
43
+ --name myservice-arn \
44
+ --namespace-id arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678 \
45
+ --dns-config "RoutingPolicy=MULTIVALUE,DnsRecords=[{Type=A,TTL=60}]"
46
+
47
+ Output::
48
+
49
+ {
50
+ "Service": {
51
+ "Id": "srv-abcd1234xmpl5678",
52
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678",
53
+ "ResourceOwner": "123456789012",
54
+ "Name": "myservice-arn",
55
+ "NamespaceId": "ns-abcd1234xmpl5678",
56
+ "DnsConfig": {
57
+ "NamespaceId": "ns-abcd1234xmpl5678",
58
+ "RoutingPolicy": "MULTIVALUE",
59
+ "DnsRecords": [
60
+ {
61
+ "Type": "A",
62
+ "TTL": 60
63
+ }
64
+ ]
65
+ },
66
+ "Type": "DNS_HTTP",
67
+ "CreateDate": "2025-08-18T13:45:31.023000-05:00",
68
+ "CreatorRequestId": "abcd1234-5678-90ab-cdef-xmpl12345678",
69
+ "CreatedByAccount": "123456789012"
70
+ }
71
+ }
72
+
73
+ For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
34
74
 
@@ -1,17 +1,31 @@
1
- **To delete a namespace**
1
+ **Example 1: To delete a namespace**
2
2
 
3
3
  The following ``delete-namespace`` example deletes a namespace. ::
4
4
 
5
5
  aws servicediscovery delete-namespace \
6
- --id ns-ylexjili4cdxy3xm
6
+ --id ns-abcd1234xmpl5678
7
7
 
8
8
  Output::
9
9
 
10
10
  {
11
- "OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k98y6drk"
11
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
12
12
  }
13
13
 
14
14
  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>`__ .
15
15
 
16
- For more information, see `Deleting namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
16
+ For more information, see `Deleting an AWS Cloud Map namespace <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
17
17
 
18
+ **Example 2: To delete a namespace using namespace ARN**
19
+
20
+ The following ``delete-namespace`` example deletes a namespace using its ARN. ::
21
+
22
+ aws servicediscovery delete-namespace \
23
+ --id arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678
24
+
25
+ Output::
26
+
27
+ {
28
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
29
+ }
30
+
31
+ For more information, see `Deleting an AWS Cloud Map namespace <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,11 +1,23 @@
1
- **To delete a service attribute**
1
+ **Example 1: To delete a service attribute**
2
2
 
3
3
  The following ``delete-service-attributes`` example deletes a service attribute with the key ``Port`` that is associated with the specified service. ::
4
4
 
5
5
  aws servicediscovery delete-service-attributes \
6
- --service-id srv-e4anhexample0004 \
6
+ --service-id srv-abcd1234xmpl5678 \
7
7
  --attributes Port
8
8
 
9
9
  This command produces no output.
10
10
 
11
- For more information, see `Deleting namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
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*.
12
+
13
+ **Example 2: To delete a service attribute using ARN**
14
+
15
+ The following ``delete-service-attributes`` example deletes a service attribute using the service ARN. Specifying the ARN is necessary for deleting attributes associated with services created in namespaces shared with your account. ::
16
+
17
+ aws servicediscovery delete-service-attributes \
18
+ --service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678 \
19
+ --attributes Port
20
+
21
+ This command produces no output.
22
+
23
+ For more information, see `AWS Cloud Map services <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html>`__ and `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,11 +1,21 @@
1
- **To delete a service**
1
+ **Example 1: To delete a service**
2
2
 
3
3
  The following ``delete-service`` example deletes a service. ::
4
4
 
5
5
  aws servicediscovery delete-service \
6
- --id srv-p5zdwlg5uvvzjita
6
+ --id srv-abcd1234xmpl5678
7
7
 
8
8
  This command produces no output.
9
9
 
10
- For more information, see `Deleting services <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-services.html>`__ in the *AWS Cloud Map Developer Guide*.
10
+ For more information, see `Deleting an AWS Cloud Map service <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-services.html>`__ in the *AWS Cloud Map Developer Guide*.
11
11
 
12
+ **Example 2: To delete a service using ARN**
13
+
14
+ The following ``delete-service`` example deletes a service using its ARN. ::
15
+
16
+ aws servicediscovery delete-service \
17
+ --id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678
18
+
19
+ This command produces no output.
20
+
21
+ For more information, see `Deleting an AWS Cloud Map service <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-services.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,4 +1,4 @@
1
- **To deregister a service instance**
1
+ **Example 1: To deregister a service instance**
2
2
 
3
3
  The following ``deregister-instance`` example deregisters a service instance. ::
4
4
 
@@ -12,7 +12,23 @@ Output::
12
12
  "OperationId": "4yejorelbukcjzpnr6tlmrghsjwpngf4-k98rnaiq"
13
13
  }
14
14
 
15
- 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>`__ .
15
+ 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>`__.
16
16
 
17
17
  For more information, see `Deregistering service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/deregistering-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
18
18
 
19
+ **Example 2: To deregister a service instance using service ARN for shared namespaces**
20
+
21
+ The following ``deregister-instance`` example deregisters a service instance using a service ARN instead of service ID. Specifying an ARN is required when deregistering instances from services created in namespaces that are shared with your account. ::
22
+
23
+ aws servicediscovery deregister-instance \
24
+ --service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita \
25
+ --instance-id web-server-01
26
+
27
+ Output::
28
+
29
+ {
30
+ "OperationId": "gv4g5meo7ndmkqjrhpn39wk42xmpl"
31
+ }
32
+
33
+ For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ and `Deregistering an AWS Cloud Map service instance <https://docs.aws.amazon.com/cloud-map/latest/dg/deregistering-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
34
+
@@ -1,4 +1,4 @@
1
- **To discover the revision of an instance**
1
+ **Example 1: To discover the revision of an instance**
2
2
 
3
3
  The following ``discover-instances-revision`` example discovers the increasing revision of an instance. ::
4
4
 
@@ -13,3 +13,20 @@ Output::
13
13
  }
14
14
 
15
15
  For more information, see `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
16
+
17
+ **Example 2: To discover the revision of instances from a specific owner account**
18
+
19
+ The following ``discover-instances-revision`` example discovers the revision of instances from a specific owner account. The owner-account parameter is necessary for instances in namespaces that are shared with your account. ::
20
+
21
+ aws servicediscovery discover-instances-revision \
22
+ --namespace-name shared-namespace \
23
+ --service-name shared-service \
24
+ --owner-account 123456789111
25
+
26
+ Output::
27
+
28
+ {
29
+ "InstancesRevision": 1234567890
30
+ }
31
+
32
+ For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ and `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,4 +1,4 @@
1
- **To discover registered instances**
1
+ **Example 1: To discover registered instances**
2
2
 
3
3
  The following ``discover-instances`` example discovers registered instances. ::
4
4
 
@@ -22,7 +22,37 @@ Output::
22
22
  "AWS_INSTANCE_PORT": "808"
23
23
  }
24
24
  }
25
- ]
25
+ ],
26
+ "InstancesRevision": 85648075627387284
26
27
  }
27
28
 
28
29
  For more information, see `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
30
+
31
+ **Example 2: To discover instances from a specific owner account**
32
+
33
+ The following ``discover-instances`` example discovers registered instances from a specific owner account. This parameter is necessary to discover instances in namespaces that are shared with your account. ::
34
+
35
+ aws servicediscovery discover-instances \
36
+ --namespace-name shared-namespace \
37
+ --service-name shared-service \
38
+ --owner-account 123456789111
39
+
40
+ Output::
41
+
42
+ {
43
+ "Instances": [
44
+ {
45
+ "InstanceId": "shared-instance-1234",
46
+ "NamespaceName": "shared-namespace",
47
+ "ServiceName": "shared-service",
48
+ "HealthStatus": "HEALTHY",
49
+ "Attributes": {
50
+ "AWS_INSTANCE_IPV4": "203.0.113.75",
51
+ "AWS_INSTANCE_PORT": "80"
52
+ }
53
+ }
54
+ ],
55
+ "InstancesRevision": 1234567890
56
+ }
57
+
58
+ For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ and `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,4 +1,4 @@
1
- **To get the details of an instance**
1
+ **Example 1: To get the details of an instance**
2
2
 
3
3
  The following ``get-instance`` example gets the attributes of a service. ::
4
4
 
@@ -8,8 +8,9 @@ The following ``get-instance`` example gets the attributes of a service. ::
8
8
 
9
9
  Output::
10
10
 
11
- {
12
- "Instances": {
11
+ {
12
+ "ResourceOwner": "123456789012",
13
+ "Instance": {
13
14
  "Id": "arn:aws:servicediscovery:us-west-2:111122223333;:service/srv-e4anhexample0004",
14
15
  "Attributes": {
15
16
  "AWS_INSTANCE_IPV4": "192.0.2.44",
@@ -17,8 +18,33 @@ Output::
17
18
  "color": "green",
18
19
  "region": "us-west-2",
19
20
  "stage": "beta"
20
- }
21
+ },
22
+ "CreatedByAccount": "123456789012"
21
23
  }
22
24
  }
23
25
 
24
26
  For more information, see `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
27
+
28
+ **Example 2: To get the details of an instance using service ARN for shared namespaces**
29
+
30
+ The following ``get-instance`` example gets the attributes of an instance using a service ARN instead of service ID. Specifying an ARN is required when getting details of instances associated with namespaces that are shared with your account. The instance returned in this example was registered by account ``123456789111`` in a namespace owned by account ``123456789012``. ::
31
+
32
+ aws servicediscovery get-instance \
33
+ --service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita \
34
+ --instance-id web-server-01
35
+
36
+ Output::
37
+
38
+ {
39
+ "ResourceOwner": "123456789012",
40
+ "Instance": {
41
+ "Id": "web-server-01",
42
+ "Attributes": {
43
+ "AWS_INSTANCE_IPV4": "203.0.113.15",
44
+ "AWS_INSTANCE_PORT": "80"
45
+ },
46
+ "CreatedByAccount": "123456789111"
47
+ }
48
+ }
49
+
50
+ For more information about cross-account namespace sharing, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,4 +1,4 @@
1
- **To get the health status of instances associated with a service**
1
+ **Example 1: To get the health status of instances associated with a service**
2
2
 
3
3
  The following ``get-instances-health-status`` example gets the health status of instances associated with the specified service. ::
4
4
 
@@ -15,3 +15,21 @@ Output::
15
15
  }
16
16
 
17
17
  For more information, see `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
18
+
19
+ **Example 2: To get the health status of instances using service ARN for shared namespaces**
20
+
21
+ The following ``get-instances-health-status`` example gets the health status of instances using a service ARN instead of service ID. Specifying an ARN is required when getting health status for instances associated with namespaces that are shared with the requester's account. ::
22
+
23
+ aws servicediscovery get-instances-health-status \
24
+ --service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita
25
+
26
+ Output::
27
+
28
+ {
29
+ "Status": {
30
+ "web-server-01": "HEALTHY",
31
+ "web-server-02": "UNHEALTHY"
32
+ }
33
+ }
34
+
35
+ For more information, see `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ and `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,28 +1,59 @@
1
- **To get the details of a namespace**
1
+ **Example 1: To get the details of a namespace**
2
2
 
3
3
  The following ``get-namespace`` example retrieves information about the specified namespace. ::
4
4
 
5
5
  aws servicediscovery get-namespace \
6
- --id ns-e4anhexample0004
6
+ --id ns-abcd1234xmpl5678
7
7
 
8
8
  Output::
9
9
 
10
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",
11
+ "Namespace": {
12
+ "Id": "ns-abcd1234xmpl5678",
13
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678",
14
+ "ResourceOwner": "123456789012",
17
15
  "Name": "example-http.com",
16
+ "Type": "HTTP",
17
+ "Description": "Example.com AWS Cloud Map HTTP Namespace",
18
18
  "Properties": {
19
19
  "DnsProperties": {},
20
20
  "HttpProperties": {
21
21
  "HttpName": "example-http.com"
22
22
  }
23
23
  },
24
- "Type": "HTTP"
24
+ "CreateDate": "2024-02-23T13:35:21.874000-06:00",
25
+ "CreatorRequestId": "abcd1234-5678-90ab-cdef-xmpl12345678"
25
26
  }
26
27
  }
27
28
 
28
29
  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*.
30
+
31
+ **Example 2: To get the details of a namespace using ARN**
32
+
33
+ The following ``get-namespace`` example retrieves information about the specified namespace using its ARN. Specifying the ARN is necessary for retreiving details of a namespace shared with your account. ::
34
+
35
+ aws servicediscovery get-namespace \
36
+ --id arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678
37
+
38
+ Output::
39
+
40
+ {
41
+ "Namespace": {
42
+ "Id": "ns-abcd1234xmpl5678",
43
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678",
44
+ "ResourceOwner": "123456789012",
45
+ "Name": "example-http.com",
46
+ "Type": "HTTP",
47
+ "Description": "Example.com AWS Cloud Map HTTP Namespace",
48
+ "Properties": {
49
+ "DnsProperties": {},
50
+ "HttpProperties": {
51
+ "HttpName": "example-http.com"
52
+ }
53
+ },
54
+ "CreateDate": "2024-02-23T13:35:21.874000-06:00",
55
+ "CreatorRequestId": "abcd1234-5678-90ab-cdef-xmpl12345678"
56
+ }
57
+ }
58
+
59
+ For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,23 +1,49 @@
1
- **To get the result of an operation**
1
+ **Example 1: To get the result of an operation**
2
2
 
3
3
  The following ``get-operation`` example gets the result of a namespace creation operation. ::
4
4
 
5
5
  aws servicediscovery get-operation \
6
- --operation-id gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd
6
+ --operation-id abcd1234xmpl5678abcd1234xmpl5678-abcd1234
7
7
 
8
8
  Output::
9
9
 
10
10
  {
11
11
  "Operation": {
12
- "Id": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd",
12
+ "Id": "abcd1234xmpl5678abcd1234xmpl5678-abcd1234",
13
13
  "Type": "CREATE_NAMESPACE",
14
14
  "Status": "SUCCESS",
15
- "CreateDate": 1587055860.121,
16
- "UpdateDate": 1587055900.469,
15
+ "CreateDate": "2025-01-13T13:35:21.874000-06:00",
16
+ "UpdateDate": "2025-01-13T13:36:02.469000-06:00",
17
17
  "Targets": {
18
- "NAMESPACE": "ns-ylexjili4cdxy3xm"
18
+ "NAMESPACE": "ns-abcd1234xmpl5678"
19
19
  }
20
20
  }
21
21
  }
22
22
 
23
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*.
24
+
25
+ **Example 2: To get an operation from a specific owner account**
26
+
27
+ The following ``get-operation`` example gets the result of an operation associated with a specific namespace owner account. This parameter is necessary to get the result of operations associated with namespaces shared with your account. ::
28
+
29
+ aws servicediscovery get-operation \
30
+ --operation-id abcd1234xmpl5678abcd1234xmpl5678-abcd1234 \
31
+ --owner-account 123456789111
32
+
33
+ Output::
34
+
35
+ {
36
+ "Operation": {
37
+ "Id": "abcd1234xmpl5678abcd1234xmpl5678-abcd1234",
38
+ "OwnerAccount": "123456789111",
39
+ "Type": "CREATE_NAMESPACE",
40
+ "Status": "SUCCESS",
41
+ "CreateDate": "2025-01-13T13:35:21.874000-06:00",
42
+ "UpdateDate": "2025-01-13T13:36:02.469000-06:00",
43
+ "Targets": {
44
+ "NAMESPACE": "ns-abcd1234xmpl5678"
45
+ }
46
+ }
47
+ }
48
+
49
+ For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,15 +1,16 @@
1
- **To get the attributes of an service**
1
+ **Example 1: To get the attributes of a service**
2
2
 
3
3
  The following ``get-service-attributes`` example gets the attributes of a service. ::
4
4
 
5
5
  aws servicediscovery get-service-attributes \
6
- --service-id srv-e4anhexample0004
6
+ --service-id srv-abcd1234xmpl5678
7
7
 
8
8
  Output::
9
9
 
10
10
  {
11
11
  "ServiceAttributes": {
12
- "ServiceArn": "arn:aws:servicediscovery:us-west-2:111122223333;:service/srv-e4anhexample0004",
12
+ "ServiceArn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678",
13
+ "ResourceOwner": "123456789012",
13
14
  "Attributes": {
14
15
  "Port": "80"
15
16
  }
@@ -17,3 +18,24 @@ Output::
17
18
  }
18
19
 
19
20
  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*.
21
+
22
+ **Example 2: To get the attributes of a service using ARN**
23
+
24
+ The following ``get-service-attributes`` example gets the attributes of a service using its ARN. Specifying an ARN is necessary for getting attributes of a service created in a namespace shared with your account. ::
25
+
26
+ aws servicediscovery get-service-attributes \
27
+ --service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678
28
+
29
+ Output::
30
+
31
+ {
32
+ "ServiceAttributes": {
33
+ "ServiceArn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678",
34
+ "ResourceOwner": "123456789012",
35
+ "Attributes": {
36
+ "Port": "80"
37
+ }
38
+ }
39
+ }
40
+
41
+ For more information, see `AWS Cloud Map services <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html>`__ and `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,23 +1,51 @@
1
- **To get the settings of a service**
1
+ **Example 1: To get the settings of a service**
2
2
 
3
3
  The following ``get-service`` example gets the settings of a specified service. ::
4
4
 
5
5
  aws servicediscovery get-service \
6
- --id srv-e4anhexample0004
6
+ --id srv-abcd1234xmpl5678
7
7
 
8
8
  Output::
9
9
 
10
10
  {
11
11
  "Service": {
12
- "Id": "srv-e4anhexample0004",
13
- "Arn": "arn:aws:servicediscovery:us-west-2:111122223333:service/srv-e4anhexample0004",
12
+ "Id": "srv-abcd1234xmpl5678",
13
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678",
14
+ "ResourceOwner": "123456789012",
14
15
  "Name": "test-service",
15
- "NamespaceId": "ns-e4anhexample0004",
16
+ "NamespaceId": "ns-abcd1234xmpl5678",
16
17
  "DnsConfig": {},
17
18
  "Type": "HTTP",
18
- "CreateDate": "2025-02-24T10:59:02.905000-06:00",
19
- "CreatorRequestId": "3f50f9d9-b14c-482e-a556-d2a22fe6106d"
19
+ "CreateDate": "2025-08-18T13:53:02.775000-05:00",
20
+ "CreatorRequestId": "abcd1234-5678-90ab-cdef-xmpl12345678",
21
+ "CreatedByAccount": "123456789012"
20
22
  }
21
23
  }
22
24
 
23
25
  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*.
26
+
27
+ **Example 2: To get the settings of a service using ARN**
28
+
29
+ The following ``get-service`` example gets the settings of a specified service using its ARN. Specifying the ARN is necessary when retrieving information about a service created in a namespace that is shared with your account. The caller account ``123456789111`` created the service in a namespace shared by account ``123456789012``. ::
30
+
31
+ aws servicediscovery get-service \
32
+ --id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678
33
+
34
+ Output::
35
+
36
+ {
37
+ "Service": {
38
+ "Id": "srv-abcd1234xmpl5678",
39
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678",
40
+ "ResourceOwner": "123456789012",
41
+ "Name": "test-service",
42
+ "NamespaceId": "ns-abcd1234xmpl5678",
43
+ "DnsConfig": {},
44
+ "Type": "HTTP",
45
+ "CreateDate": "2025-08-18T13:53:02.775000-05:00",
46
+ "CreatorRequestId": "abcd1234-5678-90ab-cdef-xmpl12345678",
47
+ "CreatedByAccount": "123456789111"
48
+ }
49
+ }
50
+
51
+ For more information, see `Creating an AWS Cloud Map service for an application component <https://docs.aws.amazon.com/cloud-map/latest/dg/creating-services.html>`__ and `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,4 +1,4 @@
1
- **To list service instances**
1
+ **Example 1: To list service instances**
2
2
 
3
3
  The following ``list-instances`` example lists service instances. ::
4
4
 
@@ -14,10 +14,45 @@ Output::
14
14
  "Attributes": {
15
15
  "AWS_INSTANCE_IPV4": "172.2.1.3",
16
16
  "AWS_INSTANCE_PORT": "808"
17
- }
17
+ },
18
+ "CreatedByAccount": "123456789012"
19
+ }
20
+ ],
21
+ "ResourceOwner": "123456789012"
22
+ }
23
+
24
+ For more information, see `Listing AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
25
+
26
+ **Example 2: To list service instances using service ARN**
27
+
28
+ The following ``list-instances`` example lists service instances using a service ARN instead of service ID. Specifying an ARN is required when listing instances associated with namespaces that are shared with your account. ::
29
+
30
+ aws servicediscovery list-instances \
31
+ --service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita
32
+
33
+ Output::
34
+
35
+ {
36
+ "ResourceOwner": "123456789012",
37
+ "Instances": [
38
+ {
39
+ "Id": "web-server-01",
40
+ "Attributes": {
41
+ "AWS_INSTANCE_IPV4": "203.0.113.15",
42
+ "AWS_INSTANCE_PORT": "80"
43
+ },
44
+ "CreatedByAccount": "123456789012"
45
+ },
46
+ {
47
+ "Id": "web-server-02",
48
+ "Attributes": {
49
+ "AWS_INSTANCE_IPV4": "203.0.113.16",
50
+ "AWS_INSTANCE_PORT": "80"
51
+ },
52
+ "CreatedByAccount": "123456789012"
18
53
  }
19
54
  ]
20
55
  }
21
56
 
22
- For more information, see `Viewing a list of service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
57
+ For more information about cross-account namespace sharing, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`_ and `Listing AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
23
58
 
@@ -1,4 +1,4 @@
1
- **To list namespaces**
1
+ **Example 1: To list namespaces**
2
2
 
3
3
  The following ``list-namespaces`` example lists namespaces. ::
4
4
 
@@ -9,50 +9,73 @@ Output::
9
9
  {
10
10
  "Namespaces": [
11
11
  {
12
- "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-a3ccy2e7e3a7rile",
13
- "CreateDate": 1585354387.357,
14
- "Id": "ns-a3ccy2e7e3a7rile",
12
+ "Id": "ns-abcd1234xmpl5678",
13
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678",
14
+ "ResourceOwner": "123456789012",
15
15
  "Name": "local",
16
+ "Type": "DNS_PRIVATE",
16
17
  "Properties": {
17
18
  "DnsProperties": {
18
- "HostedZoneId": "Z06752353VBUDTC32S84S"
19
+ "HostedZoneId": "Z06752353VBUDTC32S84S",
20
+ "SOA": {}
19
21
  },
20
22
  "HttpProperties": {
21
23
  "HttpName": "local"
22
24
  }
23
25
  },
24
- "Type": "DNS_PRIVATE"
26
+ "CreateDate": "2023-07-17T13:37:27.872000-05:00"
25
27
  },
26
28
  {
27
- "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-pocfyjtrsmwtvcxx",
28
- "CreateDate": 1586468974.698,
29
- "Description": "My second namespace",
30
- "Id": "ns-pocfyjtrsmwtvcxx",
29
+ "Id": "ns-abcd1234xmpl9012",
30
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl9012",
31
+ "ResourceOwner": "123456789012",
31
32
  "Name": "My-second-namespace",
33
+ "Type": "HTTP",
34
+ "Description": "My second namespace",
32
35
  "Properties": {
33
- "DnsProperties": {},
36
+ "DnsProperties": {
37
+ "SOA": {}
38
+ },
34
39
  "HttpProperties": {
35
40
  "HttpName": "My-second-namespace"
36
41
  }
37
42
  },
38
- "Type": "HTTP"
39
- },
43
+ "CreateDate": "2023-11-14T10:35:47.840000-06:00"
44
+ }
45
+ ]
46
+ }
47
+
48
+ For more information, see `Listing AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
49
+
50
+ **Example 2: To list namespaces shared by other accounts**
51
+
52
+ The following ``list-namespaces`` example lists namespaces that are shared with the caller account by other AWS accounts using the ``RESOURCE_OWNER`` filter. ::
53
+
54
+ aws servicediscovery list-namespaces \
55
+ --filters Name=RESOURCE_OWNER,Values=OTHER_ACCOUNTS,Condition=EQ
56
+
57
+ Output::
58
+
59
+ {
60
+ "Namespaces": [
40
61
  {
41
- "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-ylexjili4cdxy3xm",
42
- "CreateDate": 1587055896.798,
43
- "Id": "ns-ylexjili4cdxy3xm",
44
- "Name": "example.com",
62
+ "Id": "ns-abcd1234xmpl5678",
63
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789111:namespace/ns-abcd1234xmpl5678",
64
+ "ResourceOwner": "123456789111",
65
+ "Name": "shared-namespace",
66
+ "Type": "HTTP",
67
+ "Description": "Namespace shared from another account",
45
68
  "Properties": {
46
69
  "DnsProperties": {
47
- "HostedZoneId": "Z09983722P0QME1B3KC8I"
70
+ "SOA": {}
48
71
  },
49
- "HttpProperties": {
50
- "HttpName": "example.com"
72
+ "HttpProperties": {
73
+ "HttpName": "shared-namespace"
51
74
  }
52
75
  },
53
- "Type": "DNS_PRIVATE"
76
+ "CreateDate": "2025-01-13T13:35:21.874000-06:00"
54
77
  }
55
78
  ]
56
79
  }
57
80
 
58
- For more information, see `Viewing a list of namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
81
+ For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,4 +1,4 @@
1
- **To list services**
1
+ **Example 1: To list services**
2
2
 
3
3
  The following ``list-services`` example lists services. ::
4
4
 
@@ -26,5 +26,33 @@ Output::
26
26
  ]
27
27
  }
28
28
 
29
- For more information, see `Viewing a list of services <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-services.html>`__ in the *AWS Cloud Map Developer Guide*.
29
+ For more information, see `Listing AWS Cloud Map services in a namespace <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-services.html>`__ in the *AWS Cloud Map Developer Guide*.
30
30
 
31
+ **Example 2: To list services created in shared namespaces**
32
+
33
+ The following ``list-services`` example lists services that are created in namespaces shared with the caller account ``123456789012`` by other AWS accounts using the ``RESOURCE_OWNER`` filter. ::
34
+
35
+ aws servicediscovery list-services \
36
+ --filters Name=RESOURCE_OWNER,Values=OTHER_ACCOUNTS,Condition=EQ
37
+
38
+ Output::
39
+
40
+ {
41
+ "Services": [
42
+ {
43
+ "Id": "srv-abcd1234xmpl5678",
44
+ "Arn": "arn:aws:servicediscovery:us-west-2:123456789111:service/srv-abcd1234xmpl5678",
45
+ "ResourceOwner": "123456789111",
46
+ "Name": "shared-service",
47
+ "NamespaceId": "ns-abcd1234xmpl5678",
48
+ "Type": "HTTP",
49
+ "Description": "Service in shared namespace",
50
+ "DnsConfig": {},
51
+ "CreateDate": "2025-01-13T13:35:21.874000-06:00",
52
+ "CreatorRequestId": "abcd1234-5678-90ab-cdef-xmpl12345678",
53
+ "CreatedByAccount": "123456789012"
54
+ }
55
+ ]
56
+ }
57
+
58
+ For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ and `Listing AWS Cloud Map services in a namespace <https://docs.aws.amazon.com/cloud-map/latest/dg/listing-services.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,4 +1,4 @@
1
- **To register a service instance**
1
+ **Example 1: To register a service instance using service ID**
2
2
 
3
3
  The following ``register-instance`` example registers a service instance. ::
4
4
 
@@ -15,5 +15,21 @@ Output::
15
15
 
16
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
17
 
18
- For more information, see `Registering instances <https://docs.aws.amazon.com/cloud-map/latest/dg/registering-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
18
+ For more information about registering an instance, see `Registering a resource as an AWS Cloud Map service instance <https://docs.aws.amazon.com/cloud-map/latest/dg/registering-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
19
19
 
20
+ **Example 2: To register a service instance using service ARN**
21
+
22
+ The following ``register-instance`` example registers a service instance using a service ARN. Specifying the ARN is required when registering instances in services that are shared with your account. ::
23
+
24
+ aws servicediscovery register-instance \
25
+ --service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita \
26
+ --instance-id web-server-01 \
27
+ --attributes=AWS_INSTANCE_IPV4=203.0.113.15,AWS_INSTANCE_PORT=80
28
+
29
+ Output::
30
+
31
+ {
32
+ "OperationId": "gv4g5meo7ndmkqjrhpn39wk42xmpl"
33
+ }
34
+
35
+ For more information about cross-account namespace sharing, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,18 +1,35 @@
1
- **To update an HTTP namespace**
1
+ **Example 1: To update an HTTP namespace**
2
2
 
3
3
  The following ``update-http-namespace`` example updates the specified HTTP namespace's description. ::
4
4
 
5
5
  aws servicediscovery update-http-namespace \
6
- --id ns-vh4nbmEXAMPLE \
7
- --updater-request-id example-request-id \
6
+ --id ns-abcd1234xmpl5678 \
7
+ --updater-request-id abcd1234-5678-90ab-cdef-xmpl12345678 \
8
8
  --namespace Description="The updated namespace description."
9
9
 
10
10
  Output::
11
11
 
12
12
  {
13
- "OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd"
13
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
14
14
  }
15
15
 
16
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
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*.
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*.
19
+
20
+ **Example 2: To update an HTTP namespace using ARN**
21
+
22
+ The following ``update-http-namespace`` example updates the specified HTTP namespace using its ARN. ::
23
+
24
+ aws servicediscovery update-http-namespace \
25
+ --id arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678 \
26
+ --updater-request-id abcd1234-5678-90ab-cdef-xmpl12345678 \
27
+ --namespace Description="The updated namespace description."
28
+
29
+ Output::
30
+
31
+ {
32
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
33
+ }
34
+
35
+ 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,4 +1,4 @@
1
- **To update a custom health check**
1
+ **Example 1: To update a custom health check**
2
2
 
3
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
4
 
@@ -10,3 +10,16 @@ The following ``update-instance-custom-health-status`` example updates the statu
10
10
  This command produces no output.
11
11
 
12
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*.
13
+
14
+ **Example 2: To update a custom health check using service ARN**
15
+
16
+ The following ``update-instance-custom-health-status`` example updates the status of the custom health check using a service ARN. The ARN is required when updating health status for instances associated with namespaces that are shared with the your account. ::
17
+
18
+ aws servicediscovery update-instance-custom-health-status \
19
+ --service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita \
20
+ --instance-id web-server-01 \
21
+ --status HEALTHY
22
+
23
+ This command produces no output.
24
+
25
+ For more information, see `AWS Cloud Map service health check configuration <https://docs.aws.amazon.com/cloud-map/latest/dg/services-health-checks.html>`__ and `Cross-account AWS Cloud Map namespace sharing <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,18 +1,35 @@
1
- **To update a private DNS namespace**
1
+ **Example 1: To update a private DNS namespace using ID**
2
2
 
3
- The following ``update-private-dns-namespace`` example updates the description of a private DNS namespace. ::
3
+ The following ``update-private-dns-namespace`` example updates the description of a private DNS namespace using namespace ID. ::
4
4
 
5
5
  aws servicediscovery update-private-dns-namespace \
6
- --id ns-bk3aEXAMPLE \
7
- --updater-request-id example-private-request-id \
6
+ --id ns-abcd1234xmpl5678 \
7
+ --updater-request-id abcd1234-5678-90ab-cdef-xmpl12345678 \
8
8
  --namespace Description="The updated namespace description."
9
9
 
10
10
  Output::
11
11
 
12
12
  {
13
- "OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd"
13
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
14
14
  }
15
15
 
16
16
  To confirm that the operation succeeded, you can run ``get-operation``.
17
17
 
18
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*.
19
+
20
+ **Example 2: To update a private DNS namespace using ARN**
21
+
22
+ The following ``update-private-dns-namespace`` example updates a private DNS namespace using its ARN. ::
23
+
24
+ aws servicediscovery update-private-dns-namespace \
25
+ --id arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678 \
26
+ --updater-request-id abcd1234-5678-90ab-cdef-xmpl12345678 \
27
+ --namespace Description="The updated namespace description."
28
+
29
+ Output::
30
+
31
+ {
32
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
33
+ }
34
+
35
+ 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,18 +1,35 @@
1
- **To update a public DNS namespace**
1
+ **Example 1: To update a public DNS namespace using ID**
2
2
 
3
- The following ``update-public-dns-namespace`` example updates the description of a public DNS namespace. ::
3
+ The following ``update-public-dns-namespace`` example updates the description of a public DNS namespace using its ID. ::
4
4
 
5
5
  aws servicediscovery update-public-dns-namespace \
6
- --id ns-bk3aEXAMPLE \
7
- --updater-request-id example-public-request-id \
6
+ --id ns-abcd1234xmpl5678 \
7
+ --updater-request-id abcd1234-5678-90ab-cdef-xmpl12345678 \
8
8
  --namespace Description="The updated namespace description."
9
9
 
10
10
  Output::
11
11
 
12
12
  {
13
- "OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd"
13
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
14
14
  }
15
15
 
16
16
  To confirm that the operation succeeded, you can run ``get-operation``.
17
17
 
18
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*.
19
+
20
+ **Example 2: To update a public DNS namespace using ARN**
21
+
22
+ The following ``update-public-dns-namespace`` example updates a public DNS namespace using its ARN. ::
23
+
24
+ aws servicediscovery update-public-dns-namespace \
25
+ --id arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678 \
26
+ --updater-request-id abcd1234-5678-90ab-cdef-xmpl12345678 \
27
+ --namespace Description="The updated namespace description."
28
+
29
+ Output::
30
+
31
+ {
32
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
33
+ }
34
+
35
+ 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,11 +1,23 @@
1
- **To update a service to add an attribute**
1
+ **Example 1: To update a service to add an attribute**
2
2
 
3
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
4
 
5
5
  aws servicediscovery update-service-attributes \
6
- --service-id srv-e4anhexample0004 \
6
+ --service-id srv-abcd1234xmpl5678 \
7
7
  --attributes Port=80
8
8
 
9
9
  This command produces no output.
10
10
 
11
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*.
12
+
13
+ **Example 2: To update a service attributes using ARN**
14
+
15
+ The following ``update-service-attributes`` example updates a service using its ARN to add a service attribute. Specifying the ARN is necessary for adding attributes to services created in namespaces shared with your account. ::
16
+
17
+ aws servicediscovery update-service-attributes \
18
+ --service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678 \
19
+ --attributes Port=80
20
+
21
+ This command produces no output.
22
+
23
+ For more information, see `AWS Cloud Map services <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html>`__ and `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,17 +1,33 @@
1
- **To update a service**
1
+ **Example 1: To update a service**
2
2
 
3
3
  The following ``update-service`` example updates a service to update the ``DnsConfig`` and ``HealthCheckConfig`` settings. ::
4
4
 
5
5
  aws servicediscovery update-service \
6
- --id srv-e4anhexample0004 \
7
- --service "DnsConfig={DnsRecords=[{"Type"="A","TTL"=60}]},HealthCheckConfig={"Type"="HTTP","ResourcePath"="/","FailureThreshold"="2"}"
6
+ --id srv-abcd1234xmpl5678 \
7
+ --service "DnsConfig={DnsRecords=[{Type=A,TTL=60}]},HealthCheckConfig={Type=HTTP,ResourcePath=/,FailureThreshold=2}"
8
8
 
9
9
  Output::
10
10
 
11
11
  {
12
- "OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd"
12
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
13
13
  }
14
14
 
15
15
  To confirm that the operation succeeded, you can run ``get-operation``.
16
16
 
17
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*.
18
+
19
+ **Example 2: To update a service using ARN**
20
+
21
+ The following ``update-service`` example updates a service using its ARN. Specifying an ARN is necessary for services that are created in namespaces shared with your account. ::
22
+
23
+ aws servicediscovery update-service \
24
+ --id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678 \
25
+ --service "DnsConfig={DnsRecords=[{Type=A,TTL=60}]},HealthCheckConfig={Type=HTTP,ResourcePath=/,FailureThreshold=2}"
26
+
27
+ Output::
28
+
29
+ {
30
+ "OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
31
+ }
32
+
33
+ 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>`__ and `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: awscli
3
- Version: 1.42.46
3
+ Version: 1.42.48
4
4
  Summary: Universal Command Line Environment for AWS.
5
5
  Home-page: http://aws.amazon.com/cli/
6
6
  Author: Amazon Web Services
@@ -23,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.12
23
23
  Classifier: Programming Language :: Python :: 3.13
24
24
  Requires-Python: >= 3.9
25
25
  License-File: LICENSE.txt
26
- Requires-Dist: botocore (==1.40.46)
26
+ Requires-Dist: botocore (==1.40.48)
27
27
  Requires-Dist: docutils (<=0.19,>=0.18.1)
28
28
  Requires-Dist: s3transfer (<0.15.0,>=0.14.0)
29
29
  Requires-Dist: PyYAML (<6.1,>=3.10)
@@ -1,4 +1,4 @@
1
- awscli/__init__.py,sha256=6mP80cVFTeuWJUN3UfjkhP8O3yK-KCf-IL_zrSkAafI,1534
1
+ awscli/__init__.py,sha256=Aq0WU7Zh4qezoaooW-uVdhyvgoJ52gKctWyyk2SB1q8,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
@@ -5464,33 +5464,33 @@ awscli/examples/servicecatalog-appregistry/update-attribute-group.rst,sha256=aZF
5464
5464
  awscli/examples/servicediscovery/create-http-namespace.rst,sha256=rucaUDiSy6OfnDwFcuMEmmxd5nl9MChI6sxm0dB29JU,789
5465
5465
  awscli/examples/servicediscovery/create-private-dns-namespace.rst,sha256=CiAdos3MrTtu3MHqbM2ZZO6NDmBsgtkVbvEEobMWMZA,706
5466
5466
  awscli/examples/servicediscovery/create-public-dns-namespace.rst,sha256=Z3WuMuVMaN39ojB8qAgD1Snq4ASQARriVZmQ44JJuwg,750
5467
- awscli/examples/servicediscovery/create-service.rst,sha256=ONp8kWl4FCUHZyJiCagnEDKoz1PV9TqUgTIc37bakO8,1179
5468
- awscli/examples/servicediscovery/delete-namespace.rst,sha256=G9o_r3ZO62oI23X9T59zDzDAdqEqJnkmeBd-UM1Ju-U,635
5469
- awscli/examples/servicediscovery/delete-service-attributes.rst,sha256=b1sfh8CabDzEHvyVQ7IJh645ufNrmR_cTr4yR9fM_WA,511
5470
- awscli/examples/servicediscovery/delete-service.rst,sha256=54ysKNqFxk9G1K2YSsNbk7yrHjBQL8t_LZmOOEMLQUA,362
5471
- awscli/examples/servicediscovery/deregister-instance.rst,sha256=skbof-kNVxoxKHNaXx-_QmsIaKx9m3KjAauRJHV6t9o,725
5472
- awscli/examples/servicediscovery/discover-instances-revision.rst,sha256=SznhJdHeL3DkDDbhZ1W4sdZxXE_s44jdcDMzm4u3JT4,520
5473
- awscli/examples/servicediscovery/discover-instances.rst,sha256=03xzDp-nVq2pzR0soRzwzcLmZAE1d7iZf1r8o_B8fzU,891
5474
- awscli/examples/servicediscovery/get-instance.rst,sha256=tTIySWQyE2NV9tB3PXYbtFZeBRd_s7tPjPJdCI3mxbI,808
5475
- awscli/examples/servicediscovery/get-instances-health-status.rst,sha256=SLHO6ITqSZuCH7bDyc2FBQ_pxQb0EAxPOERX-65cymQ,608
5476
- awscli/examples/servicediscovery/get-namespace.rst,sha256=KO2v32r4JdcZ_l0ue2A5al8OjNduJfR3GS-qtYY1fkA,1019
5477
- awscli/examples/servicediscovery/get-operation.rst,sha256=p07XARGYgQ-kkQswLutpWLeW2iM14ieRBjWnWLJWSUw,818
5478
- awscli/examples/servicediscovery/get-service-attributes.rst,sha256=Vho56m14aUQ-f0prXY-3oxCpryvaw4zMF6AE_UL0zLo,633
5479
- awscli/examples/servicediscovery/get-service.rst,sha256=3lfJUZ-s3DcCBBJrCUKR3KZRsU37kcqeZqYLtIdNiqo,837
5480
- awscli/examples/servicediscovery/list-instances.rst,sha256=7tBptKvjq4fEpAV2d2z4Rbs0wITGK4CEMGujDM-j-38,646
5481
- awscli/examples/servicediscovery/list-namespaces.rst,sha256=2lE6fn7RvtWQjapiPW2WM0OlAduZo-vJMa1ukXMyQDY,2097
5467
+ awscli/examples/servicediscovery/create-service.rst,sha256=nLxeopPQyixFc31nqeM_NEHSPwisP8KyfR6VoLESneA,2895
5468
+ awscli/examples/servicediscovery/delete-namespace.rst,sha256=FtnmHSrMvNoFiC0gMNS7BlsAzAHgjn4ekV0Hla5hPpM,1199
5469
+ awscli/examples/servicediscovery/delete-service-attributes.rst,sha256=KAGJmPARhFCX-isCo_nO5I7Q48XtSm0kjmZufS9HkrE,1318
5470
+ awscli/examples/servicediscovery/delete-service.rst,sha256=YzikP56iQ4RKE26NklaAlMddzvYUGonHYFxc1YeYbFQ,857
5471
+ awscli/examples/servicediscovery/deregister-instance.rst,sha256=6Lysnd2590BEu2TgmeJLMzfF1Aur5ecnOGa6NVLXZtM,1652
5472
+ awscli/examples/servicediscovery/discover-instances-revision.rst,sha256=CQVj2OR4KCOML4QHVz75cKKRPOUz6Fcl8B4iGsW-nM0,1379
5473
+ awscli/examples/servicediscovery/discover-instances.rst,sha256=5li-EiYlIbkkOIv8Kb2BsBzHm74rp0yBIUvdPkXmcK4,2168
5474
+ awscli/examples/servicediscovery/get-instance.rst,sha256=ULXFsKSVYsodFZaQ3TH43ozT07SGOeveCgwfGPC-BIM,2086
5475
+ awscli/examples/servicediscovery/get-instances-health-status.rst,sha256=XoLgwijDnLmq2BZFEDVP3Tca8O2LRaB1apPL2I52OCE,1577
5476
+ awscli/examples/servicediscovery/get-namespace.rst,sha256=RfFjkPvF9f1MO-_Xf0W4NJaT1f4sG9z46c1m3HdWQ6U,2371
5477
+ awscli/examples/servicediscovery/get-operation.rst,sha256=O9EYNTgGFfOzexFPZs68g43bhut2I4TINCiJ99T3dpE,1949
5478
+ awscli/examples/servicediscovery/get-service-attributes.rst,sha256=QANGdPfq83-cmFFU0qqHrVdqocPvpwD-JzNNiX3DCho,1685
5479
+ awscli/examples/servicediscovery/get-service.rst,sha256=q7DVeqcU-AL98Rs41XP5XNjEiJREeOpLjKzaxIU1wno,2353
5480
+ awscli/examples/servicediscovery/list-instances.rst,sha256=B_N0r9V77py1ENS_z09UXOtFCsTFsSlXGASHwMCYnS4,2159
5481
+ awscli/examples/servicediscovery/list-namespaces.rst,sha256=vQZCxU5eiztyoZrgrLBqriaibQxHiHdQq6YjxMDo_lY,3024
5482
5482
  awscli/examples/servicediscovery/list-operations.rst,sha256=NIQUg-KGPxMlRSuklo66KBm3M4sFVoR6G_LFoxFuS_M,943
5483
- awscli/examples/servicediscovery/list-services.rst,sha256=LAdgixf8Wdt4jmrqAyD_8hU9I6snaGyCLsYK25rCavo,896
5483
+ awscli/examples/servicediscovery/list-services.rst,sha256=CzpuB1lfWrDzmjgk_sPkGj8Gua9HjaaDlXP3Ieywnng,2300
5484
5484
  awscli/examples/servicediscovery/list-tags-for-resource.rst,sha256=vSM1X-GhFEMICwTifdWjV-sNqFLhEHf1XJNZFyt1ieI,731
5485
- awscli/examples/servicediscovery/register-instance.rst,sha256=UNomOD1KyzmU84jCqlyWhCQCt1yyUPcaHlIDqPp6DFQ,778
5485
+ awscli/examples/servicediscovery/register-instance.rst,sha256=r7bC8eupN0uGQbPSE855l3kN3c08oe3xZ4hgi7Bnt8s,1691
5486
5486
  awscli/examples/servicediscovery/tag-resource.rst,sha256=EmyrrIUs3aLP6Y3Yjpmu-o6GS7xoSoSX1irjliLxcLw,594
5487
5487
  awscli/examples/servicediscovery/untag-resource.rst,sha256=k-DiiV5IJz0M5kNQQ7P0p8o7N_X3xd7dn-oWpC92PYc,561
5488
- awscli/examples/servicediscovery/update-http-namespace.rst,sha256=JokGP8EsMVejYxdI3NxqitYkYdyQGMNdZgpj-X4aTs4,807
5489
- awscli/examples/servicediscovery/update-instance-custom-health-status.rst,sha256=NNDCFz59TKTc8AvjXrB3QNNwQyGiXqcBu8vuGtv9lfk,618
5490
- awscli/examples/servicediscovery/update-private-dns-namespace.rst,sha256=FLH5D51LkN2HHdCXSBVNmCv9spBEUEcfg4uRvS-tTTA,701
5491
- awscli/examples/servicediscovery/update-public-dns-namespace.rst,sha256=WSIzMsAHhcJ2snO3YOJyy-LnHIyMm5vPIWZiXtR_rEo,696
5492
- awscli/examples/servicediscovery/update-service-attributes.rst,sha256=nNM3RTqmdDi-HN-1K-b7c7ZiTSCqzXRcKhRJSPuUd70,530
5493
- awscli/examples/servicediscovery/update-service.rst,sha256=CkFrbVUb-cVwFqaha2knUk3MasAGZ8M3S-ULnZ0itjY,738
5488
+ awscli/examples/servicediscovery/update-http-namespace.rst,sha256=EkLKnaoWRgSmg5wz_BUFciuAjmWdgxH4o3jwWiB2rJM,1533
5489
+ awscli/examples/servicediscovery/update-instance-custom-health-status.rst,sha256=N7okjoAylxgMjxvhiwR9DZ6R7r2KguVMRTFyENxtjEU,1545
5490
+ awscli/examples/servicediscovery/update-private-dns-namespace.rst,sha256=jGEHGh2oADSvDUKwa1ulvLOugID3m-ZujHUpzwIF1tc,1463
5491
+ awscli/examples/servicediscovery/update-public-dns-namespace.rst,sha256=X2etYVaTlXWoM-sSq5DUB9SEDboiPe7xVhXyDnAT3PE,1449
5492
+ awscli/examples/servicediscovery/update-service-attributes.rst,sha256=P7TE9FCkZbzEEHBvWyipmJYQs-k4wb95ZGA8A-LeTYI,1330
5493
+ awscli/examples/servicediscovery/update-service.rst,sha256=BHByXymR3DkVi0FB9AWW-JOyqjgA9LXTWPCh_pQaADM,1612
5494
5494
  awscli/examples/ses/delete-identity.rst,sha256=i7NKOj97eDKk1O78HOj_5MjGKNg41V3ctPqg1lcmVnI,529
5495
5495
  awscli/examples/ses/get-identity-dkim-attributes.rst,sha256=CIQoYWtkfMacGCO-Ox4UoN2MjB3TyqgGbkmK8frOkFg,1152
5496
5496
  awscli/examples/ses/get-identity-notification-attributes.rst,sha256=fMEB6dmTNAuWHfXbF61ha2zlxHvbqMbKo2qGVTDOYuo,1369
@@ -6116,13 +6116,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
6116
6116
  awscli/topics/s3-config.rst,sha256=5EIVd4ggLBHtzjtHFvQp9hY415yMGZiG7S_rO9qy2t0,11663
6117
6117
  awscli/topics/s3-faq.rst,sha256=9qO0HFI6F9hx1wVEUDl8Jy6yoCUd9zbtv-Z0Re4dsiw,2934
6118
6118
  awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
6119
- awscli-1.42.46.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6120
- awscli-1.42.46.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6121
- awscli-1.42.46.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6122
- awscli-1.42.46.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6123
- awscli-1.42.46.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6124
- awscli-1.42.46.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6125
- awscli-1.42.46.dist-info/METADATA,sha256=zIPpLJ0uT72pNcFP5uoYfcGO5DenNU_cSpDr_L-PkzQ,11128
6126
- awscli-1.42.46.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6127
- awscli-1.42.46.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6128
- awscli-1.42.46.dist-info/RECORD,,
6119
+ awscli-1.42.48.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6120
+ awscli-1.42.48.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6121
+ awscli-1.42.48.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6122
+ awscli-1.42.48.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6123
+ awscli-1.42.48.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6124
+ awscli-1.42.48.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6125
+ awscli-1.42.48.dist-info/METADATA,sha256=T4evvmLX_L43BWyjHCULZquZyf4aC4RNQ_scFJM18G8,11128
6126
+ awscli-1.42.48.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6127
+ awscli-1.42.48.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6128
+ awscli-1.42.48.dist-info/RECORD,,
File without changes