Skip to content

Commit

Permalink
Updates SDK to v2.1332.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 9, 2023
1 parent 5bfd7c1 commit 3c65b8b
Show file tree
Hide file tree
Showing 31 changed files with 2,215 additions and 1,006 deletions.
42 changes: 42 additions & 0 deletions .changes/2.1332.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"type": "feature",
"category": "CodeArtifact",
"description": "This release introduces the generic package format, a mechanism for storing arbitrary binary assets. It also adds a new API, PublishPackageVersion, to allow for publishing generic packages."
},
{
"type": "feature",
"category": "Connect",
"description": "This release adds a new API, GetMetricDataV2, which returns metric data for Amazon Connect."
},
{
"type": "feature",
"category": "Evidently",
"description": "Updated entity override documentation"
},
{
"type": "feature",
"category": "QuickSight",
"description": "This release has two changes: add state persistence feature for embedded dashboard and console in GenerateEmbedUrlForRegisteredUser API; add properties for hidden collapsed row dimensions in PivotTableOptions."
},
{
"type": "feature",
"category": "RedshiftData",
"description": "Added support for Redshift Serverless workgroup-arn wherever the WorkgroupName parameter is available."
},
{
"type": "feature",
"category": "SESV2",
"description": "This release introduces a new recommendation in Virtual Deliverability Manager Advisor, which detects missing or misconfigured Brand Indicator for Message Identification (BIMI) DNS records for customer sending identities."
},
{
"type": "feature",
"category": "SageMaker",
"description": "Amazon SageMaker Inference now allows SSM access to customer's model container by setting the \"EnableSSMAccess\" parameter for a ProductionVariant in CreateEndpointConfig API."
},
{
"type": "feature",
"category": "ServiceDiscovery",
"description": "Updated all AWS Cloud Map APIs to provide consistent throttling exception (RequestLimitExceeded)"
}
]
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1331.0-->
<!--LATEST=2.1332.0-->
<!--ENTRYINSERT-->

## 2.1332.0
* feature: CodeArtifact: This release introduces the generic package format, a mechanism for storing arbitrary binary assets. It also adds a new API, PublishPackageVersion, to allow for publishing generic packages.
* feature: Connect: This release adds a new API, GetMetricDataV2, which returns metric data for Amazon Connect.
* feature: Evidently: Updated entity override documentation
* feature: QuickSight: This release has two changes: add state persistence feature for embedded dashboard and console in GenerateEmbedUrlForRegisteredUser API; add properties for hidden collapsed row dimensions in PivotTableOptions.
* feature: RedshiftData: Added support for Redshift Serverless workgroup-arn wherever the WorkgroupName parameter is available.
* feature: SESV2: This release introduces a new recommendation in Virtual Deliverability Manager Advisor, which detects missing or misconfigured Brand Indicator for Message Identification (BIMI) DNS records for customer sending identities.
* feature: SageMaker: Amazon SageMaker Inference now allows SSM access to customer's model container by setting the "EnableSSMAccess" parameter for a ProductionVariant in CreateEndpointConfig API.
* feature: ServiceDiscovery: Updated all AWS Cloud Map APIs to provide consistent throttling exception (RequestLimitExceeded)

## 2.1331.0
* feature: Athena: A new field SubstatementType is added to GetQueryExecution API, so customers have an error free way to detect the query type and interpret the result.
* feature: DynamoDB: Adds deletion protection support to DynamoDB tables. Tables with deletion protection enabled cannot be deleted. Deletion protection is disabled by default, can be enabled via the CreateTable or UpdateTable APIs, and is visible in TableDescription. This setting is not replicated for Global Tables.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ for further details.
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.1331.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1332.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
119 changes: 102 additions & 17 deletions apis/codeartifact-2018-09-22.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -864,8 +864,7 @@
"type": "structure",
"members": {
"asset": {
"type": "blob",
"streaming": true
"shape": "S2o"
},
"assetName": {
"location": "header",
Expand Down Expand Up @@ -1114,21 +1113,7 @@
"assets": {
"type": "list",
"member": {
"type": "structure",
"required": [
"name"
],
"members": {
"name": {},
"size": {
"type": "long"
},
"hashes": {
"type": "map",
"key": {},
"value": {}
}
}
"shape": "S35"
}
}
}
Expand Down Expand Up @@ -1466,6 +1451,85 @@
}
}
},
"PublishPackageVersion": {
"http": {
"requestUri": "/v1/package/version/publish"
},
"input": {
"type": "structure",
"required": [
"domain",
"repository",
"format",
"package",
"packageVersion",
"assetContent",
"assetName",
"assetSHA256"
],
"members": {
"domain": {
"location": "querystring",
"locationName": "domain"
},
"domainOwner": {
"location": "querystring",
"locationName": "domain-owner"
},
"repository": {
"location": "querystring",
"locationName": "repository"
},
"format": {
"location": "querystring",
"locationName": "format"
},
"namespace": {
"location": "querystring",
"locationName": "namespace"
},
"package": {
"location": "querystring",
"locationName": "package"
},
"packageVersion": {
"location": "querystring",
"locationName": "version"
},
"assetContent": {
"shape": "S2o"
},
"assetName": {
"location": "querystring",
"locationName": "asset"
},
"assetSHA256": {
"location": "header",
"locationName": "x-amz-content-sha256"
},
"unfinished": {
"location": "querystring",
"locationName": "unfinished",
"type": "boolean"
}
},
"payload": "assetContent"
},
"output": {
"type": "structure",
"members": {
"format": {},
"namespace": {},
"package": {},
"version": {},
"versionRevision": {},
"status": {},
"asset": {
"shape": "S35"
}
}
}
},
"PutDomainPermissionsPolicy": {
"http": {
"method": "PUT",
Expand Down Expand Up @@ -1895,6 +1959,27 @@
"originType": {}
}
},
"S2o": {
"type": "blob",
"streaming": true
},
"S35": {
"type": "structure",
"required": [
"name"
],
"members": {
"name": {},
"size": {
"type": "long"
},
"hashes": {
"type": "map",
"key": {},
"value": {}
}
}
},
"S3r": {
"type": "list",
"member": {
Expand Down
Loading

0 comments on commit 3c65b8b

Please sign in to comment.