awscli 1.38.11__py3-none-any.whl → 1.38.13__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.

Files changed (37) hide show
  1. awscli/__init__.py +1 -1
  2. awscli/customizations/globalargs.py +5 -13
  3. awscli/examples/cognito-idp/tag-resource.rst +11 -0
  4. awscli/examples/cognito-idp/untag-resource.rst +11 -0
  5. awscli/examples/cognito-idp/update-identity-provider.rst +71 -0
  6. awscli/examples/cognito-idp/update-managed-login-branding.rst +949 -0
  7. awscli/examples/cognito-idp/update-user-pool-client.rst +121 -24
  8. awscli/examples/cognito-idp/update-user-pool-domain.rst +18 -0
  9. awscli/examples/cognito-idp/verify-software-token.rst +15 -0
  10. awscli/examples/cognito-idp/verify-user-attribute.rst +10 -0
  11. awscli/examples/ec2/associate-security-group-vpc.rst +15 -0
  12. awscli/examples/ec2/create-vpc-endpoint.rst +196 -118
  13. awscli/examples/ec2/describe-security-group-vpc-associations.rst +21 -0
  14. awscli/examples/ec2/describe-vpc-endpoint-associations.rst +24 -0
  15. awscli/examples/ec2/disable-image-deregistration-protection.rst +14 -0
  16. awscli/examples/ec2/disassociate-security-group-vpc.rst +15 -0
  17. awscli/examples/ec2/enable-image-deregistration-protection.rst +14 -0
  18. awscli/examples/vpc-lattice/create-resource-configuration.rst +32 -0
  19. awscli/examples/vpc-lattice/create-resource-gateway.rst +27 -0
  20. awscli/examples/vpc-lattice/delete-resource-configuration.rst +10 -0
  21. awscli/examples/vpc-lattice/delete-resource-gateway.rst +17 -0
  22. awscli/examples/vpc-lattice/get-resource-configuration.rst +32 -0
  23. awscli/examples/vpc-lattice/get-resource-gateway.rst +27 -0
  24. awscli/examples/vpc-lattice/list-resource-configurations.rst +25 -0
  25. awscli/examples/vpc-lattice/list-resource-endpoint-associations.rst +24 -0
  26. awscli/examples/vpc-lattice/list-resource-gateways.rst +30 -0
  27. awscli/examples/vpc-lattice/list-service-network-vpc-endpoint-associations.rst +22 -0
  28. {awscli-1.38.11.dist-info → awscli-1.38.13.dist-info}/METADATA +2 -2
  29. {awscli-1.38.11.dist-info → awscli-1.38.13.dist-info}/RECORD +37 -14
  30. {awscli-1.38.11.data → awscli-1.38.13.data}/scripts/aws +0 -0
  31. {awscli-1.38.11.data → awscli-1.38.13.data}/scripts/aws.cmd +0 -0
  32. {awscli-1.38.11.data → awscli-1.38.13.data}/scripts/aws_bash_completer +0 -0
  33. {awscli-1.38.11.data → awscli-1.38.13.data}/scripts/aws_completer +0 -0
  34. {awscli-1.38.11.data → awscli-1.38.13.data}/scripts/aws_zsh_completer.sh +0 -0
  35. {awscli-1.38.11.dist-info → awscli-1.38.13.dist-info}/LICENSE.txt +0 -0
  36. {awscli-1.38.11.dist-info → awscli-1.38.13.dist-info}/WHEEL +0 -0
  37. {awscli-1.38.11.dist-info → awscli-1.38.13.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,27 @@
1
+ **To create a resource gateway**
2
+
3
+ The following ``create-resource-gateway`` example creates a resource gateway for the specified subnet. ::
4
+
5
+ aws vpc-lattice create-resource-gateway \
6
+ --name my-resource-gateway \
7
+ --vpc-identifier vpc-0bf4c2739bc05a69 \
8
+ --subnet-ids subnet-08e8943905b63a683
9
+
10
+ Output::
11
+
12
+ {
13
+ "arn": "arn:aws:vpc-lattice:us-east-1:123456789012:resourcegateway/rgw-0bba03f3d56060135",
14
+ "id": "rgw-0bba03f3d56060135",
15
+ "ipAddressType": "IPV4",
16
+ "name": "my-resource-gateway",
17
+ "securityGroupIds": [
18
+ "sg-087ffd596c5fe962c"
19
+ ],
20
+ "status": "ACTIVE",
21
+ "subnetIds": [
22
+ "subnet-08e8943905b63a683"
23
+ ],
24
+ "vpcIdentifier": "vpc-0bf4c2739bc05a694"
25
+ }
26
+
27
+ For more information, see `Resource gateways in VPC Lattice <https://docs.aws.amazon.com/vpc-lattice/latest/ug/resource-gateway.html>`__ in the *Amazon VPC Lattice User Guide*.
@@ -0,0 +1,10 @@
1
+ **To delete a resource configuration**
2
+
3
+ The following ``delete-resource-configuration`` example deletes the specified resource configuration. ::
4
+
5
+ aws vpc-lattice delete-resource-configuration \
6
+ --resource-configuration-identifier rcfg-07129f3acded87625
7
+
8
+ This command produces no output.
9
+
10
+ For more information, see `Resource gateways in VPC Lattice <https://docs.aws.amazon.com/vpc-lattice/latest/ug/resource-configuration.html>`__ in the *Amazon VPC Lattice User Guide*.
@@ -0,0 +1,17 @@
1
+ **To delete a resource gateway**
2
+
3
+ The following ``delete-resource-gateway`` example deletes the specified resource gateway. ::
4
+
5
+ aws vpc-lattice delete-resource-gateway \
6
+ --resource-gateway-identifier rgw-0bba03f3d56060135
7
+
8
+ Output::
9
+
10
+ {
11
+ "arn": "arn:aws:vpc-lattice:us-east-1:123456789012:resourcegateway/rgw-0bba03f3d56060135",
12
+ "id": "rgw-0bba03f3d56060135",
13
+ "name": "my-resource-gateway",
14
+ "status": "DELETE_IN_PROGRESS"
15
+ }
16
+
17
+ For more information, see `Resource gateways in VPC Lattice <https://docs.aws.amazon.com/vpc-lattice/latest/ug/resource-gateway.html>`__ in the *Amazon VPC Lattice User Guide*.
@@ -0,0 +1,32 @@
1
+ **To get information about a resource configuration**
2
+
3
+ The following ``get-resource-configuration`` example gets information about the specified resource configuration. ::
4
+
5
+ aws vpc-lattice get-resource-configuration \
6
+ --resource-configuration-identifier rcfg-07129f3acded87625
7
+
8
+ Output::
9
+
10
+ {
11
+ "allowAssociationToShareableServiceNetwork": true,
12
+ "amazonManaged": false,
13
+ "arn": "arn:aws:vpc-lattice:us-east-1:123456789012:resourceconfiguration/rcfg-07129f3acded87625",
14
+ "createdAt": "2025-02-01T00:57:35.871000+00:00",
15
+ "id": "rcfg-07129f3acded87625",
16
+ "lastUpdatedAt": "2025-02-01T00:57:46.874000+00:00",
17
+ "name": "my-resource-config",
18
+ "portRanges": [
19
+ "1-65535"
20
+ ],
21
+ "protocol": "TCP",
22
+ "resourceConfigurationDefinition": {
23
+ "ipResource": {
24
+ "ipAddress": "10.0.14.85"
25
+ }
26
+ },
27
+ "resourceGatewayId": "rgw-0bba03f3d56060135",
28
+ "status": "ACTIVE",
29
+ "type": "SINGLE"
30
+ }
31
+
32
+ For more information, see `Resource gateways in VPC Lattice <https://docs.aws.amazon.com/vpc-lattice/latest/ug/resource-configuration.html>`__ in the *Amazon VPC Lattice User Guide*.
@@ -0,0 +1,27 @@
1
+ **To get information about a resource gateway**
2
+
3
+ The following ``get-resource-gateway`` example gets information about the specified resource gateway. ::
4
+
5
+ aws vpc-lattice get-resource-gateway \
6
+ --resource-gateway-identifier rgw-0bba03f3d56060135
7
+
8
+ Output::
9
+
10
+ {
11
+ "arn": "arn:aws:vpc-lattice:us-east-1:123456789012:resourcegateway/rgw-0bba03f3d56060135",
12
+ "createdAt": "2025-02-01T00:57:33.241000+00:00",
13
+ "id": "rgw-0bba03f3d56060135",
14
+ "ipAddressType": "IPV4",
15
+ "lastUpdatedAt": "2025-02-01T00:57:44.351000+00:00",
16
+ "name": "my-resource-gateway",
17
+ "securityGroupIds": [
18
+ "sg-087ffd596c5fe962c"
19
+ ],
20
+ "status": "ACTIVE",
21
+ "subnetIds": [
22
+ "subnet-08e8943905b63a683"
23
+ ],
24
+ "vpcId": "vpc-0bf4c2739bc05a694"
25
+ }
26
+
27
+ For more information, see `Resource gateways in VPC Lattice <https://docs.aws.amazon.com/vpc-lattice/latest/ug/resource-gateway.html>`__ in the *Amazon VPC Lattice User Guide*.
@@ -0,0 +1,25 @@
1
+ **To list your resource configurations**
2
+
3
+ The following ``list-resource-configurations`` example lists your resource configurations. ::
4
+
5
+ aws vpc-lattice list-resource-configurations
6
+
7
+ Output::
8
+
9
+ {
10
+ "items": [
11
+ {
12
+ "amazonManaged": false,
13
+ "arn": "arn:aws:vpc-lattice:us-east-1:123456789012:resourceconfiguration/rcfg-07129f3acded87625",
14
+ "createdAt": "2025-02-01T00:57:35.871000+00:00",
15
+ "id": "rcfg-07129f3acded87625",
16
+ "lastUpdatedAt": "2025-02-01T00:57:46.874000+00:00",
17
+ "name": "my-resource-config",
18
+ "resourceGatewayId": "rgw-0bba03f3d56060135",
19
+ "status": "ACTIVE",
20
+ "type": "SINGLE"
21
+ }
22
+ ]
23
+ }
24
+
25
+ For more information, see `Resource configurations <https://docs.aws.amazon.com/vpc-lattice/latest/ug/resource-configuration.html>`__ in the *Amazon VPC Lattice User Guide*.
@@ -0,0 +1,24 @@
1
+ **To list the VPC endpoint associations**
2
+
3
+ The following ``list-resource-endpoint-associations`` example lists the VPC endpoints associated with the specified resource configuration. ::
4
+
5
+ aws vpc-lattice list-resource-endpoint-associations \
6
+ --resource-configuration-identifier rcfg-07129f3acded87625
7
+
8
+ Output::
9
+
10
+ {
11
+ "items": [
12
+ {
13
+ "arn": "arn:aws:vpc-lattice:us-east-1:123456789012:resourceendpointassociation/rea-0956a7435baf89326",
14
+ "createdAt": "2025-02-01T00:57:38.998000+00:00",
15
+ "id": "rea-0956a7435baf89326",
16
+ "resourceConfigurationArn": "arn:aws:vpc-lattice:us-east-1:123456789012:resourceconfiguration/rcfg-07129f3acded87625",
17
+ "resourceConfigurationId": "rcfg-07129f3acded87625",
18
+ "vpcEndpointId": "vpce-019b90d6f16d4f958",
19
+ "vpcEndpointOwner": "123456789012"
20
+ }
21
+ ]
22
+ }
23
+
24
+ For more information, see `Manage associations for a VPC Lattice resource configuration <https://docs.aws.amazon.com/vpc-lattice/latest/ug/resource-configuration-associations.html>`__ in the *Amazon VPC Lattice User Guide*.
@@ -0,0 +1,30 @@
1
+ **To list your resource gateways**
2
+
3
+ The following ``list-resource-gateways`` example lists your resource gateways. ::
4
+
5
+ aws vpc-lattice list-resource-gateways
6
+
7
+ Output::
8
+
9
+ {
10
+ "items": [
11
+ {
12
+ "arn": "arn:aws:vpc-lattice:us-east-1:123456789012:resourcegateway/rgw-0bba03f3d56060135",
13
+ "createdAt": "2025-02-01T00:57:33.241000+00:00",
14
+ "id": "rgw-0bba03f3d56060135",
15
+ "ipAddressType": "IPV4",
16
+ "lastUpdatedAt": "2025-02-01T00:57:44.351000+00:00",
17
+ "name": "my-resource-gateway",
18
+ "seurityGroupIds": [
19
+ "sg-087ffd596c5fe962c"
20
+ ],
21
+ "status": "ACTIVE",
22
+ "subnetIds": [
23
+ "subnet-08e8943905b63a683"
24
+ ],
25
+ "vpcIdentifier": "vpc-0bf4c2739bc05a694"
26
+ }
27
+ ]
28
+ }
29
+
30
+ For more information, see `Resource gateways in VPC Lattice <https://docs.aws.amazon.com/vpc-lattice/latest/ug/resource-gateway.html>`__ in the *Amazon VPC Lattice User Guide*.
@@ -0,0 +1,22 @@
1
+ **To list the VPC endpoint associations**
2
+
3
+ The following ``list-service-network-vpc-endpoint-associations`` example lists the VPC endpoints associated with the specific service network. ::
4
+
5
+ aws vpc-lattice list-service-network-vpc-endpoint-associations \
6
+ --service-network-identifier sn-0808d1748faee0c1e
7
+
8
+ Output::
9
+
10
+ {
11
+ "items": [
12
+ {
13
+ "createdAt": "2025-02-01T01:21:36.667000+00:00",
14
+ "serviceNetworkArn": "arn:aws:vpc-lattice:us-east-1:123456789012:servicenetwork/sn-0808d1748faee0c1e",
15
+ "state": "ACTIVE",
16
+ "vpcEndpointId": "vpce-0cc199f605eaeace7",
17
+ "vpcEndpointOwnerId": "123456789012"
18
+ }
19
+ ]
20
+ }
21
+
22
+ For more information, see `Manage the associations for a VPC Lattice service network <https://docs.aws.amazon.com/vpc-lattice/latest/ug/service-network-associations.html>`__ in the *Amazon VPC Lattice User Guide*.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: awscli
3
- Version: 1.38.11
3
+ Version: 1.38.13
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.11)
26
+ Requires-Dist: botocore (==1.37.13)
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=t2KaCiUqkN3YEVFcDBy09xPyx5O9_LUV5ckaYCs64uE,1534
1
+ awscli/__init__.py,sha256=eVdCalumtWf2mEqqqA_XordT481yKZadhFBZXJet5OE,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
@@ -46,7 +46,7 @@ awscli/customizations/ecr.py,sha256=Z-MIwu5Frkpt5_tADojmc1vxwdh8B_AnqVQ48drVgxM,
46
46
  awscli/customizations/ecr_public.py,sha256=g9HzYsNEqu8Ty0T38YrKtcu65L8nJTmS6DBVe437uVY,1753
47
47
  awscli/customizations/flatten.py,sha256=Yl9hPS2k87YqyAVXhaLFSA0KhluhZYTKKLXsM-nsfco,9505
48
48
  awscli/customizations/generatecliskeleton.py,sha256=G5j4NRqZxkjgZzWCDyd3W64nQZTBxz7Rd0sZIKMC_M4,5803
49
- awscli/customizations/globalargs.py,sha256=h8vRrTQTi7r5jOMj0VRaBivO6Cse9d0HOwEQB0EX1qY,4673
49
+ awscli/customizations/globalargs.py,sha256=9RC-01u4hrhnxKSWw_Q84zbB1USsiOUo9EHh9b4oLQI,4574
50
50
  awscli/customizations/iamvirtmfa.py,sha256=xoQ2the-0D6t6meJkM1FY7A9KTKape2RCV2a3VAljV4,3278
51
51
  awscli/customizations/iot.py,sha256=GvkgUZKcDYjqfWOz160wUS7LVE_YhQ8NDZGzBHqsWc8,2399
52
52
  awscli/customizations/iot_data.py,sha256=xswSsC1a049sw_VfG75F8l4GyI1GqrE-ux86U2xGH_8,1303
@@ -1218,13 +1218,20 @@ awscli/examples/cognito-idp/sign-up.rst,sha256=NVkIeh4xRJbOHvGRilzUPUnHRcMieRUDt
1218
1218
  awscli/examples/cognito-idp/start-user-import-job.rst,sha256=r4PuTs3XKRyLrB5AHqF9Rjv7EiIfG-_DAgQ5tKk89zE,1364
1219
1219
  awscli/examples/cognito-idp/start-web-authn-registration.rst,sha256=hPGuU6dIyzW9ACQkifIVXf-LepXCkTt9abMwnKVR1gc,1734
1220
1220
  awscli/examples/cognito-idp/stop-user-import-job.rst,sha256=fu_b84faku2vJLq1jsCsjb9kMT4ZZHXFnkrDvEGZ7JU,1504
1221
+ awscli/examples/cognito-idp/tag-resource.rst,sha256=4q6YajhPqQaggcu92gfd6EzJp0OE0eGZSQyOFRqBdcs,550
1222
+ awscli/examples/cognito-idp/untag-resource.rst,sha256=wQex8m_nJBhzoRezbJqmAj_hKwjT4O81OBpNLVURxJc,559
1221
1223
  awscli/examples/cognito-idp/update-auth-event-feedback.rst,sha256=JanhUZ1_jszlnyLCL5nRtIeczZLTZG8YJFBbEWKE6Mk,312
1222
1224
  awscli/examples/cognito-idp/update-device-status.rst,sha256=F_1gNCSc7wlqSB49jhkTQ9V-IWq2CQqw0Jk0WYvsNI4,242
1223
1225
  awscli/examples/cognito-idp/update-group.rst,sha256=idEtTNhunMtEZvfgGck2531u8e4C5wmbBstTr_5tp28,560
1226
+ awscli/examples/cognito-idp/update-identity-provider.rst,sha256=DvDN8Ggkrp4n8YoBCFAY5rghYvoiQzwigWq9_U94xlU,2783
1227
+ awscli/examples/cognito-idp/update-managed-login-branding.rst,sha256=J7eqgvHFFjbDDqinOu6ziLoRPc7CqxRzGKbLcWnhH8g,40493
1224
1228
  awscli/examples/cognito-idp/update-resource-server.rst,sha256=Mz5H8UFnFJ3PG4P3keExlHnoVE0zwGoCFC8VNjb-8cA,635
1225
1229
  awscli/examples/cognito-idp/update-user-attributes.rst,sha256=XurBIvy_FWG3t9M3ZHFLIMhlv6JuNdETiJ3YgzbCCNo,210
1226
- awscli/examples/cognito-idp/update-user-pool-client.rst,sha256=VJd1c4e4xNGoKcTUNUhxrRa1oHxk8EY3XhHV8fhJ-tE,736
1230
+ awscli/examples/cognito-idp/update-user-pool-client.rst,sha256=P_LMWC-t4rFmqVsqRhY4-XHGNZemuItzhXBcKtMdH9g,5217
1231
+ awscli/examples/cognito-idp/update-user-pool-domain.rst,sha256=_7u_rxMqK6aIHRd5nQ6PaHcrrHJ23zQSMdif2-U_Lww,913
1227
1232
  awscli/examples/cognito-idp/update-user-pool.rst,sha256=8HyD82jp-Q4NqpK5HMRqj62SAIG1y92jR01zPFbIDOc,2978
1233
+ awscli/examples/cognito-idp/verify-software-token.rst,sha256=_5q0rdbMvXgI3yykzsFx7dL0Xgjf-WYDX_Vg1uuMQI4,520
1234
+ awscli/examples/cognito-idp/verify-user-attribute.rst,sha256=ySHKxlB-hvwnmj4oNuo3Y-GlTjR3ITLY3BqCLd_uw14,518
1228
1235
  awscli/examples/comprehend/batch-detect-dominant-language.rst,sha256=V0WMgG61LrYbbf5g1C0zOqH04sIbwu8BoaCSQvrfHE8,1008
1229
1236
  awscli/examples/comprehend/batch-detect-entities.rst,sha256=vfUgl1JhTMvnqIyZP8S5x0JgWfDyOvwStoPWY_fhSEM,3770
1230
1237
  awscli/examples/comprehend/batch-detect-key-phrases.rst,sha256=pNAMKjGZ-CVCuIpaPP6j8Hkl7rkFYJkolA0N1y0zEJo,4708
@@ -1725,6 +1732,7 @@ awscli/examples/ec2/associate-instance-event-window.rst,sha256=YdN-IXxLpg741B7mN
1725
1732
  awscli/examples/ec2/associate-ipam-resource-discovery.rst,sha256=5q68lsbco6vpf0-sT2uC2Ql6ld-xzvu4hDZQ4DwPltk,2499
1726
1733
  awscli/examples/ec2/associate-nat-gateway-address.rst,sha256=1Q7Tov_3qlbtE7Z9Ay6cYxmTq5kv3IuUv5HQMOsU60Q,927
1727
1734
  awscli/examples/ec2/associate-route-table.rst,sha256=_22MuIifivsDbqBFUoX6_W_X4yKfmR1yJ4V0Ytuym3E,286
1735
+ awscli/examples/ec2/associate-security-group-vpc.rst,sha256=UO3mkvF7cc6NlTokm2USI-Rs70FK8V70jutVNFdEdhE,553
1728
1736
  awscli/examples/ec2/associate-subnet-cidr-block.rst,sha256=poJlw3xwU6-djpycsoFoZQ4Z5XOGhmmnDJL8aXEWYzM,521
1729
1737
  awscli/examples/ec2/associate-transit-gateway-multicast-domain.rst,sha256=uJL5yGsDopwRrLQDlEekipfMrPIksBRWaN8L1oVpEGw,1223
1730
1738
  awscli/examples/ec2/associate-transit-gateway-route-table.rst,sha256=NhrjQY6QVN1IkyORhuD_rugFbAMlAS0tqqoDiCEsrMM,912
@@ -1827,7 +1835,7 @@ awscli/examples/ec2/create-verified-access-trust-provider.rst,sha256=1pJLR41vWcA
1827
1835
  awscli/examples/ec2/create-volume.rst,sha256=31PqwEYeG0c-eulwcGyOAHY_AOOaHWfCASyjnNmHkC4,3377
1828
1836
  awscli/examples/ec2/create-vpc-endpoint-connection-notification.rst,sha256=OZAwrdjIgZYZlEHT29EJu9zD6w6UsVim7R79aIcbys8,921
1829
1837
  awscli/examples/ec2/create-vpc-endpoint-service-configuration.rst,sha256=rm7Ut4vkdg9yI-_ff911xf48LklGqVz-wiciigAmA1s,3130
1830
- awscli/examples/ec2/create-vpc-endpoint.rst,sha256=tOPJ9F7B2Al4tdxCHXGYnEU3QbMqaWwG5VfAO2-cwr0,4794
1838
+ awscli/examples/ec2/create-vpc-endpoint.rst,sha256=yd9JA8ahl294hHAO9cfNBtdTc7aliaN9Z6Du85njA4I,7898
1831
1839
  awscli/examples/ec2/create-vpc-peering-connection.rst,sha256=zmnY1K9psrow60xl_3JwhSVQVk4iKRo5HwyNdeb98b0,1971
1832
1840
  awscli/examples/ec2/create-vpc.rst,sha256=GcXDL_fMzGxKEgoTMPtg611-D6nhD2iAiHoVB2eMTmk,5309
1833
1841
  awscli/examples/ec2/create-vpn-connection-route.rst,sha256=pXLb7g0PmxlKkH5qM2PdTqoVhp0OJnLfCquP58__Yts,290
@@ -2010,6 +2018,7 @@ awscli/examples/ec2/describe-scheduled-instance-availability.rst,sha256=IG_fo6b1
2010
2018
  awscli/examples/ec2/describe-scheduled-instances.rst,sha256=nlb9pjmm_jZvHfv7LaMHr35j11YxvBR_82zHR0Q8tms,1282
2011
2019
  awscli/examples/ec2/describe-security-group-references.rst,sha256=JG7wqFgvRJ9Qsr5coc8Laa3ebM2h79KmN7y1Q_aXJHk,543
2012
2020
  awscli/examples/ec2/describe-security-group-rules.rst,sha256=ME0oHe1-sLVlB3gEQF0KAn0inOyCsm2j_dh0mxgpO7g,2690
2021
+ awscli/examples/ec2/describe-security-group-vpc-associations.rst,sha256=vEtWa0y9BqLfjWlMLEIQfiozHBffoobsT3LxQj3lNRQ,779
2013
2022
  awscli/examples/ec2/describe-security-groups.rst,sha256=u_-Pdv42SGmgXzi4ckGBKJDQ9ZJwqRqf6jn25uSkOA8,4183
2014
2023
  awscli/examples/ec2/describe-snapshot-attribute.rst,sha256=rfHg4AvrG8aDOx09_pGlN9JQgMNyNFy2q1p9qd5s0gQ,734
2015
2024
  awscli/examples/ec2/describe-snapshot-tier-status.rst,sha256=V6ObqdCWyquOuFdyomRNJXn0iM7b_rJRNkvcckzX1EM,1137
@@ -2048,6 +2057,7 @@ awscli/examples/ec2/describe-volumes.rst,sha256=SMXzsyMee9kRM_hcz8pxVotVUz8BT46G
2048
2057
  awscli/examples/ec2/describe-vpc-attribute.rst,sha256=vovvcrL97xU2B-HbuxB5E8R9aLVCqlnSOzwUTUkFWGI,1045
2049
2058
  awscli/examples/ec2/describe-vpc-classic-link-dns-support.rst,sha256=65FNoIerJVGC9hlw-7u_Iltb1PTEUCnt_L9ZHGih9TM,416
2050
2059
  awscli/examples/ec2/describe-vpc-classic-link.rst,sha256=jasVu1ItTEKW28mFDp1meDZP7ax-W1EriAvvWHWPxvE,659
2060
+ awscli/examples/ec2/describe-vpc-endpoint-associations.rst,sha256=f3XHdHN604kC7t2GXI9rsk9Dq6tYN6gbdvDEG3Ar1sU,1093
2051
2061
  awscli/examples/ec2/describe-vpc-endpoint-connection-notifications.rst,sha256=oTpatewoq4Tj7m-k0L_hXcNPTKT6W8ubcq2PWkcQJ_k,807
2052
2062
  awscli/examples/ec2/describe-vpc-endpoint-connections.rst,sha256=8xFQG0f06M7AQ1Zd7hIGsj_Kv47WHmo0Rdqrb8Kjkd0,670
2053
2063
  awscli/examples/ec2/describe-vpc-endpoint-service-configurations.rst,sha256=NFEjH3OL3tQwwxe5x44ASAQOagJJDR79F-7lQMS3Tr4,2476
@@ -2071,6 +2081,7 @@ awscli/examples/ec2/disable-fast-launch.rst,sha256=PwYtfXj69y_fLWJCweVrQrpRDc1H1
2071
2081
  awscli/examples/ec2/disable-fast-snapshot-restores.rst,sha256=95X11mvYcgF1ArT3We-dEN9sxeFF9YYjo12QS_buOEA,750
2072
2082
  awscli/examples/ec2/disable-image-block-public-access.rst,sha256=3O5J2LdmQ3aXCnnaYf_mjbKnWwW6dFB8e4iJF5p68p4,563
2073
2083
  awscli/examples/ec2/disable-image-deprecation.rst,sha256=StRlXDgetBByytGyVBIP-klUU-Hh8zW5lPopJNFGqgI,625
2084
+ awscli/examples/ec2/disable-image-deregistration-protection.rst,sha256=8uUPpGM67wKjGyjC6m_B66gd3rVTQh-FbgXbNz_A5jQ,520
2074
2085
  awscli/examples/ec2/disable-image.rst,sha256=7lpHj8NaCKxeOQAvRzkHio0icz4DW52M-0DZzln-PrU,378
2075
2086
  awscli/examples/ec2/disable-ipam-organization-admin-account.rst,sha256=BzYrG000EcgGL6UdujQNw1LhpLLKvSeyOp9IR6GetCs,1238
2076
2087
  awscli/examples/ec2/disable-serial-console-access.rst,sha256=BVcibM-YetSnnxpXdk7W9fOLuJv8FoxdWxEV8oJRRuw,453
@@ -2086,6 +2097,7 @@ awscli/examples/ec2/disassociate-instance-event-window.rst,sha256=AIZydHNcXy-lT6
2086
2097
  awscli/examples/ec2/disassociate-ipam-resource-discovery.rst,sha256=by3ACkWALtHL7W1wW_-Rtm03z-kW6oJ3Ld_rWP0fc3A,1643
2087
2098
  awscli/examples/ec2/disassociate-nat-gateway-address.rst,sha256=RVYMmAo2fwjujyjEipk71Hop2e_My9PGmepn6tpbCFk,1036
2088
2099
  awscli/examples/ec2/disassociate-route-table.rst,sha256=lcdP2ipfhV6iXtHRaSv5IkDKzl6y8T30Lo40n3P47TM,245
2100
+ awscli/examples/ec2/disassociate-security-group-vpc.rst,sha256=mtfZWMvpgpheFLc-ycgPcrzKN-20TyJI4kJv5GjShr4,562
2089
2101
  awscli/examples/ec2/disassociate-subnet-cidr-block.rst,sha256=nzJV_o3x8HePpo47hOu9w51zbls8SJZ7iNs6t0i-l1I,539
2090
2102
  awscli/examples/ec2/disassociate-transit-gateway-multicast-domain.rst,sha256=6KQ8ZgDuR67Ccfiud9hYc8a66_ZVNr279_hMBqchzIs,1108
2091
2103
  awscli/examples/ec2/disassociate-transit-gateway-route-table.rst,sha256=cvehCahhKL3ijm_5kddMyUd3G20c3Ohhp4Se7HTgpBA,960
@@ -2097,6 +2109,7 @@ awscli/examples/ec2/enable-fast-launch.rst,sha256=Dj3G77cJCBI3TvicjUPbsmxlZxXIle
2097
2109
  awscli/examples/ec2/enable-fast-snapshot-restores.rst,sha256=krq_qC78_pk04W3gH_sjmh6z1gwo2ueihEJeDxNazWc,1095
2098
2110
  awscli/examples/ec2/enable-image-block-public-access.rst,sha256=i9QxwjFtr9SMe8Mcs2gAYO44bB2L7vw-M-EsPtHuI4I,648
2099
2111
  awscli/examples/ec2/enable-image-deprecation.rst,sha256=wmhmwhCqUZzlpCAtkZfYNzxSjgwc4MewSxZLDw-bU3Y,693
2112
+ awscli/examples/ec2/enable-image-deregistration-protection.rst,sha256=uuDRdSYevETmtUphhJZV7RBA8erHQBc3sOtQ8U935U8,536
2100
2113
  awscli/examples/ec2/enable-image.rst,sha256=bep1PIJ5fzwDHpicg2vNDtmu0R2Mw0ErBx2Ob_3S4CI,374
2101
2114
  awscli/examples/ec2/enable-ipam-organization-admin-account.rst,sha256=eY3ct3_OSC1IUH972xcxIY_oxbJHFfDsb7AXCvF1CRU,589
2102
2115
  awscli/examples/ec2/enable-reachability-analyzer-organization-sharing.rst,sha256=NQ06FEgFu3N4yMrLv5mI3oKolWgVJ5j2-vNSelsfQh0,461
@@ -5872,6 +5885,8 @@ awscli/examples/verifiedpermissions/update-policy-store.rst,sha256=4qlUei_CJjVwv
5872
5885
  awscli/examples/verifiedpermissions/update-policy-template.rst,sha256=SmJ7yrzZDWBNjP7L85O7dSznHXOqkF3t2f9JQMDE0y8,1034
5873
5886
  awscli/examples/verifiedpermissions/update-policy.rst,sha256=q3pvrJnU7-RzDEJhYtUMYW0HHU6--k9cR-5USjhWXgU,4018
5874
5887
  awscli/examples/vpc-lattice/create-listener.rst,sha256=3kFCCfGxLTHMW5WVxq5dvwELN5VbqYCAeOm74xB9plQ,1546
5888
+ awscli/examples/vpc-lattice/create-resource-configuration.rst,sha256=gTDYcft8zJ7_8a4XjUyKHNDajcO3vSryjoIaAl0P4dg,1247
5889
+ awscli/examples/vpc-lattice/create-resource-gateway.rst,sha256=DBpM4NiEMmZnjWtUP92CJFZd5OTkVmthimnYT0LLPyY,983
5875
5890
  awscli/examples/vpc-lattice/create-service-network-service-association.rst,sha256=2VSQfzpPEuOhbFGIKpDdBdcMNkOtHQwr83Pj7vIy1xY,1046
5876
5891
  awscli/examples/vpc-lattice/create-service-network-vpc-association.rst,sha256=oWE62EtkNg-5sFvvgFzLw0mjqDLFkKYVg2z3DmoYptM,1063
5877
5892
  awscli/examples/vpc-lattice/create-service-network.rst,sha256=a1bDVce3j8xkww431cHY-Ozr74lmIKErgdqeYHtsztY,616
@@ -5879,6 +5894,8 @@ awscli/examples/vpc-lattice/create-service.rst,sha256=Ue3Tklg6plX1pYUPhLz14b_clO
5879
5894
  awscli/examples/vpc-lattice/create-target-group.rst,sha256=OZJid-YHwYMRsbZ8Vp-XSbokD4yLoGwQuVUIpML8ikw,4731
5880
5895
  awscli/examples/vpc-lattice/delete-auth-policy.rst,sha256=9_SotO4iZOSm8O-yBhFYfEK8zOPjVa3t-3nv70xgxz4,421
5881
5896
  awscli/examples/vpc-lattice/delete-listener.rst,sha256=IPF4pjZgu_sx200f7rnxWPVr4fO-_jdZIu2abwUnGxk,443
5897
+ awscli/examples/vpc-lattice/delete-resource-configuration.rst,sha256=pve3xzGzDlozoubEbyNg9kHbbWkcV6mQ9tAL2hbjT2c,493
5898
+ awscli/examples/vpc-lattice/delete-resource-gateway.rst,sha256=i3yg5Lu8Xh349mnutYmS40FrBpsEPVl3crB16ZwVKLk,668
5882
5899
  awscli/examples/vpc-lattice/delete-service-network-service-association.rst,sha256=tYNogVz8SzNEtK_Xo-r3D_Ym6a4ak503LYBVjxPkKho,759
5883
5900
  awscli/examples/vpc-lattice/delete-service-network-vpc-association.rst,sha256=BRoIazN-13hOUbnUOxJ4MNdM5FxazKiQ1GiOcWS9nHI,727
5884
5901
  awscli/examples/vpc-lattice/delete-service-network.rst,sha256=sQOONjPaPh-TnT_3tcc_ypSYt_9Ba4or2lM3nW79JBQ,432
@@ -5887,14 +5904,20 @@ awscli/examples/vpc-lattice/delete-target-group.rst,sha256=ltKGnYCJTbBFhRJ2P4b64
5887
5904
  awscli/examples/vpc-lattice/deregister-targets.rst,sha256=5nzbDN745u0SMhLEFz1TQQ1eWzRcbNcJhmf9KO4iNFQ,646
5888
5905
  awscli/examples/vpc-lattice/get-auth-policy.rst,sha256=HQMtzl4yiBl9FTOo1HfjDCtUCayCmWlsUaltM4tcJho,857
5889
5906
  awscli/examples/vpc-lattice/get-listener.rst,sha256=QyfYs5AlVKVL-NC0p0dwmyO2zbdRyWsEL2og_L9O754,1304
5907
+ awscli/examples/vpc-lattice/get-resource-configuration.rst,sha256=kbMNsSt-OYndlv0tGJxby_Dv5bHTocKgRzx8oIn8kcQ,1252
5908
+ awscli/examples/vpc-lattice/get-resource-gateway.rst,sha256=3OtO3QgMPt2Meu8v9YlgxhwPeKlOuj3m0e89DExiZPk,1032
5890
5909
  awscli/examples/vpc-lattice/get-service-network-service-association.rst,sha256=gParqZGjt1-rYz0_snQ9wkUO9pvjla5lVULzf40SWQc,1460
5891
5910
  awscli/examples/vpc-lattice/get-service-network-vpc-association.rst,sha256=W_wl76NbvFLp1487hS8ei2zB0GU430HMgoTYGSApeO8,1215
5892
5911
  awscli/examples/vpc-lattice/get-service-network.rst,sha256=GmD3J2w7DwOJJ7HXaW8_VxjbB0ypfPfAgHcV0p3jVWE,831
5893
5912
  awscli/examples/vpc-lattice/get-service.rst,sha256=AXo-lnYqvgFW0fZMPfhoUXDJO9ktYKFQ8pPnzBcvcZs,925
5894
5913
  awscli/examples/vpc-lattice/get-target-group.rst,sha256=GwbI03XQeSmzOYqoQzdMay2up7ExK_CeUJbSRVCudbQ,1586
5895
5914
  awscli/examples/vpc-lattice/list-listeners.rst,sha256=B6a2aM039kny0ijM8N2OjDDYnr9STdQl6v1DcUMl2lA,883
5915
+ awscli/examples/vpc-lattice/list-resource-configurations.rst,sha256=3p1-e5rJ0pCAsnvmKKojguhae-xTu0_kTq9jP9QnH7c,980
5916
+ awscli/examples/vpc-lattice/list-resource-endpoint-associations.rst,sha256=C6sQr7NT9HAeB2tQ511T0lRK9HcMfumDw_t4T4nXh1E,1186
5917
+ awscli/examples/vpc-lattice/list-resource-gateways.rst,sha256=dA5wiY4dsiEMwpFsDokks5tAP_mn7lxXNydsOVvl_pY,1115
5896
5918
  awscli/examples/vpc-lattice/list-service-network-service-associations.rst,sha256=8xAK08VPc4ys-0vwycjyhTj-wQYGrzN05so2d5zOka8,732
5897
5919
  awscli/examples/vpc-lattice/list-service-network-vpc-associations.rst,sha256=kpdwj-JGQkxxOWx0bhqXVkg_U0PfshwV19fEetR9_i0,703
5920
+ awscli/examples/vpc-lattice/list-service-network-vpc-endpoint-associations.rst,sha256=riTCSV-IjHDpCPYiivGH9dW0WdRjkghN5KuFu2RMFuY,965
5898
5921
  awscli/examples/vpc-lattice/list-service-networks.rst,sha256=k-aOiH3J8dI3a8lLvsoRyLHFxv0HoOwO4GvTdvshd-s,708
5899
5922
  awscli/examples/vpc-lattice/list-services.rst,sha256=jR1QpqnFGQmtUt_pF0mfnW8OLHOmQZk7058JklXHi_Y,639
5900
5923
  awscli/examples/vpc-lattice/list-target-groups.rst,sha256=ASUBOLo7ES8uQP_b4L4Qjm7LXb4XPqpMeJfYe5vuV2E,1005
@@ -6075,13 +6098,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
6075
6098
  awscli/topics/s3-config.rst,sha256=kyLbdEEePnHW0hoMmQDkt4o6PbqAdpO5ph_51GgQyXg,11664
6076
6099
  awscli/topics/s3-faq.rst,sha256=Kw1w4NFHOTXq9Mz5S3HHw3mBkyeEzH4ruB0PD6-EO1c,2938
6077
6100
  awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
6078
- awscli-1.38.11.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6079
- awscli-1.38.11.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6080
- awscli-1.38.11.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6081
- awscli-1.38.11.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6082
- awscli-1.38.11.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6083
- awscli-1.38.11.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6084
- awscli-1.38.11.dist-info/METADATA,sha256=df62V1dr65K1tGr-cKF7Vdl9xTMRitAO9VOxYfZ03Rk,11331
6085
- awscli-1.38.11.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6086
- awscli-1.38.11.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6087
- awscli-1.38.11.dist-info/RECORD,,
6101
+ awscli-1.38.13.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6102
+ awscli-1.38.13.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6103
+ awscli-1.38.13.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6104
+ awscli-1.38.13.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6105
+ awscli-1.38.13.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6106
+ awscli-1.38.13.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6107
+ awscli-1.38.13.dist-info/METADATA,sha256=GL9uu4ODA5jGfEo7Fxb6HM_5f4nBsTYuN0t2-oYmJXU,11331
6108
+ awscli-1.38.13.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6109
+ awscli-1.38.13.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6110
+ awscli-1.38.13.dist-info/RECORD,,
File without changes