Skip to content

Commit

Permalink
Updates SDK to v2.1222.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 22, 2022
1 parent 9bc8b25 commit 878c4d6
Show file tree
Hide file tree
Showing 23 changed files with 1,026 additions and 506 deletions.
22 changes: 22 additions & 0 deletions .changes/2.1222.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "BackupGateway",
"description": "Changes include: new GetVirtualMachineApi to fetch a single user's VM, improving ListVirtualMachines to fetch filtered VMs as well as all VMs, and improving GetGatewayApi to now also return the gateway's MaintenanceStartTime."
},
{
"type": "feature",
"category": "DeviceFarm",
"description": "This release adds the support for VPC-ENI based connectivity for private devices on AWS Device Farm."
},
{
"type": "feature",
"category": "EC2",
"description": "Documentation updates for Amazon EC2."
},
{
"type": "feature",
"category": "Glue",
"description": "Added support for S3 Event Notifications for Catalog Target Crawlers."
}
]
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.1221.0-->
<!--LATEST=2.1222.0-->
<!--ENTRYINSERT-->

## 2.1222.0
* feature: BackupGateway: Changes include: new GetVirtualMachineApi to fetch a single user's VM, improving ListVirtualMachines to fetch filtered VMs as well as all VMs, and improving GetGatewayApi to now also return the gateway's MaintenanceStartTime.
* feature: DeviceFarm: This release adds the support for VPC-ENI based connectivity for private devices on AWS Device Farm.
* feature: EC2: Documentation updates for Amazon EC2.
* feature: Glue: Added support for S3 Event Notifications for Catalog Target Crawlers.

## 2.1221.0
* feature: Comprehend: Amazon Comprehend now supports synchronous mode for targeted sentiment API operations.
* feature: S3Control: S3 on Outposts launches support for object versioning for Outposts buckets. With S3 Versioning, you can preserve, retrieve, and restore every version of every object stored in your buckets. You can recover from both unintended user actions and application failures.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
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.1221.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1222.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
67 changes: 59 additions & 8 deletions apis/backup-gateway-2021-01-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,27 @@
"LastSeenTime": {
"type": "timestamp"
},
"MaintenanceStartTime": {
"type": "structure",
"required": [
"HourOfDay",
"MinuteOfHour"
],
"members": {
"DayOfMonth": {
"type": "integer"
},
"DayOfWeek": {
"type": "integer"
},
"HourOfDay": {
"type": "integer"
},
"MinuteOfHour": {
"type": "integer"
}
}
},
"NextUpdateAvailabilityTime": {
"type": "timestamp"
},
Expand All @@ -141,6 +162,35 @@
}
}
},
"GetVirtualMachine": {
"input": {
"type": "structure",
"required": [
"ResourceArn"
],
"members": {
"ResourceArn": {}
}
},
"output": {
"type": "structure",
"members": {
"VirtualMachine": {
"type": "structure",
"members": {
"HostName": {},
"HypervisorId": {},
"LastBackupDate": {
"type": "timestamp"
},
"Name": {},
"Path": {},
"ResourceArn": {}
}
}
}
}
},
"ImportHypervisorConfiguration": {
"input": {
"type": "structure",
Expand All @@ -153,13 +203,13 @@
"KmsKeyArn": {},
"Name": {},
"Password": {
"shape": "St"
"shape": "S14"
},
"Tags": {
"shape": "S9"
},
"Username": {
"shape": "Su"
"shape": "S15"
}
}
},
Expand Down Expand Up @@ -256,6 +306,7 @@
"input": {
"type": "structure",
"members": {
"HypervisorArn": {},
"MaxResults": {
"type": "integer"
},
Expand Down Expand Up @@ -348,10 +399,10 @@
"GatewayArn": {},
"Host": {},
"Password": {
"shape": "St"
"shape": "S14"
},
"Username": {
"shape": "Su"
"shape": "S15"
}
}
},
Expand Down Expand Up @@ -428,10 +479,10 @@
"HypervisorArn": {},
"Name": {},
"Password": {
"shape": "St"
"shape": "S14"
},
"Username": {
"shape": "Su"
"shape": "S15"
}
}
},
Expand All @@ -458,11 +509,11 @@
}
}
},
"St": {
"S14": {
"type": "string",
"sensitive": true
},
"Su": {
"S15": {
"type": "string",
"sensitive": true
}
Expand Down
Loading

0 comments on commit 878c4d6

Please sign in to comment.