Skip to content

Commit

Permalink
Updates SDK to v2.1684.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 27, 2024
1 parent afef987 commit add526c
Show file tree
Hide file tree
Showing 23 changed files with 1,261 additions and 579 deletions.
27 changes: 27 additions & 0 deletions .changes/2.1684.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "Bedrock",
"description": "Amazon Bedrock SDK updates for Inference Profile."
},
{
"type": "feature",
"category": "BedrockRuntime",
"description": "Amazon Bedrock SDK updates for Inference Profile."
},
{
"type": "feature",
"category": "Chatbot",
"description": "Update documentation to be consistent with the API docs"
},
{
"type": "feature",
"category": "Omics",
"description": "Adds data provenance to import jobs from read sets and references"
},
{
"type": "feature",
"category": "Polly",
"description": "Amazon Polly adds 2 new voices: Jitka (cs-CZ) and Sabrina (de-CH)."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1683.0-->
<!--LATEST=2.1684.0-->
<!--ENTRYINSERT-->

## 2.1684.0
* feature: Bedrock: Amazon Bedrock SDK updates for Inference Profile.
* feature: BedrockRuntime: Amazon Bedrock SDK updates for Inference Profile.
* feature: Chatbot: Update documentation to be consistent with the API docs
* feature: Omics: Adds data provenance to import jobs from read sets and references
* feature: Polly: Amazon Polly adds 2 new voices: Jitka (cs-CZ) and Sabrina (de-CH).

## 2.1683.0
* feature: IoTSiteWise: AWS IoT SiteWise now supports versioning for asset models. It enables users to retrieve active version of their asset model and perform asset model writes with optimistic lock.
* feature: WorkSpaces: This release adds support for creating and managing directories that use AWS IAM Identity Center as user identity source. Such directories can be used to create non-Active Directory domain joined WorkSpaces Personal.Updated RegisterWorkspaceDirectory and DescribeWorkspaceDirectories APIs.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1683.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1684.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
132 changes: 123 additions & 9 deletions apis/bedrock-2023-04-20.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1000,6 +1000,53 @@
}
}
},
"GetInferenceProfile": {
"http": {
"method": "GET",
"requestUri": "/inference-profiles/{inferenceProfileIdentifier}",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"inferenceProfileIdentifier"
],
"members": {
"inferenceProfileIdentifier": {
"location": "uri",
"locationName": "inferenceProfileIdentifier"
}
}
},
"output": {
"type": "structure",
"required": [
"inferenceProfileName",
"models",
"inferenceProfileArn",
"inferenceProfileId",
"status",
"type"
],
"members": {
"inferenceProfileName": {},
"models": {
"shape": "S66"
},
"description": {},
"createdAt": {
"shape": "S2k"
},
"updatedAt": {
"shape": "S2k"
},
"inferenceProfileArn": {},
"inferenceProfileId": {},
"status": {},
"type": {}
}
}
},
"GetModelCopyJob": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -1207,7 +1254,7 @@
"roleArn": {},
"status": {},
"message": {
"shape": "S6j"
"shape": "S6u"
},
"submitTime": {
"shape": "S2k"
Expand Down Expand Up @@ -1247,7 +1294,7 @@
"type": "structure",
"members": {
"loggingConfig": {
"shape": "S6m"
"shape": "S6x"
}
}
}
Expand Down Expand Up @@ -1683,6 +1730,64 @@
}
}
},
"ListInferenceProfiles": {
"http": {
"method": "GET",
"requestUri": "/inference-profiles",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"maxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
},
"nextToken": {
"location": "querystring",
"locationName": "nextToken"
}
}
},
"output": {
"type": "structure",
"members": {
"inferenceProfileSummaries": {
"type": "list",
"member": {
"type": "structure",
"required": [
"inferenceProfileName",
"models",
"inferenceProfileArn",
"inferenceProfileId",
"status",
"type"
],
"members": {
"inferenceProfileName": {},
"models": {
"shape": "S66"
},
"description": {},
"createdAt": {
"shape": "S2k"
},
"updatedAt": {
"shape": "S2k"
},
"inferenceProfileArn": {},
"inferenceProfileId": {},
"status": {},
"type": {}
}
}
},
"nextToken": {}
}
}
},
"ListModelCopyJobs": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -2011,7 +2116,7 @@
"roleArn": {},
"status": {},
"message": {
"shape": "S6j"
"shape": "S6u"
},
"submitTime": {
"shape": "S2k"
Expand Down Expand Up @@ -2175,7 +2280,7 @@
],
"members": {
"loggingConfig": {
"shape": "S6m"
"shape": "S6x"
}
}
},
Expand Down Expand Up @@ -2882,11 +2987,20 @@
"status": {}
}
},
"S6j": {
"S66": {
"type": "list",
"member": {
"type": "structure",
"members": {
"modelArn": {}
}
}
},
"S6u": {
"type": "string",
"sensitive": true
},
"S6m": {
"S6x": {
"type": "structure",
"members": {
"cloudWatchConfig": {
Expand All @@ -2899,12 +3013,12 @@
"logGroupName": {},
"roleArn": {},
"largeDataDeliveryS3Config": {
"shape": "S6p"
"shape": "S70"
}
}
},
"s3Config": {
"shape": "S6p"
"shape": "S70"
},
"textDataDeliveryEnabled": {
"type": "boolean"
Expand All @@ -2917,7 +3031,7 @@
}
}
},
"S6p": {
"S70": {
"type": "structure",
"required": [
"bucketName"
Expand Down
Loading

0 comments on commit add526c

Please sign in to comment.