Skip to content

Commit

Permalink
Updates SDK to v2.1603.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Apr 19, 2024
1 parent 3b67b1b commit 9aa637d
Show file tree
Hide file tree
Showing 19 changed files with 895 additions and 132 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1603.0.json
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "Glue",
"description": "Adding RowFilter in the response for GetUnfilteredTableMetadata API"
},
{
"type": "feature",
"category": "InternetMonitor",
"description": "This update introduces the GetInternetEvent and ListInternetEvents APIs, which provide access to internet events displayed on the Amazon CloudWatch Internet Weather Map."
},
{
"type": "feature",
"category": "Personalize",
"description": "This releases auto training capability while creating a solution and automatically syncing latest solution versions when creating/updating a campaign"
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1602.0-->
<!--LATEST=2.1603.0-->
<!--ENTRYINSERT-->

## 2.1603.0
* feature: Glue: Adding RowFilter in the response for GetUnfilteredTableMetadata API
* feature: InternetMonitor: This update introduces the GetInternetEvent and ListInternetEvents APIs, which provide access to internet events displayed on the Amazon CloudWatch Internet Weather Map.
* feature: Personalize: This releases auto training capability while creating a solution and automatically syncing latest solution versions when creating/updating a campaign

## 2.1602.0
* feature: Drs: Outpost ARN added to Source Server and Recovery Instance
* feature: EMRServerless: This release adds the capability to publish detailed Spark engine metrics to Amazon Managed Service for Prometheus (AMP) for enhanced monitoring for Spark jobs.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
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.1602.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1603.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
3 changes: 2 additions & 1 deletion apis/glue-2017-03-31.min.json
Expand Up @@ -3879,7 +3879,8 @@
},
"Permissions": {
"shape": "Seg"
}
},
"RowFilter": {}
}
}
},
Expand Down
4 changes: 4 additions & 0 deletions apis/glue-2017-03-31.normal.json
Expand Up @@ -16060,6 +16060,10 @@
"Permissions": {
"shape": "PermissionList",
"documentation": "<p>The Lake Formation data permissions of the caller on the table. Used to authorize the call when no view context is found.</p>"
},
"RowFilter": {
"shape": "PredicateString",
"documentation": "<p>The filter that applies to the table. For example when applying the filter in SQL, it would go in the <code>WHERE</code> clause and can be evaluated by using an <code>AND</code> operator with any other predicates applied by the user querying the table.</p>"
}
}
},
Expand Down
149 changes: 149 additions & 0 deletions apis/internetmonitor-2021-06-03.min.json
Expand Up @@ -151,6 +151,51 @@
}
}
},
"GetInternetEvent": {
"http": {
"method": "GET",
"requestUri": "/v20210603/InternetEvents/{EventId}",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"EventId"
],
"members": {
"EventId": {
"location": "uri",
"locationName": "EventId"
}
}
},
"output": {
"type": "structure",
"required": [
"EventId",
"EventArn",
"StartedAt",
"ClientLocation",
"EventType",
"EventStatus"
],
"members": {
"EventId": {},
"EventArn": {},
"StartedAt": {
"shape": "Ss"
},
"EndedAt": {
"shape": "Ss"
},
"ClientLocation": {
"shape": "S1b"
},
"EventType": {},
"EventStatus": {}
}
}
},
"GetMonitor": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -406,6 +451,83 @@
}
}
},
"ListInternetEvents": {
"http": {
"method": "GET",
"requestUri": "/v20210603/InternetEvents",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"NextToken": {
"location": "querystring",
"locationName": "NextToken"
},
"MaxResults": {
"location": "querystring",
"locationName": "InternetEventMaxResults",
"type": "integer"
},
"StartTime": {
"shape": "Ss",
"location": "querystring",
"locationName": "StartTime"
},
"EndTime": {
"shape": "Ss",
"location": "querystring",
"locationName": "EndTime"
},
"EventStatus": {
"location": "querystring",
"locationName": "EventStatus"
},
"EventType": {
"location": "querystring",
"locationName": "EventType"
}
}
},
"output": {
"type": "structure",
"required": [
"InternetEvents"
],
"members": {
"InternetEvents": {
"type": "list",
"member": {
"type": "structure",
"required": [
"EventId",
"EventArn",
"StartedAt",
"ClientLocation",
"EventType",
"EventStatus"
],
"members": {
"EventId": {},
"EventArn": {},
"StartedAt": {
"shape": "Ss"
},
"EndedAt": {
"shape": "Ss"
},
"ClientLocation": {
"shape": "S1b"
},
"EventType": {},
"EventStatus": {}
}
}
},
"NextToken": {}
}
}
},
"ListMonitors": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -852,6 +974,33 @@
}
}
}
},
"S1b": {
"type": "structure",
"required": [
"ASName",
"ASNumber",
"Country",
"City",
"Latitude",
"Longitude"
],
"members": {
"ASName": {},
"ASNumber": {
"type": "long"
},
"Country": {},
"Subdivision": {},
"Metro": {},
"City": {},
"Latitude": {
"type": "double"
},
"Longitude": {
"type": "double"
}
}
}
}
}

0 comments on commit 9aa637d

Please sign in to comment.