Skip to content

Commit 349058b

Browse files
Update models for release
1 parent 99e13a3 commit 349058b

File tree

22 files changed

+120
-39
lines changed

22 files changed

+120
-39
lines changed

.changes/3.306.2

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"type": "api-change",
4+
"category": "ECR",
5+
"description": "This release adds pull through cache rules support for GitLab container registry in Amazon ECR."
6+
},
7+
{
8+
"type": "api-change",
9+
"category": "CognitoIdentityProvider",
10+
"description": "Add EXTERNAL_PROVIDER enum value to UserStatusType."
11+
},
12+
{
13+
"type": "enhancement",
14+
"category": "FMS",
15+
"description": "The policy scope resource tag is always a string value, either a non-empty string or an empty string."
16+
},
17+
{
18+
"type": "api-change",
19+
"category": "EC2",
20+
"description": "Adding Precision Hardware Clock (PHC) to public API DescribeInstanceTypes"
21+
},
22+
{
23+
"type": "api-change",
24+
"category": "Polly",
25+
"description": "Add new engine - generative - that builds the most expressive conversational voices."
26+
},
27+
{
28+
"type": "api-change",
29+
"category": "SQS",
30+
"description": "This release adds MessageSystemAttributeNames to ReceiveMessageRequest to replace AttributeNames."
31+
}
32+
]

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG
22

3+
## next release
4+
5+
* `Aws\ECR` - This release adds pull through cache rules support for GitLab container registry in Amazon ECR.
6+
* `Aws\CognitoIdentityProvider` - Add EXTERNAL_PROVIDER enum value to UserStatusType.
7+
* `Aws\FMS` - The policy scope resource tag is always a string value, either a non-empty string or an empty string.
8+
* `Aws\EC2` - Adding Precision Hardware Clock (PHC) to public API DescribeInstanceTypes
9+
* `Aws\Polly` - Add new engine - generative - that builds the most expressive conversational voices.
10+
* `Aws\SQS` - This release adds MessageSystemAttributeNames to ReceiveMessageRequest to replace AttributeNames.
11+
312
## 3.306.1 - 2024-05-07
413

514
* `Aws\Budgets` - This release adds tag support for budgets and budget actions.

src/data/cognito-idp/2016-04-18/api-2.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"endpointPrefix":"cognito-idp",
66
"jsonVersion":"1.1",
77
"protocol":"json",
8+
"protocols":["json"],
89
"serviceFullName":"Amazon Cognito Identity Provider",
910
"serviceId":"Cognito Identity Provider",
1011
"signatureVersion":"v4",
@@ -5698,7 +5699,8 @@
56985699
"COMPROMISED",
56995700
"UNKNOWN",
57005701
"RESET_REQUIRED",
5701-
"FORCE_CHANGE_PASSWORD"
5702+
"FORCE_CHANGE_PASSWORD",
5703+
"EXTERNAL_PROVIDER"
57025704
]
57035705
},
57045706
"UserType":{

src/data/cognito-idp/2016-04-18/api-2.json.php

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/data/ec2/2016-11-15/api-2.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28829,6 +28829,10 @@
2882928829
"NeuronInfo":{
2883028830
"shape":"NeuronInfo",
2883128831
"locationName":"neuronInfo"
28832+
},
28833+
"PhcSupport":{
28834+
"shape":"PhcSupport",
28835+
"locationName":"phcSupport"
2883228836
}
2883328837
}
2883428838
},
@@ -36230,6 +36234,13 @@
3623036234
"Value":{"shape":"String"}
3623136235
}
3623236236
},
36237+
"PhcSupport":{
36238+
"type":"string",
36239+
"enum":[
36240+
"unsupported",
36241+
"supported"
36242+
]
36243+
},
3623336244
"Placement":{
3623436245
"type":"structure",
3623536246
"members":{

src/data/ec2/2016-11-15/api-2.json.php

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/data/ec2/2016-11-15/docs-2.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16556,6 +16556,12 @@
1655616556
"Phase2IntegrityAlgorithmsRequestList$member": null
1655716557
}
1655816558
},
16559+
"PhcSupport": {
16560+
"base": null,
16561+
"refs": {
16562+
"InstanceTypeInfo$PhcSupport": "<p>Indicates whether a local Precision Time Protocol (PTP) hardware clock (PHC) is supported.</p>"
16563+
}
16564+
},
1655916565
"Placement": {
1656016566
"base": "<p>Describes the placement of an instance.</p>",
1656116567
"refs": {

src/data/ec2/2016-11-15/docs-2.json.php

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/data/ecr/2015-09-21/api-2.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"endpointPrefix":"api.ecr",
66
"jsonVersion":"1.1",
77
"protocol":"json",
8+
"protocols":["json"],
89
"serviceAbbreviation":"Amazon ECR",
910
"serviceFullName":"Amazon EC2 Container Registry",
1011
"serviceId":"ECR",
@@ -2598,7 +2599,8 @@
25982599
"k8s",
25992600
"docker-hub",
26002601
"github-container-registry",
2601-
"azure-container-registry"
2602+
"azure-container-registry",
2603+
"gitlab-container-registry"
26022604
]
26032605
},
26042606
"Url":{"type":"string"},

src/data/ecr/2015-09-21/api-2.json.php

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)