Skip to content

Commit

Permalink
Updates SDK to v2.551.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Oct 16, 2019
1 parent 8859ded commit a8086d1
Show file tree
Hide file tree
Showing 19 changed files with 2,284 additions and 369 deletions.
22 changes: 22 additions & 0 deletions .changes/2.551.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "IoTAnalytics",
"description": "enable cors to make IoTAnalytics available in default browser build"
},
{
"type": "feature",
"category": "Kafka",
"description": "AWS MSK has added support for adding brokers to a cluster."
},
{
"type": "feature",
"category": "MarketplaceCommerceAnalytics",
"description": "add 2 more values for the supporting sections - age of past due funds + uncollected funds breakdown"
},
{
"type": "feature",
"category": "RoboMaker",
"description": "This release adds support for ROS2 Dashing as a beta feature"
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/feature-IoTAnalytics-7ad23278.json

This file was deleted.

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.550.0-->
<!--LATEST=2.551.0-->
<!--ENTRYINSERT-->

## 2.551.0
* feature: IoTAnalytics: enable cors to make IoTAnalytics available in default browser build
* feature: Kafka: AWS MSK has added support for adding brokers to a cluster.
* feature: MarketplaceCommerceAnalytics: add 2 more values for the supporting sections - age of past due funds + uncollected funds breakdown
* feature: RoboMaker: This release adds support for ROS2 Dashing as a beta feature

## 2.550.0
* feature: KinesisVideoArchivedMedia: Add ON_DISCONTINUITY mode to the GetHLSStreamingSessionURL API

Expand Down
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.550.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.551.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
39 changes: 39 additions & 0 deletions apis/kafka-2018-11-14.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,45 @@
]
}
},
"UpdateBrokerCount": {
"http": {
"method": "PUT",
"requestUri": "/v1/clusters/{clusterArn}/nodes/count",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"ClusterArn": {
"location": "uri",
"locationName": "clusterArn"
},
"CurrentVersion": {
"locationName": "currentVersion"
},
"TargetNumberOfBrokerNodes": {
"locationName": "targetNumberOfBrokerNodes",
"type": "integer"
}
},
"required": [
"ClusterArn",
"CurrentVersion",
"TargetNumberOfBrokerNodes"
]
},
"output": {
"type": "structure",
"members": {
"ClusterArn": {
"locationName": "clusterArn"
},
"ClusterOperationArn": {
"locationName": "clusterOperationArn"
}
}
}
},
"UpdateBrokerStorage": {
"http": {
"method": "PUT",
Expand Down
79 changes: 79 additions & 0 deletions apis/kafka-2018-11-14.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,44 @@
],
"documentation": "\n <p>Removes the tags associated with the keys that are provided in the query.</p>\n "
},
"UpdateBrokerCount": {
"name": "UpdateBrokerCount",
"http": {
"method": "PUT",
"requestUri": "/v1/clusters/{clusterArn}/nodes/count",
"responseCode": 200
},
"input": {
"shape": "UpdateBrokerCountRequest"
},
"output": {
"shape": "UpdateBrokerCountResponse",
"documentation": "\n <p>Successful response.</p>\n "
},
"errors": [
{
"shape": "ServiceUnavailableException",
"documentation": "\n <p>503 response</p>\n "
},
{
"shape": "BadRequestException",
"documentation": "\n <p>The request isn't valid because the input is incorrect. Correct your input and then submit it again.</p>\n "
},
{
"shape": "UnauthorizedException",
"documentation": "\n <p>The request is not authorized. The provided credentials couldn't be validated.</p>\n "
},
{
"shape": "InternalServerErrorException",
"documentation": "\n <p>There was an unexpected internal server error. Retrying your request might resolve the issue.</p>\n "
},
{
"shape": "ForbiddenException",
"documentation": "\n <p>Access forbidden. Check your credentials and then retry your request.</p>\n "
}
],
"documentation": "\n <p>Updates the number of broker nodes in the cluster.</p>\n "
},
"UpdateBrokerStorage": {
"name": "UpdateBrokerStorage",
"http": {
Expand Down Expand Up @@ -1826,6 +1864,47 @@
"ResourceArn"
]
},
"UpdateBrokerCountRequest": {
"type": "structure",
"members": {
"ClusterArn": {
"shape": "__string",
"location": "uri",
"locationName": "clusterArn",
"documentation": "\n <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>\n "
},
"CurrentVersion": {
"shape": "__string",
"locationName": "currentVersion",
"documentation": "\n <p>The version of cluster to update from. A successful operation will then generate a new version.</p>\n "
},
"TargetNumberOfBrokerNodes": {
"shape": "__integerMin1Max15",
"locationName": "targetNumberOfBrokerNodes",
"documentation": "\n <p>The number of broker nodes that you want the cluster to have after this operation completes successfully.</p>\n "
}
},
"required": [
"ClusterArn",
"CurrentVersion",
"TargetNumberOfBrokerNodes"
]
},
"UpdateBrokerCountResponse": {
"type": "structure",
"members": {
"ClusterArn": {
"shape": "__string",
"locationName": "clusterArn",
"documentation": "\n <p>The Amazon Resource Name (ARN) of the cluster.</p>\n "
},
"ClusterOperationArn": {
"shape": "__string",
"locationName": "clusterOperationArn",
"documentation": "\n <p>The Amazon Resource Name (ARN) of the cluster operation.</p>\n "
}
}
},
"UpdateBrokerStorageRequest": {
"type": "structure",
"members": {
Expand Down
4 changes: 3 additions & 1 deletion apis/marketplacecommerceanalytics-2015-07-01.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@
"disbursed_amount_by_customer_geo",
"disbursed_amount_by_age_of_uncollected_funds",
"disbursed_amount_by_age_of_disbursed_funds",
"disbursed_amount_by_age_of_past_due_funds",
"disbursed_amount_by_uncollected_funds_breakdown",
"customer_profile_by_industry",
"customer_profile_by_revenue",
"customer_profile_by_geography",
Expand Down Expand Up @@ -122,7 +124,7 @@
"members": {
"dataSetType": {
"shape": "DataSetType",
"documentation": "<p>The desired data set type.</p> <p> <ul> <li> <strong>customer_subscriber_hourly_monthly_subscriptions</strong> <p>From 2014-07-21 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>customer_subscriber_annual_subscriptions</strong> <p>From 2014-07-21 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_usage_by_instance_type</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_fees</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_free_trial_conversions</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_new_instances</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_new_product_subscribers</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_canceled_product_subscribers</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>monthly_revenue_billing_and_revenue_data</strong> <p>From 2015-02 to 2017-06: Available monthly on the 4th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from two months prior.</p> <p>From 2017-07 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from one month prior.</p> </li> <li> <strong>monthly_revenue_annual_subscriptions</strong> <p>From 2015-02 to 2017-06: Available monthly on the 4th day of the month by 24:00 UTC. Data includes up-front software charges (e.g. annual) from one month prior.</p> <p>From 2017-07 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes up-front software charges (e.g. annual) from one month prior.</p> </li> <li> <strong>monthly_revenue_field_demonstration_usage</strong> <p>From 2018-03-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.</p> </li> <li> <strong>monthly_revenue_flexible_payment_schedule</strong> <p>From 2018-11-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_product</strong> <p>From 2015-01-26 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_product_with_uncollected_funds</strong> <p>From 2012-04-19 to 2015-01-25: Available every 30 days by 24:00 UTC.</p> <p>From 2015-01-26 to present: This data set was split into three data sets: disbursed_amount_by_product, disbursed_amount_by_age_of_uncollected_funds, and disbursed_amount_by_age_of_disbursed_funds.</p> </li> <li> <strong>disbursed_amount_by_instance_hours</strong> <p>From 2012-09-04 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_customer_geo</strong> <p>From 2012-04-19 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_age_of_uncollected_funds</strong> <p>From 2015-01-26 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_age_of_disbursed_funds</strong> <p>From 2015-01-26 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>customer_profile_by_industry</strong> <p>From 2015-10-01 to 2017-06-29: Available daily by 24:00 UTC.</p> <p>From 2017-06-30 to present: This data set is no longer available.</p> </li> <li> <strong>customer_profile_by_revenue</strong> <p>From 2015-10-01 to 2017-06-29: Available daily by 24:00 UTC.</p> <p>From 2017-06-30 to present: This data set is no longer available.</p> </li> <li> <strong>customer_profile_by_geography</strong> <p>From 2015-10-01 to 2017-06-29: Available daily by 24:00 UTC.</p> <p>From 2017-06-30 to present: This data set is no longer available.</p> </li> <li> <strong>sales_compensation_billed_revenue</strong> <p>From 2016-12 to 2017-06: Available monthly on the 4th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from two months prior, and up-front software charges (e.g. annual) from one month prior.</p> <p>From 2017-06 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from one month prior, and up-front software charges (e.g. annual) from one month prior.</p> </li> <li> <strong>us_sales_and_use_tax_records</strong> <p>From 2017-02-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.</p> </li> </ul> </p>"
"documentation": "<p>The desired data set type.</p> <p> <ul> <li> <strong>customer_subscriber_hourly_monthly_subscriptions</strong> <p>From 2014-07-21 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>customer_subscriber_annual_subscriptions</strong> <p>From 2014-07-21 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_usage_by_instance_type</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_fees</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_free_trial_conversions</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_new_instances</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_new_product_subscribers</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>daily_business_canceled_product_subscribers</strong> <p>From 2015-01-26 to present: Available daily by 24:00 UTC.</p> </li> <li> <strong>monthly_revenue_billing_and_revenue_data</strong> <p>From 2015-02 to 2017-06: Available monthly on the 4th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from two months prior.</p> <p>From 2017-07 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from one month prior.</p> </li> <li> <strong>monthly_revenue_annual_subscriptions</strong> <p>From 2015-02 to 2017-06: Available monthly on the 4th day of the month by 24:00 UTC. Data includes up-front software charges (e.g. annual) from one month prior.</p> <p>From 2017-07 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes up-front software charges (e.g. annual) from one month prior.</p> </li> <li> <strong>monthly_revenue_field_demonstration_usage</strong> <p>From 2018-03-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.</p> </li> <li> <strong>monthly_revenue_flexible_payment_schedule</strong> <p>From 2018-11-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_product</strong> <p>From 2015-01-26 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_product_with_uncollected_funds</strong> <p>From 2012-04-19 to 2015-01-25: Available every 30 days by 24:00 UTC.</p> <p>From 2015-01-26 to present: This data set was split into three data sets: disbursed_amount_by_product, disbursed_amount_by_age_of_uncollected_funds, and disbursed_amount_by_age_of_disbursed_funds.</p> </li> <li> <strong>disbursed_amount_by_instance_hours</strong> <p>From 2012-09-04 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_customer_geo</strong> <p>From 2012-04-19 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_age_of_uncollected_funds</strong> <p>From 2015-01-26 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_age_of_disbursed_funds</strong> <p>From 2015-01-26 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_age_of_past_due_funds</strong> <p>From 2018-04-07 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>disbursed_amount_by_uncollected_funds_breakdown</strong> <p>From 2019-10-04 to present: Available every 30 days by 24:00 UTC.</p> </li> <li> <strong>customer_profile_by_industry</strong> <p>From 2015-10-01 to 2017-06-29: Available daily by 24:00 UTC.</p> <p>From 2017-06-30 to present: This data set is no longer available.</p> </li> <li> <strong>customer_profile_by_revenue</strong> <p>From 2015-10-01 to 2017-06-29: Available daily by 24:00 UTC.</p> <p>From 2017-06-30 to present: This data set is no longer available.</p> </li> <li> <strong>customer_profile_by_geography</strong> <p>From 2015-10-01 to 2017-06-29: Available daily by 24:00 UTC.</p> <p>From 2017-06-30 to present: This data set is no longer available.</p> </li> <li> <strong>sales_compensation_billed_revenue</strong> <p>From 2016-12 to 2017-06: Available monthly on the 4th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from two months prior, and up-front software charges (e.g. annual) from one month prior.</p> <p>From 2017-06 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from one month prior, and up-front software charges (e.g. annual) from one month prior.</p> </li> <li> <strong>us_sales_and_use_tax_records</strong> <p>From 2017-02-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.</p> </li> </ul> </p>"
},
"dataSetPublicationDate": {
"shape": "DataSetPublicationDate",
Expand Down
17 changes: 11 additions & 6 deletions apis/robomaker-2018-06-29.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -2426,7 +2426,8 @@
"EnvironmentVariableValue": {
"type": "string",
"max": 1024,
"min": 1
"min": 1,
"pattern": ".*"
},
"FailureBehavior": {
"type": "string",
Expand Down Expand Up @@ -2518,7 +2519,8 @@
"Id": {
"type": "string",
"max": 1224,
"min": 1
"min": 1,
"pattern": ".*"
},
"JobDuration": {
"type": "long"
Expand Down Expand Up @@ -2841,7 +2843,8 @@
"Path": {
"type": "string",
"max": 1024,
"min": 1
"min": 1,
"pattern": ".*"
},
"PercentDone": {
"type": "float",
Expand Down Expand Up @@ -3176,14 +3179,16 @@
"RobotSoftwareSuiteType": {
"type": "string",
"enum": [
"ROS"
"ROS",
"ROS2"
]
},
"RobotSoftwareSuiteVersionType": {
"type": "string",
"enum": [
"Kinetic",
"Melodic"
"Melodic",
"Dashing"
]
},
"RobotStatus": {
Expand Down Expand Up @@ -3531,7 +3536,7 @@
},
"SimulationSoftwareSuiteVersionType": {
"type": "string",
"pattern": "7|9|Kinetic|Melodic"
"pattern": "7|9|Kinetic|Melodic|Dashing"
},
"SimulationTimeMillis": {
"type": "long"
Expand Down
1 change: 1 addition & 0 deletions clients/browser_default.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export import KinesisVideo = require('./kinesisvideo');
export import Translate = require('./translate');
export import ResourceGroups = require('./resourcegroups');
export import SecretsManager = require('./secretsmanager');
export import IoTAnalytics = require('./iotanalytics');
export import ComprehendMedical = require('./comprehendmedical');
export import Personalize = require('./personalize');
export import PersonalizeEvents = require('./personalizeevents');
Expand Down
1 change: 1 addition & 0 deletions clients/browser_default.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ module.exports = {
Translate: require('./translate'),
ResourceGroups: require('./resourcegroups'),
SecretsManager: require('./secretsmanager'),
IoTAnalytics: require('./iotanalytics'),
ComprehendMedical: require('./comprehendmedical'),
Personalize: require('./personalize'),
PersonalizeEvents: require('./personalizeevents'),
Expand Down
Loading

0 comments on commit a8086d1

Please sign in to comment.