Skip to content

Commit

Permalink
Publish v3.718.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 23, 2024
1 parent d1d0cae commit 498fa6d
Show file tree
Hide file tree
Showing 21 changed files with 258 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
8 changes: 8 additions & 0 deletions clients/client-billing/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.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)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-billing/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
29 changes: 29 additions & 0 deletions clients/client-billing/src/commands/CreateBillingViewCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,35 @@ export interface CreateBillingViewCommandOutput extends CreateBillingViewRespons
* <p>Base exception class for all service exceptions from Billing service.</p>
*
* @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<
Expand Down
16 changes: 16 additions & 0 deletions clients/client-billing/src/commands/DeleteBillingViewCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,22 @@ export interface DeleteBillingViewCommandOutput extends DeleteBillingViewRespons
* <p>Base exception class for all service exceptions from Billing service.</p>
*
* @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<
Expand Down
30 changes: 30 additions & 0 deletions clients/client-billing/src/commands/GetBillingViewCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,36 @@ export interface GetBillingViewCommandOutput extends GetBillingViewResponse, __M
* <p>Base exception class for all service exceptions from Billing service.</p>
*
* @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<
Expand Down
17 changes: 17 additions & 0 deletions clients/client-billing/src/commands/GetResourcePolicyCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,23 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
* <p>Base exception class for all service exceptions from Billing service.</p>
*
* @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<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,24 @@ export interface ListSourceViewsForBillingViewCommandOutput
* <p>Base exception class for all service exceptions from Billing service.</p>
*
* @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<
Expand Down
21 changes: 21 additions & 0 deletions clients/client-billing/src/commands/ListTagsForResourceCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,27 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
* <p>Base exception class for all service exceptions from Billing service.</p>
*
* @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<
Expand Down
17 changes: 17 additions & 0 deletions clients/client-billing/src/commands/TagResourceCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,23 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
* <p>Base exception class for all service exceptions from Billing service.</p>
*
* @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<
Expand Down
14 changes: 14 additions & 0 deletions clients/client-billing/src/commands/UntagResourceCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
* <p>Base exception class for all service exceptions from Billing service.</p>
*
* @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<
Expand Down
27 changes: 27 additions & 0 deletions clients/client-billing/src/commands/UpdateBillingViewCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,33 @@ export interface UpdateBillingViewCommandOutput extends UpdateBillingViewRespons
* <p>Base exception class for all service exceptions from Billing service.</p>
*
* @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<
Expand Down
11 changes: 11 additions & 0 deletions clients/client-ecr-public/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.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
Expand Down
2 changes: 1 addition & 1 deletion clients/client-ecr-public/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
8 changes: 8 additions & 0 deletions clients/client-ecr/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.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
Expand Down
2 changes: 1 addition & 1 deletion clients/client-ecr/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-eks/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.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)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-eks/package.json
Original file line number Diff line number Diff line change
@@ -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",
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.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
Expand Down
Loading

0 comments on commit 498fa6d

Please sign in to comment.