Skip to content

Commit

Permalink
Updates SDK to v2.1475.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Oct 17, 2023
1 parent 50ae5bc commit 8895de9
Show file tree
Hide file tree
Showing 29 changed files with 2,384 additions and 169 deletions.
37 changes: 37 additions & 0 deletions .changes/2.1475.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"type": "feature",
"category": "CodePipeline",
"description": "Add retryMode ALL_ACTIONS to RetryStageExecution API that retries a failed stage starting from first action in the stage"
},
{
"type": "feature",
"category": "Discovery",
"description": "This release introduces three new APIs: StartBatchDeleteConfigurationTask, DescribeBatchDeleteConfigurationTask, and BatchDeleteAgents."
},
{
"type": "feature",
"category": "GlobalAccelerator",
"description": "Fixed error where ListCustomRoutingEndpointGroups did not have a paginator"
},
{
"type": "feature",
"category": "GuardDuty",
"description": "Add domainWithSuffix finding field to dnsRequestAction"
},
{
"type": "feature",
"category": "Kafka",
"description": "AWS Managed Streaming for Kafka is launching MSK Replicator, a new feature that enables customers to reliably replicate data across Amazon MSK clusters in same or different AWS regions. You can now use SDK to create, list, describe, delete, update, and manage tags of MSK Replicators."
},
{
"type": "feature",
"category": "Route53RecoveryCluster",
"description": "Adds Owner field to ListRoutingControls API."
},
{
"type": "feature",
"category": "Route53RecoveryControlConfig",
"description": "Adds permissions for GetResourcePolicy to support returning details about AWS Resource Access Manager resource policies for shared resources."
}
]
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1474.0-->
<!--LATEST=2.1475.0-->
<!--ENTRYINSERT-->

## 2.1475.0
* feature: CodePipeline: Add retryMode ALL_ACTIONS to RetryStageExecution API that retries a failed stage starting from first action in the stage
* feature: Discovery: This release introduces three new APIs: StartBatchDeleteConfigurationTask, DescribeBatchDeleteConfigurationTask, and BatchDeleteAgents.
* feature: GlobalAccelerator: Fixed error where ListCustomRoutingEndpointGroups did not have a paginator
* feature: GuardDuty: Add domainWithSuffix finding field to dnsRequestAction
* feature: Kafka: AWS Managed Streaming for Kafka is launching MSK Replicator, a new feature that enables customers to reliably replicate data across Amazon MSK clusters in same or different AWS regions. You can now use SDK to create, list, describe, delete, update, and manage tags of MSK Replicators.
* feature: Route53RecoveryCluster: Adds Owner field to ListRoutingControls API.
* feature: Route53RecoveryControlConfig: Adds permissions for GetResourcePolicy to support returning details about AWS Resource Access Manager resource policies for shared resources.

## 2.1474.0
* feature: CloudFormation: SDK and documentation updates for UpdateReplacePolicy
* feature: Drs: Updated exsiting API to allow AWS Elastic Disaster Recovery support of launching recovery into existing EC2 instances.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,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.1474.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1475.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
7 changes: 4 additions & 3 deletions apis/codepipeline-2015-07-09.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@
"shape": "NotLatestPipelineExecutionException"
}
],
"documentation": "<p>Resumes the pipeline execution by retrying the last failed actions in a stage. You can retry a stage immediately if any of the actions in the stage fail. When you retry, all actions that are still in progress continue working, and failed actions are triggered again.</p>"
"documentation": "<p>You can retry a stage that has failed without having to run a pipeline again from the beginning. You do this by either retrying the failed actions in a stage or by retrying all actions in the stage starting from the first action in the stage. When you retry the failed actions in a stage, all actions that are still in progress continue working, and failed actions are triggered again. When you retry a failed stage from the first action in the stage, the stage cannot have any actions in progress. Before a stage can be retried, it must either have all actions failed or some actions failed and some succeeded.</p>"
},
"StartPipelineExecution": {
"name": "StartPipelineExecution",
Expand Down Expand Up @@ -3783,7 +3783,7 @@
},
"retryMode": {
"shape": "StageRetryMode",
"documentation": "<p>The scope of the retry attempt. Currently, the only supported value is FAILED_ACTIONS.</p>"
"documentation": "<p>The scope of the retry attempt.</p>"
}
},
"documentation": "<p>Represents the input of a <code>RetryStageExecution</code> action.</p>"
Expand Down Expand Up @@ -3992,7 +3992,8 @@
"StageRetryMode": {
"type": "string",
"enum": [
"FAILED_ACTIONS"
"FAILED_ACTIONS",
"ALL_ACTIONS"
]
},
"StageState": {
Expand Down
2 changes: 1 addition & 1 deletion apis/discovery-2015-11-01.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -2114,7 +2114,7 @@
"ImportTaskIdentifier": {
"type": "string",
"max": 200,
"pattern": "\\S*"
"pattern": "^import-task-[a-fA-F0-9]{32}$"
},
"ImportTaskList": {
"type": "list",
Expand Down
48 changes: 24 additions & 24 deletions apis/ecs-2014-11-13.examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@
],
"pendingCount": 0,
"runningCount": 0,
"serviceArn": "arn:aws:ecs:us-east-1:012345678910:service/ecs-simple-service",
"serviceArn": "arn:aws:ecs:us-east-1:012345678910:service/default/ecs-simple-service",
"serviceName": "ecs-simple-service",
"status": "ACTIVE",
"taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6"
"taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/default/hello_world:6"
}
},
"comments": {
Expand Down Expand Up @@ -138,10 +138,10 @@
"pendingCount": 0,
"roleArn": "arn:aws:iam::012345678910:role/ecsServiceRole",
"runningCount": 0,
"serviceArn": "arn:aws:ecs:us-east-1:012345678910:service/ecs-simple-service-elb",
"serviceArn": "arn:aws:ecs:us-east-1:012345678910:service/default/ecs-simple-service-elb",
"serviceName": "ecs-simple-service-elb",
"status": "ACTIVE",
"taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/console-sample-app-static:6"
"taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/default/console-sample-app-static:6"
}
},
"comments": {
Expand Down Expand Up @@ -307,7 +307,7 @@
"containerInstances": [
{
"agentConnected": true,
"containerInstanceArn": "arn:aws:ecs:us-east-1:012345678910:container-instance/f2756532-8f13-4d53-87c9-aed50dc94cd7",
"containerInstanceArn": "arn:aws:ecs:us-east-1:012345678910:container-instance/default/f2756532-8f13-4d53-87c9-aed50dc94cd7",
"ec2InstanceId": "i-807f3249",
"pendingTasksCount": 0,
"registeredResources": [
Expand Down Expand Up @@ -432,10 +432,10 @@
],
"pendingCount": 0,
"runningCount": 0,
"serviceArn": "arn:aws:ecs:us-east-1:012345678910:service/ecs-simple-service",
"serviceArn": "arn:aws:ecs:us-east-1:012345678910:service/default/ecs-simple-service",
"serviceName": "ecs-simple-service",
"status": "ACTIVE",
"taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6"
"taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/default/hello_world:6"
}
]
},
Expand Down Expand Up @@ -540,7 +540,7 @@
"tasks": [
{
"clusterArn": "arn:aws:ecs:<region>:<aws_account_id>:cluster/default",
"containerInstanceArn": "arn:aws:ecs:<region>:<aws_account_id>:container-instance/18f9eda5-27d7-4c19-b133-45adc516e8fb",
"containerInstanceArn": "arn:aws:ecs:<region>:<aws_account_id>:container-instance/default/18f9eda5-27d7-4c19-b133-45adc516e8fb",
"containers": [
{
"name": "ecs-demo",
Expand All @@ -553,7 +553,7 @@
"hostPort": 80
}
],
"taskArn": "arn:aws:ecs:<region>:<aws_account_id>:task/c5cba4eb-5dad-405e-96db-71ef8eefe6a8"
"taskArn": "arn:aws:ecs:<region>:<aws_account_id>:task/default/c5cba4eb-5dad-405e-96db-71ef8eefe6a8"
}
],
"desiredStatus": "RUNNING",
Expand All @@ -566,7 +566,7 @@
]
},
"startedBy": "ecs-svc/9223370608528463088",
"taskArn": "arn:aws:ecs:<region>:<aws_account_id>:task/c5cba4eb-5dad-405e-96db-71ef8eefe6a8",
"taskArn": "arn:aws:ecs:<region>:<aws_account_id>:task/default/c5cba4eb-5dad-405e-96db-71ef8eefe6a8",
"taskDefinitionArn": "arn:aws:ecs:<region>:<aws_account_id>:task-definition/amazon-ecs-sample:1"
}
]
Expand Down Expand Up @@ -598,7 +598,7 @@
{
"expirationDate": "2022-11-02T06:56:32.553Z",
"protectionEnabled": true,
"taskArn": "arn:aws:ecs:us-west-2:012345678910:task/b8b1cf532d0e46ba8d44a40d1de16772"
"taskArn": "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772"
}
]
},
Expand Down Expand Up @@ -710,8 +710,8 @@
},
"output": {
"containerInstanceArns": [
"arn:aws:ecs:us-east-1:<aws_account_id>:container-instance/f6bbb147-5370-4ace-8c73-c7181ded911f",
"arn:aws:ecs:us-east-1:<aws_account_id>:container-instance/ffe3d344-77e2-476c-a4d0-bf560ad50acb"
"arn:aws:ecs:us-east-1:<aws_account_id>:container-instance/default/f6bbb147-5370-4ace-8c73-c7181ded911f",
"arn:aws:ecs:us-east-1:<aws_account_id>:container-instance/default/ffe3d344-77e2-476c-a4d0-bf560ad50acb"
]
},
"comments": {
Expand All @@ -731,7 +731,7 @@
},
"output": {
"serviceArns": [
"arn:aws:ecs:us-east-1:012345678910:service/my-http-service"
"arn:aws:ecs:us-east-1:012345678910:service/default/my-http-service"
]
},
"comments": {
Expand Down Expand Up @@ -866,8 +866,8 @@
},
"output": {
"taskArns": [
"arn:aws:ecs:us-east-1:012345678910:task/0cc43cdb-3bee-4407-9c26-c0e6ea5bee84",
"arn:aws:ecs:us-east-1:012345678910:task/6b809ef6-c67e-4467-921f-ee261c15a0a1"
"arn:aws:ecs:us-east-1:012345678910:task/default/0cc43cdb-3bee-4407-9c26-c0e6ea5bee84",
"arn:aws:ecs:us-east-1:012345678910:task/default/6b809ef6-c67e-4467-921f-ee261c15a0a1"
]
},
"comments": {
Expand All @@ -887,7 +887,7 @@
},
"output": {
"taskArns": [
"arn:aws:ecs:us-east-1:012345678910:task/0cc43cdb-3bee-4407-9c26-c0e6ea5bee84"
"arn:aws:ecs:us-east-1:012345678910:task/default/0cc43cdb-3bee-4407-9c26-c0e6ea5bee84"
]
},
"comments": {
Expand Down Expand Up @@ -1049,13 +1049,13 @@
"output": {
"tasks": [
{
"containerInstanceArn": "arn:aws:ecs:us-east-1:<aws_account_id>:container-instance/ffe3d344-77e2-476c-a4d0-bf560ad50acb",
"containerInstanceArn": "arn:aws:ecs:us-east-1:<aws_account_id>:container-instance/default/ffe3d344-77e2-476c-a4d0-bf560ad50acb",
"containers": [
{
"name": "sleep",
"containerArn": "arn:aws:ecs:us-east-1:<aws_account_id>:container/58591c8e-be29-4ddf-95aa-ee459d4c59fd",
"containerArn": "arn:aws:ecs:us-east-1:<aws_account_id>:container/default/58591c8e-be29-4ddf-95aa-ee459d4c59fd",
"lastStatus": "PENDING",
"taskArn": "arn:aws:ecs:us-east-1:<aws_account_id>:task/a9f21ea7-c9f5-44b1-b8e6-b31f50ed33c0"
"taskArn": "arn:aws:ecs:us-east-1:<aws_account_id>:task/default/a9f21ea7-c9f5-44b1-b8e6-b31f50ed33c0"
}
],
"desiredStatus": "RUNNING",
Expand All @@ -1067,7 +1067,7 @@
}
]
},
"taskArn": "arn:aws:ecs:us-east-1:<aws_account_id>:task/a9f21ea7-c9f5-44b1-b8e6-b31f50ed33c0",
"taskArn": "arn:aws:ecs:us-east-1:<aws_account_id>:task/default/a9f21ea7-c9f5-44b1-b8e6-b31f50ed33c0",
"taskDefinitionArn": "arn:aws:ecs:us-east-1:<aws_account_id>:task-definition/sleep360:1"
}
]
Expand Down Expand Up @@ -1182,7 +1182,7 @@
{
"expirationDate": "2022-11-02T06:56:32.553Z",
"protectionEnabled": true,
"taskArn": "arn:aws:ecs:us-west-2:012345678910:task/b8b1cf532d0e46ba8d44a40d1de16772"
"taskArn": "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772"
}
]
},
Expand Down Expand Up @@ -1212,7 +1212,7 @@
{
"expirationDate": "2022-11-02T06:56:32.553Z",
"protectionEnabled": true,
"taskArn": "arn:aws:ecs:us-west-2:012345678910:task/b8b1cf532d0e46ba8d44a40d1de16772"
"taskArn": "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772"
}
]
},
Expand Down Expand Up @@ -1241,7 +1241,7 @@
"protectedTasks": [
{
"protectionEnabled": false,
"taskArn": "arn:aws:ecs:us-west-2:012345678910:task/b8b1cf532d0e46ba8d44a40d1de16772"
"taskArn": "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772"
}
]
},
Expand Down
Loading

0 comments on commit 8895de9

Please sign in to comment.