Skip to content

Commit

Permalink
Release v1.47.5 (2023-11-07) (#5059)
Browse files Browse the repository at this point in the history
Release v1.47.5 (2023-11-07)
===

### Service Client Updates
* `service/dataexchange`: Updates service API and documentation
* `service/dlm`: Updates service API and documentation
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * This Amazon RDS release adds support for the multi-tenant configuration. In this configuration, an RDS DB instance can contain multiple tenant databases. In RDS for Oracle, a tenant database is a pluggable database (PDB).
  • Loading branch information
aws-sdk-go-automation committed Nov 7, 2023
1 parent 6d6fb86 commit b87529c
Show file tree
Hide file tree
Showing 21 changed files with 3,199 additions and 286 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.47.5 (2023-11-07)
===

### Service Client Updates
* `service/dataexchange`: Updates service API and documentation
* `service/dlm`: Updates service API and documentation
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* This Amazon RDS release adds support for the multi-tenant configuration. In this configuration, an RDS DB instance can contain multiple tenant databases. In RDS for Oracle, a tenant database is a pluggable database (PDB).

Release v1.47.4 (2023-11-06)
===

Expand Down
31 changes: 31 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.47.4"
const SDKVersion = "1.47.5"
7 changes: 6 additions & 1 deletion models/apis/dataexchange/2017-07-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2172,7 +2172,7 @@
"shape":"ClientToken",
"idempotencyToken":true
},
"Comment":{"shape":"__stringMin0Max16384"},
"Comment":{"shape":"__stringMin0Max4096"},
"DataSetId":{
"shape":"__string",
"location":"uri",
Expand Down Expand Up @@ -2480,6 +2480,11 @@
"max":16384,
"min":0
},
"__stringMin0Max4096":{
"type":"string",
"max":4096,
"min":0
},
"__stringMin10Max512":{
"type":"string",
"max":512,
Expand Down
7 changes: 6 additions & 1 deletion models/apis/dataexchange/2017-07-25/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1444,11 +1444,16 @@
"GetRevisionResponse$Comment": "<p>An optional comment about the revision.</p>",
"RevisionEntry$Comment": "<p>An optional comment about the revision.</p>",
"RevokeRevisionResponse$Comment": "<p>An optional comment about the revision.</p>",
"SendDataSetNotificationRequest$Comment": "<p>Free-form text field for providers to add information about their notifications.</p>",
"UpdateRevisionRequest$Comment": "<p>An optional comment about the revision.</p>",
"UpdateRevisionResponse$Comment": "<p>An optional comment about the revision.</p>"
}
},
"__stringMin0Max4096": {
"base": null,
"refs": {
"SendDataSetNotificationRequest$Comment": "<p>Free-form text field for providers to add information about their notifications.</p>"
}
},
"__stringMin10Max512": {
"base": null,
"refs": {
Expand Down
55 changes: 54 additions & 1 deletion models/apis/dlm/2018-01-12/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
"Interval":{"shape":"Interval"},
"IntervalUnit":{"shape":"IntervalUnitValues"},
"Times":{"shape":"TimesList"},
"CronExpression":{"shape":"CronExpression"}
"CronExpression":{"shape":"CronExpression"},
"Scripts":{"shape":"ScriptsList"}
}
},
"CronExpression":{
Expand Down Expand Up @@ -363,6 +364,17 @@
"max":50,
"min":0
},
"ExecuteOperationOnScriptFailure":{"type":"boolean"},
"ExecutionHandler":{
"type":"string",
"max":200,
"min":0,
"pattern":"^([a-zA-Z0-9_\\-.]{3,128}|[a-zA-Z0-9_\\-.:/]{3,200}|[A-Z0-9_]+)$"
},
"ExecutionHandlerServiceValues":{
"type":"string",
"enum":["AWS_SYSTEMS_MANAGER"]
},
"ExecutionRoleArn":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -678,6 +690,34 @@
"min":0,
"pattern":"[0-9A-Za-z _-]+"
},
"Script":{
"type":"structure",
"required":["ExecutionHandler"],
"members":{
"Stages":{"shape":"StagesList"},
"ExecutionHandlerService":{"shape":"ExecutionHandlerServiceValues"},
"ExecutionHandler":{"shape":"ExecutionHandler"},
"ExecuteOperationOnScriptFailure":{"shape":"ExecuteOperationOnScriptFailure"},
"ExecutionTimeout":{"shape":"ScriptExecutionTimeout"},
"MaximumRetryCount":{"shape":"ScriptMaximumRetryCount"}
}
},
"ScriptExecutionTimeout":{
"type":"integer",
"max":120,
"min":10
},
"ScriptMaximumRetryCount":{
"type":"integer",
"max":3,
"min":0
},
"ScriptsList":{
"type":"list",
"member":{"shape":"Script"},
"max":1,
"min":0
},
"SettablePolicyStateValues":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -711,6 +751,19 @@
"max":50,
"min":0
},
"StageValues":{
"type":"string",
"enum":[
"PRE",
"POST"
]
},
"StagesList":{
"type":"list",
"member":{"shape":"StageValues"},
"max":2,
"min":1
},
"StandardTierRetainRuleCount":{
"type":"integer",
"max":1000,
Expand Down

0 comments on commit b87529c

Please sign in to comment.