Skip to content

Commit

Permalink
Release v1.42.30 (2022-01-07) (#4232)
Browse files Browse the repository at this point in the history
Release v1.42.30 (2022-01-07)
===

### Service Client Updates
* `service/medialive`: Updates service API and documentation
  * This release adds support for selecting the Program Date Time (PDT) Clock source algorithm for HLS outputs.
  • Loading branch information
aws-sdk-go-automation authored Jan 7, 2022
1 parent 78b45fe commit d8a6ff2
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.42.30 (2022-01-07)
===

### Service Client Updates
* `service/medialive`: Updates service API and documentation
* This release adds support for selecting the Program Date Time (PDT) Clock source algorithm for HLS outputs.

Release v1.42.29 (2022-01-06)
===

Expand Down
7 changes: 6 additions & 1 deletion aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.42.29"
const SDKVersion = "1.42.30"
11 changes: 11 additions & 0 deletions models/apis/medialive/2017-10-14/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -7058,6 +7058,10 @@
"shape": "HlsProgramDateTime",
"locationName": "programDateTime"
},
"ProgramDateTimeClock": {
"shape": "HlsProgramDateTimeClock",
"locationName": "programDateTimeClock"
},
"ProgramDateTimePeriod": {
"shape": "__integerMin0Max3600",
"locationName": "programDateTimePeriod"
Expand Down Expand Up @@ -7266,6 +7270,13 @@
"INCLUDE"
]
},
"HlsProgramDateTimeClock": {
"type": "string",
"enum": [
"INITIALIZE_FROM_OUTPUT_TIMECODE",
"SYSTEM_CLOCK"
]
},
"HlsRedundantManifest": {
"type": "string",
"enum": [
Expand Down
8 changes: 7 additions & 1 deletion models/apis/medialive/2017-10-14/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1507,7 +1507,13 @@
"HlsProgramDateTime": {
"base": "Hls Program Date Time",
"refs": {
"HlsGroupSettings$ProgramDateTime": "Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files. The value is calculated as follows: either the program date and time are initialized using the input timecode source, or the time is initialized using the input timecode source and the date is initialized using the timestampOffset."
"HlsGroupSettings$ProgramDateTime": "Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files. The value is calculated using the program date time clock."
}
},
"HlsProgramDateTimeClock": {
"base": "Hls Program Date Time Clock",
"refs": {
"HlsGroupSettings$ProgramDateTimeClock": "Specifies the algorithm used to drive the HLS EXT-X-PROGRAM-DATE-TIME clock. Options include:\n\nINITIALIZE_FROM_OUTPUT_TIMECODE: The PDT clock is initialized as a function of the first output timecode, then incremented by the EXTINF duration of each encoded segment.\n\nSYSTEM_CLOCK: The PDT clock is initialized as a function of the UTC wall clock, then incremented by the EXTINF duration of each encoded segment. If the PDT clock diverges from the wall clock by more than 500ms, it is resynchronized to the wall clock."
}
},
"HlsRedundantManifest": {
Expand Down
7 changes: 6 additions & 1 deletion models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -15933,7 +15933,12 @@
},
"portal.sso" : {
"endpoints" : {
"us-gov-east-1" : { },
"us-gov-east-1" : {
"credentialScope" : {
"region" : "us-gov-east-1"
},
"hostname" : "portal.sso.us-gov-east-1.amazonaws.com"
},
"us-gov-west-1" : {
"credentialScope" : {
"region" : "us-gov-west-1"
Expand Down
36 changes: 33 additions & 3 deletions service/medialive/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d8a6ff2

Please sign in to comment.