Skip to content

Commit

Permalink
Release v1.34.33 (2020-09-28) (#3564)
Browse files Browse the repository at this point in the history
Release v1.34.33 (2020-09-28)
===

### Service Client Updates
* `service/application-autoscaling`: Updates service API and documentation
* `service/rds`: Updates service API and documentation
  * This release adds the InsufficientAvailableIPsInSubnetFault error for RDS Proxy.
  • Loading branch information
aws-sdk-go-automation authored Sep 28, 2020
1 parent e11b98b commit c113a4d
Show file tree
Hide file tree
Showing 10 changed files with 218 additions and 68 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Release v1.34.33 (2020-09-28)
===

### Service Client Updates
* `service/application-autoscaling`: Updates service API and documentation
* `service/rds`: Updates service API and documentation
* This release adds the InsufficientAvailableIPsInSubnetFault error for RDS Proxy.

Release v1.34.32 (2020-09-25)
===

Expand Down
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.34.32"
const SDKVersion = "1.34.33"
1 change: 1 addition & 0 deletions models/apis/application-autoscaling/2016-02-06/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@
"sagemaker:variant:DesiredInstanceCount",
"custom-resource:ResourceType:Property",
"comprehend:document-classifier-endpoint:DesiredInferenceUnits",
"comprehend:entity-recognizer-endpoint:DesiredInferenceUnits",
"lambda:function:ProvisionedConcurrency",
"cassandra:table:ReadCapacityUnits",
"cassandra:table:WriteCapacityUnits"
Expand Down
80 changes: 40 additions & 40 deletions models/apis/application-autoscaling/2016-02-06/docs-2.json

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion models/apis/rds/2014-10-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1815,7 +1815,8 @@
{"shape":"DBProxyTargetAlreadyRegisteredFault"},
{"shape":"InvalidDBInstanceStateFault"},
{"shape":"InvalidDBClusterStateFault"},
{"shape":"InvalidDBProxyStateFault"}
{"shape":"InvalidDBProxyStateFault"},
{"shape":"InsufficientAvailableIPsInSubnetFault"}
]
},
"RemoveFromGlobalCluster":{
Expand Down Expand Up @@ -5521,6 +5522,17 @@
},
"exception":true
},
"InsufficientAvailableIPsInSubnetFault":{
"type":"structure",
"members":{
},
"error":{
"code":"InsufficientAvailableIPsInSubnetFault",
"httpStatusCode":400,
"senderFault":true
},
"exception":true
},
"InsufficientDBClusterCapacityFault":{
"type":"structure",
"members":{
Expand Down
7 changes: 6 additions & 1 deletion models/apis/rds/2014-10-31/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2196,6 +2196,11 @@
"refs": {
}
},
"InsufficientAvailableIPsInSubnetFault": {
"base": "<p>The requested operation can't be performed because there aren't enough available IP addresses in the proxy's subnets. Add more CIDR blocks to the VPC or remove IP address that aren't required from the subnets.</p>",
"refs": {
}
},
"InsufficientDBClusterCapacityFault": {
"base": "<p>The DB cluster doesn't have enough capacity for the current operation.</p>",
"refs": {
Expand Down Expand Up @@ -4371,7 +4376,7 @@
"ExportTask$TaskStartTime": "<p>The time that the snapshot export task started.</p>",
"ExportTask$TaskEndTime": "<p>The time that the snapshot export task completed.</p>",
"PendingMaintenanceAction$AutoAppliedAfterDate": "<p>The date of the maintenance window when the action is applied. The maintenance action is applied to the resource during its first maintenance window after this date.</p>",
"PendingMaintenanceAction$ForcedApplyDate": "<p>The date when the maintenance action is automatically applied. The maintenance action is applied to the resource on this date regardless of the maintenance window for the resource.</p>",
"PendingMaintenanceAction$ForcedApplyDate": "<p>The date when the maintenance action is automatically applied.</p> <p>On this date, the maintenance action is applied to the resource as soon as possible, regardless of the maintenance window for the resource. There might be a delay of one or more days from this date before the maintenance action is applied.</p>",
"PendingMaintenanceAction$CurrentApplyDate": "<p>The effective date when the pending maintenance action is applied to the resource. This date takes into account opt-in requests received from the <code>ApplyPendingMaintenanceAction</code> API, the <code>AutoAppliedAfterDate</code>, and the <code>ForcedApplyDate</code>. This value is blank if an opt-in request has not been received and nothing has been specified as <code>AutoAppliedAfterDate</code> or <code>ForcedApplyDate</code>.</p>",
"ReservedDBInstance$StartTime": "<p>The time the reservation started.</p>",
"RestoreDBClusterToPointInTimeMessage$RestoreToTime": "<p>The date and time to restore the DB cluster to.</p> <p>Valid Values: Value must be a time in Universal Coordinated Time (UTC) format</p> <p>Constraints:</p> <ul> <li> <p>Must be before the latest restorable time for the DB instance</p> </li> <li> <p>Must be specified if <code>UseLatestRestorableTime</code> parameter isn't provided</p> </li> <li> <p>Can't be specified if the <code>UseLatestRestorableTime</code> parameter is enabled</p> </li> <li> <p>Can't be specified if the <code>RestoreType</code> parameter is <code>copy-on-write</code> </p> </li> </ul> <p>Example: <code>2015-03-07T23:45:00Z</code> </p>",
Expand Down
150 changes: 129 additions & 21 deletions service/applicationautoscaling/api.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion service/applicationautoscaling/doc.go

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

14 changes: 11 additions & 3 deletions service/rds/api.go

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

8 changes: 8 additions & 0 deletions service/rds/errors.go

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

0 comments on commit c113a4d

Please sign in to comment.