Skip to content

Commit

Permalink
Release v1.20.13
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Jul 1, 2019
1 parent c26fee5 commit 892e2b1
Show file tree
Hide file tree
Showing 18 changed files with 799 additions and 106 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Release v1.20.13 (2019-07-01)
===

### Service Client Updates
* `service/docdb`: Updates service API and documentation
* This release provides support for cluster delete protection and the ability to stop and start clusters.
* `service/ec2`: Updates service API and documentation
* This release adds support for specifying a maximum hourly price for all On-Demand and Spot instances in both Spot Fleet and EC2 Fleet.
* `aws/endpoints`: Updated Regions and Endpoints metadata.
* `service/organizations`: Updates service API and documentation
* Specifying the tag key and tag value is required for tagging requests.
* `service/rds`: Updates service API and documentation
* This release adds support for RDS DB Cluster major version upgrade

Release v1.20.12 (2019-06-28)
===

Expand Down
8 changes: 8 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.20.12"
const SDKVersion = "1.20.13"
83 changes: 76 additions & 7 deletions models/apis/docdb/2014-10-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@
"resultWrapper":"ApplyPendingMaintenanceActionResult"
},
"errors":[
{"shape":"ResourceNotFoundFault"}
{"shape":"ResourceNotFoundFault"},
{"shape":"InvalidDBClusterStateFault"},
{"shape":"InvalidDBInstanceStateFault"}
]
},
"CopyDBClusterParameterGroup":{
Expand Down Expand Up @@ -690,6 +692,40 @@
{"shape":"KMSKeyNotAccessibleFault"},
{"shape":"StorageQuotaExceededFault"}
]
},
"StartDBCluster":{
"name":"StartDBCluster",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"StartDBClusterMessage"},
"output":{
"shape":"StartDBClusterResult",
"resultWrapper":"StartDBClusterResult"
},
"errors":[
{"shape":"DBClusterNotFoundFault"},
{"shape":"InvalidDBClusterStateFault"},
{"shape":"InvalidDBInstanceStateFault"}
]
},
"StopDBCluster":{
"name":"StopDBCluster",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"StopDBClusterMessage"},
"output":{
"shape":"StopDBClusterResult",
"resultWrapper":"StopDBClusterResult"
},
"errors":[
{"shape":"DBClusterNotFoundFault"},
{"shape":"InvalidDBClusterStateFault"},
{"shape":"InvalidDBInstanceStateFault"}
]
}
},
"shapes":{
Expand Down Expand Up @@ -834,7 +870,9 @@
"type":"structure",
"required":[
"DBClusterIdentifier",
"Engine"
"Engine",
"MasterUsername",
"MasterUserPassword"
],
"members":{
"AvailabilityZones":{"shape":"AvailabilityZones"},
Expand All @@ -853,7 +891,8 @@
"Tags":{"shape":"TagList"},
"StorageEncrypted":{"shape":"BooleanOptional"},
"KmsKeyId":{"shape":"String"},
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
"DeletionProtection":{"shape":"BooleanOptional"}
}
},
"CreateDBClusterParameterGroupMessage":{
Expand Down Expand Up @@ -976,7 +1015,8 @@
"DBClusterArn":{"shape":"String"},
"AssociatedRoles":{"shape":"DBClusterRoles"},
"ClusterCreateTime":{"shape":"TStamp"},
"EnabledCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnabledCloudwatchLogsExports":{"shape":"LogTypeList"},
"DeletionProtection":{"shape":"Boolean"}
},
"wrapper":true
},
Expand Down Expand Up @@ -1974,7 +2014,8 @@
"PreferredBackupWindow":{"shape":"String"},
"PreferredMaintenanceWindow":{"shape":"String"},
"CloudwatchLogsExportConfiguration":{"shape":"CloudwatchLogsExportConfiguration"},
"EngineVersion":{"shape":"String"}
"EngineVersion":{"shape":"String"},
"DeletionProtection":{"shape":"BooleanOptional"}
}
},
"ModifyDBClusterParameterGroupMessage":{
Expand Down Expand Up @@ -2227,7 +2268,8 @@
"VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
"Tags":{"shape":"TagList"},
"KmsKeyId":{"shape":"String"},
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
"DeletionProtection":{"shape":"BooleanOptional"}
}
},
"RestoreDBClusterFromSnapshotResult":{
Expand All @@ -2252,7 +2294,8 @@
"VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
"Tags":{"shape":"TagList"},
"KmsKeyId":{"shape":"String"},
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
"DeletionProtection":{"shape":"BooleanOptional"}
}
},
"RestoreDBClusterToPointInTimeResult":{
Expand Down Expand Up @@ -2294,6 +2337,32 @@
"db-cluster-snapshot"
]
},
"StartDBClusterMessage":{
"type":"structure",
"required":["DBClusterIdentifier"],
"members":{
"DBClusterIdentifier":{"shape":"String"}
}
},
"StartDBClusterResult":{
"type":"structure",
"members":{
"DBCluster":{"shape":"DBCluster"}
}
},
"StopDBClusterMessage":{
"type":"structure",
"required":["DBClusterIdentifier"],
"members":{
"DBClusterIdentifier":{"shape":"String"}
}
},
"StopDBClusterResult":{
"type":"structure",
"members":{
"DBCluster":{"shape":"DBCluster"}
}
},
"StorageQuotaExceededFault":{
"type":"structure",
"members":{
Expand Down
Loading

0 comments on commit 892e2b1

Please sign in to comment.