Skip to content

Commit 4767a07

Browse files
authored
Merge pull request #7743 from cli-v2-merge/update-v2
[v2] Merge model updates and develop branch to v2 branch
2 parents 68d0fe1 + 70e7c07 commit 4767a07

File tree

11 files changed

+749
-1799
lines changed

11 files changed

+749
-1799
lines changed

.changes/1.27.89.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"category": "``ivschat``",
4+
"description": "This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``secretsmanager``",
9+
"description": "The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values.",
10+
"type": "api-change"
11+
}
12+
]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"category": "``ivschat``",
3+
"description": "This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations.",
4+
"type": "api-change"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"category": "``secretsmanager``",
3+
"description": "The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values.",
4+
"type": "api-change"
5+
}

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5024,6 +5024,13 @@ CHANGELOG
50245024
* feature:wizard: Added support for AWS CLI Wizards. See `#3752 <https://github.com/aws/aws-cli/issues/3752>`__.
50255025

50265026

5027+
1.27.89
5028+
=======
5029+
5030+
* api-change:``ivschat``: This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations.
5031+
* api-change:``secretsmanager``: The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values.
5032+
5033+
50275034
1.27.88
50285035
=======
50295036

awscli/botocore/data/endpoints.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12055,6 +12055,7 @@
1205512055
"endpoints" : {
1205612056
"ap-northeast-1" : { },
1205712057
"ap-northeast-2" : { },
12058+
"ap-south-1" : { },
1205812059
"ap-southeast-1" : { },
1205912060
"ap-southeast-2" : { },
1206012061
"ca-central-1" : { },
@@ -20769,11 +20770,18 @@
2076920770
},
2077020771
"participant.connect" : {
2077120772
"endpoints" : {
20772-
"us-gov-west-1" : {
20773+
"fips-us-gov-west-1" : {
2077320774
"credentialScope" : {
2077420775
"region" : "us-gov-west-1"
2077520776
},
20777+
"deprecated" : true,
2077620778
"hostname" : "participant.connect.us-gov-west-1.amazonaws.com"
20779+
},
20780+
"us-gov-west-1" : {
20781+
"variants" : [ {
20782+
"hostname" : "participant.connect.us-gov-west-1.amazonaws.com",
20783+
"tags" : [ "fips" ]
20784+
} ]
2077720785
}
2077820786
}
2077920787
},

awscli/botocore/data/ivschat/2020-07-14/endpoint-rule-set-1.json

Lines changed: 203 additions & 177 deletions
Large diffs are not rendered by default.

awscli/botocore/data/ivschat/2020-07-14/service-2.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@
277277
"input":{"shape":"UpdateLoggingConfigurationRequest"},
278278
"output":{"shape":"UpdateLoggingConfigurationResponse"},
279279
"errors":[
280+
{"shape":"ConflictException"},
280281
{"shape":"AccessDeniedException"},
281282
{"shape":"ResourceNotFoundException"},
282283
{"shape":"PendingVerification"},

awscli/botocore/data/secretsmanager/2017-10-17/endpoint-rule-set-1.json

Lines changed: 218 additions & 174 deletions
Large diffs are not rendered by default.

awscli/botocore/data/secretsmanager/2017-10-17/service-2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@
13851385
"SecretBinaryType":{
13861386
"type":"blob",
13871387
"max":65536,
1388-
"min":0,
1388+
"min":1,
13891389
"sensitive":true
13901390
},
13911391
"SecretIdType":{
@@ -1484,7 +1484,7 @@
14841484
"SecretStringType":{
14851485
"type":"string",
14861486
"max":65536,
1487-
"min":0,
1487+
"min":1,
14881488
"sensitive":true
14891489
},
14901490
"SecretVersionIdType":{

0 commit comments

Comments
 (0)