Skip to content

Commit

Permalink
Release v1.38.60 (2021-06-11) (#3955)
Browse files Browse the repository at this point in the history
Release v1.38.60 (2021-06-11)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
  * Amazon EC2 adds new AMI property to flag outdated AMIs
* `service/mediaconnect`: Updates service API and documentation
* `service/medialive`: Updates service API and documentation
  * AWS MediaLive now supports OCR-based conversion of DVB-Sub and SCTE-27 image-based source captions to WebVTT, and supports ingest of ad avail decorations in HLS input manifests.
  • Loading branch information
aws-sdk-go-automation authored Jun 11, 2021
1 parent bca4b21 commit 019b384
Show file tree
Hide file tree
Showing 14 changed files with 890 additions and 34 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.38.60 (2021-06-11)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
* Amazon EC2 adds new AMI property to flag outdated AMIs
* `service/mediaconnect`: Updates service API and documentation
* `service/medialive`: Updates service API and documentation
* AWS MediaLive now supports OCR-based conversion of DVB-Sub and SCTE-27 image-based source captions to WebVTT, and supports ingest of ad avail decorations in HLS input manifests.

Release v1.38.59 (2021-06-10)
===

Expand Down
70 changes: 60 additions & 10 deletions 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.38.59"
const SDKVersion = "1.38.60"
61 changes: 61 additions & 0 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2616,6 +2616,15 @@
"input":{"shape":"DisableFastSnapshotRestoresRequest"},
"output":{"shape":"DisableFastSnapshotRestoresResult"}
},
"DisableImageDeprecation":{
"name":"DisableImageDeprecation",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DisableImageDeprecationRequest"},
"output":{"shape":"DisableImageDeprecationResult"}
},
"DisableSerialConsoleAccess":{
"name":"DisableSerialConsoleAccess",
"http":{
Expand Down Expand Up @@ -2757,6 +2766,15 @@
"input":{"shape":"EnableFastSnapshotRestoresRequest"},
"output":{"shape":"EnableFastSnapshotRestoresResult"}
},
"EnableImageDeprecation":{
"name":"EnableImageDeprecation",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"EnableImageDeprecationRequest"},
"output":{"shape":"EnableImageDeprecationResult"}
},
"EnableSerialConsoleAccess":{
"name":"EnableSerialConsoleAccess",
"http":{
Expand Down Expand Up @@ -11824,6 +11842,7 @@
"shape":"OwnerStringList",
"locationName":"Owner"
},
"IncludeDeprecated":{"shape":"Boolean"},
"DryRun":{
"shape":"Boolean",
"locationName":"dryRun"
Expand Down Expand Up @@ -14836,6 +14855,23 @@
}
}
},
"DisableImageDeprecationRequest":{
"type":"structure",
"required":["ImageId"],
"members":{
"ImageId":{"shape":"ImageId"},
"DryRun":{"shape":"Boolean"}
}
},
"DisableImageDeprecationResult":{
"type":"structure",
"members":{
"Return":{
"shape":"Boolean",
"locationName":"return"
}
}
},
"DisableSerialConsoleAccessRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -15784,6 +15820,27 @@
}
}
},
"EnableImageDeprecationRequest":{
"type":"structure",
"required":[
"ImageId",
"DeprecateAt"
],
"members":{
"ImageId":{"shape":"ImageId"},
"DeprecateAt":{"shape":"MillisecondDateTime"},
"DryRun":{"shape":"Boolean"}
}
},
"EnableImageDeprecationResult":{
"type":"structure",
"members":{
"Return":{
"shape":"Boolean",
"locationName":"return"
}
}
},
"EnableSerialConsoleAccessRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -18437,6 +18494,10 @@
"BootMode":{
"shape":"BootModeValues",
"locationName":"bootMode"
},
"DeprecationTime":{
"shape":"String",
"locationName":"deprecationTime"
}
}
},
Expand Down
Loading

0 comments on commit 019b384

Please sign in to comment.