Skip to content

Commit dd8406d

Browse files
Merge branch 'release-1.37.18'
* release-1.37.18: Bumping version to 1.37.18 Update endpoints model Update to latest models
2 parents 68ba836 + 48a6533 commit dd8406d

File tree

11 files changed

+825
-246
lines changed

11 files changed

+825
-246
lines changed

.changes/1.37.18.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"category": "``bedrock``",
4+
"description": "A CustomModelUnit(CMU) is an abstract view of the hardware utilization that Bedrock needs to host a a single copy of your custom imported model. Bedrock determines the number of CMUs that a model copy needs when you import the custom model. You can use CMUs to estimate the cost of Inference's.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``datazone``",
9+
"description": "Add support for overriding selection of default AWS IAM Identity Center instance as part of Amazon DataZone domain APIs.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``route53-recovery-control-config``",
14+
"description": "Adds dual-stack (IPv4 and IPv6) endpoint support for route53-recovery-control-config operations, opt-in dual-stack addresses for cluster endpoints, and UpdateCluster API to update the network-type of clusters between IPv4 and dual-stack.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``sagemaker``",
19+
"description": "This release does the following: 1.) Adds DurationHours as a required field to the SearchTrainingPlanOfferings action in the SageMaker AI API; 2.) Adds support for G6e instance types for SageMaker AI inference optimization jobs.",
20+
"type": "api-change"
21+
}
22+
]

CHANGELOG.rst

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

5+
1.37.18
6+
=======
7+
8+
* api-change:``bedrock``: A CustomModelUnit(CMU) is an abstract view of the hardware utilization that Bedrock needs to host a a single copy of your custom imported model. Bedrock determines the number of CMUs that a model copy needs when you import the custom model. You can use CMUs to estimate the cost of Inference's.
9+
* api-change:``datazone``: Add support for overriding selection of default AWS IAM Identity Center instance as part of Amazon DataZone domain APIs.
10+
* api-change:``route53-recovery-control-config``: Adds dual-stack (IPv4 and IPv6) endpoint support for route53-recovery-control-config operations, opt-in dual-stack addresses for cluster endpoints, and UpdateCluster API to update the network-type of clusters between IPv4 and dual-stack.
11+
* api-change:``sagemaker``: This release does the following: 1.) Adds DurationHours as a required field to the SearchTrainingPlanOfferings action in the SageMaker AI API; 2.) Adds support for G6e instance types for SageMaker AI inference optimization jobs.
12+
13+
514
1.37.17
615
=======
716

botocore/__init__.py

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

19-
__version__ = '1.37.17'
19+
__version__ = '1.37.18'
2020

2121

2222
class NullHandler(logging.Handler):

botocore/data/bedrock/2023-04-20/service-2.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2050,6 +2050,24 @@
20502050
"type":"list",
20512051
"member":{"shape":"CustomModelSummary"}
20522052
},
2053+
"CustomModelUnits":{
2054+
"type":"structure",
2055+
"members":{
2056+
"customModelUnitsPerModelCopy":{
2057+
"shape":"Integer",
2058+
"documentation":"<p>The number of custom model units used to host a model copy. </p>"
2059+
},
2060+
"customModelUnitsVersion":{
2061+
"shape":"CustomModelUnitsVersion",
2062+
"documentation":"<p>The version of the custom model unit. Use to determine the billing rate for the custom model unit.</p>"
2063+
}
2064+
},
2065+
"documentation":"<p>A <code>CustomModelUnit</code> (CMU) is an abstract view of the hardware utilization that Amazon Bedrock needs to host a single copy of your custom model. A model copy represents a single instance of your imported model that is ready to serve inference requests. Amazon Bedrock determines the number of custom model units that a model copy needs when you import the custom model. </p> <p>You can use <code>CustomModelUnits</code> to estimate the cost of running your custom model. For more information, see Calculate the cost of running a custom model in the Amazon Bedrock user guide. </p>"
2066+
},
2067+
"CustomModelUnitsVersion":{
2068+
"type":"string",
2069+
"pattern":"v\\d+.\\d+"
2070+
},
20532071
"CustomizationConfig":{
20542072
"type":"structure",
20552073
"members":{
@@ -3336,6 +3354,10 @@
33363354
"instructSupported":{
33373355
"shape":"InstructSupported",
33383356
"documentation":"<p>Specifies if the imported model supports converse.</p>"
3357+
},
3358+
"customModelUnits":{
3359+
"shape":"CustomModelUnits",
3360+
"documentation":"<p>Information about the hardware utilization for a single copy of the model.</p>"
33393361
}
33403362
}
33413363
},

botocore/data/datazone/2018-05-10/service-2.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19325,6 +19325,10 @@
1932519325
"SingleSignOn":{
1932619326
"type":"structure",
1932719327
"members":{
19328+
"idcInstanceArn":{
19329+
"shape":"SingleSignOnIdcInstanceArnString",
19330+
"documentation":"<p>The ARN of the IDC instance.</p>"
19331+
},
1932819332
"type":{
1932919333
"shape":"AuthType",
1933019334
"documentation":"<p>The type of single sign-on in Amazon DataZone.</p>"
@@ -19336,6 +19340,10 @@
1933619340
},
1933719341
"documentation":"<p>The single sign-on details in Amazon DataZone.</p>"
1933819342
},
19343+
"SingleSignOnIdcInstanceArnString":{
19344+
"type":"string",
19345+
"pattern":"arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}"
19346+
},
1933919347
"Smithy":{
1934019348
"type":"string",
1934119349
"max":100000,

botocore/data/endpoints.json

Lines changed: 70 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4047,6 +4047,9 @@
40474047
"variants" : [ {
40484048
"hostname" : "cleanrooms-fips.us-east-1.amazonaws.com",
40494049
"tags" : [ "fips" ]
4050+
}, {
4051+
"hostname" : "cleanrooms-fips.us-east-1.api.aws",
4052+
"tags" : [ "dualstack", "fips" ]
40504053
}, {
40514054
"hostname" : "cleanrooms.us-east-1.api.aws",
40524055
"tags" : [ "dualstack" ]
@@ -4056,6 +4059,9 @@
40564059
"variants" : [ {
40574060
"hostname" : "cleanrooms-fips.us-east-2.amazonaws.com",
40584061
"tags" : [ "fips" ]
4062+
}, {
4063+
"hostname" : "cleanrooms-fips.us-east-2.api.aws",
4064+
"tags" : [ "dualstack", "fips" ]
40594065
}, {
40604066
"hostname" : "cleanrooms.us-east-2.api.aws",
40614067
"tags" : [ "dualstack" ]
@@ -4065,6 +4071,9 @@
40654071
"variants" : [ {
40664072
"hostname" : "cleanrooms-fips.us-west-2.amazonaws.com",
40674073
"tags" : [ "fips" ]
4074+
}, {
4075+
"hostname" : "cleanrooms-fips.us-west-2.api.aws",
4076+
"tags" : [ "dualstack", "fips" ]
40684077
}, {
40694078
"hostname" : "cleanrooms.us-west-2.api.aws",
40704079
"tags" : [ "dualstack" ]
@@ -7931,6 +7940,7 @@
79317940
"ap-southeast-3" : { },
79327941
"ap-southeast-4" : { },
79337942
"ap-southeast-5" : { },
7943+
"ap-southeast-7" : { },
79347944
"ca-central-1" : {
79357945
"variants" : [ {
79367946
"hostname" : "ds-fips.ca-central-1.amazonaws.com",
@@ -7996,6 +8006,7 @@
79968006
"il-central-1" : { },
79978007
"me-central-1" : { },
79988008
"me-south-1" : { },
8009+
"mx-central-1" : { },
79998010
"sa-east-1" : { },
80008011
"us-east-1" : {
80018012
"variants" : [ {
@@ -9937,7 +9948,12 @@
99379948
}
99389949
},
99399950
"endpoints" : {
9940-
"us-east-1" : { }
9951+
"us-east-1" : {
9952+
"variants" : [ {
9953+
"hostname" : "entitlement-marketplace.us-east-1.api.aws",
9954+
"tags" : [ "dualstack" ]
9955+
} ]
9956+
}
99419957
}
99429958
},
99439959
"es" : {
@@ -12049,6 +12065,9 @@
1204912065
"variants" : [ {
1205012066
"hostname" : "iam-fips.amazonaws.com",
1205112067
"tags" : [ "fips" ]
12068+
}, {
12069+
"hostname" : "iam.global.api.aws",
12070+
"tags" : [ "dualstack" ]
1205212071
} ]
1205312072
},
1205412073
"aws-global-fips" : {
@@ -20069,12 +20088,18 @@
2006920088
},
2007020089
"ca-central-1" : {
2007120090
"variants" : [ {
20091+
"hostname" : "route53profiles-fips.ca-central-1.api.aws",
20092+
"tags" : [ "dualstack", "fips" ]
20093+
}, {
2007220094
"hostname" : "route53profiles.ca-central-1.api.aws",
2007320095
"tags" : [ "dualstack" ]
2007420096
} ]
2007520097
},
2007620098
"ca-west-1" : {
2007720099
"variants" : [ {
20100+
"hostname" : "route53profiles-fips.ca-west-1.api.aws",
20101+
"tags" : [ "dualstack", "fips" ]
20102+
}, {
2007820103
"hostname" : "route53profiles.ca-west-1.api.aws",
2007920104
"tags" : [ "dualstack" ]
2008020105
} ]
@@ -20153,24 +20178,36 @@
2015320178
},
2015420179
"us-east-1" : {
2015520180
"variants" : [ {
20181+
"hostname" : "route53profiles-fips.us-east-1.api.aws",
20182+
"tags" : [ "dualstack", "fips" ]
20183+
}, {
2015620184
"hostname" : "route53profiles.us-east-1.api.aws",
2015720185
"tags" : [ "dualstack" ]
2015820186
} ]
2015920187
},
2016020188
"us-east-2" : {
2016120189
"variants" : [ {
20190+
"hostname" : "route53profiles-fips.us-east-2.api.aws",
20191+
"tags" : [ "dualstack", "fips" ]
20192+
}, {
2016220193
"hostname" : "route53profiles.us-east-2.api.aws",
2016320194
"tags" : [ "dualstack" ]
2016420195
} ]
2016520196
},
2016620197
"us-west-1" : {
2016720198
"variants" : [ {
20199+
"hostname" : "route53profiles-fips.us-west-1.api.aws",
20200+
"tags" : [ "dualstack", "fips" ]
20201+
}, {
2016820202
"hostname" : "route53profiles.us-west-1.api.aws",
2016920203
"tags" : [ "dualstack" ]
2017020204
} ]
2017120205
},
2017220206
"us-west-2" : {
2017320207
"variants" : [ {
20208+
"hostname" : "route53profiles-fips.us-west-2.api.aws",
20209+
"tags" : [ "dualstack", "fips" ]
20210+
}, {
2017420211
"hostname" : "route53profiles.us-west-2.api.aws",
2017520212
"tags" : [ "dualstack" ]
2017620213
} ]
@@ -30823,8 +30860,14 @@
3082330860
"endpoints" : {
3082430861
"us-gov-east-1" : {
3082530862
"variants" : [ {
30863+
"hostname" : "dlm-fips.us-gov-east-1.api.aws",
30864+
"tags" : [ "dualstack", "fips" ]
30865+
}, {
3082630866
"hostname" : "dlm.us-gov-east-1.amazonaws.com",
3082730867
"tags" : [ "fips" ]
30868+
}, {
30869+
"hostname" : "dlm.us-gov-east-1.api.aws",
30870+
"tags" : [ "dualstack" ]
3082830871
} ]
3082930872
},
3083030873
"us-gov-east-1-fips" : {
@@ -30836,8 +30879,14 @@
3083630879
},
3083730880
"us-gov-west-1" : {
3083830881
"variants" : [ {
30882+
"hostname" : "dlm-fips.us-gov-west-1.api.aws",
30883+
"tags" : [ "dualstack", "fips" ]
30884+
}, {
3083930885
"hostname" : "dlm.us-gov-west-1.amazonaws.com",
3084030886
"tags" : [ "fips" ]
30887+
}, {
30888+
"hostname" : "dlm.us-gov-west-1.api.aws",
30889+
"tags" : [ "dualstack" ]
3084130890
} ]
3084230891
},
3084330892
"us-gov-west-1-fips" : {
@@ -33426,12 +33475,18 @@
3342633475
"endpoints" : {
3342733476
"us-gov-east-1" : {
3342833477
"variants" : [ {
33478+
"hostname" : "route53profiles-fips.us-gov-east-1.api.aws",
33479+
"tags" : [ "dualstack", "fips" ]
33480+
}, {
3342933481
"hostname" : "route53profiles.us-gov-east-1.api.aws",
3343033482
"tags" : [ "dualstack" ]
3343133483
} ]
3343233484
},
3343333485
"us-gov-west-1" : {
3343433486
"variants" : [ {
33487+
"hostname" : "route53profiles-fips.us-gov-west-1.api.aws",
33488+
"tags" : [ "dualstack", "fips" ]
33489+
}, {
3343533490
"hostname" : "route53profiles.us-gov-west-1.api.aws",
3343633491
"tags" : [ "dualstack" ]
3343733492
} ]
@@ -34088,12 +34143,24 @@
3408834143
"variants" : [ {
3408934144
"hostname" : "snowball-fips.us-gov-east-1.amazonaws.com",
3409034145
"tags" : [ "fips" ]
34146+
}, {
34147+
"hostname" : "snowball-fips.us-gov-east-1.api.aws",
34148+
"tags" : [ "dualstack", "fips" ]
34149+
}, {
34150+
"hostname" : "snowball.us-gov-east-1.api.aws",
34151+
"tags" : [ "dualstack" ]
3409134152
} ]
3409234153
},
3409334154
"us-gov-west-1" : {
3409434155
"variants" : [ {
3409534156
"hostname" : "snowball-fips.us-gov-west-1.amazonaws.com",
3409634157
"tags" : [ "fips" ]
34158+
}, {
34159+
"hostname" : "snowball-fips.us-gov-west-1.api.aws",
34160+
"tags" : [ "dualstack", "fips" ]
34161+
}, {
34162+
"hostname" : "snowball.us-gov-west-1.api.aws",
34163+
"tags" : [ "dualstack" ]
3409734164
} ]
3409834165
}
3409934166
}
@@ -35505,7 +35572,8 @@
3550535572
},
3550635573
"oam" : {
3550735574
"endpoints" : {
35508-
"us-iso-east-1" : { }
35575+
"us-iso-east-1" : { },
35576+
"us-iso-west-1" : { }
3550935577
}
3551035578
},
3551135579
"organizations" : {

0 commit comments

Comments
 (0)