Skip to content

Commit

Permalink
Updates SDK to v2.1649.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jun 26, 2024
1 parent d452976 commit 41746a0
Show file tree
Hide file tree
Showing 27 changed files with 2,077 additions and 344 deletions.
27 changes: 27 additions & 0 deletions .changes/2.1649.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "ControlTower",
"description": "Added ListLandingZoneOperations API."
},
{
"type": "feature",
"category": "EKS",
"description": "Added support for disabling unmanaged addons during cluster creation."
},
{
"type": "feature",
"category": "IVSRealTime",
"description": "IVS Real-Time now offers customers the ability to upload public keys for customer vended participant tokens."
},
{
"type": "feature",
"category": "KinesisAnalyticsV2",
"description": "This release adds support for new ListApplicationOperations and DescribeApplicationOperation APIs. It adds a new configuration to enable system rollbacks, adds field ApplicationVersionCreateTimestamp for clarity and improves support for pagination for APIs."
},
{
"type": "feature",
"category": "OpenSearch",
"description": "This release adds support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains, and provides visibility into the current state of the setup or tear-down."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1648.0-->
<!--LATEST=2.1649.0-->
<!--ENTRYINSERT-->

## 2.1649.0
* feature: ControlTower: Added ListLandingZoneOperations API.
* feature: EKS: Added support for disabling unmanaged addons during cluster creation.
* feature: IVSRealTime: IVS Real-Time now offers customers the ability to upload public keys for customer vended participant tokens.
* feature: KinesisAnalyticsV2: This release adds support for new ListApplicationOperations and DescribeApplicationOperation APIs. It adds a new configuration to enable system rollbacks, adds field ApplicationVersionCreateTimestamp for clarity and improves support for pagination for APIs.
* feature: OpenSearch: This release adds support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains, and provides visibility into the current state of the setup or tear-down.

## 2.1648.0
* feature: AutoScaling: Doc only update for Auto Scaling's TargetTrackingMetricDataQuery
* feature: EC2: This release is for the launch of the new u7ib-12tb.224xlarge, R8g, c7gn.metal and mac2-m1ultra.metal instance types
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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.1648.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1649.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
54 changes: 53 additions & 1 deletion apis/controltower-2018-05-10.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
"serviceId": "ControlTower",
"signatureVersion": "v4",
"signingName": "controltower",
"uid": "controltower-2018-05-10"
"uid": "controltower-2018-05-10",
"auth": [
"aws.auth#sigv4"
]
},
"operations": {
"CreateLandingZone": {
Expand Down Expand Up @@ -486,6 +489,7 @@
"endTime": {
"shape": "S10"
},
"operationIdentifier": {},
"operationType": {},
"startTime": {
"shape": "S10"
Expand Down Expand Up @@ -721,6 +725,54 @@
}
}
},
"ListLandingZoneOperations": {
"http": {
"requestUri": "/list-landingzone-operations",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"filter": {
"type": "structure",
"members": {
"statuses": {
"type": "list",
"member": {}
},
"types": {
"type": "list",
"member": {}
}
}
},
"maxResults": {
"type": "integer"
},
"nextToken": {}
}
},
"output": {
"type": "structure",
"required": [
"landingZoneOperations"
],
"members": {
"landingZoneOperations": {
"type": "list",
"member": {
"type": "structure",
"members": {
"operationIdentifier": {},
"operationType": {},
"status": {}
}
}
},
"nextToken": {}
}
}
},
"ListLandingZones": {
"http": {
"requestUri": "/list-landingzones",
Expand Down
Loading

0 comments on commit 41746a0

Please sign in to comment.