Skip to content

Commit

Permalink
Publish v3.704.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 3, 2024
1 parent 25460cc commit 868d4b0
Show file tree
Hide file tree
Showing 49 changed files with 1,044 additions and 9 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.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03)


### Features

* **client-bedrock-runtime:** Add an API parameter that allows customers to set performance configuration for invoking a model. ([f87e55a](https://github.com/aws/aws-sdk-js-v3/commit/f87e55a13bf41ed1ff2fd0a15250c253d3188c5f))
* **client-s3-control:** It allows customers to pass CRC64NVME as a header in S3 Batch Operations copy requests ([94cd2b3](https://github.com/aws/aws-sdk-js-v3/commit/94cd2b394afd4efeb7e491863887864532345f1d))
* **client-socialmessaging:** Added support for passing role arn corresponding to the supported event destination ([75bd846](https://github.com/aws/aws-sdk-js-v3/commit/75bd8462bfacdb4c4dee65889b0124053ff90dc1))
* **clients:** update client endpoints as of 2024-12-03 ([25460cc](https://github.com/aws/aws-sdk-js-v3/commit/25460cc85363edd371eb774f40d7875dc1964dcd))





# [3.703.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.702.0...v3.703.0) (2024-12-02)


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.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03)


### Features

* **client-bedrock-runtime:** Add an API parameter that allows customers to set performance configuration for invoking a model. ([f87e55a](https://github.com/aws/aws-sdk-js-v3/commit/f87e55a13bf41ed1ff2fd0a15250c253d3188c5f))





# [3.699.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.698.0...v3.699.0) (2024-11-22)

**Note:** Version bump only for package @aws-sdk/client-bedrock-runtime
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.699.0",
"version": "3.704.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime",
Expand Down
8 changes: 8 additions & 0 deletions clients/client-invoicing/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.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03)

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





# [3.703.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.702.0...v3.703.0) (2024-12-02)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-invoicing/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-invoicing",
"description": "AWS SDK for JavaScript Invoicing Client for Node.js, Browser and React Native",
"version": "3.703.0",
"version": "3.704.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 @@ -100,6 +100,38 @@ export interface BatchGetInvoiceProfileCommandOutput extends BatchGetInvoiceProf
* <p>Base exception class for all service exceptions from Invoicing service.</p>
*
* @public
* @example BatchGetInvoiceProfile
* ```javascript
* //
* const input = {
* "AccountIds": [
* "111111111111"
* ]
* };
* const command = new BatchGetInvoiceProfileCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "Profiles": [
* {
* "AccountId": "111111111111",
* "Issuer": "Test",
* "ReceiverAddress": {
* "AddressLine1": "Test",
* "City": "Test",
* "CountryCode": "LU",
* "PostalCode": "Test",
* "StateOrRegion": "Test"
* },
* "ReceiverEmail": "[email protected]",
* "ReceiverName": "TestAccount"
* }
* ]
* }
* *\/
* // example id: example-1
* ```
*
*/
export class BatchGetInvoiceProfileCommand extends $Command
.classBuilder<
Expand Down
30 changes: 30 additions & 0 deletions clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,36 @@ export interface CreateInvoiceUnitCommandOutput extends CreateInvoiceUnitRespons
* <p>Base exception class for all service exceptions from Invoicing service.</p>
*
* @public
* @example CreateInvoiceUnit
* ```javascript
* //
* const input = {
* "Description": "Example Invoice Unit Description",
* "InvoiceReceiver": "111111111111",
* "Name": "Example Invoice Unit",
* "ResourceTags": [
* {
* "Key": "TagKey",
* "Value": "TagValue"
* }
* ],
* "Rule": {
* "LinkedAccounts": [
* "222222222222"
* ]
* },
* "TaxInheritanceDisabled": false
* };
* const command = new CreateInvoiceUnitCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678"
* }
* *\/
* // example id: example-1
* ```
*
*/
export class CreateInvoiceUnitCommand extends $Command
.classBuilder<
Expand Down
16 changes: 16 additions & 0 deletions clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,22 @@ export interface DeleteInvoiceUnitCommandOutput extends DeleteInvoiceUnitRespons
* <p>Base exception class for all service exceptions from Invoicing service.</p>
*
* @public
* @example DeleteInvoiceUnit
* ```javascript
* //
* const input = {
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678"
* };
* const command = new DeleteInvoiceUnitCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678"
* }
* *\/
* // example id: example-1
* ```
*
*/
export class DeleteInvoiceUnitCommand extends $Command
.classBuilder<
Expand Down
53 changes: 53 additions & 0 deletions clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,59 @@ export interface GetInvoiceUnitCommandOutput extends GetInvoiceUnitResponse, __M
* <p>Base exception class for all service exceptions from Invoicing service.</p>
*
* @public
* @example GetInvoiceUnit as of current time
* ```javascript
* //
* const input = {
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678"
* };
* const command = new GetInvoiceUnitCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "Description": "Description changed on 1733788800",
* "InvoiceReceiver": "111111111111",
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678",
* "LastModified": 1733788800,
* "Name": "Example Invoice Unit A",
* "Rule": {
* "LinkedAccounts": [
* "222222222222"
* ]
* },
* "TaxInheritanceDisabled": false
* }
* *\/
* // example id: example-1
* ```
*
* @example GetInvoiceUnit as of specified time
* ```javascript
* //
* const input = {
* "AsOf": 1733097600,
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321"
* };
* const command = new GetInvoiceUnitCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "Description": "Description changed on 1733011200",
* "InvoiceReceiver": "333333333333",
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321",
* "LastModified": 1733011200,
* "Name": "Example Invoice Unit B",
* "Rule": {
* "LinkedAccounts": [
* "333333333333"
* ]
* },
* "TaxInheritanceDisabled": false
* }
* *\/
* // example id: example-2
* ```
*
*/
export class GetInvoiceUnitCommand extends $Command
.classBuilder<
Expand Down
138 changes: 138 additions & 0 deletions clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,144 @@ export interface ListInvoiceUnitsCommandOutput extends ListInvoiceUnitsResponse,
* <p>Base exception class for all service exceptions from Invoicing service.</p>
*
* @public
* @example ListInvoiceUnits without filters as of current time
* ```javascript
* //
* const input = {};
* const command = new ListInvoiceUnitsCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "InvoiceUnits": [
* {
* "Description": "Description changed on 1733788800",
* "InvoiceReceiver": "111111111111",
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678",
* "LastModified": 1733788800,
* "Name": "Example Invoice Unit A",
* "Rule": {
* "LinkedAccounts": [
* "222222222222"
* ]
* },
* "TaxInheritanceDisabled": false
* },
* {
* "Description": "Description changed on 1733788800",
* "InvoiceReceiver": "333333333333",
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321",
* "LastModified": 1733788800,
* "Name": "Example Invoice Unit B",
* "Rule": {
* "LinkedAccounts": [
* "333333333333"
* ]
* },
* "TaxInheritanceDisabled": true
* }
* ]
* }
* *\/
* // example id: example-1
* ```
*
* @example ListInvoiceUnits with filters as of specified time
* ```javascript
* //
* const input = {
* "AsOf": 1733097600,
* "Filters": {
* "InvoiceReceivers": [
* "333333333333"
* ]
* }
* };
* const command = new ListInvoiceUnitsCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "InvoiceUnits": [
* {
* "Description": "Description changed on 1733011200",
* "InvoiceReceiver": "333333333333",
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321",
* "LastModified": 1733011200,
* "Name": "Example Invoice Unit B",
* "Rule": {
* "LinkedAccounts": [
* "333333333333"
* ]
* },
* "TaxInheritanceDisabled": false
* }
* ]
* }
* *\/
* // example id: example-2
* ```
*
* @example ListInvoiceUnits with pagination - first page
* ```javascript
* //
* const input = {
* "MaxResults": 1
* };
* const command = new ListInvoiceUnitsCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "InvoiceUnits": [
* {
* "Description": "Description changed on 1733788800",
* "InvoiceReceiver": "111111111111",
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678",
* "LastModified": 1733788800,
* "Name": "Example Invoice Unit A",
* "Rule": {
* "LinkedAccounts": [
* "222222222222"
* ]
* },
* "TaxInheritanceDisabled": false
* }
* ],
* "NextToken": "nextTokenExample"
* }
* *\/
* // example id: example-3
* ```
*
* @example ListInvoiceUnits with pagination - second page
* ```javascript
* //
* const input = {
* "MaxResults": 1,
* "NextToken": "nextTokenExample"
* };
* const command = new ListInvoiceUnitsCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "InvoiceUnits": [
* {
* "Description": "Description changed on 1733788800",
* "InvoiceReceiver": "333333333333",
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321",
* "LastModified": 1733788800,
* "Name": "Example Invoice Unit B",
* "Rule": {
* "LinkedAccounts": [
* "333333333333"
* ]
* },
* "TaxInheritanceDisabled": true
* }
* ]
* }
* *\/
* // example id: example-4
* ```
*
*/
export class ListInvoiceUnitsCommand extends $Command
.classBuilder<
Expand Down
Loading

0 comments on commit 868d4b0

Please sign in to comment.