Skip to content

Commit

Permalink
Publish v3.480.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 22, 2023
1 parent 186974b commit d0b44b8
Show file tree
Hide file tree
Showing 19 changed files with 132 additions and 9 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.480.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.479.0...v3.480.0) (2023-12-22)


### Features

* **client-bedrock-agent:** Adding Claude 2.1 support to Bedrock Agents ([f550b60](https://github.com/aws/aws-sdk-js-v3/commit/f550b60a33d9022dd03311939611ab4fe9649b66))
* **client-glue:** This release adds additional configurations for Query Session Context on the following APIs: GetUnfilteredTableMetadata, GetUnfilteredPartitionMetadata, GetUnfilteredPartitionsMetadata. ([c1607f6](https://github.com/aws/aws-sdk-js-v3/commit/c1607f62644bd71352fe4d22c6823de4e39851b1))
* **client-lakeformation:** This release adds additional configurations on GetTemporaryGlueTableCredentials for Query Session Context. ([edafaa1](https://github.com/aws/aws-sdk-js-v3/commit/edafaa10e84b1b4b9bc9fb6f115abfd2068b8653))
* **client-mediaconnect:** This release adds the DescribeSourceMetadata API. This API can be used to view the stream information of the flow's source. ([92ebebb](https://github.com/aws/aws-sdk-js-v3/commit/92ebebb66682a17d4772c169cc572c348ec12439))
* **client-networkmonitor:** CloudWatch Network Monitor is a new service within CloudWatch that will help network administrators and operators continuously monitor network performance metrics such as round-trip-time and packet loss between their AWS-hosted applications and their on-premises locations. ([ec0ecf7](https://github.com/aws/aws-sdk-js-v3/commit/ec0ecf75f9adc77ca80e4ad13c3eaa5ee96ac22c))
* **client-s3:** Added additional examples for some operations. ([c313bdd](https://github.com/aws/aws-sdk-js-v3/commit/c313bdd9780672275c80d9cc408bd8a4a7ea3e6b))
* **client-secrets-manager:** Update endpoint rules and examples. ([b9a4897](https://github.com/aws/aws-sdk-js-v3/commit/b9a4897c3fd274794de9c27e91688d325fcbc40b))
* **clients:** update client endpoints as of 2023-12-22 ([186974b](https://github.com/aws/aws-sdk-js-v3/commit/186974b89e958cf1ec4dc817f8e6cbddab03f68b))





# [3.479.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.478.0...v3.479.0) (2023-12-21)


Expand Down
2 changes: 1 addition & 1 deletion benchmark/size/report.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
|@aws-sdk/client-efs|3.477.0|803.5 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/client-eventbridge|3.477.0|1.1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/client-firehose|3.477.0|539.8 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/client-glue|3.477.0|4.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/client-glue|3.478.0|4.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/client-iam|3.477.0|3.3 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/client-kinesis|3.477.0|807.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/client-kms|3.477.0|1.6 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
Expand Down
8 changes: 8 additions & 0 deletions clients/client-appintegrations/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.480.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.479.0...v3.480.0) (2023-12-22)

**Note:** Version bump only for package @aws-sdk/client-appintegrations





# [3.479.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.478.0...v3.479.0) (2023-12-21)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-appintegrations/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-appintegrations",
"description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
"version": "3.479.0",
"version": "3.480.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
* @throws {@link AppIntegrationsServiceException}
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
*
* @example To delete an application
* ```javascript
* // The following deletes an application.
* const input = {
* "Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e"
* };
* const command = new DeleteApplicationCommand(input);
* await client.send(command);
* // example id: delete-an-application
* ```
*
*/
export class DeleteApplicationCommand extends $Command<
DeleteApplicationCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,29 @@ export interface ListApplicationAssociationsCommandOutput
* @throws {@link AppIntegrationsServiceException}
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
*
* @example To list application associations of an application
* ```javascript
* // The following retrives application associations of an application
* const input = {
* "ApplicationId": "98542c53-e8ac-4570-9c85-c6552c8d9c5e"
* };
* const command = new ListApplicationAssociationsCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "ApplicationAssociations": [
* {
* "ApplicationArn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e",
* "ApplicationAssociationArn": "arn:aws:app-integrations:us-west-2:0123456789012:application-association/98542c53-e8ac-4570-9c85-c6552c8d9c5e/461dfb57-320a-454d-9bba-bb560845ff38",
* "ClientId": "connect.amazonaws.com"
* }
* ],
* "NextToken": "abc"
* }
* *\/
* // example id: list-application-associations
* ```
*
*/
export class ListApplicationAssociationsCommand extends $Command<
ListApplicationAssociationsCommandInput,
Expand Down
11 changes: 11 additions & 0 deletions clients/client-glue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.480.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.479.0...v3.480.0) (2023-12-22)


### Features

* **client-glue:** This release adds additional configurations for Query Session Context on the following APIs: GetUnfilteredTableMetadata, GetUnfilteredPartitionMetadata, GetUnfilteredPartitionsMetadata. ([c1607f6](https://github.com/aws/aws-sdk-js-v3/commit/c1607f62644bd71352fe4d22c6823de4e39851b1))





# [3.478.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.477.0...v3.478.0) (2023-12-20)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-glue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-glue",
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
"version": "3.478.0",
"version": "3.480.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-lakeformation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.480.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.479.0...v3.480.0) (2023-12-22)


### Features

* **client-lakeformation:** This release adds additional configurations on GetTemporaryGlueTableCredentials for Query Session Context. ([edafaa1](https://github.com/aws/aws-sdk-js-v3/commit/edafaa10e84b1b4b9bc9fb6f115abfd2068b8653))





# [3.478.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.477.0...v3.478.0) (2023-12-20)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-lakeformation/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-lakeformation",
"description": "AWS SDK for JavaScript Lakeformation Client for Node.js, Browser and React Native",
"version": "3.478.0",
"version": "3.480.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-mediaconnect/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.480.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.479.0...v3.480.0) (2023-12-22)


### Features

* **client-mediaconnect:** This release adds the DescribeSourceMetadata API. This API can be used to view the stream information of the flow's source. ([92ebebb](https://github.com/aws/aws-sdk-js-v3/commit/92ebebb66682a17d4772c169cc572c348ec12439))





# [3.478.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.477.0...v3.478.0) (2023-12-20)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-mediaconnect/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-mediaconnect",
"description": "AWS SDK for JavaScript Mediaconnect Client for Node.js, Browser and React Native",
"version": "3.478.0",
"version": "3.480.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-networkmonitor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.480.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.479.0...v3.480.0) (2023-12-22)


### Features

* **client-networkmonitor:** CloudWatch Network Monitor is a new service within CloudWatch that will help network administrators and operators continuously monitor network performance metrics such as round-trip-time and packet loss between their AWS-hosted applications and their on-premises locations. ([ec0ecf7](https://github.com/aws/aws-sdk-js-v3/commit/ec0ecf75f9adc77ca80e4ad13c3eaa5ee96ac22c))
2 changes: 1 addition & 1 deletion clients/client-networkmonitor/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-networkmonitor",
"description": "AWS SDK for JavaScript Networkmonitor Client for Node.js, Browser and React Native",
"version": "3.0.0",
"version": "3.480.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
8 changes: 8 additions & 0 deletions clients/client-omics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.480.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.479.0...v3.480.0) (2023-12-22)

**Note:** Version bump only for package @aws-sdk/client-omics





# [3.478.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.477.0...v3.478.0) (2023-12-20)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-omics/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-omics",
"description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
"version": "3.478.0",
"version": "3.480.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-secrets-manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.480.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.479.0...v3.480.0) (2023-12-22)


### Features

* **client-secrets-manager:** Update endpoint rules and examples. ([b9a4897](https://github.com/aws/aws-sdk-js-v3/commit/b9a4897c3fd274794de9c27e91688d325fcbc40b))





# [3.478.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.477.0...v3.478.0) (2023-12-20)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-secrets-manager/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-secrets-manager",
"description": "AWS SDK for JavaScript Secrets Manager Client for Node.js, Browser and React Native",
"version": "3.478.0",
"version": "3.480.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.479.0",
"version": "3.480.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand Down

0 comments on commit d0b44b8

Please sign in to comment.