Skip to content

Commit

Permalink
Release v1.51.2 (2024-03-18) (#5200)
Browse files Browse the repository at this point in the history
Release v1.51.2 (2024-03-18)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
  * This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed.
* `service/kms`: Updates service API and documentation
  * Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy
* `service/mediatailor`: Updates service API and documentation
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations.
* `service/s3`: Updates service API and examples
  * Fix two issues with response root node names.
* `service/timestream-query`: Updates service documentation
  • Loading branch information
aws-sdk-go-automation committed Mar 18, 2024
1 parent fdce8a5 commit 8c9d152
Show file tree
Hide file tree
Showing 28 changed files with 2,296 additions and 291 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Release v1.51.2 (2024-03-18)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
* This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed.
* `service/kms`: Updates service API and documentation
* Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy
* `service/mediatailor`: Updates service API and documentation
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations.
* `service/s3`: Updates service API and examples
* Fix two issues with response root node names.
* `service/timestream-query`: Updates service documentation

Release v1.51.1 (2024-03-15)
===

Expand Down
59 changes: 59 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.51.1"
const SDKVersion = "1.51.2"
43 changes: 43 additions & 0 deletions models/apis/cloudformation/2010-05-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -839,6 +839,21 @@
"resultWrapper":"ListStackResourcesResult"
}
},
"ListStackSetAutoDeploymentTargets":{
"name":"ListStackSetAutoDeploymentTargets",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListStackSetAutoDeploymentTargetsInput"},
"output":{
"shape":"ListStackSetAutoDeploymentTargetsOutput",
"resultWrapper":"ListStackSetAutoDeploymentTargetsResult"
},
"errors":[
{"shape":"StackSetNotFoundException"}
]
},
"ListStackSetOperationResults":{
"name":"ListStackSetOperationResults",
"http":{
Expand Down Expand Up @@ -2918,6 +2933,23 @@
"NextToken":{"shape":"NextToken"}
}
},
"ListStackSetAutoDeploymentTargetsInput":{
"type":"structure",
"required":["StackSetName"],
"members":{
"StackSetName":{"shape":"StackSetNameOrId"},
"NextToken":{"shape":"NextToken"},
"MaxResults":{"shape":"MaxResults"},
"CallAs":{"shape":"CallAs"}
}
},
"ListStackSetAutoDeploymentTargetsOutput":{
"type":"structure",
"members":{
"Summaries":{"shape":"StackSetAutoDeploymentTargetSummaries"},
"NextToken":{"shape":"NextToken"}
}
},
"ListStackSetOperationResultsInput":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4407,6 +4439,17 @@
}
},
"StackSetARN":{"type":"string"},
"StackSetAutoDeploymentTargetSummaries":{
"type":"list",
"member":{"shape":"StackSetAutoDeploymentTargetSummary"}
},
"StackSetAutoDeploymentTargetSummary":{
"type":"structure",
"members":{
"OrganizationalUnitId":{"shape":"OrganizationalUnitId"},
"Regions":{"shape":"RegionList"}
}
},
"StackSetDriftDetectionDetails":{
"type":"structure",
"members":{
Expand Down
34 changes: 32 additions & 2 deletions models/apis/cloudformation/2010-05-15/docs-2.json

Large diffs are not rendered by default.

9 changes: 3 additions & 6 deletions models/apis/kms/2014-11-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1588,10 +1588,7 @@
},
"GetKeyPolicyRequest":{
"type":"structure",
"required":[
"KeyId",
"PolicyName"
],
"required":["KeyId"],
"members":{
"KeyId":{"shape":"KeyIdType"},
"PolicyName":{"shape":"PolicyNameType"}
Expand All @@ -1600,7 +1597,8 @@
"GetKeyPolicyResponse":{
"type":"structure",
"members":{
"Policy":{"shape":"PolicyType"}
"Policy":{"shape":"PolicyType"},
"PolicyName":{"shape":"PolicyNameType"}
}
},
"GetKeyRotationStatusRequest":{
Expand Down Expand Up @@ -2202,7 +2200,6 @@
"type":"structure",
"required":[
"KeyId",
"PolicyName",
"Policy"
],
"members":{
Expand Down
9 changes: 5 additions & 4 deletions models/apis/kms/2014-11-01/docs-2.json

Large diffs are not rendered by default.

58 changes: 55 additions & 3 deletions models/apis/mediatailor/2018-04-23/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,29 @@
"INFO"
]
},
"AlternateMedia":{
"type":"structure",
"members":{
"AdBreaks":{"shape":"__listOfAdBreak"},
"ClipRange":{"shape":"ClipRange"},
"DurationMillis":{"shape":"__long"},
"LiveSourceName":{"shape":"__string"},
"ScheduledStartTimeMillis":{"shape":"__long"},
"SourceLocationName":{"shape":"__string"},
"VodSourceName":{"shape":"__string"}
}
},
"AudienceMedia":{
"type":"structure",
"members":{
"AlternateMedia":{"shape":"__listOfAlternateMedia"},
"Audience":{"shape":"__string"}
}
},
"Audiences":{
"type":"list",
"member":{"shape":"String"}
},
"AvailMatchingCriteria":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -625,6 +648,7 @@
],
"members":{
"Arn":{"shape":"__string"},
"Audiences":{"shape":"Audiences"},
"ChannelName":{"shape":"__string"},
"ChannelState":{"shape":"__string"},
"CreationTime":{"shape":"__timestampUnix"},
Expand All @@ -649,9 +673,12 @@
},
"ClipRange":{
"type":"structure",
"required":["EndOffsetMillis"],
"members":{
"EndOffsetMillis":{"shape":"__long"}
"EndOffsetMillis":{
"shape":"__long",
"box":true
},
"StartOffsetMillis":{"shape":"__long"}
}
},
"ConfigurationAliasesRequest":{
Expand Down Expand Up @@ -709,6 +736,7 @@
"PlaybackMode"
],
"members":{
"Audiences":{"shape":"Audiences"},
"ChannelName":{
"shape":"__string",
"location":"uri",
Expand All @@ -729,6 +757,7 @@
"type":"structure",
"members":{
"Arn":{"shape":"__string"},
"Audiences":{"shape":"Audiences"},
"ChannelName":{"shape":"__string"},
"ChannelState":{"shape":"ChannelState"},
"CreationTime":{"shape":"__timestampUnix"},
Expand Down Expand Up @@ -829,6 +858,7 @@
],
"members":{
"AdBreaks":{"shape":"__listOfAdBreak"},
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
"ChannelName":{
"shape":"__string",
"location":"uri",
Expand All @@ -850,6 +880,7 @@
"members":{
"AdBreaks":{"shape":"__listOfAdBreak"},
"Arn":{"shape":"__string"},
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
"ChannelName":{"shape":"__string"},
"ClipRange":{"shape":"ClipRange"},
"CreationTime":{"shape":"__timestampUnix"},
Expand Down Expand Up @@ -1146,6 +1177,7 @@
"required":["LogConfiguration"],
"members":{
"Arn":{"shape":"__string"},
"Audiences":{"shape":"Audiences"},
"ChannelName":{"shape":"__string"},
"ChannelState":{"shape":"ChannelState"},
"CreationTime":{"shape":"__timestampUnix"},
Expand Down Expand Up @@ -1220,6 +1252,7 @@
"members":{
"AdBreaks":{"shape":"__listOfAdBreak"},
"Arn":{"shape":"__string"},
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
"ChannelName":{"shape":"__string"},
"ClipRange":{"shape":"ClipRange"},
"CreationTime":{"shape":"__timestampUnix"},
Expand Down Expand Up @@ -1322,6 +1355,11 @@
"type":"structure",
"required":["ChannelName"],
"members":{
"Audience":{
"shape":"__string",
"location":"querystring",
"locationName":"audience"
},
"ChannelName":{
"shape":"__string",
"location":"uri",
Expand Down Expand Up @@ -1965,6 +2003,7 @@
"ApproximateDurationSeconds":{"shape":"__long"},
"ApproximateStartTime":{"shape":"__timestampUnix"},
"Arn":{"shape":"__string"},
"Audiences":{"shape":"Audiences"},
"ChannelName":{"shape":"__string"},
"LiveSourceName":{"shape":"__string"},
"ProgramName":{"shape":"__string"},
Expand All @@ -1978,7 +2017,8 @@
"type":"string",
"enum":[
"PROGRAM",
"FILLER_SLATE"
"FILLER_SLATE",
"ALTERNATE_MEDIA"
]
},
"SecretsManagerAccessTokenConfiguration":{
Expand Down Expand Up @@ -2169,6 +2209,7 @@
"Outputs"
],
"members":{
"Audiences":{"shape":"Audiences"},
"ChannelName":{
"shape":"__string",
"location":"uri",
Expand All @@ -2183,6 +2224,7 @@
"type":"structure",
"members":{
"Arn":{"shape":"__string"},
"Audiences":{"shape":"Audiences"},
"ChannelName":{"shape":"__string"},
"ChannelState":{"shape":"ChannelState"},
"CreationTime":{"shape":"__timestampUnix"},
Expand Down Expand Up @@ -2243,6 +2285,7 @@
],
"members":{
"AdBreaks":{"shape":"__listOfAdBreak"},
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
"ChannelName":{
"shape":"__string",
"location":"uri",
Expand All @@ -2261,6 +2304,7 @@
"members":{
"AdBreaks":{"shape":"__listOfAdBreak"},
"Arn":{"shape":"__string"},
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
"ChannelName":{"shape":"__string"},
"ClipRange":{"shape":"ClipRange"},
"CreationTime":{"shape":"__timestampUnix"},
Expand Down Expand Up @@ -2405,6 +2449,14 @@
"type":"list",
"member":{"shape":"Alert"}
},
"__listOfAlternateMedia":{
"type":"list",
"member":{"shape":"AlternateMedia"}
},
"__listOfAudienceMedia":{
"type":"list",
"member":{"shape":"AudienceMedia"}
},
"__listOfAvailMatchingCriteria":{
"type":"list",
"member":{"shape":"AvailMatchingCriteria"}
Expand Down

0 comments on commit 8c9d152

Please sign in to comment.