Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aws/aws-sdk-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.44.178
Choose a base ref
...
head repository: aws/aws-sdk-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.44.179
Choose a head ref
  • 1 commit
  • 35 files changed
  • 1 contributor

Commits on Jan 12, 2023

  1. Release v1.44.179 (2023-01-12) (#4688)

    Release v1.44.179 (2023-01-12)
    ===
    
    ### Service Client Updates
    * `service/cleanrooms`: Adds new service
    * `service/lambda`: Updates service API and documentation
      * Add support for MaximumConcurrency parameter for SQS event source. Customers can now limit the maximum concurrent invocations for their SQS Event Source Mapping.
    * `service/logs`: Updates service API and documentation
      * Bug fix: logGroupName is now not a required field in GetLogEvents, FilterLogEvents, GetLogGroupFields, and DescribeLogStreams APIs as logGroupIdentifier can be provided instead
    * `service/mediaconvert`: Updates service API and documentation
      * The AWS Elemental MediaConvert SDK has added support for compact DASH manifest generation, audio normalization using TruePeak measurements, and the ability to clip the sample range in the color corrector.
    * `service/secretsmanager`: Updates service documentation and examples
      * Update documentation for new ListSecrets and DescribeSecret parameters
    aws-sdk-go-automation authored Jan 12, 2023
    Copy the full SHA
    c7ddff5 View commit details
Showing with 17,846 additions and 942 deletions.
  1. +14 −0 CHANGELOG.md
  2. +89 −0 aws/endpoints/defaults.go
  3. +1 −1 aws/version.go
  4. +2,576 −0 models/apis/cleanrooms/2022-02-17/api-2.json
  5. +1,350 −0 models/apis/cleanrooms/2022-02-17/docs-2.json
  6. +300 −0 models/apis/cleanrooms/2022-02-17/endpoint-rule-set-1.json
  7. +295 −0 models/apis/cleanrooms/2022-02-17/endpoint-tests-1.json
  8. +5 −0 models/apis/cleanrooms/2022-02-17/examples-1.json
  9. +46 −0 models/apis/cleanrooms/2022-02-17/paginators-1.json
  10. +6 −0 models/apis/cleanrooms/2022-02-17/smoke.json
  11. +5 −0 models/apis/cleanrooms/2022-02-17/waiters-2.json
  12. +17 −3 models/apis/lambda/2015-03-31/api-2.json
  13. +26 −12 models/apis/lambda/2015-03-31/docs-2.json
  14. +0 −9 models/apis/lambda/2015-03-31/endpoint-rule-set-1.json
  15. +1 −7 models/apis/logs/2014-03-28/api-2.json
  16. +9 −9 models/apis/logs/2014-03-28/docs-2.json
  17. +275 −275 models/apis/logs/2014-03-28/endpoint-tests-1.json
  18. +65 −1 models/apis/mediaconvert/2017-08-29/api-2.json
  19. +45 −7 models/apis/mediaconvert/2017-08-29/docs-2.json
  20. +1 −10 models/apis/mediaconvert/2017-08-29/endpoint-rule-set-1.json
  21. +171 −171 models/apis/mediaconvert/2017-08-29/endpoint-tests-1.json
  22. +11 −11 models/apis/secretsmanager/2017-10-17/docs-2.json
  23. +275 −275 models/apis/secretsmanager/2017-10-17/endpoint-tests-1.json
  24. +1 −0 models/apis/secretsmanager/2017-10-17/examples-1.json
  25. +49 −0 models/endpoints/endpoints.json
  26. +11,333 −0 service/cleanrooms/api.go
  27. +221 −0 service/cleanrooms/cleanroomsiface/interface.go
  28. +38 −0 service/cleanrooms/doc.go
  29. +62 −0 service/cleanrooms/errors.go
  30. +106 −0 service/cleanrooms/service.go
  31. +20 −24 service/cloudwatchlogs/api.go
  32. +158 −66 service/lambda/api.go
  33. +232 −25 service/mediaconvert/api.go
  34. +40 −36 service/secretsmanager/api.go
  35. +3 −0 service/secretsmanager/doc.go
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Release v1.44.179 (2023-01-12)
===

### Service Client Updates
* `service/cleanrooms`: Adds new service
* `service/lambda`: Updates service API and documentation
* Add support for MaximumConcurrency parameter for SQS event source. Customers can now limit the maximum concurrent invocations for their SQS Event Source Mapping.
* `service/logs`: Updates service API and documentation
* Bug fix: logGroupName is now not a required field in GetLogEvents, FilterLogEvents, GetLogGroupFields, and DescribeLogStreams APIs as logGroupIdentifier can be provided instead
* `service/mediaconvert`: Updates service API and documentation
* The AWS Elemental MediaConvert SDK has added support for compact DASH manifest generation, audio normalization using TruePeak measurements, and the ability to clip the sample range in the color corrector.
* `service/secretsmanager`: Updates service documentation and examples
* Update documentation for new ListSecrets and DescribeSecret parameters

Release v1.44.178 (2023-01-11)
===

89 changes: 89 additions & 0 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
@@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.178"
const SDKVersion = "1.44.179"
Loading