Skip to content

Commit

Permalink
Updates SDK to v2.1301.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 24, 2023
1 parent 246ed17 commit 2dae066
Show file tree
Hide file tree
Showing 15 changed files with 546 additions and 285 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1301.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "DataBrew",
"description": "Enabled FIPS us-gov-west-1 endpoints in SDK."
},
{
"type": "feature",
"category": "Route53",
"description": "Amazon Route 53 now supports the Asia Pacific (Melbourne) Region (ap-southeast-4) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region."
},
{
"type": "feature",
"category": "SsmSap",
"description": "This release provides updates to documentation and support for listing operations performed by AWS Systems Manager for SAP."
}
]
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.1300.0-->
<!--LATEST=2.1301.0-->
<!--ENTRYINSERT-->

## 2.1301.0
* feature: DataBrew: Enabled FIPS us-gov-west-1 endpoints in SDK.
* feature: Route53: Amazon Route 53 now supports the Asia Pacific (Melbourne) Region (ap-southeast-4) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.
* feature: SsmSap: This release provides updates to documentation and support for listing operations performed by AWS Systems Manager for SAP.

## 2.1300.0
* feature: Lambda: Release Lambda RuntimeManagementConfig, enabling customers to better manage runtime updates to their Lambda functions. This release adds two new APIs, GetRuntimeManagementConfig and PutRuntimeManagementConfig, as well as support on existing Create/Get/Update function APIs.
* feature: SageMaker: Amazon SageMaker Inference now supports P4de instance types.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ for further details.
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.1300.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1301.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
9 changes: 6 additions & 3 deletions apis/route53-2013-04-01.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -2546,7 +2546,8 @@
"us-gov-east-1",
"us-iso-east-1",
"us-iso-west-1",
"us-isob-east-1"
"us-isob-east-1",
"ap-southeast-4"
],
"max": 64,
"min": 1
Expand Down Expand Up @@ -5824,7 +5825,8 @@
"ap-south-2",
"af-south-1",
"eu-south-1",
"eu-south-2"
"eu-south-2",
"ap-southeast-4"
],
"max": 64,
"min": 1
Expand Down Expand Up @@ -6585,7 +6587,8 @@
"cn-north-1",
"af-south-1",
"eu-south-1",
"eu-south-2"
"eu-south-2",
"ap-southeast-4"
],
"max": 64,
"min": 1
Expand Down
107 changes: 79 additions & 28 deletions apis/ssm-sap-2018-05-10.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,15 @@
"type": "structure",
"members": {
"ApplicationId": {},
"ApplicationArn": {}
"ApplicationArn": {},
"AppRegistryArn": {}
}
},
"output": {
"type": "structure",
"members": {
"Application": {
"shape": "Sc"
"shape": "Sd"
},
"Tags": {
"shape": "Sj"
Expand Down Expand Up @@ -193,30 +194,7 @@
"type": "structure",
"members": {
"Operation": {
"type": "structure",
"members": {
"Id": {},
"Type": {},
"Status": {},
"StatusMessage": {},
"Properties": {
"type": "map",
"key": {},
"value": {}
},
"ResourceType": {},
"ResourceId": {},
"ResourceArn": {},
"StartTime": {
"type": "timestamp"
},
"EndTime": {
"type": "timestamp"
},
"LastUpdatedTime": {
"type": "timestamp"
}
}
"shape": "S1a"
}
}
}
Expand Down Expand Up @@ -353,6 +331,53 @@
}
}
},
"ListOperations": {
"http": {
"requestUri": "/list-operations",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"ApplicationId"
],
"members": {
"ApplicationId": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {},
"Filters": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Name",
"Value",
"Operator"
],
"members": {
"Name": {},
"Value": {},
"Operator": {}
}
}
}
}
},
"output": {
"type": "structure",
"members": {
"Operations": {
"type": "list",
"member": {
"shape": "S1a"
}
},
"NextToken": {}
}
}
},
"ListTagsForResource": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -439,7 +464,7 @@
"type": "structure",
"members": {
"Application": {
"shape": "Sc"
"shape": "Sd"
},
"OperationId": {}
}
Expand Down Expand Up @@ -535,7 +560,7 @@
}
},
"shapes": {
"Sc": {
"Sd": {
"type": "structure",
"members": {
"Id": {},
Expand Down Expand Up @@ -576,6 +601,32 @@
}
}
}
},
"S1a": {
"type": "structure",
"members": {
"Id": {},
"Type": {},
"Status": {},
"StatusMessage": {},
"Properties": {
"type": "map",
"key": {},
"value": {}
},
"ResourceType": {},
"ResourceId": {},
"ResourceArn": {},
"StartTime": {
"type": "timestamp"
},
"EndTime": {
"type": "timestamp"
},
"LastUpdatedTime": {
"type": "timestamp"
}
}
}
}
}

0 comments on commit 2dae066

Please sign in to comment.