Skip to content

Commit

Permalink
Updates SDK to v2.1352.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Apr 6, 2023
1 parent d39ba59 commit 8a20e16
Show file tree
Hide file tree
Showing 17 changed files with 1,667 additions and 280 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1352.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "CloudFormation",
"description": "Including UPDATE_COMPLETE as a failed status for DeleteStack waiter."
},
{
"type": "feature",
"category": "GreengrassV2",
"description": "Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2."
},
{
"type": "feature",
"category": "Proton",
"description": "This release adds support for the AWS Proton service sync feature. Service sync enables managing an AWS Proton service (creating and updating instances) and all of it's corresponding service instances from a Git repository."
}
]
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.1351.0-->
<!--LATEST=2.1352.0-->
<!--ENTRYINSERT-->

## 2.1352.0
* feature: CloudFormation: Including UPDATE_COMPLETE as a failed status for DeleteStack waiter.
* feature: GreengrassV2: Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2.
* feature: Proton: This release adds support for the AWS Proton service sync feature. Service sync enables managing an AWS Proton service (creating and updating instances) and all of it's corresponding service instances from a Git repository.

## 2.1351.0
* feature: AppRunner: App Runner adds support for seven new vCPU and memory configurations.
* feature: ConfigService: This release adds resourceType enums for types released in March 2023.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,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.1351.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1352.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
6 changes: 6 additions & 0 deletions apis/cloudformation-2010-05-15.waiters2.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@
"expected": "UPDATE_ROLLBACK_COMPLETE",
"matcher": "pathAny",
"state": "failure"
},
{
"argument": "Stacks[].StackStatus",
"expected": "UPDATE_COMPLETE",
"matcher": "pathAny",
"state": "failure"
}
]
},
Expand Down
9 changes: 5 additions & 4 deletions apis/greengrassv2-2020-11-30.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1881,7 +1881,7 @@
},
"coreDeviceExecutionStatus": {
"shape": "EffectiveDeploymentExecutionStatus",
"documentation": "<p>The status of the deployment job on the Greengrass core device.</p>"
"documentation": "<p>The status of the deployment job on the Greengrass core device.</p> <ul> <li> <p> <code>IN_PROGRESS</code> – The deployment job is running.</p> </li> <li> <p> <code>QUEUED</code> – The deployment job is in the job queue and waiting to run.</p> </li> <li> <p> <code>FAILED</code> – The deployment failed. For more information, see the <code>statusDetails</code> field.</p> </li> <li> <p> <code>COMPLETED</code> – The deployment to an IoT thing was completed successfully.</p> </li> <li> <p> <code>TIMED_OUT</code> – The deployment didn't complete in the allotted time. </p> </li> <li> <p> <code>CANCELED</code> – The deployment was canceled by the user.</p> </li> <li> <p> <code>REJECTED</code> – The deployment was rejected. For more information, see the <code>statusDetails</code> field.</p> </li> <li> <p> <code>SUCCEEDED</code> – The deployment to an IoT thing group was completed successfully.</p> </li> </ul>"
},
"reason": {
"shape": "Reason",
Expand Down Expand Up @@ -1933,7 +1933,8 @@
"COMPLETED",
"TIMED_OUT",
"CANCELED",
"REJECTED"
"REJECTED",
"SUCCEEDED"
]
},
"EffectiveDeploymentStatusDetails": {
Expand Down Expand Up @@ -2241,11 +2242,11 @@
},
"lastReportedTimestamp": {
"shape": "Timestamp",
"documentation": "<p>The last time the Greengrass core device sent a message containing a certain component to the Amazon Web Services Cloud.</p> <p>A component does not need to see a state change for this field to update.</p>"
"documentation": "<p>The last time the Greengrass core device sent a message containing a component's state to the Amazon Web Services Cloud.</p> <p>A component does not need to see a state change for this field to update.</p>"
},
"lastInstallationSource": {
"shape": "NonEmptyString",
"documentation": "<p>The most recent deployment source that brought the component to the Greengrass core device. For a thing group deployment or thing deployment, the source will be the The ID of the deployment. and for local deployments it will be <code>LOCAL</code>.</p>"
"documentation": "<p>The most recent deployment source that brought the component to the Greengrass core device. For a thing group deployment or thing deployment, the source will be the The ID of the deployment. and for local deployments it will be <code>LOCAL</code>.</p> <note> <p>Any deployment will attempt to reinstall currently broken components on the device, which will update the last installation source.</p> </note>"
},
"lifecycleStatusCodes": {
"shape": "InstalledComponentLifecycleStatusCodeList",
Expand Down
Loading

0 comments on commit 8a20e16

Please sign in to comment.