Skip to content

Commit

Permalink
Publish v3.602.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jun 20, 2024
1 parent f9179c6 commit f922dc1
Show file tree
Hide file tree
Showing 32 changed files with 279 additions and 13 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.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)


### Features

* **client-bedrock-runtime:** This release adds document support to Converse and ConverseStream APIs ([7f5bfb9](https://github.com/aws/aws-sdk-js-v3/commit/7f5bfb9e206cd3c529b3a18ac1a51dff54526172))
* **client-codeartifact:** Add support for the Cargo package format. ([6d048ab](https://github.com/aws/aws-sdk-js-v3/commit/6d048ab50a46c56b06cb88685336d30d0f2081ef))
* **client-compute-optimizer:** This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL. ([1cf227f](https://github.com/aws/aws-sdk-js-v3/commit/1cf227f89097b9e4b40be9370e9a9d0588f5e4ac))
* **client-cost-optimization-hub:** This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL. ([52a0e8f](https://github.com/aws/aws-sdk-js-v3/commit/52a0e8f8054525f71fb40da9d0b74137202c9514))
* **client-glue:** Fix Glue paginators for Jobs, JobRuns, Triggers, Blueprints and Workflows. ([8741cd4](https://github.com/aws/aws-sdk-js-v3/commit/8741cd4af5ae92ff4566cbea275a6647559d37c0))
* **client-ivs-realtime:** IVS Real-Time now offers customers the ability to record individual stage participants to S3. ([b3374d1](https://github.com/aws/aws-sdk-js-v3/commit/b3374d147c877fa5011951f89a314d999b8ab0fc))
* **client-sagemaker:** Adds support for model references in Hub service, and adds support for cross-account access of Hubs ([1048205](https://github.com/aws/aws-sdk-js-v3/commit/10482051cc1f13c67f077e7258571fbd0ae8f230))
* **clients:** update client endpoints as of 2024-06-20 ([f9179c6](https://github.com/aws/aws-sdk-js-v3/commit/f9179c6fbbf8babbea3d1fe6218440a39b250c9b))





# [3.601.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.600.0...v3.601.0) (2024-06-19)


Expand Down
8 changes: 8 additions & 0 deletions clients/client-artifact/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.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)

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





# [3.601.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.600.0...v3.601.0) (2024-06-19)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-artifact/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-artifact",
"description": "AWS SDK for JavaScript Artifact Client for Node.js, Browser and React Native",
"version": "3.601.0",
"version": "3.602.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
16 changes: 16 additions & 0 deletions clients/client-artifact/src/commands/GetAccountSettingsCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,22 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsRespo
* <p>Base exception class for all service exceptions from Artifact service.</p>
*
* @public
* @example Invoke GetAccountSettings operation
* ```javascript
* // Get the current account settings.
* const input = {};
* const command = new GetAccountSettingsCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "accountSettings": {
* "notificationSubscriptionStatus": "SUBSCRIBED"
* }
* }
* *\/
* // example id: example-1
* ```
*
*/
export class GetAccountSettingsCommand extends $Command
.classBuilder<
Expand Down
20 changes: 20 additions & 0 deletions clients/client-artifact/src/commands/GetReportCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,26 @@ export interface GetReportCommandOutput extends GetReportResponse, __MetadataBea
* <p>Base exception class for all service exceptions from Artifact service.</p>
*
* @public
* @example Invoke GetReport operation on the latest version of a specific report
* ```javascript
* // The GetReport operation is invoked on a reportId and on a optional version.
* // Callers must provide a termToken, which is provided by the GetTermForReport
* // operation. If callers do not provide a version, it will default to the
* // report's latest version
* const input = {
* "reportId": "report-1hVFddebtfDNJAUf",
* "termToken": "term-token-gPFEGk7CF4wS901w7ppYclt7"
* };
* const command = new GetReportCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "documentPresignedUrl": "<Presigned S3 URL>"
* }
* *\/
* // example id: example-1
* ```
*
*/
export class GetReportCommand extends $Command
.classBuilder<
Expand Down
32 changes: 32 additions & 0 deletions clients/client-artifact/src/commands/GetReportMetadataCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,38 @@ export interface GetReportMetadataCommandOutput extends GetReportMetadataRespons
* <p>Base exception class for all service exceptions from Artifact service.</p>
*
* @public
* @example Invoke GetReportMetadata operation on the latest version of a specific report
* ```javascript
* // The GetReportMetadata operation is invoked on a reportId and on a optional version.
* // If callers do not provide a version, it will default to the report's latest version.
* const input = {
* "reportId": "report-bqhUJF3FrQZsMJpb"
* };
* const command = new GetReportMetadataCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "reportDetails": {
* "version": 1,
* "name": "Name of report",
* "arn": "arn:aws:artifact:us-east-1::report/report-bqhUJF3FrQZsMJpb:1",
* "category": "Artifact Category",
* "companyName": "AWS",
* "createdAt": "2022-05-27T23:17:00.343940Z",
* "description": "Description of report",
* "id": "report-bqhUJF3FrQZsMJpb",
* "periodEnd": "2022-04-01T20:32:04Z",
* "periodStart": "2022-04-01T20:32:04Z",
* "productName": "Product of report",
* "series": "Artifact Series",
* "state": "PUBLISHED",
* "termArn": "arn:aws:artifact:us-east-1::term/term-gLJGG12NyPtYcmtu:1"
* }
* }
* *\/
* // example id: example-1
* ```
*
*/
export class GetReportMetadataCommand extends $Command
.classBuilder<
Expand Down
18 changes: 18 additions & 0 deletions clients/client-artifact/src/commands/GetTermForReportCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,24 @@ export interface GetTermForReportCommandOutput extends GetTermForReportResponse,
* <p>Base exception class for all service exceptions from Artifact service.</p>
*
* @public
* @example Invoke GetTermForReport operation on the latest version of a specific report
* ```javascript
* // The GetTermForReport operation is invoked on a reportId and on a optional version.
* // If callers do not provide a version, it will default to the report's latest version.
* const input = {
* "reportId": "report-bqhUJF3FrQZsMJpb"
* };
* const command = new GetTermForReportCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "documentPresignedUrl": "<Presigned S3 URL>",
* "termToken": "term-token-gPFEGk7CF4wS901w7ppYclt7"
* }
* *\/
* // example id: example-1
* ```
*
*/
export class GetTermForReportCommand extends $Command
.classBuilder<
Expand Down
30 changes: 30 additions & 0 deletions clients/client-artifact/src/commands/ListReportsCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,36 @@ export interface ListReportsCommandOutput extends ListReportsResponse, __Metadat
* <p>Base exception class for all service exceptions from Artifact service.</p>
*
* @public
* @example Invoke ListReports operation
* ```javascript
* // The ListReports operation returns a collection of report resources.
* const input = {};
* const command = new ListReportsCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "nextToken": "gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7",
* "reports": [
* {
* "version": 1,
* "name": "Name of report",
* "arn": "arn:aws:artifact:us-east-1::report/report-bqhUJF3FrQZsMJpb",
* "category": "Artifact Category",
* "companyName": "AWS",
* "description": "Description of report",
* "id": "report-bqhUJF3FrQZsMJpb",
* "periodEnd": "2022-04-01T20:32:04Z",
* "periodStart": "2022-04-01T20:32:04Z",
* "productName": "Product of report",
* "series": "Artifact Series",
* "state": "PUBLISHED"
* }
* ]
* }
* *\/
* // example id: example-1
* ```
*
*/
export class ListReportsCommand extends $Command
.classBuilder<
Expand Down
18 changes: 18 additions & 0 deletions clients/client-artifact/src/commands/PutAccountSettingsCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,24 @@ export interface PutAccountSettingsCommandOutput extends PutAccountSettingsRespo
* <p>Base exception class for all service exceptions from Artifact service.</p>
*
* @public
* @example Invoke PutAccountSettings operation
* ```javascript
* // Set the account settings.
* const input = {
* "notificationSubscriptionStatus": "SUBSCRIBED"
* };
* const command = new PutAccountSettingsCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "accountSettings": {
* "notificationSubscriptionStatus": "SUBSCRIBED"
* }
* }
* *\/
* // example id: example-1
* ```
*
*/
export class PutAccountSettingsCommand extends $Command
.classBuilder<
Expand Down
11 changes: 11 additions & 0 deletions clients/client-bedrock-runtime/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.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)


### Features

* **client-bedrock-runtime:** This release adds document support to Converse and ConverseStream APIs ([7f5bfb9](https://github.com/aws/aws-sdk-js-v3/commit/7f5bfb9e206cd3c529b3a18ac1a51dff54526172))





# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-bedrock-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-bedrock-runtime",
"description": "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native",
"version": "3.600.0",
"version": "3.602.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-codeartifact/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.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)


### Features

* **client-codeartifact:** Add support for the Cargo package format. ([6d048ab](https://github.com/aws/aws-sdk-js-v3/commit/6d048ab50a46c56b06cb88685336d30d0f2081ef))





# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)

**Note:** Version bump only for package @aws-sdk/client-codeartifact
Expand Down
2 changes: 1 addition & 1 deletion clients/client-codeartifact/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-codeartifact",
"description": "AWS SDK for JavaScript Codeartifact Client for Node.js, Browser and React Native",
"version": "3.600.0",
"version": "3.602.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-codeartifact",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-compute-optimizer/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.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)


### Features

* **client-compute-optimizer:** This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL. ([1cf227f](https://github.com/aws/aws-sdk-js-v3/commit/1cf227f89097b9e4b40be9370e9a9d0588f5e4ac))





# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)

**Note:** Version bump only for package @aws-sdk/client-compute-optimizer
Expand Down
2 changes: 1 addition & 1 deletion clients/client-compute-optimizer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-compute-optimizer",
"description": "AWS SDK for JavaScript Compute Optimizer Client for Node.js, Browser and React Native",
"version": "3.600.0",
"version": "3.602.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-compute-optimizer",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-cost-optimization-hub/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.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)


### Features

* **client-cost-optimization-hub:** This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL. ([52a0e8f](https://github.com/aws/aws-sdk-js-v3/commit/52a0e8f8054525f71fb40da9d0b74137202c9514))





# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)

**Note:** Version bump only for package @aws-sdk/client-cost-optimization-hub
Expand Down
2 changes: 1 addition & 1 deletion clients/client-cost-optimization-hub/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-cost-optimization-hub",
"description": "AWS SDK for JavaScript Cost Optimization Hub Client for Node.js, Browser and React Native",
"version": "3.600.0",
"version": "3.602.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-cost-optimization-hub",
Expand Down
8 changes: 8 additions & 0 deletions clients/client-dynamodb/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.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)

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





# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)

**Note:** Version bump only for package @aws-sdk/client-dynamodb
Expand Down
2 changes: 1 addition & 1 deletion clients/client-dynamodb/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-dynamodb",
"description": "AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native",
"version": "3.600.0",
"version": "3.602.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-dynamodb",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-ivs-realtime/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.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)


### Features

* **client-ivs-realtime:** IVS Real-Time now offers customers the ability to record individual stage participants to S3. ([b3374d1](https://github.com/aws/aws-sdk-js-v3/commit/b3374d147c877fa5011951f89a314d999b8ab0fc))





# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)

**Note:** Version bump only for package @aws-sdk/client-ivs-realtime
Expand Down
2 changes: 1 addition & 1 deletion clients/client-ivs-realtime/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-ivs-realtime",
"description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native",
"version": "3.600.0",
"version": "3.602.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-ivs-realtime",
Expand Down
Loading

0 comments on commit f922dc1

Please sign in to comment.