Skip to content

Commit

Permalink
Publish v3.690.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Nov 12, 2024
1 parent 0965c10 commit ab5b4b4
Show file tree
Hide file tree
Showing 23 changed files with 321 additions and 8 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.690.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.689.0...v3.690.0) (2024-11-12)


### Features

* **client-codebuild:** AWS CodeBuild now supports non-containerized Linux and Windows builds on Reserved Capacity. ([1661962](https://github.com/aws/aws-sdk-js-v3/commit/16619628b3ad1baaaf085ccc02c1744cb231131e))
* **client-controltower:** Added ResetEnabledControl API. ([580cabc](https://github.com/aws/aws-sdk-js-v3/commit/580cabcd598a7e467412a1d333f347930e87fbde))
* **client-fis:** This release adds support for generating experiment reports with the experiment report configuration ([eeb1195](https://github.com/aws/aws-sdk-js-v3/commit/eeb11951e3d8cb93b7bef214d3bf3a856886efce))
* **client-gamelift:** Amazon GameLift releases container fleets support for general availability. Deploy Linux-based containerized game server software for hosting on Amazon GameLift. ([eb000c7](https://github.com/aws/aws-sdk-js-v3/commit/eb000c75d02ef2627e25e4ca5e783614c33cff7a))
* **client-payment-cryptography:** Updated ListAliases API with KeyArn filter. ([34a0ede](https://github.com/aws/aws-sdk-js-v3/commit/34a0edee6e0bdf0e3f0ab87d1508a1c1731cec05))
* **clients:** update client endpoints as of 2024-11-12 ([0965c10](https://github.com/aws/aws-sdk-js-v3/commit/0965c1012b0d81383ee92af8684c361821267d3b))





# [3.689.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.688.0...v3.689.0) (2024-11-11)


Expand Down
8 changes: 8 additions & 0 deletions clients/client-cloudfront/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.690.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.689.0...v3.690.0) (2024-11-12)

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





# [3.689.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.688.0...v3.689.0) (2024-11-11)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-cloudfront/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-cloudfront",
"description": "AWS SDK for JavaScript Cloudfront Client for Node.js, Browser and React Native",
"version": "3.689.0",
"version": "3.690.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-cloudfront",
Expand Down
52 changes: 52 additions & 0 deletions clients/client-cloudfront/src/commands/CreateFunctionCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,58 @@ export interface CreateFunctionCommandOutput extends CreateFunctionResult, __Met
* // example id: to-create-a-function-1699737558249
* ```
*
* @example To create a function
* ```javascript
* // Use the following command to create a function.
* const input = {
* "FunctionCode": "function-code.js",
* "FunctionConfig": {
* "Comment": "my-function-comment",
* "KeyValueStoreAssociations": {
* "Items": [
* {
* "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
* }
* ],
* "Quantity": 1
* },
* "Runtime": "cloudfront-js-2.0"
* },
* "Name": "my-function-name"
* };
* const command = new CreateFunctionCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "ETag": "ETVPDKIKX0DER",
* "FunctionSummary": {
* "FunctionConfig": {
* "Comment": "my-function-comment",
* "KeyValueStoreAssociations": {
* "Items": [
* {
* "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
* }
* ],
* "Quantity": 1
* },
* "Runtime": "cloudfront-js-2.0"
* },
* "FunctionMetadata": {
* "CreatedTime": "2023-11-07T19:53:50.334Z",
* "FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name",
* "LastModifiedTime": "2023-11-07T19:53:50.334Z",
* "Stage": "DEVELOPMENT"
* },
* "Name": "my-function-name",
* "Status": "UNPUBLISHED"
* },
* "Location": "https://cloudfront.amazonaws.com/2020-05-31/function/arn:aws:cloudfront::123456789012:function/my-function-name"
* }
* *\/
* // example id: example-1
* ```
*
*/
export class CreateFunctionCommand extends $Command
.classBuilder<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,36 @@ export interface CreateKeyValueStoreCommandOutput extends CreateKeyValueStoreRes
* // example id: to-create-a-key-value-store-1699751722467
* ```
*
* @example To create a KeyValueStore
* ```javascript
* // Use the following command to create a KeyValueStore.
* const input = {
* "Comment": "my-key-valuestore-comment",
* "ImportSource": {
* "SourceARN": "arn:aws:s3:::my-bucket/validJSON.json",
* "SourceType": "S3"
* },
* "Name": "my-keyvaluestore-name"
* };
* const command = new CreateKeyValueStoreCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "ETag": "ETVPDKIKX0DER",
* "KeyValueStore": {
* "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
* "Comment": "my-key-valuestore-comment",
* "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
* "LastModifiedTime": "2023-11-07T18:15:52.042Z",
* "Name": "my-keyvaluestore-name",
* "Status": "PROVISIONING"
* },
* "Location": "https://cloudfront.amazonaws.com/2020-05-31/key-value-store/arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
* }
* *\/
* // example id: example-1
* ```
*
*/
export class CreateKeyValueStoreCommand extends $Command
.classBuilder<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,18 @@ export interface DeleteKeyValueStoreCommandOutput extends __MetadataBearer {}
* // example id: to-delete-a-key-value-store-1699751759648
* ```
*
* @example To delete a KeyValueStore
* ```javascript
* // Use the following command to delete a KeyValueStore.
* const input = {
* "IfMatch": "ETVPDKIKX0DER",
* "Name": "my-keyvaluestore-name"
* };
* const command = new DeleteKeyValueStoreCommand(input);
* await client.send(command);
* // example id: example-1
* ```
*
*/
export class DeleteKeyValueStoreCommand extends $Command
.classBuilder<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,30 @@ export interface DescribeKeyValueStoreCommandOutput extends DescribeKeyValueStor
* // example id: to-describe-a-key-value-store-1699751788152
* ```
*
* @example To describe a KeyValueStore
* ```javascript
* // Use the following command to describe a KeyValueStore.
* const input = {
* "Name": "my-keyvaluestore-name"
* };
* const command = new DescribeKeyValueStoreCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "ETag": "ETVPDKIKX0DER",
* "KeyValueStore": {
* "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
* "Comment": "my-key-valuestore-comment",
* "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
* "LastModifiedTime": "2023-11-07T18:20:33.056Z",
* "Name": "my-keyvaluestore-name",
* "Status": "READY"
* }
* }
* *\/
* // example id: example-1
* ```
*
*/
export class DescribeKeyValueStoreCommand extends $Command
.classBuilder<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,36 @@ export interface ListKeyValueStoresCommandOutput extends ListKeyValueStoresResul
* // example id: to-get-a-list-of-key-value-store-1699751799198
* ```
*
* @example To get a list of KeyValueStores
* ```javascript
* // The following command retrieves a list of KeyValueStores with READY status.
* const input = {
* "Status": "READY"
* };
* const command = new ListKeyValueStoresCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "KeyValueStoreList": {
* "Items": [
* {
* "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
* "Comment": "",
* "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
* "LastModifiedTime": "2023-11-07T18:45:21.069Z",
* "Name": "my-keyvaluestore-name",
* "Status": "READY"
* }
* ],
* "MaxItems": 100,
* "NextMarker": "",
* "Quantity": 1
* }
* }
* *\/
* // example id: example-1
* ```
*
*/
export class ListKeyValueStoresCommand extends $Command
.classBuilder<
Expand Down
52 changes: 52 additions & 0 deletions clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,58 @@ export interface UpdateFunctionCommandOutput extends UpdateFunctionResult, __Met
* // example id: to-update-a-function-1699751865053
* ```
*
* @example To update a function
* ```javascript
* // Use the following command to update a function.
* const input = {
* "FunctionCode": "function-code-changed.js",
* "FunctionConfig": {
* "Comment": "my-changed-comment",
* "KeyValueStoreAssociations": {
* "Items": [
* {
* "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
* }
* ],
* "Quantity": 1
* },
* "Runtime": "cloudfront-js-2.0"
* },
* "IfMatch": "ETVPDKIKX0DER",
* "Name": "my-function-name"
* };
* const command = new UpdateFunctionCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "ETag": "E3UN6WX5RRO2AG",
* "FunctionSummary": {
* "FunctionConfig": {
* "Comment": "my-changed-comment",
* "KeyValueStoreAssociations": {
* "Items": [
* {
* "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
* }
* ],
* "Quantity": 1
* },
* "Runtime": "cloudfront-js-2.0"
* },
* "FunctionMetadata": {
* "CreatedTime": "2023-11-07T19:53:50.334Z",
* "FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name",
* "LastModifiedTime": "2023-11-07T20:01:37.174Z",
* "Stage": "DEVELOPMENT"
* },
* "Name": "my-function-name",
* "Status": "UNPUBLISHED"
* }
* }
* *\/
* // example id: example-1
* ```
*
*/
export class UpdateFunctionCommand extends $Command
.classBuilder<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,32 @@ export interface UpdateKeyValueStoreCommandOutput extends UpdateKeyValueStoreRes
* // example id: to-update-a-key-value-store-1699751822090
* ```
*
* @example To update a KeyValueStore
* ```javascript
* // Use the following command to update a KeyValueStore.
* const input = {
* "Comment": "my-changed-comment",
* "IfMatch": "ETVPDKIKX0DER",
* "Name": "my-keyvaluestore-name"
* };
* const command = new UpdateKeyValueStoreCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "ETag": "E3UN6WX5RRO2AG",
* "KeyValueStore": {
* "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
* "Comment": "my-changed-comment",
* "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
* "LastModifiedTime": "2023-11-07T18:45:21.069Z",
* "Name": "my-keyvaluestore-name",
* "Status": "READY"
* }
* }
* *\/
* // example id: example-1
* ```
*
*/
export class UpdateKeyValueStoreCommand extends $Command
.classBuilder<
Expand Down
11 changes: 11 additions & 0 deletions clients/client-codebuild/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.690.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.689.0...v3.690.0) (2024-11-12)


### Features

* **client-codebuild:** AWS CodeBuild now supports non-containerized Linux and Windows builds on Reserved Capacity. ([1661962](https://github.com/aws/aws-sdk-js-v3/commit/16619628b3ad1baaaf085ccc02c1744cb231131e))





# [3.687.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.686.0...v3.687.0) (2024-11-07)

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


### Features

* **client-controltower:** Added ResetEnabledControl API. ([580cabc](https://github.com/aws/aws-sdk-js-v3/commit/580cabcd598a7e467412a1d333f347930e87fbde))





# [3.687.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.686.0...v3.687.0) (2024-11-07)

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


### Features

* **client-fis:** This release adds support for generating experiment reports with the experiment report configuration ([eeb1195](https://github.com/aws/aws-sdk-js-v3/commit/eeb11951e3d8cb93b7bef214d3bf3a856886efce))





# [3.687.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.686.0...v3.687.0) (2024-11-07)

**Note:** Version bump only for package @aws-sdk/client-fis
Expand Down
Loading

0 comments on commit ab5b4b4

Please sign in to comment.