Skip to content

Commit

Permalink
Updates SDK to v2.817.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 23, 2020
1 parent e04b818 commit a8edd6d
Show file tree
Hide file tree
Showing 19 changed files with 1,104 additions and 202 deletions.
17 changes: 17 additions & 0 deletions .changes/2.817.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "ComputeOptimizer",
"description": "This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for lambda functions."
},
{
"type": "feature",
"category": "DMS",
"description": "AWS DMS launches support for AWS Secrets Manager to manage Oracle ASM Database credentials"
},
{
"type": "feature",
"category": "ResourceGroups",
"description": "Add operation `PutGroupConfiguration`. Support dedicated hosts and add `Pending` in operations `Un/GroupResources`. Add `Resources` in `ListGroupResources` and deprecate `ResourceIdentifiers`."
}
]
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.816.0-->
<!--LATEST=2.817.0-->
<!--ENTRYINSERT-->

## 2.817.0
* feature: ComputeOptimizer: This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for lambda functions.
* feature: DMS: AWS DMS launches support for AWS Secrets Manager to manage Oracle ASM Database credentials
* feature: ResourceGroups: Add operation `PutGroupConfiguration`. Support dedicated hosts and add `Pending` in operations `Un/GroupResources`. Add `Resources` in `ListGroupResources` and deprecate `ResourceIdentifiers`.

## 2.816.0
* feature: Connect: This release adds support for quick connects. For details, see the Release Notes in the Amazon Connect Administrator Guide.
* feature: CostExplorer: This release adds additional metadata that may be applicable to the Rightsizing Recommendations.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,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.816.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.817.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
116 changes: 116 additions & 0 deletions apis/compute-optimizer-2019-11-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,110 @@
}
}
},
"GetLambdaFunctionRecommendations": {
"input": {
"type": "structure",
"members": {
"functionArns": {
"type": "list",
"member": {}
},
"accountIds": {
"shape": "Sp"
},
"filters": {
"type": "list",
"member": {
"type": "structure",
"members": {
"name": {},
"values": {
"shape": "S7"
}
}
}
},
"nextToken": {},
"maxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"nextToken": {},
"lambdaFunctionRecommendations": {
"type": "list",
"member": {
"type": "structure",
"members": {
"functionArn": {},
"functionVersion": {},
"accountId": {},
"currentMemorySize": {
"type": "integer"
},
"numberOfInvocations": {
"type": "long"
},
"utilizationMetrics": {
"type": "list",
"member": {
"type": "structure",
"members": {
"name": {},
"statistic": {},
"value": {
"type": "double"
}
}
}
},
"lookbackPeriodInDays": {
"type": "double"
},
"lastRefreshTimestamp": {
"type": "timestamp"
},
"finding": {},
"findingReasonCodes": {
"type": "list",
"member": {}
},
"memorySizeRecommendationOptions": {
"type": "list",
"member": {
"type": "structure",
"members": {
"rank": {
"type": "integer"
},
"memorySize": {
"type": "integer"
},
"projectedUtilizationMetrics": {
"type": "list",
"member": {
"type": "structure",
"members": {
"name": {},
"statistic": {},
"value": {
"type": "double"
}
}
}
}
}
}
}
}
}
}
}
}
},
"GetRecommendationSummaries": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -496,6 +600,18 @@
"name": {},
"value": {
"type": "double"
},
"reasonCodeSummaries": {
"type": "list",
"member": {
"type": "structure",
"members": {
"name": {},
"value": {
"type": "double"
}
}
}
}
}
}
Expand Down
Loading

0 comments on commit a8edd6d

Please sign in to comment.