Skip to content

Commit

Permalink
Updates SDK to v2.486.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jul 1, 2019
1 parent bb82c9e commit a291aaf
Show file tree
Hide file tree
Showing 22 changed files with 499 additions and 115 deletions.
22 changes: 22 additions & 0 deletions .changes/2.486.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "DocDB",
"description": "This release provides support for cluster delete protection and the ability to stop and start clusters."
},
{
"type": "feature",
"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": "feature",
"category": "Organizations",
"description": "Specifying the tag key and tag value is required for tagging requests."
},
{
"type": "feature",
"category": "RDS",
"description": "This release adds support for RDS DB Cluster major version upgrade "
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.485.0-->
<!--LATEST=2.486.0-->
<!--ENTRYINSERT-->

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

## 2.485.0
* feature: AlexaForBusiness: This release allows developers and customers to add SIP addresses and international phone numbers to contacts.
* feature: EC2: You can now launch 8xlarge and 16xlarge instance sizes on the general purpose M5 and memory optimized R5 instance types.
Expand Down
19 changes: 9 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
GIT
remote: git://github.com/lsegal/parsejs.git
revision: 7ba09b48fefc2db2970406938c34fb3d97ad4148
specs:
parsejs (0.0.1)
kpeg
yard

GIT
remote: git://github.com/lsegal/yard-js.git
revision: c76decbd26c9fe82889d72e10ce50c12cdbe51ff
Expand All @@ -18,10 +10,17 @@ GIT
specs:
yard (0.8.7.6)

PATH
remote: doc-src/parsejs
specs:
parsejs (0.0.1)
kpeg
yard

GEM
remote: https://rubygems.org/
specs:
kpeg (1.0.0)
kpeg (1.1.0)
rake (10.1.1)
rdiscount (2.1.7)
redcarpet (3.2.0)
Expand All @@ -42,4 +41,4 @@ DEPENDENCIES
yard-sitemap (~> 1.0)

BUNDLED WITH
1.10.5
1.14.6
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.485.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.486.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
61 changes: 59 additions & 2 deletions apis/docdb-2014-10-31.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@
"type": "structure",
"required": [
"DBClusterIdentifier",
"Engine"
"Engine",
"MasterUsername",
"MasterUserPassword"
],
"members": {
"AvailabilityZones": {
Expand Down Expand Up @@ -147,6 +149,9 @@
"KmsKeyId": {},
"EnableCloudwatchLogsExports": {
"shape": "So"
},
"DeletionProtection": {
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -918,7 +923,10 @@
}
}
},
"EngineVersion": {}
"EngineVersion": {},
"DeletionProtection": {
"type": "boolean"
}
}
},
"output": {
Expand Down Expand Up @@ -1124,6 +1132,9 @@
"KmsKeyId": {},
"EnableCloudwatchLogsExports": {
"shape": "So"
},
"DeletionProtection": {
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -1166,6 +1177,9 @@
"KmsKeyId": {},
"EnableCloudwatchLogsExports": {
"shape": "So"
},
"DeletionProtection": {
"type": "boolean"
}
}
},
Expand All @@ -1178,6 +1192,46 @@
}
}
}
},
"StartDBCluster": {
"input": {
"type": "structure",
"required": [
"DBClusterIdentifier"
],
"members": {
"DBClusterIdentifier": {}
}
},
"output": {
"resultWrapper": "StartDBClusterResult",
"type": "structure",
"members": {
"DBCluster": {
"shape": "Sq"
}
}
}
},
"StopDBCluster": {
"input": {
"type": "structure",
"required": [
"DBClusterIdentifier"
],
"members": {
"DBClusterIdentifier": {}
}
},
"output": {
"resultWrapper": "StopDBClusterResult",
"type": "structure",
"members": {
"DBCluster": {
"shape": "Sq"
}
}
}
}
},
"shapes": {
Expand Down Expand Up @@ -1358,6 +1412,9 @@
},
"EnabledCloudwatchLogsExports": {
"shape": "So"
},
"DeletionProtection": {
"type": "boolean"
}
},
"wrapper": true
Expand Down
Loading

0 comments on commit a291aaf

Please sign in to comment.