Skip to content

Commit

Permalink
Updates SDK to v2.387.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 11, 2019
1 parent a515a3c commit b730d5d
Show file tree
Hide file tree
Showing 19 changed files with 3,079 additions and 2,737 deletions.
17 changes: 17 additions & 0 deletions .changes/2.387.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "RDSDataService",
"description": "Documentation updates for RDS Data API."
},
{
"type": "feature",
"category": "client side monitoring",
"description": "Add a new environmental variable AWS_ENDPOINT_DISCOVERY_ENABLED to work along with AWS_ENABLE_ENDPOINT_DISCOVERY"
},
{
"type": "feature",
"category": "client side monitoring",
"description": "CSM now can be enabled globally only from environment without code change"
}
]

This file was deleted.

This file was deleted.

7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.386.0-->
<!--LATEST=2.387.0-->
<!--ENTRYINSERT-->

## 2.387.0
* feature: RDSDataService: Documentation updates for RDS Data API.
* feature: client side monitoring: Add a new environmental variable AWS_ENDPOINT_DISCOVERY_ENABLED to work along with AWS_ENABLE_ENDPOINT_DISCOVERY
* feature: client side monitoring: CSM now can be enabled globally only from environment without code change

## 2.386.0
* feature: EC2: EC2 Spot: a) CreateFleet support for Single AvailabilityZone requests and b) support for paginated DescribeSpotInstanceRequests.
* feature: Iot: This release adds tagging support for rules of AWS IoT Rules Engine. Tags enable you to categorize your rules in different ways, for example, by purpose, owner, or environment. For more information about tagging, see AWS Tagging Strategies (https://aws.amazon.com/answers/account-management/aws-tagging-strategies/). For technical documentation, look for the tagging operations in the AWS IoT Core API reference or User Guide (https://docs.aws.amazon.com/iot/latest/developerguide/tagging-iot.html).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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.386.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.387.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
1 change: 0 additions & 1 deletion apis/elasticmapreduce-2009-03-31.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"serviceId": "EMR",
"signatureVersion": "v4",
"targetPrefix": "ElasticMapReduce",
"timestampFormat": "unixTimestamp",
"uid": "elasticmapreduce-2009-03-31"
},
"operations": {
Expand Down
5,347 changes: 2,820 additions & 2,527 deletions apis/elasticmapreduce-2009-03-31.normal.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions apis/rds-data-2018-08-01.examples.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "1.0",
"examples": { }
}
"version": "1.0",
"examples": { }
}
12 changes: 6 additions & 6 deletions apis/rds-data-2018-08-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"values": {
"type": "list",
"member": {
"shape": "Sb"
"shape": "Sd"
}
}
}
Expand Down Expand Up @@ -121,11 +121,11 @@
}
},
"shapes": {
"Sb": {
"Sd": {
"type": "structure",
"members": {
"arrayValues": {
"shape": "Sc"
"shape": "Se"
},
"bigIntValue": {
"type": "long"
Expand Down Expand Up @@ -153,16 +153,16 @@
"type": "structure",
"members": {
"attributes": {
"shape": "Sc"
"shape": "Se"
}
}
}
}
},
"Sc": {
"Se": {
"type": "list",
"member": {
"shape": "Sb"
"shape": "Sd"
}
}
}
Expand Down
148 changes: 80 additions & 68 deletions apis/rds-data-2018-08-01.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,20 +48,6 @@
"type": "boolean",
"box": true
},
"SqlStatementResult": {
"type": "structure",
"members": {
"numberOfRecordsUpdated": {
"shape": "Long",
"documentation": "Number of rows updated."
},
"resultFrame": {
"shape": "ResultFrame",
"documentation": "ResultFrame returned by executing the sql statement"
}
},
"documentation": "SQL statement execution result"
},
"Value": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -122,6 +108,72 @@
},
"documentation": "List of Column metadata"
},
"ResultFrame": {
"type": "structure",
"members": {
"records": {
"shape": "Records",
"documentation": "ResultSet Metadata."
},
"resultSetMetadata": {
"shape": "ResultSetMetadata",
"documentation": "ResultSet Metadata."
}
},
"documentation": "Result Frame"
},
"Long": {
"type": "long",
"box": true
},
"Row": {
"type": "list",
"member": {
"shape": "Value"
},
"documentation": "List of column values"
},
"String": {
"type": "string"
},
"ArrayValues": {
"type": "list",
"member": {
"shape": "Value"
},
"documentation": "Array value"
},
"Float": {
"type": "float",
"box": true
},
"ExecuteSqlResponse": {
"type": "structure",
"required": [
"sqlStatementResults"
],
"members": {
"sqlStatementResults": {
"shape": "SqlStatementResults",
"documentation": "Results returned by executing the sql statement(s)"
}
},
"documentation": "Execute SQL response"
},
"SqlStatementResult": {
"type": "structure",
"members": {
"numberOfRecordsUpdated": {
"shape": "Long",
"documentation": "Number of rows updated."
},
"resultFrame": {
"shape": "ResultFrame",
"documentation": "ResultFrame returned by executing the sql statement"
}
},
"documentation": "SQL statement execution result"
},
"ResultSetMetadata": {
"type": "structure",
"members": {
Expand All @@ -143,20 +195,6 @@
},
"documentation": "List of records"
},
"ResultFrame": {
"type": "structure",
"members": {
"records": {
"shape": "Records",
"documentation": "ResultSet Metadata."
},
"resultSetMetadata": {
"shape": "ResultSetMetadata",
"documentation": "ResultSet Metadata."
}
},
"documentation": "Result Frame"
},
"ExecuteSqlRequest": {
"type": "structure",
"required": [
Expand All @@ -166,31 +204,31 @@
],
"members": {
"awsSecretStoreArn": {
"shape": "String",
"shape": "Arn",
"documentation": "ARN of the db credentials in AWS Secret Store or the friendly secret name"
},
"database": {
"shape": "String",
"shape": "DbName",
"documentation": "Target DB name"
},
"dbClusterOrInstanceArn": {
"shape": "String",
"shape": "Arn",
"documentation": "ARN of the target db cluster or instance"
},
"schema": {
"shape": "String",
"shape": "DbName",
"documentation": "Target Schema name"
},
"sqlStatements": {
"shape": "String",
"shape": "SqlStatement",
"documentation": "SQL statement(s) to be executed. Statements can be chained by using semicolons"
}
},
"documentation": "Execute SQL Request"
},
"Long": {
"type": "long",
"box": true
"Arn": {
"type": "string",
"max": 1024
},
"StructValue": {
"type": "structure",
Expand All @@ -205,22 +243,9 @@
"Blob": {
"type": "blob"
},
"Row": {
"type": "list",
"member": {
"shape": "Value"
},
"documentation": "List of column values"
},
"String": {
"type": "string"
},
"ArrayValues": {
"type": "list",
"member": {
"shape": "Value"
},
"documentation": "Array value"
"SqlStatement": {
"type": "string",
"max": 65536
},
"Double": {
"type": "double",
Expand Down Expand Up @@ -292,9 +317,9 @@
"type": "integer",
"box": true
},
"Float": {
"type": "float",
"box": true
"DbName": {
"type": "string",
"max": 64
},
"Record": {
"type": "structure",
Expand All @@ -305,19 +330,6 @@
}
},
"documentation": "Row or Record"
},
"ExecuteSqlResponse": {
"type": "structure",
"required": [
"sqlStatementResults"
],
"members": {
"sqlStatementResults": {
"shape": "SqlStatementResults",
"documentation": "Results returned by executing the sql statement(s)"
}
},
"documentation": "Execute SQL response"
}
}
}
4 changes: 2 additions & 2 deletions apis/rds-data-2018-08-01.paginators.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"pagination": { }
}
"pagination": { }
}
Loading

0 comments on commit b730d5d

Please sign in to comment.