Skip to content

Commit

Permalink
RDS API update.
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorrowe committed Oct 1, 2015
1 parent f33cdf2 commit 9675ce2
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 30 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Unreleased Changes
------------------

* Feature - Aws::RDS - Added support for CopyTagsToSnapshot.

See [related GitHub issue #887](https://github.com/aws/aws-sdk-ruby/pull/887).

* Feature - Aws::CloudTrail - This release of CloudTrail includes support for log
file integrity validation, log encryption with AWS KMS–Managed Keys (SSE-KMS),
and trail tagging.
Expand Down
50 changes: 44 additions & 6 deletions aws-sdk-core/apis/rds/2014-10-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2174,6 +2174,15 @@
"senderFault":true
},
"exception":true
},
{
"shape":"DBClusterAlreadyExistsFault",
"error":{
"code":"DBClusterAlreadyExistsFault",
"httpStatusCode":400,
"senderFault":true
},
"exception":true
}
]
},
Expand Down Expand Up @@ -3693,7 +3702,8 @@
"members":{
"SourceDBSnapshotIdentifier":{"shape":"String"},
"TargetDBSnapshotIdentifier":{"shape":"String"},
"Tags":{"shape":"TagList"}
"Tags":{"shape":"TagList"},
"CopyTags":{"shape":"BooleanOptional"}
}
},
"CopyOptionGroupMessage":{
Expand All @@ -3712,6 +3722,12 @@
},
"CreateDBClusterMessage":{
"type":"structure",
"required":[
"DBClusterIdentifier",
"Engine",
"MasterUsername",
"MasterUserPassword"
],
"members":{
"AvailabilityZones":{"shape":"AvailabilityZones"},
"BackupRetentionPeriod":{"shape":"IntegerOptional"},
Expand Down Expand Up @@ -3796,7 +3812,8 @@
"TdeCredentialArn":{"shape":"String"},
"TdeCredentialPassword":{"shape":"String"},
"StorageEncrypted":{"shape":"BooleanOptional"},
"KmsKeyId":{"shape":"String"}
"KmsKeyId":{"shape":"String"},
"CopyTagsToSnapshot":{"shape":"BooleanOptional"}
}
},
"CreateDBInstanceReadReplicaMessage":{
Expand Down Expand Up @@ -4123,7 +4140,8 @@
"DBEngineDescription":{"shape":"String"},
"DBEngineVersionDescription":{"shape":"String"},
"DefaultCharacterSet":{"shape":"CharacterSet"},
"SupportedCharacterSets":{"shape":"SupportedCharacterSetsList"}
"SupportedCharacterSets":{"shape":"SupportedCharacterSetsList"},
"ValidUpgradeTarget":{"shape":"ValidUpgradeTargetList"}
}
},
"DBEngineVersionList":{
Expand Down Expand Up @@ -4592,6 +4610,7 @@
},
"DeleteDBClusterMessage":{
"type":"structure",
"required":["DBClusterIdentifier"],
"members":{
"DBClusterIdentifier":{"shape":"String"},
"SkipFinalSnapshot":{"shape":"Boolean"},
Expand Down Expand Up @@ -5364,6 +5383,7 @@
"Long":{"type":"long"},
"ModifyDBClusterMessage":{
"type":"structure",
"required":["DBClusterIdentifier"],
"members":{
"DBClusterIdentifier":{"shape":"String"},
"NewDBClusterIdentifier":{"shape":"String"},
Expand Down Expand Up @@ -6090,11 +6110,11 @@
"Engine":{"shape":"String"},
"Iops":{"shape":"IntegerOptional"},
"OptionGroupName":{"shape":"String"},
"CopyTagsToSnapshot":{"shape":"BooleanOptional"},
"Tags":{"shape":"TagList"},
"StorageType":{"shape":"String"},
"TdeCredentialArn":{"shape":"String"},
"TdeCredentialPassword":{"shape":"String"},
"CopyTagsToSnapshot":{"shape":"BooleanOptional"}
"TdeCredentialPassword":{"shape":"String"}
}
},
"RevokeDBSecurityGroupIngressMessage":{
Expand Down Expand Up @@ -6176,7 +6196,8 @@
"db-instance",
"db-parameter-group",
"db-security-group",
"db-snapshot"
"db-cluster",
"db-cluster-snapshot"
]
},
"StorageQuotaExceededFault":{
Expand Down Expand Up @@ -6296,6 +6317,23 @@
"TagList":{"shape":"TagList"}
}
},
"UpgradeTarget":{
"type":"structure",
"members":{
"Engine":{"shape":"String"},
"EngineVersion":{"shape":"String"},
"Description":{"shape":"String"},
"AutoUpgrade":{"shape":"Boolean"},
"IsMajorVersionUpgrade":{"shape":"Boolean"}
}
},
"ValidUpgradeTargetList":{
"type":"list",
"member":{
"shape":"UpgradeTarget",
"locationName":"UpgradeTarget"
}
},
"VpcSecurityGroupIdList":{
"type":"list",
"member":{
Expand Down
Loading

0 comments on commit 9675ce2

Please sign in to comment.