Skip to content

Commit

Permalink
Updates SDK to v2.1304.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 27, 2023
1 parent 03b47c7 commit 12573e1
Show file tree
Hide file tree
Showing 22 changed files with 900 additions and 533 deletions.
62 changes: 62 additions & 0 deletions .changes/2.1304.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
[
{
"type": "feature",
"category": "AppStream",
"description": "Fixing the issue where Appstream waiters hang for fleet_started and fleet_stopped."
},
{
"type": "feature",
"category": "ApplicationAutoScaling",
"description": "Enabled FIPS endpoints for GovCloud (US) regions in SDK."
},
{
"type": "feature",
"category": "ElasticBeanstalk",
"description": "Enabled FIPS endpoints for GovCloud (US) regions in SDK."
},
{
"type": "feature",
"category": "Fis",
"description": "Enabled FIPS endpoints for GovCloud (US) regions in SDK."
},
{
"type": "feature",
"category": "Glacier",
"description": "Enabled FIPS endpoints for GovCloud (US) regions in SDK."
},
{
"type": "feature",
"category": "Greengrass",
"description": "Enabled FIPS endpoints for GovCloud (US) regions in SDK."
},
{
"type": "feature",
"category": "GreengrassV2",
"description": "Enabled FIPS endpoints for GovCloud (US) in SDK."
},
{
"type": "feature",
"category": "MediaTailor",
"description": "This release introduces the As Run logging type, along with API and documentation updates."
},
{
"type": "feature",
"category": "Outposts",
"description": "Adding support for payment term in GetOrder, CreateOrder responses."
},
{
"type": "feature",
"category": "SageMaker",
"description": "This release supports running SageMaker Training jobs with container images that are in a private Docker registry."
},
{
"type": "feature",
"category": "SageMakerRuntime",
"description": "Amazon SageMaker Runtime which supports InvokeEndpointAsync asynchronously can now invoke endpoints with custom timeout values. Asynchronous invocations support longer processing times."
},
{
"type": "feature",
"category": "ServerlessApplicationRepository",
"description": "Enabled FIPS endpoints for GovCloud (US) regions in SDK."
}
]
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1303.0-->
<!--LATEST=2.1304.0-->
<!--ENTRYINSERT-->

## 2.1304.0
* feature: AppStream: Fixing the issue where Appstream waiters hang for fleet_started and fleet_stopped.
* feature: ApplicationAutoScaling: Enabled FIPS endpoints for GovCloud (US) regions in SDK.
* feature: ElasticBeanstalk: Enabled FIPS endpoints for GovCloud (US) regions in SDK.
* feature: Fis: Enabled FIPS endpoints for GovCloud (US) regions in SDK.
* feature: Glacier: Enabled FIPS endpoints for GovCloud (US) regions in SDK.
* feature: Greengrass: Enabled FIPS endpoints for GovCloud (US) regions in SDK.
* feature: GreengrassV2: Enabled FIPS endpoints for GovCloud (US) in SDK.
* feature: MediaTailor: This release introduces the As Run logging type, along with API and documentation updates.
* feature: Outposts: Adding support for payment term in GetOrder, CreateOrder responses.
* feature: SageMaker: This release supports running SageMaker Training jobs with container images that are in a private Docker registry.
* feature: SageMakerRuntime: Amazon SageMaker Runtime which supports InvokeEndpointAsync asynchronously can now invoke endpoints with custom timeout values. Asynchronous invocations support longer processing times.
* feature: ServerlessApplicationRepository: Enabled FIPS endpoints for GovCloud (US) regions in SDK.

## 2.1303.0
* feature: EventBridge: Minor comments for Redshift Serverless workgroup target support.
* feature: IoTFleetWise: Add model validation to BatchCreateVehicle and BatchUpdateVehicle operations that invalidate requests with an empty vehicles list.
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.1303.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1304.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
12 changes: 6 additions & 6 deletions apis/appstream-2016-12-01.waiters2.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
"state": "success",
"matcher": "pathAll",
"argument": "Fleets[].State",
"expected": "ACTIVE"
"expected": "RUNNING"
},
{
"state": "failure",
"matcher": "pathAny",
"argument": "Fleets[].State",
"expected": "PENDING_DEACTIVATE"
"expected": "STOPPING"
},
{
"state": "failure",
"matcher": "pathAny",
"argument": "Fleets[].State",
"expected": "INACTIVE"
"expected": "STOPPED"
}
]
},
Expand All @@ -35,19 +35,19 @@
"state": "success",
"matcher": "pathAll",
"argument": "Fleets[].State",
"expected": "INACTIVE"
"expected": "STOPPED"
},
{
"state": "failure",
"matcher": "pathAny",
"argument": "Fleets[].State",
"expected": "PENDING_ACTIVATE"
"expected": "STARTING"
},
{
"state": "failure",
"matcher": "pathAny",
"argument": "Fleets[].State",
"expected": "ACTIVE"
"expected": "RUNNING"
}
]
}
Expand Down
Loading

0 comments on commit 12573e1

Please sign in to comment.