Skip to content

Commit 593a866

Browse files
Merge branch 'release-1.23.24'
* release-1.23.24: Bumping version to 1.23.24 Update to latest endpoints Update to latest models Fix deprecated warn usage (#2575) Support IPv6 endpoint urls (#2574) Properly catch ProtocolError on streamed responses (#2573)
2 parents 8f4aa49 + a1bf7bf commit 593a866

File tree

13 files changed

+296
-183
lines changed

13 files changed

+296
-183
lines changed

.changes/1.23.24.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"category": "``secretsmanager``",
4+
"description": "Documentation updates for Secrets Manager",
5+
"type": "api-change"
6+
}
7+
]

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
CHANGELOG
33
=========
44

5+
1.23.24
6+
=======
7+
8+
* api-change:``secretsmanager``: Documentation updates for Secrets Manager
9+
10+
511
1.23.23
612
=======
713

botocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import re
1717
import logging
1818

19-
__version__ = '1.23.23'
19+
__version__ = '1.23.24'
2020

2121

2222
class NullHandler(logging.Handler):

botocore/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def _normalize_fips_region(self, region_name,
136136
config_use_fips_endpoint)
137137
else:
138138
client_config = config_use_fips_endpoint
139-
logger.warn(
139+
logger.warning(
140140
'transforming region from %s to %s and setting '
141141
'use_fips_endpoint to true. client should not '
142142
'be configured with a fips psuedo region.' % (

botocore/data/endpoints.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@
4747
"ap-southeast-2" : {
4848
"description" : "Asia Pacific (Sydney)"
4949
},
50+
"ap-southeast-3" : {
51+
"description" : "Asia Pacific (Jakarta)"
52+
},
5053
"ca-central-1" : {
5154
"description" : "Canada (Central)"
5255
},
@@ -103,6 +106,7 @@
103106
"ap-south-1" : { },
104107
"ap-southeast-1" : { },
105108
"ap-southeast-2" : { },
109+
"ap-southeast-3" : { },
106110
"ca-central-1" : {
107111
"variants" : [ {
108112
"hostname" : "access-analyzer-fips.ca-central-1.amazonaws.com",
@@ -200,6 +204,7 @@
200204
"ap-south-1" : { },
201205
"ap-southeast-1" : { },
202206
"ap-southeast-2" : { },
207+
"ap-southeast-3" : { },
203208
"ca-central-1" : {
204209
"variants" : [ {
205210
"hostname" : "acm-fips.ca-central-1.amazonaws.com",
@@ -552,6 +557,12 @@
552557
},
553558
"hostname" : "api.ecr.ap-southeast-2.amazonaws.com"
554559
},
560+
"ap-southeast-3" : {
561+
"credentialScope" : {
562+
"region" : "ap-southeast-3"
563+
},
564+
"hostname" : "api.ecr.ap-southeast-3.amazonaws.com"
565+
},
555566
"ca-central-1" : {
556567
"credentialScope" : {
557568
"region" : "ca-central-1"
@@ -1061,6 +1072,7 @@
10611072
"ap-south-1" : { },
10621073
"ap-southeast-1" : { },
10631074
"ap-southeast-2" : { },
1075+
"ap-southeast-3" : { },
10641076
"ca-central-1" : { },
10651077
"eu-central-1" : { },
10661078
"eu-north-1" : { },
@@ -1327,6 +1339,7 @@
13271339
"ap-south-1" : { },
13281340
"ap-southeast-1" : { },
13291341
"ap-southeast-2" : { },
1342+
"ap-southeast-3" : { },
13301343
"ca-central-1" : { },
13311344
"eu-central-1" : { },
13321345
"eu-north-1" : { },
@@ -1654,6 +1667,7 @@
16541667
"ap-south-1" : { },
16551668
"ap-southeast-1" : { },
16561669
"ap-southeast-2" : { },
1670+
"ap-southeast-3" : { },
16571671
"ca-central-1" : { },
16581672
"eu-central-1" : { },
16591673
"eu-north-1" : { },
@@ -2044,6 +2058,7 @@
20442058
"ap-south-1" : { },
20452059
"ap-southeast-1" : { },
20462060
"ap-southeast-2" : { },
2061+
"ap-southeast-3" : { },
20472062
"ca-central-1" : { },
20482063
"eu-central-1" : { },
20492064
"eu-north-1" : { },
@@ -2593,6 +2608,7 @@
25932608
"ap-south-1" : { },
25942609
"ap-southeast-1" : { },
25952610
"ap-southeast-2" : { },
2611+
"ap-southeast-3" : { },
25962612
"ca-central-1" : { },
25972613
"eu-central-1" : { },
25982614
"eu-north-1" : { },
@@ -3033,6 +3049,7 @@
30333049
"ap-south-1" : { },
30343050
"ap-southeast-1" : { },
30353051
"ap-southeast-2" : { },
3052+
"ap-southeast-3" : { },
30363053
"ca-central-1" : { },
30373054
"eu-central-1" : { },
30383055
"eu-north-1" : { },
@@ -3117,6 +3134,7 @@
31173134
"ap-south-1" : { },
31183135
"ap-southeast-1" : { },
31193136
"ap-southeast-2" : { },
3137+
"ap-southeast-3" : { },
31203138
"ca-central-1" : { },
31213139
"dms" : {
31223140
"credentialScope" : {
@@ -3396,6 +3414,7 @@
33963414
"ap-south-1" : { },
33973415
"ap-southeast-1" : { },
33983416
"ap-southeast-2" : { },
3417+
"ap-southeast-3" : { },
33993418
"ca-central-1" : {
34003419
"variants" : [ {
34013420
"hostname" : "dynamodb-fips.ca-central-1.amazonaws.com",
@@ -3581,6 +3600,7 @@
35813600
},
35823601
"ap-southeast-1" : { },
35833602
"ap-southeast-2" : { },
3603+
"ap-southeast-3" : { },
35843604
"ca-central-1" : {
35853605
"variants" : [ {
35863606
"hostname" : "ec2-fips.ca-central-1.amazonaws.com",
@@ -3685,6 +3705,7 @@
36853705
"ap-south-1" : { },
36863706
"ap-southeast-1" : { },
36873707
"ap-southeast-2" : { },
3708+
"ap-southeast-3" : { },
36883709
"ca-central-1" : { },
36893710
"eu-central-1" : { },
36903711
"eu-north-1" : { },
@@ -3838,6 +3859,7 @@
38383859
"ap-south-1" : { },
38393860
"ap-southeast-1" : { },
38403861
"ap-southeast-2" : { },
3862+
"ap-southeast-3" : { },
38413863
"ca-central-1" : { },
38423864
"eu-central-1" : { },
38433865
"eu-north-1" : { },
@@ -4271,6 +4293,7 @@
42714293
"ap-south-1" : { },
42724294
"ap-southeast-1" : { },
42734295
"ap-southeast-2" : { },
4296+
"ap-southeast-3" : { },
42744297
"ca-central-1" : { },
42754298
"eu-central-1" : { },
42764299
"eu-north-1" : { },
@@ -4348,6 +4371,7 @@
43484371
"ap-south-1" : { },
43494372
"ap-southeast-1" : { },
43504373
"ap-southeast-2" : { },
4374+
"ap-southeast-3" : { },
43514375
"ca-central-1" : {
43524376
"variants" : [ {
43534377
"hostname" : "elasticmapreduce-fips.ca-central-1.amazonaws.com",
@@ -4548,6 +4572,7 @@
45484572
"ap-south-1" : { },
45494573
"ap-southeast-1" : { },
45504574
"ap-southeast-2" : { },
4575+
"ap-southeast-3" : { },
45514576
"ca-central-1" : { },
45524577
"eu-central-1" : { },
45534578
"eu-north-1" : { },
@@ -4628,6 +4653,7 @@
46284653
"ap-south-1" : { },
46294654
"ap-southeast-1" : { },
46304655
"ap-southeast-2" : { },
4656+
"ap-southeast-3" : { },
46314657
"ca-central-1" : { },
46324658
"eu-central-1" : { },
46334659
"eu-north-1" : { },
@@ -5387,6 +5413,7 @@
53875413
"ap-south-1" : { },
53885414
"ap-southeast-1" : { },
53895415
"ap-southeast-2" : { },
5416+
"ap-southeast-3" : { },
53905417
"ca-central-1" : {
53915418
"variants" : [ {
53925419
"hostname" : "glacier-fips.ca-central-1.amazonaws.com",
@@ -6397,6 +6424,7 @@
63976424
"ap-south-1" : { },
63986425
"ap-southeast-1" : { },
63996426
"ap-southeast-2" : { },
6427+
"ap-southeast-3" : { },
64006428
"ca-central-1" : { },
64016429
"eu-central-1" : { },
64026430
"eu-north-1" : { },
@@ -6462,9 +6490,11 @@
64626490
},
64636491
"kinesisanalytics" : {
64646492
"endpoints" : {
6493+
"af-south-1" : { },
64656494
"ap-east-1" : { },
64666495
"ap-northeast-1" : { },
64676496
"ap-northeast-2" : { },
6497+
"ap-northeast-3" : { },
64686498
"ap-south-1" : { },
64696499
"ap-southeast-1" : { },
64706500
"ap-southeast-2" : { },
@@ -6608,6 +6638,12 @@
66086638
"deprecated" : true,
66096639
"hostname" : "kms-fips.ap-southeast-2.amazonaws.com"
66106640
},
6641+
"ap-southeast-3" : {
6642+
"variants" : [ {
6643+
"hostname" : "kms-fips.ap-southeast-3.amazonaws.com",
6644+
"tags" : [ "fips" ]
6645+
} ]
6646+
},
66116647
"ap-southeast-3-fips" : {
66126648
"credentialScope" : {
66136649
"region" : "ap-southeast-3"
@@ -6869,6 +6905,7 @@
68696905
"ap-south-1" : { },
68706906
"ap-southeast-1" : { },
68716907
"ap-southeast-2" : { },
6908+
"ap-southeast-3" : { },
68726909
"ca-central-1" : { },
68736910
"eu-central-1" : { },
68746911
"eu-north-1" : { },
@@ -7033,6 +7070,7 @@
70337070
"ap-south-1" : { },
70347071
"ap-southeast-1" : { },
70357072
"ap-southeast-2" : { },
7073+
"ap-southeast-3" : { },
70367074
"ca-central-1" : { },
70377075
"eu-central-1" : { },
70387076
"eu-north-1" : { },
@@ -7475,6 +7513,7 @@
74757513
"ap-south-1" : { },
74767514
"ap-southeast-1" : { },
74777515
"ap-southeast-2" : { },
7516+
"ap-southeast-3" : { },
74787517
"ca-central-1" : { },
74797518
"eu-central-1" : { },
74807519
"eu-north-1" : { },
@@ -7615,6 +7654,7 @@
76157654
"ap-south-1" : { },
76167655
"ap-southeast-1" : { },
76177656
"ap-southeast-2" : { },
7657+
"ap-southeast-3" : { },
76187658
"ca-central-1" : { },
76197659
"eu-central-1" : { },
76207660
"eu-north-1" : { },
@@ -8680,6 +8720,7 @@
86808720
"ap-south-1" : { },
86818721
"ap-southeast-1" : { },
86828722
"ap-southeast-2" : { },
8723+
"ap-southeast-3" : { },
86838724
"ca-central-1" : {
86848725
"variants" : [ {
86858726
"hostname" : "rds-fips.ca-central-1.amazonaws.com",
@@ -8851,6 +8892,7 @@
88518892
"ap-south-1" : { },
88528893
"ap-southeast-1" : { },
88538894
"ap-southeast-2" : { },
8895+
"ap-southeast-3" : { },
88548896
"ca-central-1" : {
88558897
"variants" : [ {
88568898
"hostname" : "redshift-fips.ca-central-1.amazonaws.com",
@@ -10828,6 +10870,7 @@
1082810870
"ap-south-1" : { },
1082910871
"ap-southeast-1" : { },
1083010872
"ap-southeast-2" : { },
10873+
"ap-southeast-3" : { },
1083110874
"ca-central-1" : { },
1083210875
"eu-central-1" : { },
1083310876
"eu-north-1" : { },
@@ -10905,6 +10948,7 @@
1090510948
"ap-south-1" : { },
1090610949
"ap-southeast-1" : { },
1090710950
"ap-southeast-2" : { },
10951+
"ap-southeast-3" : { },
1090810952
"ca-central-1" : { },
1090910953
"eu-central-1" : { },
1091010954
"eu-north-1" : { },
@@ -10979,6 +11023,7 @@
1097911023
"ap-south-1" : { },
1098011024
"ap-southeast-1" : { },
1098111025
"ap-southeast-2" : { },
11026+
"ap-southeast-3" : { },
1098211027
"ca-central-1" : {
1098311028
"variants" : [ {
1098411029
"hostname" : "ssm-fips.ca-central-1.amazonaws.com",
@@ -11084,6 +11129,7 @@
1108411129
"ap-south-1" : { },
1108511130
"ap-southeast-1" : { },
1108611131
"ap-southeast-2" : { },
11132+
"ap-southeast-3" : { },
1108711133
"ca-central-1" : { },
1108811134
"eu-central-1" : { },
1108911135
"eu-north-1" : { },
@@ -11255,6 +11301,7 @@
1125511301
"ap-south-1" : { },
1125611302
"ap-southeast-1" : { },
1125711303
"ap-southeast-2" : { },
11304+
"ap-southeast-3" : { },
1125811305
"ca-central-1" : { },
1125911306
"eu-central-1" : { },
1126011307
"eu-north-1" : { },
@@ -11287,6 +11334,7 @@
1128711334
"ap-south-1" : { },
1128811335
"ap-southeast-1" : { },
1128911336
"ap-southeast-2" : { },
11337+
"ap-southeast-3" : { },
1129011338
"aws-global" : {
1129111339
"credentialScope" : {
1129211340
"region" : "us-east-1"
@@ -11378,6 +11426,7 @@
1137811426
"ap-south-1" : { },
1137911427
"ap-southeast-1" : { },
1138011428
"ap-southeast-2" : { },
11429+
"ap-southeast-3" : { },
1138111430
"ca-central-1" : { },
1138211431
"eu-central-1" : { },
1138311432
"eu-north-1" : { },
@@ -11451,6 +11500,7 @@
1145111500
"ap-south-1" : { },
1145211501
"ap-southeast-1" : { },
1145311502
"ap-southeast-2" : { },
11503+
"ap-southeast-3" : { },
1145411504
"ca-central-1" : { },
1145511505
"eu-central-1" : { },
1145611506
"eu-north-1" : { },

0 commit comments

Comments
 (0)