Skip to content

Commit

Permalink
Update models for release
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-php-automation committed Jul 1, 2019
1 parent be04607 commit 72b343c
Show file tree
Hide file tree
Showing 21 changed files with 215 additions and 40 deletions.
22 changes: 22 additions & 0 deletions .changes/3.103.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "api-change",
"category": "EC2",
"description": "This release adds support for specifying a maximum hourly price for all On-Demand and Spot instances in both Spot Fleet and EC2 Fleet."
},
{
"type": "api-change",
"category": "Organizations",
"description": "Specifying the tag key and tag value is required for tagging requests."
},
{
"type": "api-change",
"category": "RDS",
"description": "This release adds support for RDS DB Cluster major version upgrade "
},
{
"type": "api-change",
"category": "DocDB",
"description": "This release provides support for cluster delete protection and the ability to stop and start clusters."
}
]
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG

## next release

* `Aws\DocDB` - This release provides support for cluster delete protection and the ability to stop and start clusters.
* `Aws\EC2` - 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\Organizations` - Specifying the tag key and tag value is required for tagging requests.
* `Aws\RDS` - This release adds support for RDS DB Cluster major version upgrade

## 3.103.1 - 2019-06-28

* `Aws\AlexaForBusiness` - This release allows developers and customers to add SIP addresses and international phone numbers to contacts.
Expand Down
4 changes: 4 additions & 0 deletions src/DocDB/DocDBClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,9 @@
* @method \GuzzleHttp\Promise\Promise restoreDBClusterFromSnapshotAsync(array $args = [])
* @method \Aws\Result restoreDBClusterToPointInTime(array $args = [])
* @method \GuzzleHttp\Promise\Promise restoreDBClusterToPointInTimeAsync(array $args = [])
* @method \Aws\Result startDBCluster(array $args = [])
* @method \GuzzleHttp\Promise\Promise startDBClusterAsync(array $args = [])
* @method \Aws\Result stopDBCluster(array $args = [])
* @method \GuzzleHttp\Promise\Promise stopDBClusterAsync(array $args = [])
*/
class DocDBClient extends AwsClient {}
83 changes: 76 additions & 7 deletions src/data/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
2 changes: 1 addition & 1 deletion src/data/docdb/2014-10-31/api-2.json.php

Large diffs are not rendered by default.

Loading

0 comments on commit 72b343c

Please sign in to comment.