Skip to content

Commit

Permalink
Update models for release
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-php-automation committed May 13, 2024
1 parent f50ff98 commit f16d06f
Show file tree
Hide file tree
Showing 15 changed files with 264 additions and 141 deletions.
12 changes: 12 additions & 0 deletions .changes/3.306.5
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "api-change",
"category": "VPCLattice",
"description": "This release adds TLS Passthrough support. It also increases max number of target group per rule to 10."
},
{
"type": "api-change",
"category": "EventBridge",
"description": "Amazon EventBridge introduces KMS customer-managed key (CMK) encryption support for custom and partner events published on EventBridge Event Bus (including default bus) and UpdateEventBus API."
}
]
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## next release

* `Aws\VPCLattice` - This release adds TLS Passthrough support. It also increases max number of target group per rule to 10.
* `Aws\EventBridge` - Amazon EventBridge introduces KMS customer-managed key (CMK) encryption support for custom and partner events published on EventBridge Event Bus (including default bus) and UpdateEventBus API.

## 3.306.4 - 2024-05-10

* `Aws\SageMaker` - Introduced support for G6 instance types on Sagemaker Notebook Instances and on SageMaker Studio for JupyterLab and CodeEditor applications.
Expand Down
2 changes: 2 additions & 0 deletions src/EventBridge/EventBridgeClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@
* @method \GuzzleHttp\Promise\Promise updateConnectionAsync(array $args = [])
* @method \Aws\Result updateEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateEndpointAsync(array $args = [])
* @method \Aws\Result updateEventBus(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateEventBusAsync(array $args = [])
*/
class EventBridgeClient extends AwsClient {
public function __construct(array $args)
Expand Down
1 change: 1 addition & 0 deletions src/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,7 @@
"aoss" : {
"endpoints" : {
"ap-northeast-1" : { },
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"eu-central-1" : { },
Expand Down
2 changes: 1 addition & 1 deletion src/data/endpoints.json.php

Large diffs are not rendered by default.

63 changes: 60 additions & 3 deletions src/data/eventbridge/2015-10-07/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"endpointPrefix":"events",
"jsonVersion":"1.1",
"protocol":"json",
"protocols":["json"],
"serviceFullName":"Amazon EventBridge",
"serviceId":"EventBridge",
"signatureVersion":"v4",
Expand Down Expand Up @@ -793,6 +794,21 @@
{"shape":"ConcurrentModificationException"},
{"shape":"InternalException"}
]
},
"UpdateEventBus":{
"name":"UpdateEventBus",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateEventBusRequest"},
"output":{"shape":"UpdateEventBusResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"InternalException"},
{"shape":"ConcurrentModificationException"},
{"shape":"OperationDisabledException"}
]
}
},
"shapes":{
Expand Down Expand Up @@ -1367,13 +1383,19 @@
"members":{
"Name":{"shape":"EventBusName"},
"EventSourceName":{"shape":"EventSourceName"},
"Description":{"shape":"EventBusDescription"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"},
"Tags":{"shape":"TagList"}
}
},
"CreateEventBusResponse":{
"type":"structure",
"members":{
"EventBusArn":{"shape":"String"}
"EventBusArn":{"shape":"String"},
"Description":{"shape":"EventBusDescription"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"}
}
},
"CreatePartnerEventSourceRequest":{
Expand Down Expand Up @@ -1623,7 +1645,12 @@
"members":{
"Name":{"shape":"String"},
"Arn":{"shape":"String"},
"Policy":{"shape":"String"}
"Description":{"shape":"EventBusDescription"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"},
"Policy":{"shape":"String"},
"CreationTime":{"shape":"Timestamp"},
"LastModifiedTime":{"shape":"Timestamp"}
}
},
"DescribeEventSourceRequest":{
Expand Down Expand Up @@ -1830,9 +1857,16 @@
"members":{
"Name":{"shape":"String"},
"Arn":{"shape":"String"},
"Policy":{"shape":"String"}
"Description":{"shape":"EventBusDescription"},
"Policy":{"shape":"String"},
"CreationTime":{"shape":"Timestamp"},
"LastModifiedTime":{"shape":"Timestamp"}
}
},
"EventBusDescription":{
"type":"string",
"max":512
},
"EventBusList":{
"type":"list",
"member":{"shape":"EventBus"}
Expand Down Expand Up @@ -2018,6 +2052,10 @@
"PartitionKeyPath":{"shape":"TargetPartitionKeyPath"}
}
},
"KmsKeyIdentifier":{
"type":"string",
"max":2048
},
"LaunchType":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -3257,6 +3295,25 @@
"EndpointUrl":{"shape":"EndpointUrl"},
"State":{"shape":"EndpointState"}
}
},
"UpdateEventBusRequest":{
"type":"structure",
"members":{
"Name":{"shape":"EventBusName"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"Description":{"shape":"EventBusDescription"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"}
}
},
"UpdateEventBusResponse":{
"type":"structure",
"members":{
"Arn":{"shape":"String"},
"Name":{"shape":"EventBusName"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"Description":{"shape":"EventBusDescription"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"}
}
}
}
}
2 changes: 1 addition & 1 deletion src/data/eventbridge/2015-10-07/api-2.json.php

Large diffs are not rendered by default.

80 changes: 62 additions & 18 deletions src/data/eventbridge/2015-10-07/docs-2.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/data/eventbridge/2015-10-07/docs-2.json.php

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions src/data/vpc-lattice/2022-11-30/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2360,7 +2360,8 @@
"type":"string",
"enum":[
"HTTP",
"HTTPS"
"HTTPS",
"TLS_PASSTHROUGH"
]
},
"ListenerSummary":{
Expand Down Expand Up @@ -2985,7 +2986,8 @@
"type":"string",
"enum":[
"HTTP",
"HTTPS"
"HTTPS",
"TCP"
]
},
"TargetGroupProtocolVersion":{
Expand Down Expand Up @@ -3395,7 +3397,7 @@
"WeightedTargetGroupList":{
"type":"list",
"member":{"shape":"WeightedTargetGroup"},
"max":2,
"max":10,
"min":1
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/data/vpc-lattice/2022-11-30/api-2.json.php

Large diffs are not rendered by default.

Loading

0 comments on commit f16d06f

Please sign in to comment.