Skip to content

Commit

Permalink
Updates SDK to v2.1014.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Oct 25, 2021
1 parent 6f0a94a commit 66a20cb
Show file tree
Hide file tree
Showing 24 changed files with 3,660 additions and 1,821 deletions.
27 changes: 27 additions & 0 deletions .changes/2.1014.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "bugfix",
"category": "endpoint",
"description": "Update fips endpoint heuristics test to use callback"
},
{
"type": "feature",
"category": "AuditManager",
"description": "This release introduces a new feature for Audit Manager: Custom framework sharing. You can now share your custom frameworks with another AWS account, or replicate them into another AWS Region under your own account."
},
{
"type": "feature",
"category": "EC2",
"description": "This release adds support to create a VPN Connection that is not attached to a Gateway at the time of creation. Use this to create VPNs associated with Core Networks, or modify your VPN and attach a gateway using the modify API after creation."
},
{
"type": "feature",
"category": "RDS",
"description": "This release adds support for Amazon RDS Custom, which is a new RDS management type that gives you full access to your database and operating system. For more information, see https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-custom.html"
},
{
"type": "feature",
"category": "Route53Resolver",
"description": "New API for ResolverConfig, which allows autodefined rules for reverse DNS resolution to be disabled for a VPC"
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/bugfix-endpoint-bfb6a1f5.json

This file was deleted.

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.1013.0-->
<!--LATEST=2.1014.0-->
<!--ENTRYINSERT-->

## 2.1014.0
* bugfix: endpoint: Update fips endpoint heuristics test to use callback
* feature: AuditManager: This release introduces a new feature for Audit Manager: Custom framework sharing. You can now share your custom frameworks with another AWS account, or replicate them into another AWS Region under your own account.
* feature: EC2: This release adds support to create a VPN Connection that is not attached to a Gateway at the time of creation. Use this to create VPNs associated with Core Networks, or modify your VPN and attach a gateway using the modify API after creation.
* feature: RDS: This release adds support for Amazon RDS Custom, which is a new RDS management type that gives you full access to your database and operating system. For more information, see https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-custom.html
* feature: Route53Resolver: New API for ResolverConfig, which allows autodefined rules for reverse DNS resolution to be disabled for a VPC

## 2.1013.0
* bugfix: endpoint: Support FIPS in endpoint heuristics
* feature: AuditManager: This release introduces character restrictions for ControlSet names. We updated regex patterns for the following attributes: ControlSet, CreateAssessmentFrameworkControlSet, and UpdateAssessmentFrameworkControlSet.
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.1013.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1014.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
180 changes: 168 additions & 12 deletions apis/auditmanager-2017-07-25.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,33 @@
"members": {}
}
},
"DeleteAssessmentFrameworkShare": {
"http": {
"method": "DELETE",
"requestUri": "/assessmentFrameworkShareRequests/{requestId}"
},
"input": {
"type": "structure",
"required": [
"requestId",
"requestType"
],
"members": {
"requestId": {
"location": "uri",
"locationName": "requestId"
},
"requestType": {
"location": "querystring",
"locationName": "requestType"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"DeleteAssessmentReport": {
"http": {
"method": "DELETE",
Expand Down Expand Up @@ -827,7 +854,7 @@
"type": "structure",
"members": {
"evidence": {
"shape": "S4p"
"shape": "S4s"
}
}
}
Expand Down Expand Up @@ -874,7 +901,7 @@
"evidence": {
"type": "list",
"member": {
"shape": "S4p"
"shape": "S4s"
}
},
"nextToken": {}
Expand Down Expand Up @@ -912,7 +939,7 @@
"type": "structure",
"members": {
"evidenceFolder": {
"shape": "S53"
"shape": "S56"
}
}
}
Expand Down Expand Up @@ -947,7 +974,7 @@
"type": "structure",
"members": {
"evidenceFolders": {
"shape": "S57"
"shape": "S5a"
},
"nextToken": {}
}
Expand Down Expand Up @@ -993,7 +1020,7 @@
"type": "structure",
"members": {
"evidenceFolders": {
"shape": "S57"
"shape": "S5a"
},
"nextToken": {}
}
Expand Down Expand Up @@ -1064,11 +1091,50 @@
"type": "structure",
"members": {
"settings": {
"shape": "S5k"
"shape": "S5n"
}
}
}
},
"ListAssessmentFrameworkShareRequests": {
"http": {
"method": "GET",
"requestUri": "/assessmentFrameworkShareRequests"
},
"input": {
"type": "structure",
"required": [
"requestType"
],
"members": {
"requestType": {
"location": "querystring",
"locationName": "requestType"
},
"nextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"maxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"assessmentFrameworkShareRequests": {
"type": "list",
"member": {
"shape": "S5u"
}
},
"nextToken": {}
}
}
},
"ListAssessmentFrameworks": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -1420,6 +1486,36 @@
}
}
},
"StartAssessmentFrameworkShare": {
"http": {
"requestUri": "/assessmentFrameworks/{frameworkId}/shareRequests"
},
"input": {
"type": "structure",
"required": [
"frameworkId",
"destinationAccount",
"destinationRegion"
],
"members": {
"frameworkId": {
"location": "uri",
"locationName": "frameworkId"
},
"destinationAccount": {},
"destinationRegion": {},
"comment": {}
}
},
"output": {
"type": "structure",
"members": {
"assessmentFrameworkShareRequest": {
"shape": "S5u"
}
}
}
},
"TagResource": {
"http": {
"requestUri": "/tags/{resourceArn}"
Expand Down Expand Up @@ -1632,6 +1728,36 @@
}
}
},
"UpdateAssessmentFrameworkShare": {
"http": {
"method": "PUT",
"requestUri": "/assessmentFrameworkShareRequests/{requestId}"
},
"input": {
"type": "structure",
"required": [
"requestId",
"requestType",
"action"
],
"members": {
"requestId": {
"location": "uri",
"locationName": "requestId"
},
"requestType": {},
"action": {}
}
},
"output": {
"type": "structure",
"members": {
"assessmentFrameworkShareRequest": {
"shape": "S5u"
}
}
}
},
"UpdateAssessmentStatus": {
"http": {
"method": "PUT",
Expand Down Expand Up @@ -1718,7 +1844,7 @@
"type": "structure",
"members": {
"settings": {
"shape": "S5k"
"shape": "S5n"
}
}
}
Expand Down Expand Up @@ -2083,7 +2209,7 @@
"keywordValue": {}
}
},
"S4p": {
"S4s": {
"type": "structure",
"members": {
"dataSource": {},
Expand Down Expand Up @@ -2118,7 +2244,7 @@
"assessmentReportSelection": {}
}
},
"S53": {
"S56": {
"type": "structure",
"members": {
"name": {},
Expand Down Expand Up @@ -2161,13 +2287,13 @@
}
}
},
"S57": {
"S5a": {
"type": "list",
"member": {
"shape": "S53"
"shape": "S56"
}
},
"S5k": {
"S5n": {
"type": "structure",
"members": {
"isAwsOrgEnabled": {
Expand All @@ -2182,6 +2308,36 @@
},
"kmsKey": {}
}
},
"S5u": {
"type": "structure",
"members": {
"id": {},
"frameworkId": {},
"frameworkName": {},
"frameworkDescription": {},
"status": {},
"sourceAccount": {},
"destinationAccount": {},
"destinationRegion": {},
"expirationTime": {
"type": "timestamp"
},
"creationTime": {
"type": "timestamp"
},
"lastUpdated": {
"type": "timestamp"
},
"comment": {},
"standardControlsCount": {
"type": "integer"
},
"customControlsCount": {
"type": "integer"
},
"complianceType": {}
}
}
}
}
Loading

0 comments on commit 66a20cb

Please sign in to comment.