diff --git a/CHANGELOG.md b/CHANGELOG.md index 9934fc03724b..0902662fa4cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.718.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.717.0...v3.718.0) (2024-12-23) + + +### Features + +* **client-ecr-public:** Add support for Dualstack endpoints ([f8dab61](https://github.com/aws/aws-sdk-js-v3/commit/f8dab61ad7ca35fe145a6d12d9ad46d3d736adbd)) +* **client-eks:** This release adds support for DescribeClusterVersions API that provides important information about Kubernetes versions along with end of support dates ([81d94a2](https://github.com/aws/aws-sdk-js-v3/commit/81d94a2b5ced1bdac4ab101b40f5f380f8de384f)) +* **client-glue:** Add IncludeRoot parameters to GetCatalogs API to return root catalog. ([f88136b](https://github.com/aws/aws-sdk-js-v3/commit/f88136b1d88b8dfdf3f52045acacb87d79964173)) +* **clients:** update client endpoints as of 2024-12-23 ([d1d0cae](https://github.com/aws/aws-sdk-js-v3/commit/d1d0cae17e77cda731ec6032e2d46bcd7f61bedc)) + + + + + # [3.717.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.716.0...v3.717.0) (2024-12-20) diff --git a/clients/client-billing/CHANGELOG.md b/clients/client-billing/CHANGELOG.md index 28b4ba687853..4616eb007a16 100644 --- a/clients/client-billing/CHANGELOG.md +++ b/clients/client-billing/CHANGELOG.md @@ -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.718.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.717.0...v3.718.0) (2024-12-23) + +**Note:** Version bump only for package @aws-sdk/client-billing + + + + + # [3.717.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.716.0...v3.717.0) (2024-12-20) diff --git a/clients/client-billing/package.json b/clients/client-billing/package.json index dd65a9e81ce0..a9c427e8123c 100644 --- a/clients/client-billing/package.json +++ b/clients/client-billing/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-billing", "description": "AWS SDK for JavaScript Billing Client for Node.js, Browser and React Native", - "version": "3.717.0", + "version": "3.718.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-billing/src/commands/CreateBillingViewCommand.ts b/clients/client-billing/src/commands/CreateBillingViewCommand.ts index 2d9779fa2f6f..c60e974a426e 100644 --- a/clients/client-billing/src/commands/CreateBillingViewCommand.ts +++ b/clients/client-billing/src/commands/CreateBillingViewCommand.ts @@ -113,6 +113,35 @@ export interface CreateBillingViewCommandOutput extends CreateBillingViewRespons *
Base exception class for all service exceptions from Billing service.
* * @public + * @example Invoke CreateBillingView + * ```javascript + * // + * const input = { + * "name": "Example Custom Billing View", + * "dataFilterExpression": { + * "dimensions": { + * "key": "LINKED_ACCOUNT", + * "values": [ + * "000000000000" + * ] + * } + * }, + * "description": "Custom Billing View Example", + * "sourceViews": [ + * "arn:aws:billing::123456789101:billingview/primary" + * ] + * }; + * const command = new CreateBillingViewCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * "createdAt": 1719792001 + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class CreateBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/DeleteBillingViewCommand.ts b/clients/client-billing/src/commands/DeleteBillingViewCommand.ts index 634561d1c966..1dabf85532c4 100644 --- a/clients/client-billing/src/commands/DeleteBillingViewCommand.ts +++ b/clients/client-billing/src/commands/DeleteBillingViewCommand.ts @@ -76,6 +76,22 @@ export interface DeleteBillingViewCommandOutput extends DeleteBillingViewRespons *Base exception class for all service exceptions from Billing service.
* * @public + * @example Invoke DeleteBillingView + * ```javascript + * // + * const input = { + * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * }; + * const command = new DeleteBillingViewCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class DeleteBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/GetBillingViewCommand.ts b/clients/client-billing/src/commands/GetBillingViewCommand.ts index ae5564216156..e6edc70f5946 100644 --- a/clients/client-billing/src/commands/GetBillingViewCommand.ts +++ b/clients/client-billing/src/commands/GetBillingViewCommand.ts @@ -103,6 +103,36 @@ export interface GetBillingViewCommandOutput extends GetBillingViewResponse, __M *Base exception class for all service exceptions from Billing service.
* * @public + * @example Invoke GetBillingView + * ```javascript + * // + * const input = { + * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * }; + * const command = new GetBillingViewCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "billingView": { + * "name": "Example Custom Billing View", + * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * "billingViewType": "CUSTOM", + * "dataFilterExpression": { + * "dimensions": { + * "key": "LINKED_ACCOUNT", + * "values": [ + * "000000000000" + * ] + * } + * }, + * "description": "Custom Billing View Example -- updated description", + * "ownerAccountId": "123456789101" + * } + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class GetBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/GetResourcePolicyCommand.ts b/clients/client-billing/src/commands/GetResourcePolicyCommand.ts index 87134c039e39..c4bcc34a269a 100644 --- a/clients/client-billing/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-billing/src/commands/GetResourcePolicyCommand.ts @@ -78,6 +78,23 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons *Base exception class for all service exceptions from Billing service.
* * @public + * @example Invoke GetResourcePolicy + * ```javascript + * // + * const input = { + * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * }; + * const command = new GetResourcePolicyCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "policy": "{\"Version\":\"2012-10-17\",\"Id\":\"46f47cb2-a11d-43f3-983d-470b5708a899\",\"Statement\":[{\"Sid\":\"ExampleStatement1\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::000000000000:root\"},\"Action\":[\"ce:GetDimensionValues\",\"ce:GetCostAndUsageWithResources\",\"ce:GetCostAndUsage\",\"ce:GetCostForecast\",\"ce:GetTags\",\"ce:GetUsageForecast\",\"ce:GetCostCategories\",\"billing:GetBillingView\"],\"Resource\":\"arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899\"}]}", + * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class GetResourcePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts b/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts index fd4522cd516c..770f5d3098cc 100644 --- a/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts +++ b/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts @@ -87,6 +87,24 @@ export interface ListSourceViewsForBillingViewCommandOutput *Base exception class for all service exceptions from Billing service.
* * @public + * @example Invoke ListSourceViewsForBillingView + * ```javascript + * // + * const input = { + * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * }; + * const command = new ListSourceViewsForBillingViewCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "sourceViews": [ + * "arn:aws:billing::123456789101:billingview/primary" + * ] + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class ListSourceViewsForBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/ListTagsForResourceCommand.ts b/clients/client-billing/src/commands/ListTagsForResourceCommand.ts index df0ba6b54b0b..c5c42f835ed7 100644 --- a/clients/client-billing/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-billing/src/commands/ListTagsForResourceCommand.ts @@ -82,6 +82,27 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes *Base exception class for all service exceptions from Billing service.
* * @public + * @example Invoke ListTagsForResource + * ```javascript + * // + * const input = { + * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * }; + * const command = new ListTagsForResourceCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "resourceTags": [ + * { + * "key": "ExampleTagKey", + * "value": "ExampleTagValue" + * } + * ] + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/TagResourceCommand.ts b/clients/client-billing/src/commands/TagResourceCommand.ts index 9be190e19a8c..8c00dcbb03cf 100644 --- a/clients/client-billing/src/commands/TagResourceCommand.ts +++ b/clients/client-billing/src/commands/TagResourceCommand.ts @@ -82,6 +82,23 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat *Base exception class for all service exceptions from Billing service.
* * @public + * @example Invoke TagResource + * ```javascript + * // + * const input = { + * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * "resourceTags": [ + * { + * "key": "ExampleTagKey", + * "value": "ExampleTagValue" + * } + * ] + * }; + * const command = new TagResourceCommand(input); + * await client.send(command); + * // example id: example-1 + * ``` + * */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/UntagResourceCommand.ts b/clients/client-billing/src/commands/UntagResourceCommand.ts index c28187e4b86e..9ccf962ea206 100644 --- a/clients/client-billing/src/commands/UntagResourceCommand.ts +++ b/clients/client-billing/src/commands/UntagResourceCommand.ts @@ -79,6 +79,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met *Base exception class for all service exceptions from Billing service.
* * @public + * @example Invoke UntagResource + * ```javascript + * // + * const input = { + * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * "resourceTagKeys": [ + * "ExampleTagKey" + * ] + * }; + * const command = new UntagResourceCommand(input); + * await client.send(command); + * // example id: example-1 + * ``` + * */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/UpdateBillingViewCommand.ts b/clients/client-billing/src/commands/UpdateBillingViewCommand.ts index a2eef70fd027..00388aafa157 100644 --- a/clients/client-billing/src/commands/UpdateBillingViewCommand.ts +++ b/clients/client-billing/src/commands/UpdateBillingViewCommand.ts @@ -108,6 +108,33 @@ export interface UpdateBillingViewCommandOutput extends UpdateBillingViewRespons *Base exception class for all service exceptions from Billing service.
* * @public + * @example Invoke UpdateBillingView + * ```javascript + * // + * const input = { + * "name": "Example Custom Billing View", + * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * "dataFilterExpression": { + * "dimensions": { + * "key": "LINKED_ACCOUNT", + * "values": [ + * "000000000000" + * ] + * } + * }, + * "description": "Custom Billing View Example -- updated description" + * }; + * const command = new UpdateBillingViewCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * "updatedAt": 1719792001 + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class UpdateBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-ecr-public/CHANGELOG.md b/clients/client-ecr-public/CHANGELOG.md index c5b70fa0a860..d9251e373830 100644 --- a/clients/client-ecr-public/CHANGELOG.md +++ b/clients/client-ecr-public/CHANGELOG.md @@ -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.718.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.717.0...v3.718.0) (2024-12-23) + + +### Features + +* **client-ecr-public:** Add support for Dualstack endpoints ([f8dab61](https://github.com/aws/aws-sdk-js-v3/commit/f8dab61ad7ca35fe145a6d12d9ad46d3d736adbd)) + + + + + # [3.716.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.715.0...v3.716.0) (2024-12-19) **Note:** Version bump only for package @aws-sdk/client-ecr-public diff --git a/clients/client-ecr-public/package.json b/clients/client-ecr-public/package.json index 3d0db5be74ae..f0b3afe48a95 100644 --- a/clients/client-ecr-public/package.json +++ b/clients/client-ecr-public/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ecr-public", "description": "AWS SDK for JavaScript Ecr Public Client for Node.js, Browser and React Native", - "version": "3.716.0", + "version": "3.718.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ecr-public", diff --git a/clients/client-ecr/CHANGELOG.md b/clients/client-ecr/CHANGELOG.md index b6e0932daf25..f051644e0600 100644 --- a/clients/client-ecr/CHANGELOG.md +++ b/clients/client-ecr/CHANGELOG.md @@ -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.718.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.717.0...v3.718.0) (2024-12-23) + +**Note:** Version bump only for package @aws-sdk/client-ecr + + + + + # [3.716.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.715.0...v3.716.0) (2024-12-19) **Note:** Version bump only for package @aws-sdk/client-ecr diff --git a/clients/client-ecr/package.json b/clients/client-ecr/package.json index 412b31df6b60..93c029056a95 100644 --- a/clients/client-ecr/package.json +++ b/clients/client-ecr/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ecr", "description": "AWS SDK for JavaScript Ecr Client for Node.js, Browser and React Native", - "version": "3.716.0", + "version": "3.718.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ecr", diff --git a/clients/client-eks/CHANGELOG.md b/clients/client-eks/CHANGELOG.md index 63091d9c476b..d196c9b3392d 100644 --- a/clients/client-eks/CHANGELOG.md +++ b/clients/client-eks/CHANGELOG.md @@ -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.718.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.717.0...v3.718.0) (2024-12-23) + + +### Features + +* **client-eks:** This release adds support for DescribeClusterVersions API that provides important information about Kubernetes versions along with end of support dates ([81d94a2](https://github.com/aws/aws-sdk-js-v3/commit/81d94a2b5ced1bdac4ab101b40f5f380f8de384f)) + + + + + # [3.717.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.716.0...v3.717.0) (2024-12-20) diff --git a/clients/client-eks/package.json b/clients/client-eks/package.json index 8b6799b68ae1..80f78bcf50ab 100644 --- a/clients/client-eks/package.json +++ b/clients/client-eks/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-eks", "description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native", - "version": "3.717.0", + "version": "3.718.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-eks", diff --git a/clients/client-glue/CHANGELOG.md b/clients/client-glue/CHANGELOG.md index a3fea366b18f..1af83eddc226 100644 --- a/clients/client-glue/CHANGELOG.md +++ b/clients/client-glue/CHANGELOG.md @@ -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.718.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.717.0...v3.718.0) (2024-12-23) + + +### Features + +* **client-glue:** Add IncludeRoot parameters to GetCatalogs API to return root catalog. ([f88136b](https://github.com/aws/aws-sdk-js-v3/commit/f88136b1d88b8dfdf3f52045acacb87d79964173)) + + + + + # [3.716.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.715.0...v3.716.0) (2024-12-19) **Note:** Version bump only for package @aws-sdk/client-glue diff --git a/clients/client-glue/package.json b/clients/client-glue/package.json index 374b3dee50ff..3958bc452738 100644 --- a/clients/client-glue/package.json +++ b/clients/client-glue/package.json @@ -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.716.0", + "version": "3.718.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-glue", diff --git a/lerna.json b/lerna.json index dc9f56f6f99a..4c688a2a194b 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.717.0", + "version": "3.718.0", "npmClient": "yarn", "useWorkspaces": true, "command": {