Skip to content

Commit

Permalink
Updates SDK to v2.599.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 7, 2020
1 parent e78864c commit 7d20865
Show file tree
Hide file tree
Showing 18 changed files with 268 additions and 59 deletions.
12 changes: 12 additions & 0 deletions .changes/2.599.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "CodeBuild",
"description": "Add encryption key override to StartBuild API in AWS CodeBuild."
},
{
"type": "feature",
"category": "MigrationHub",
"description": "ListApplicationStates API provides a list of all application migration states"
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.598.0-->
<!--LATEST=2.599.0-->
<!--ENTRYINSERT-->

## 2.599.0
* feature: CodeBuild: Add encryption key override to StartBuild API in AWS CodeBuild.
* feature: MigrationHub: ListApplicationStates API provides a list of all application migration states

## 2.598.0
* feature: Comprehend: Amazon Comprehend now supports Multilabel document classification
* feature: EC2: This release supports service providers configuring a private DNS name for services other than AWS services and services available in the AWS marketplace. This feature allows consumers to access the service using an existing DNS name without making changes to their applications.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version.
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.598.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.599.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
34 changes: 34 additions & 0 deletions apis/AWSMigrationHub-2017-05-31.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,40 @@
"members": {}
}
},
"ListApplicationStates": {
"input": {
"type": "structure",
"members": {
"ApplicationIds": {
"type": "list",
"member": {}
},
"NextToken": {},
"MaxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"ApplicationStateList": {
"type": "list",
"member": {
"type": "structure",
"members": {
"ApplicationId": {},
"ApplicationStatus": {},
"LastUpdatedTime": {
"type": "timestamp"
}
}
}
},
"NextToken": {}
}
}
},
"ListCreatedArtifacts": {
"input": {
"type": "structure",
Expand Down
95 changes: 95 additions & 0 deletions apis/AWSMigrationHub-2017-05-31.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,37 @@
],
"documentation": "<p>Registers a new migration task which represents a server, database, etc., being migrated to AWS by a migration tool.</p> <p>This API is a prerequisite to calling the <code>NotifyMigrationTaskState</code> API as the migration tool must first register the migration task with Migration Hub.</p>"
},
"ListApplicationStates": {
"name": "ListApplicationStates",
"http": {
"method": "POST",
"requestUri": "/"
},
"input": {
"shape": "ListApplicationStatesRequest"
},
"output": {
"shape": "ListApplicationStatesResult"
},
"errors": [
{
"shape": "AccessDeniedException"
},
{
"shape": "InternalServerError"
},
{
"shape": "ServiceUnavailableException"
},
{
"shape": "InvalidInputException"
},
{
"shape": "HomeRegionNotSetException"
}
],
"documentation": "<p>Lists all the migration statuses for your applications. If you use the optional <code>ApplicationIds</code> parameter, only the migration statuses for those applications will be returned.</p>"
},
"ListCreatedArtifacts": {
"name": "ListCreatedArtifacts",
"http": {
Expand Down Expand Up @@ -629,6 +660,40 @@
"max": 1600,
"min": 1
},
"ApplicationIds": {
"type": "list",
"member": {
"shape": "ApplicationId"
},
"max": 100,
"min": 1
},
"ApplicationState": {
"type": "structure",
"members": {
"ApplicationId": {
"shape": "ApplicationId",
"documentation": "<p>The configurationId from the Application Discovery Service that uniquely identifies an application.</p>"
},
"ApplicationStatus": {
"shape": "ApplicationStatus",
"documentation": "<p>The current status of an application.</p>"
},
"LastUpdatedTime": {
"shape": "UpdateDateTime",
"documentation": "<p>The timestamp when the application status was last updated.</p>"
}
},
"documentation": "<p>The state of an application discovered through Migration Hub import, the AWS Agentless Discovery Connector, or the AWS Application Discovery Agent.</p>"
},
"ApplicationStateList": {
"type": "list",
"member": {
"shape": "ApplicationState"
},
"max": 1000,
"min": 0
},
"ApplicationStatus": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -950,6 +1015,36 @@
"max": 100,
"min": 0
},
"ListApplicationStatesRequest": {
"type": "structure",
"members": {
"ApplicationIds": {
"shape": "ApplicationIds",
"documentation": "<p>The configurationIds from the Application Discovery Service that uniquely identifies your applications.</p>"
},
"NextToken": {
"shape": "Token",
"documentation": "<p>If a <code>NextToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>NextToken</code>.</p>"
},
"MaxResults": {
"shape": "MaxResults",
"documentation": "<p>Maximum number of results to be returned per page.</p>"
}
}
},
"ListApplicationStatesResult": {
"type": "structure",
"members": {
"ApplicationStateList": {
"shape": "ApplicationStateList",
"documentation": "<p>A list of Applications that exist in Application Discovery Service.</p>"
},
"NextToken": {
"shape": "Token",
"documentation": "<p>If a <code>NextToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>NextToken</code>.</p>"
}
}
},
"ListCreatedArtifactsRequest": {
"type": "structure",
"required": [
Expand Down
6 changes: 6 additions & 0 deletions apis/AWSMigrationHub-2017-05-31.paginators.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"pagination": {
"ListApplicationStates": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "ApplicationStateList"
},
"ListCreatedArtifacts": {
"input_token": "NextToken",
"limit_key": "MaxResults",
Expand Down
1 change: 1 addition & 0 deletions apis/codebuild-2016-10-06.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -828,6 +828,7 @@
"queuedTimeoutInMinutesOverride": {
"type": "integer"
},
"encryptionKeyOverride": {},
"idempotencyToken": {},
"logsConfigOverride": {
"shape": "S29"
Expand Down
Loading

0 comments on commit 7d20865

Please # to comment.