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 6, 2024
1 parent 92abbf2 commit 5be82dd
Show file tree
Hide file tree
Showing 9 changed files with 71 additions and 11 deletions.
7 changes: 7 additions & 0 deletions .changes/3.306.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"type": "api-change",
"category": "MediaLive",
"description": "AWS Elemental MediaLive now supports configuring how SCTE 35 passthrough triggers segment breaks in HLS and MediaPackage output groups. Previously, messages triggered breaks in all these output groups. The new option is to trigger segment breaks only in groups that have SCTE 35 passthrough enabled."
}
]
7 changes: 0 additions & 7 deletions .changes/nextrelease/json-rpc-streaming-support.json

This file was deleted.

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\Parser` - Adds support for event streaming on JSON-RPC protocol parser
* `Aws\MediaLive` - AWS Elemental MediaLive now supports configuring how SCTE 35 passthrough triggers segment breaks in HLS and MediaPackage output groups. Previously, messages triggered breaks in all these output groups. The new option is to trigger segment breaks only in groups that have SCTE 35 passthrough enabled.

## 3.305.9 - 2024-05-03

* `Aws\` - Fixes issue with manually configured signature versions.
Expand Down
40 changes: 39 additions & 1 deletion src/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -4434,6 +4434,19 @@
"deprecated" : true,
"hostname" : "controltower-fips.ca-central-1.amazonaws.com"
},
"ca-west-1" : {
"variants" : [ {
"hostname" : "controltower-fips.ca-west-1.amazonaws.com",
"tags" : [ "fips" ]
} ]
},
"ca-west-1-fips" : {
"credentialScope" : {
"region" : "ca-west-1"
},
"deprecated" : true,
"hostname" : "controltower-fips.ca-west-1.amazonaws.com"
},
"eu-central-1" : { },
"eu-central-2" : { },
"eu-north-1" : { },
Expand Down Expand Up @@ -7858,6 +7871,12 @@
"tags" : [ "fips" ]
} ]
},
"ca-west-1" : {
"variants" : [ {
"hostname" : "fms-fips.ca-west-1.amazonaws.com",
"tags" : [ "fips" ]
} ]
},
"eu-central-1" : {
"variants" : [ {
"hostname" : "fms-fips.eu-central-1.amazonaws.com",
Expand Down Expand Up @@ -7947,6 +7966,13 @@
"deprecated" : true,
"hostname" : "fms-fips.ca-central-1.amazonaws.com"
},
"fips-ca-west-1" : {
"credentialScope" : {
"region" : "ca-west-1"
},
"deprecated" : true,
"hostname" : "fms-fips.ca-west-1.amazonaws.com"
},
"fips-eu-central-1" : {
"credentialScope" : {
"region" : "eu-central-1"
Expand Down Expand Up @@ -19150,7 +19176,12 @@
"tags" : [ "fips" ]
} ]
},
"ca-west-1" : { },
"ca-west-1" : {
"variants" : [ {
"hostname" : "transfer-fips.ca-west-1.amazonaws.com",
"tags" : [ "fips" ]
} ]
},
"eu-central-1" : { },
"eu-central-2" : { },
"eu-north-1" : { },
Expand All @@ -19166,6 +19197,13 @@
"deprecated" : true,
"hostname" : "transfer-fips.ca-central-1.amazonaws.com"
},
"fips-ca-west-1" : {
"credentialScope" : {
"region" : "ca-west-1"
},
"deprecated" : true,
"hostname" : "transfer-fips.ca-west-1.amazonaws.com"
},
"fips-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
Expand Down
2 changes: 1 addition & 1 deletion src/data/endpoints.json.php

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions src/data/medialive/2017-10-14/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4083,6 +4083,10 @@
"AvailSettings": {
"shape": "AvailSettings",
"locationName": "availSettings"
},
"Scte35SegmentationScope": {
"shape": "Scte35SegmentationScope",
"locationName": "scte35SegmentationScope"
}
}
},
Expand Down Expand Up @@ -19979,6 +19983,13 @@
"__stringPatternS": {
"type": "string",
"pattern": "^[^\\s]+$"
},
"Scte35SegmentationScope": {
"type": "string",
"enum": [
"ALL_OUTPUT_GROUPS",
"SCTE35_ENABLED_OUTPUT_GROUPS"
]
}
}
}
2 changes: 1 addition & 1 deletion src/data/medialive/2017-10-14/api-2.json.php

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/data/medialive/2017-10-14/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5964,6 +5964,12 @@
"UpdateEventBridgeRuleTemplateRequestContent$GroupIdentifier": "An eventbridge rule template group's identifier. Can be either be its id or current name.",
"__listOf__stringPatternS$member": null
}
},
"Scte35SegmentationScope": {
"base": "Scte35 Segmentation Scope",
"refs": {
"AvailConfiguration$Scte35SegmentationScope": "Configures whether SCTE 35 passthrough triggers segment breaks in all output groups that use segmented outputs. Insertion of a SCTE 35 message typically results in a segment break, in addition to the regular cadence of breaks. The segment breaks appear in video outputs, audio outputs, and captions outputs (if any).\n\nALL_OUTPUT_GROUPS: Default. Insert the segment break in in all output groups that have segmented outputs. This is the legacy behavior.\nSCTE35_ENABLED_OUTPUT_GROUPS: Insert the segment break only in output groups that have SCTE 35 passthrough enabled. This is the recommended value, because it reduces unnecessary segment breaks."
}
}
},
"documentation": "API for AWS Elemental MediaLive"
Expand Down
2 changes: 1 addition & 1 deletion src/data/medialive/2017-10-14/docs-2.json.php

Large diffs are not rendered by default.

0 comments on commit 5be82dd

Please sign in to comment.