Skip to content

Commit 6d3a54f

Browse files
Merge branch 'release-1.23.23' into develop
* release-1.23.23: Bumping version to 1.23.23 Update to latest models
2 parents b02b098 + bdfba6b commit 6d3a54f

File tree

13 files changed

+938
-183
lines changed

13 files changed

+938
-183
lines changed

.changes/1.23.23.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"category": "``lexv2-models``",
4+
"description": "Update lexv2-models client to latest version",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``network-firewall``",
9+
"description": "This release adds support for managed rule groups.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``route53-recovery-control-config``",
14+
"description": "This release adds tagging supports to Route53 Recovery Control Configuration. New APIs: TagResource, UntagResource and ListTagsForResource. Updates: add optional field `tags` to support tagging while calling CreateCluster, CreateControlPanel and CreateSafetyRule.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``ec2``",
19+
"description": "Adds waiters support for internet gateways.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``sms``",
24+
"description": "This release adds SMS discontinuation information to the API and CLI references.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``route53domains``",
29+
"description": "Amazon Route 53 domain registration APIs now support filtering and sorting in the ListDomains API, deleting a domain by using the DeleteDomain API and getting domain pricing information by using the ListPrices API.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``savingsplans``",
34+
"description": "Adds the ability to specify Savings Plans hourly commitments using five digits after the decimal point.",
35+
"type": "api-change"
36+
}
37+
]

CHANGELOG.rst

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
CHANGELOG
33
=========
44

5+
1.23.23
6+
=======
7+
8+
* api-change:``lexv2-models``: Update lexv2-models client to latest version
9+
* api-change:``network-firewall``: This release adds support for managed rule groups.
10+
* api-change:``route53-recovery-control-config``: This release adds tagging supports to Route53 Recovery Control Configuration. New APIs: TagResource, UntagResource and ListTagsForResource. Updates: add optional field `tags` to support tagging while calling CreateCluster, CreateControlPanel and CreateSafetyRule.
11+
* api-change:``ec2``: Adds waiters support for internet gateways.
12+
* api-change:``sms``: This release adds SMS discontinuation information to the API and CLI references.
13+
* api-change:``route53domains``: Amazon Route 53 domain registration APIs now support filtering and sorting in the ListDomains API, deleting a domain by using the DeleteDomain API and getting domain pricing information by using the ListPrices API.
14+
* api-change:``savingsplans``: Adds the ability to specify Savings Plans hourly commitments using five digits after the decimal point.
15+
16+
517
1.23.22
618
=======
719

botocore/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import re
1717
import logging
1818

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

2121

2222
class NullHandler(logging.Handler):

botocore/data/ec2/2016-11-15/service-2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22617,7 +22617,7 @@
2261722617
"type":"structure",
2261822618
"members":{
2261922619
"ElasticGpuId":{
22620-
"shape":"String",
22620+
"shape":"ElasticGpuId",
2262122621
"documentation":"<p>The ID of the Elastic Graphics accelerator.</p>",
2262222622
"locationName":"elasticGpuId"
2262322623
},

botocore/data/ec2/2016-11-15/waiters-2.json

+18
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,24 @@
281281
}
282282
]
283283
},
284+
"InternetGatewayExists": {
285+
"operation": "DescribeInternetGateways",
286+
"delay": 5,
287+
"maxAttempts": 6,
288+
"acceptors": [
289+
{
290+
"expected": true,
291+
"matcher": "path",
292+
"state": "success",
293+
"argument": "length(InternetGateways[].InternetGatewayId) > `0`"
294+
},
295+
{
296+
"expected": "InvalidInternetGateway.NotFound",
297+
"matcher": "error",
298+
"state": "retry"
299+
}
300+
]
301+
},
284302
"KeyPairExists": {
285303
"operation": "DescribeKeyPairs",
286304
"delay": 5,

botocore/data/lexv2-models/2020-08-07/service-2.json

+92-7
Original file line numberDiff line numberDiff line change
@@ -2936,7 +2936,6 @@
29362936
"type":"structure",
29372937
"required":[
29382938
"slotTypeName",
2939-
"valueSelectionSetting",
29402939
"botId",
29412940
"botVersion",
29422941
"localeId"
@@ -2979,6 +2978,10 @@
29792978
"documentation":"<p>The identifier of the language and locale that the slot type will be used in. The string must match one of the supported locales. All of the bots, intents, and slots used by the slot type must have the same locale. For more information, see <a href=\"https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html\">Supported languages</a>.</p>",
29802979
"location":"uri",
29812980
"locationName":"localeId"
2981+
},
2982+
"externalSourceSetting":{
2983+
"shape":"ExternalSourceSetting",
2984+
"documentation":"<p>Sets the type of external information used to create the slot type.</p>"
29822985
}
29832986
}
29842987
},
@@ -3024,6 +3027,10 @@
30243027
"creationDateTime":{
30253028
"shape":"Timestamp",
30263029
"documentation":"<p>A timestamp of the date and time that the slot type was created.</p>"
3030+
},
3031+
"externalSourceSetting":{
3032+
"shape":"ExternalSourceSetting",
3033+
"documentation":"<p>The type of external information used to create the slot type.</p>"
30273034
}
30283035
}
30293036
},
@@ -3687,6 +3694,10 @@
36873694
"botLocaleHistoryEvents":{
36883695
"shape":"BotLocaleHistoryEventsList",
36893696
"documentation":"<p>History of changes, such as when a locale is used in an alias, that have taken place for the locale.</p>"
3697+
},
3698+
"recommendedActions":{
3699+
"shape":"RecommendedActions",
3700+
"documentation":"<p>Recommended actions to take to resolve an error in the <code>failureReasons</code> field.</p>"
36903701
}
36913702
}
36923703
},
@@ -4316,7 +4327,8 @@
43164327
"lastUpdatedDateTime":{
43174328
"shape":"Timestamp",
43184329
"documentation":"<p>A timestamp of the date and time that the slot type was last updated.</p>"
4319-
}
4330+
},
4331+
"externalSourceSetting":{"shape":"ExternalSourceSetting"}
43204332
}
43214333
},
43224334
"Description":{
@@ -4486,6 +4498,16 @@
44864498
"type":"list",
44874499
"member":{"shape":"ExportSummary"}
44884500
},
4501+
"ExternalSourceSetting":{
4502+
"type":"structure",
4503+
"members":{
4504+
"grammarSlotTypeSetting":{
4505+
"shape":"GrammarSlotTypeSetting",
4506+
"documentation":"<p>Settings required for a slot type based on a grammar that you provide.</p>"
4507+
}
4508+
},
4509+
"documentation":"<p>Provides information about the external source of the slot type's definition.</p>"
4510+
},
44894511
"FailureReason":{"type":"string"},
44904512
"FailureReasons":{
44914513
"type":"list",
@@ -4610,6 +4632,38 @@
46104632
},
46114633
"documentation":"<p>Provides information for updating the user on the progress of fulfilling an intent.</p>"
46124634
},
4635+
"GrammarSlotTypeSetting":{
4636+
"type":"structure",
4637+
"members":{
4638+
"source":{
4639+
"shape":"GrammarSlotTypeSource",
4640+
"documentation":"<p>The source of the grammar used to create the slot type.</p>"
4641+
}
4642+
},
4643+
"documentation":"<p>Settings requried for a slot type based on a grammar that you provide.</p>"
4644+
},
4645+
"GrammarSlotTypeSource":{
4646+
"type":"structure",
4647+
"required":[
4648+
"s3BucketName",
4649+
"s3ObjectKey"
4650+
],
4651+
"members":{
4652+
"s3BucketName":{
4653+
"shape":"S3BucketName",
4654+
"documentation":"<p>The name of the S3 bucket that contains the grammar source.</p>"
4655+
},
4656+
"s3ObjectKey":{
4657+
"shape":"S3ObjectPath",
4658+
"documentation":"<p>The path to the grammar in the S3 bucket.</p>"
4659+
},
4660+
"kmsKeyArn":{
4661+
"shape":"KmsKeyArn",
4662+
"documentation":"<p>The Amazon KMS key required to decrypt the contents of the grammar, if any.</p>"
4663+
}
4664+
},
4665+
"documentation":"<p>Describes the Amazon S3 bucket name and location for the grammar that is the source for the slot type.</p>"
4666+
},
46134667
"HitCount":{"type":"integer"},
46144668
"Id":{
46154669
"type":"string",
@@ -6120,6 +6174,11 @@
61206174
"max":5000,
61216175
"min":1
61226176
},
6177+
"RecommendedAction":{"type":"string"},
6178+
"RecommendedActions":{
6179+
"type":"list",
6180+
"member":{"shape":"RecommendedAction"}
6181+
},
61236182
"RecommendedIntentSummary":{
61246183
"type":"structure",
61256184
"members":{
@@ -6267,6 +6326,12 @@
62676326
},
62686327
"documentation":"<p>The object representing the Amazon S3 bucket containing the transcript, as well as the associated metadata.</p>"
62696328
},
6329+
"S3ObjectPath":{
6330+
"type":"string",
6331+
"max":1024,
6332+
"min":1,
6333+
"pattern":"[\\.\\-\\!\\*\\_\\'\\(\\)a-zA-Z0-9][\\.\\-\\!\\*\\_\\'\\(\\)\\/a-zA-Z0-9]*$"
6334+
},
62706335
"SSMLMessage":{
62716336
"type":"structure",
62726337
"required":["value"],
@@ -6605,6 +6670,14 @@
66056670
"type":"list",
66066671
"member":{"shape":"SlotSummary"}
66076672
},
6673+
"SlotTypeCategory":{
6674+
"type":"string",
6675+
"enum":[
6676+
"Custom",
6677+
"Extended",
6678+
"ExternalGrammar"
6679+
]
6680+
},
66086681
"SlotTypeFilter":{
66096682
"type":"structure",
66106683
"required":[
@@ -6630,7 +6703,10 @@
66306703
},
66316704
"SlotTypeFilterName":{
66326705
"type":"string",
6633-
"enum":["SlotTypeName"]
6706+
"enum":[
6707+
"SlotTypeName",
6708+
"ExternalSourceType"
6709+
]
66346710
},
66356711
"SlotTypeFilterOperator":{
66366712
"type":"string",
@@ -6703,6 +6779,10 @@
67036779
"lastUpdatedDateTime":{
67046780
"shape":"Timestamp",
67056781
"documentation":"<p>A timestamp of the date and time that the slot type was last updated.</p>"
6782+
},
6783+
"slotTypeCategory":{
6784+
"shape":"SlotTypeCategory",
6785+
"documentation":"<p>Indicates the type of the slot type.</p> <ul> <li> <p> <code>Custom</code> - A slot type that you created using custom values. For more information, see <a href=\"https://docs.aws.amazon.com/lexv2/latest/dg/custom-slot-types.html\">Creating custom slot types</a>.</p> </li> <li> <p> <code>Extended</code> - A slot type created by extending the AMAZON.AlphaNumeric built-in slot type. For more information, see <a href=\"https://docs.aws.amazon.com/lexv2/latest/dg/built-in-slot-alphanumerice.html\">AMAZON.AlphaNumeric</a>.</p> </li> <li> <p> <code>ExternalGrammar</code> - A slot type using a custom GRXML grammar to define values. For more information, see <a href=\"https://docs.aws.amazon.com/lexv2/latest/dg/building-grxml.html\">Using a custom grammar slot type</a>.</p> </li> </ul>"
67066786
}
67076787
},
67086788
"documentation":"<p>Provides summary information about a slot type.</p>"
@@ -7302,6 +7382,10 @@
73027382
"lastUpdatedDateTime":{
73037383
"shape":"Timestamp",
73047384
"documentation":"<p>A timestamp of the date and time that the locale was last updated.</p>"
7385+
},
7386+
"recommendedActions":{
7387+
"shape":"RecommendedActions",
7388+
"documentation":"<p>Recommended actions to take to resolve an error in the <code>failureReasons</code> field.</p>"
73057389
}
73067390
}
73077391
},
@@ -7840,7 +7924,6 @@
78407924
"required":[
78417925
"slotTypeId",
78427926
"slotTypeName",
7843-
"valueSelectionSetting",
78447927
"botId",
78457928
"botVersion",
78467929
"localeId"
@@ -7889,7 +7972,8 @@
78897972
"documentation":"<p>The identifier of the language and locale that contains the slot type. The string must match one of the supported locales. For more information, see <a href=\"https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html\">Supported languages</a>.</p>",
78907973
"location":"uri",
78917974
"locationName":"localeId"
7892-
}
7975+
},
7976+
"externalSourceSetting":{"shape":"ExternalSourceSetting"}
78937977
}
78947978
},
78957979
"UpdateSlotTypeResponse":{
@@ -7938,7 +8022,8 @@
79388022
"lastUpdatedDateTime":{
79398023
"shape":"Timestamp",
79408024
"documentation":"<p>A timestamp of the date and time that the slot type was last updated.</p>"
7941-
}
8025+
},
8026+
"externalSourceSetting":{"shape":"ExternalSourceSetting"}
79428027
}
79438028
},
79448029
"Utterance":{"type":"string"},
@@ -7985,7 +8070,7 @@
79858070
},
79868071
"engine":{
79878072
"shape":"VoiceEngine",
7988-
"documentation":"<p>Indicates the type of Amazon Polly voice that Amazon Lex should use for voice interaction with the user. For more information, see <a href=\"https://docs.aws.amazon.com/polly/latest/dg/voicelist.html\">Voices in Amazon Polly</a>.</p>"
8073+
"documentation":"<p>Indicates the type of Amazon Polly voice that Amazon Lex should use for voice interaction with the user. For more information, see the <a href=\"https://docs.aws.amazon.com/polly/latest/dg/API_SynthesizeSpeech.html#polly-SynthesizeSpeech-request-Engine\"> <code>engine</code> parameter of the <code>SynthesizeSpeech</code> operation</a> in the <i>Amazon Polly developer guide</i>.</p> <p>If you do not specify a value, the default is <code>standard</code>.</p>"
79898074
}
79908075
},
79918076
"documentation":"<p>Defines settings for using an Amazon Polly voice to communicate with a user.</p>"

0 commit comments

Comments
 (0)