Skip to content

Commit

Permalink
Merge pull request #1310 from aws/release
Browse files Browse the repository at this point in the history
Release v1.8.32
  • Loading branch information
awstools authored May 31, 2017
2 parents a202fff + d43439f commit ef136b8
Show file tree
Hide file tree
Showing 7 changed files with 543 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.8.32 (2017-05-31)
===

### Service Client Updates
* `service/rds`: Updates service API and documentation
* Amazon RDS customers can now easily and quickly stop and start their DB instances.

Release v1.8.31 (2017-05-30)
===

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.8.31"
const SDKVersion = "1.8.32"
71 changes: 71 additions & 0 deletions models/apis/rds/2014-10-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1501,6 +1501,50 @@
{"shape":"AuthorizationNotFoundFault"},
{"shape":"InvalidDBSecurityGroupStateFault"}
]
},
"StartDBInstance":{
"name":"StartDBInstance",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"StartDBInstanceMessage"},
"output":{
"shape":"StartDBInstanceResult",
"resultWrapper":"StartDBInstanceResult"
},
"errors":[
{"shape":"DBInstanceNotFoundFault"},
{"shape":"InvalidDBInstanceStateFault"},
{"shape":"InsufficientDBInstanceCapacityFault"},
{"shape":"DBSubnetGroupNotFoundFault"},
{"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"},
{"shape":"InvalidDBClusterStateFault"},
{"shape":"InvalidSubnet"},
{"shape":"InvalidVPCNetworkStateFault"},
{"shape":"DBClusterNotFoundFault"},
{"shape":"AuthorizationNotFoundFault"},
{"shape":"KMSKeyNotAccessibleFault"}
]
},
"StopDBInstance":{
"name":"StopDBInstance",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"StopDBInstanceMessage"},
"output":{
"shape":"StopDBInstanceResult",
"resultWrapper":"StopDBInstanceResult"
},
"errors":[
{"shape":"DBInstanceNotFoundFault"},
{"shape":"InvalidDBInstanceStateFault"},
{"shape":"DBSnapshotAlreadyExistsFault"},
{"shape":"SnapshotQuotaExceededFault"},
{"shape":"InvalidDBClusterStateFault"}
]
}
},
"shapes":{
Expand Down Expand Up @@ -4941,6 +4985,33 @@
"db-cluster-snapshot"
]
},
"StartDBInstanceMessage":{
"type":"structure",
"required":["DBInstanceIdentifier"],
"members":{
"DBInstanceIdentifier":{"shape":"String"}
}
},
"StartDBInstanceResult":{
"type":"structure",
"members":{
"DBInstance":{"shape":"DBInstance"}
}
},
"StopDBInstanceMessage":{
"type":"structure",
"required":["DBInstanceIdentifier"],
"members":{
"DBInstanceIdentifier":{"shape":"String"},
"DBSnapshotIdentifier":{"shape":"String"}
}
},
"StopDBInstanceResult":{
"type":"structure",
"members":{
"DBInstance":{"shape":"DBInstance"}
}
},
"StorageQuotaExceededFault":{
"type":"structure",
"members":{
Expand Down
37 changes: 32 additions & 5 deletions models/apis/rds/2014-10-31/docs-2.json

Large diffs are not rendered by default.

Loading

0 comments on commit ef136b8

Please sign in to comment.